/* ============================================================
   Yatmo V5 — Technical Premium Design System
   Font: Inter | Inspiration: Stripe / Vercel
   ============================================================ */

/* -------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------------- */
:root {
    --v5-blue: #111827;
    --v5-accent: #428BFF;
    --v5-accent-hover: #1B6FF5;
    --v5-accent-light: #EBF2FF;
    --v5-green: #10B981;
    --v5-green-light: #ECFDF5;
    --v5-amber: #F59E0B;
    --v5-amber-light: #FFFBEB;
    --v5-dark: #0F172A;
    --v5-text: #334155;
    --v5-text-light: #64748B;
    --v5-text-muted: #94A3B8;
    --v5-border: #E2E8F0;
    --v5-bg: #F8FAFC;
    --v5-bg-dark: #F1F5F9;
    --v5-white: #FFFFFF;
    --v5-radius: 10px;
    --v5-radius-lg: 16px;
    --v5-radius-sm: 8px;
    --v5-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --v5-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --v5-shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --v5-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --v5-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --v5-gradient: linear-gradient(135deg, #428BFF 0%, #1B6FF5 100%);
    --v5-gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #111827 100%);
}


/* -------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--v5-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--v5-accent);
    text-decoration: none;
    transition: color var(--v5-transition);
}

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--v5-dark);
}

.v5-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none;
}


/* -------------------------------------------------------
   TOPBAR
   ------------------------------------------------------- */
.v5-topbar {
    background: var(--v5-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 8px 0;
}

.v5-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v5-topbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v5-topbar-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--v5-transition);
}

.v5-topbar-links a:hover {
    color: #fff;
}

.v5-topbar-links svg {
    flex-shrink: 0;
}

.v5-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v5-lang-select {
    position: relative;
    cursor: pointer;
}

.v5-lang-select::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    /* invisible hover bridge to cover the gap above the dropdown */
}

.v5-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--v5-transition);
}

.v5-lang-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.v5-lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: 8px;
    box-shadow: var(--v5-shadow-lg);
    overflow: hidden;
    z-index: 100;
    min-width: 60px;
}

.v5-lang-select:hover .v5-lang-dropdown {
    display: block;
}

.v5-lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--v5-text);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--v5-transition);
}

.v5-lang-dropdown a:hover {
    background: var(--v5-accent-light);
    color: var(--v5-accent);
}


/* -------------------------------------------------------
   NAVBAR
   ------------------------------------------------------- */
.v5-navbar {
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--v5-border);
    transition: box-shadow var(--v5-transition);
}

.v5-navbar--scrolled {
    box-shadow: var(--v5-shadow-md);
}

.v5-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.v5-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.v5-logo img {
    height: 32px;
    width: auto;
}

.v5-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.v5-nav-links li a {
    color: var(--v5-text);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    transition: color var(--v5-transition);
}

.v5-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--v5-accent);
    transition: width var(--v5-transition);
}

.v5-nav-links li a:hover {
    color: var(--v5-accent);
}

.v5-nav-links li a:hover::after {
    width: 100%;
}

.v5-nav-cta {
    background: var(--v5-gradient);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: opacity var(--v5-transition);
}

.v5-nav-cta::after {
    display: none !important;
}

.v5-nav-cta:hover {
    opacity: 0.9;
    color: #fff !important;
}

.v5-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.v5-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--v5-text);
    margin: 5px 0;
    transition: var(--v5-transition);
}


/* -------------------------------------------------------
   BUTTONS (shared)
   ------------------------------------------------------- */
.v5-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--v5-transition);
    border: none;
    text-decoration: none;
    line-height: 1;
}

.v5-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.v5-btn-primary {
    background: var(--v5-gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(66, 139, 255, 0.35);
}

.v5-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(66, 139, 255, 0.4);
    color: #fff;
}

.v5-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.v5-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.v5-btn-outline-dark {
    color: var(--v5-text);
    border-color: var(--v5-border);
}

.v5-btn-outline-dark:hover {
    background: var(--v5-bg);
    color: var(--v5-accent);
    border-color: var(--v5-accent);
}

.v5-btn-secondary {
    background: var(--v5-bg);
    color: var(--v5-text);
    border: 1px solid var(--v5-border);
}

.v5-btn-secondary:hover {
    background: var(--v5-accent-light);
    color: var(--v5-accent);
    border-color: var(--v5-accent);
}

.v5-btn-block {
    width: 100%;
    justify-content: center;
}

.v5-btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}


/* -------------------------------------------------------
   HERO
   ------------------------------------------------------- */
.v5-hero {
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #111827 100%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.v5-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(66, 139, 255, 0.22) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.v5-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}

.v5-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.v5-hero-content {
    /* Text column container */
}

.v5-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #93C5FD;
    margin-bottom: 24px;
}

.v5-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--v5-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.v5-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #fff;
}

.v5-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #94A3B8;
    margin-bottom: 36px;
    max-width: 560px;
}

.v5-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.v5-hero-visual {
    position: relative;
}

.v5-hero-demo {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--v5-radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}

.v5-demo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.v5-demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.v5-demo-dot--red {
    background: #EF4444;
}

.v5-demo-dot--yellow {
    background: #F59E0B;
}

.v5-demo-dot--green {
    background: #10B981;
}

.v5-demo-label {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #93C5FD;
    background: rgba(66, 139, 255, 0.12);
    border: 1px solid rgba(66, 139, 255, 0.2);
    padding: 3px 10px;
    border-radius: 4px;
}

.v5-demo-selectors {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.v5-demo-selectors select {
    flex: 1;
    min-width: 0;
}

.v5-demo-selectors select:last-child {
    border-right: none;
}

.v5-demo-address-bar {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
}

.v5-demo-selectors select,
.v5-demo-address-bar select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.06);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    padding: 12px 32px 12px 14px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.v5-demo-selectors select option,
.v5-demo-address-bar select option {
    background: #1E293B;
    color: #fff;
}

.v5-demo-address-bar input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.v5-demo-address-bar input[type="text"]::placeholder {
    color: #64748B;
}

.v5-demo-go-btn {
    background: var(--v5-gradient);
    border: none;
    border-radius: 0 9px 9px 0;
    color: #fff;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--v5-transition);
}

.v5-demo-go-btn:hover {
    opacity: 0.9;
}

.v5-demo-go-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.v5-demo-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 10px 10px;
    z-index: 10;
    max-height: 240px;
    overflow-y: auto;
}

.v5-demo-autocomplete.v5-visible {
    display: block;
}

.v5-autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #CBD5E1;
    transition: background var(--v5-transition);
}

.v5-autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.v5-autocomplete-item strong {
    color: #fff;
}

.v5-autocomplete-muted {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.v5-demo-output {
    font-size: 14px;
    line-height: 1.9;
    color: #94A3B8;
    max-height: 320px;
    overflow-y: auto;
    margin-top: 16px;
    min-height: 180px;
}

.v5-demo-output p {
    margin-bottom: 12px;
}

.v5-demo-output strong {
    color: #E2E8F0;
    font-weight: 600;
}

.v5-geo-paragraph-title {
    color: #93C5FD;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.v5-geo-paragraph-title:first-child {
    margin-top: 0;
}

.v5-geo-icon {
    font-size: 15px;
}

.v5-demo-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    padding: 20px 0;
}

.v5-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--v5-accent);
    border-radius: 50%;
    animation: v5-spin 0.6s linear infinite;
}

.v5-demo-note {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}


/* -------------------------------------------------------
   TRUST BAR
   ------------------------------------------------------- */
.v5-trust {
    background: var(--v5-bg);
    padding: 56px 0;
    border-bottom: 1px solid var(--v5-border);
}

.v5-trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--v5-text-muted);
    margin-bottom: 28px;
}

.v5-trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 36px;
    margin-bottom: 40px;
}

.v5-trust-logo {
    flex-shrink: 0;
}

.v5-trust-logo img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: all var(--v5-transition);
}

.v5-trust-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.v5-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.v5-stat {
    /* stat container */
}

.v5-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--v5-dark);
    letter-spacing: -0.02em;
}

.v5-stat-label {
    display: block;
    font-size: 13px;
    color: var(--v5-text-light);
    margin-top: 4px;
}


/* -------------------------------------------------------
   SECTION GENERICS
   ------------------------------------------------------- */
.v5-section {
    padding: 112px 0;
}

.v5-section--alt {
    background: var(--v5-bg);
}

.v5-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.v5-section-tag,
.v5-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    background: var(--v5-accent-light);
    color: var(--v5-accent);
}

.v5-tag-blue {
    background: var(--v5-accent-light);
    color: var(--v5-accent);
}

.v5-tag-green {
    background: var(--v5-green-light);
    color: var(--v5-green);
}

.v5-tag-amber {
    background: var(--v5-amber-light);
    color: var(--v5-amber);
}

.v5-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--v5-dark);
    margin-bottom: 16px;
}

.v5-section-sub,
.v5-section-subtitle {
    font-size: 18px;
    color: var(--v5-text-light);
    line-height: 1.75;
}

.v5-section-cta {
    text-align: center;
    margin-top: 48px;
}

.v5-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.v5-animate.v5-visible {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------------------------------------
   WHAT YATMO DOES
   ------------------------------------------------------- */
.v5-what {
    padding: 112px 0;
}

.v5-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.v5-what-card {
    background: white;
    border: 1px solid var(--v5-border);
    border-top: 3px solid transparent;
    border-radius: var(--v5-radius);
    padding: 36px;
    transition: box-shadow var(--v5-transition), border-top-color var(--v5-transition);
}

.v5-what-card:hover {
    box-shadow: var(--v5-shadow-lg);
}

.v5-what-card:nth-child(1):hover {
    border-top-color: var(--v5-accent);
}

.v5-what-card:nth-child(2):hover {
    border-top-color: var(--v5-green);
}

.v5-what-card:nth-child(3):hover {
    border-top-color: var(--v5-amber);
}

.v5-what-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--v5-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.v5-what-icon svg {
    width: 28px;
    height: 28px;
}

.v5-what-icon--blue {
    background: var(--v5-accent-light);
    color: var(--v5-accent);
}

.v5-what-icon--green {
    background: var(--v5-green-light);
    color: var(--v5-green);
}

.v5-what-icon--amber {
    background: var(--v5-amber-light);
    color: var(--v5-amber);
}

.v5-what-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--v5-dark);
}

.v5-what-card p {
    font-size: 15px;
    color: var(--v5-text-light);
    line-height: 1.7;
}


/* -------------------------------------------------------
   SOLUTIONS
   ------------------------------------------------------- */
.v5-solutions {
    padding: 112px 0;
    background: var(--v5-bg);
}

.v5-solutions-tabs {
    /* container */
}

.v5-tabs-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.v5-tab-btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--v5-text-light);
    background: white;
    border: 1px solid var(--v5-border);
    cursor: pointer;
    transition: all var(--v5-transition);
}

.v5-tab-btn:hover {
    color: var(--v5-accent);
    border-color: var(--v5-accent);
}

.v5-tab-btn--active {
    background: var(--v5-accent);
    color: white;
    border-color: var(--v5-accent);
}

.v5-tab-btn--active:hover {
    color: white;
}

.v5-tabs-panels {
    /* container */
}

.v5-tab-panel {
    display: block;
}

.v5-tab-panel--active {
    display: block;
}

.v5-tab-content {
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-lg);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.v5-tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--v5-dark);
}

.v5-tab-content p {
    font-size: 16px;
    color: var(--v5-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.v5-check-list {
    margin-bottom: 32px;
}

.v5-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--v5-text);
}

.v5-check-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--v5-green);
    margin-top: 2px;
}


/* -------------------------------------------------------
   CAPABILITIES
   ------------------------------------------------------- */
.v5-capabilities {
    padding: 112px 0;
}

.v5-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.v5-capability-group {
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius);
    overflow: hidden;
}

.v5-capability-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 24px;
    border-bottom: 1px solid var(--v5-border);
}

.v5-capability-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.v5-capability-title--blue {
    color: var(--v5-accent);
    background: var(--v5-accent-light);
}

.v5-capability-title--green {
    color: var(--v5-green);
    background: var(--v5-green-light);
}

.v5-capability-title--amber {
    color: var(--v5-amber);
    background: var(--v5-amber-light);
}

.v5-capability-list {
    padding: 20px 28px;
}

.v5-capability-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--v5-text);
    border-bottom: 1px solid var(--v5-border);
    padding-left:10px;
}

.v5-capability-list li:last-child {
    border-bottom: none;
}

.v5-capability-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--v5-green);
    margin-top: 3px;
}


/* -------------------------------------------------------
   MAP PLAYGROUND
   ------------------------------------------------------- */
.v5-map-playground {
    padding: 112px 0;
    background: var(--v5-bg);
}

.v5-playground-container {
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--v5-shadow-lg);
}

.v5-playground-countries {
    text-align: center;
    margin-top: 48px;
}

.v5-playground-countries h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--v5-dark);
}

.v5-countries-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.v5-countries-flags .flag-icon {
    font-size: 24px;
}

.v5-playground-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: white;
    border: 1px solid var(--v5-border);
    border-top: 2px solid var(--v5-accent);
    border-radius: var(--v5-radius);
    box-shadow: var(--v5-shadow);
}

.v5-playground-cta p {
    font-size: 16px;
    color: var(--v5-text-light);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.v5-playground-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--v5-dark);
    margin-bottom: 16px;
}

.v5-playground-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* -------------------------------------------------------
   TEXT PLAYGROUND
   ------------------------------------------------------- */
.v5-text-playground {
    /* uses v5-section and v5-section--alt */
}

.v5-tp-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-lg);
    overflow: hidden;
    box-shadow: var(--v5-shadow-lg);
}

.v5-tp-inputs {
    padding: 32px;
    background: var(--v5-bg);
    border-right: 1px solid var(--v5-border);
}

.v5-tp-field {
    margin-bottom: 20px;
}

.v5-tp-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--v5-text);
    margin-bottom: 6px;
}

.v5-tp-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-sm);
    background: white;
    color: var(--v5-text);
    font-size: 14px;
    outline: none;
    transition: border-color var(--v5-transition);
}

.v5-tp-field select:focus {
    border-color: var(--v5-accent);
}

.v5-tp-address-wrap {
    position: relative;
}

.v5-tp-address-wrap input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-sm);
    background: white;
    color: var(--v5-text);
    font-size: 14px;
    outline: none;
    transition: border-color var(--v5-transition);
}

.v5-tp-address-wrap input:focus {
    border-color: var(--v5-accent);
}

.v5-tp-address-wrap input::placeholder {
    color: var(--v5-text-muted);
}

.v5-tp-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--v5-border);
    border-top: none;
    border-radius: 0 0 var(--v5-radius-sm) var(--v5-radius-sm);
    box-shadow: var(--v5-shadow-lg);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.v5-tp-autocomplete.v5-visible {
    display: block;
}

.v5-tp-dev-note {
    margin-top: 24px;
    padding: 16px;
    background: var(--v5-dark);
    border-radius: var(--v5-radius-sm);
    font-size: 12px;
}

.v5-tp-dev-note code {
    display: block;
    color: #93C5FD;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
    word-break: break-all;
}

.v5-tp-dev-note p {
    color: var(--v5-text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.v5-tp-output {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.v5-tp-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--v5-border);
    padding-bottom: 0;
    margin-bottom: 24px;
}

.v5-tp-tab {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--v5-text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--v5-transition);
    margin-bottom: -1px;
}

.v5-tp-tab:hover {
    color: var(--v5-accent);
}

.v5-tp-tab--active {
    color: var(--v5-accent);
    border-bottom-color: var(--v5-accent);
}

.v5-tp-panels {
    flex: 1;
    min-height: 300px;
}

.v5-tp-panel {
    display: none;
}

.v5-tp-panel--active {
    display: block;
}

.v5-tp-panel--code {
    background: var(--v5-dark);
    border-radius: var(--v5-radius-sm);
    padding: 20px;
    overflow: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #E2E8F0;
    white-space: pre-wrap;
}

.v5-tp-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--v5-text-muted);
    font-size: 15px;
}


/* -------------------------------------------------------
   INTEGRATIONS
   ------------------------------------------------------- */
.v5-integrations {
    padding: 112px 0;
}

.v5-integrations-widget {
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.v5-integrations-tabs {
    display: flex;
    background: var(--v5-bg);
    border-bottom: 1px solid var(--v5-border);
}

.v5-integrations-tab {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--v5-text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--v5-transition);
    text-align: center;
}

.v5-integrations-tab:hover {
    color: var(--v5-accent);
    background: white;
}

.v5-integrations-tab--active {
    color: var(--v5-accent);
    background: white;
    border-bottom-color: var(--v5-accent);
}

.v5-integrations-panels {
    /* container */
}

.v5-integrations-panel {
    display: block;
    padding: 32px;
}

.v5-integrations-panel--active {
    display: block;
}

.v5-integrations-code {
    background: var(--v5-dark);
    border-radius: var(--v5-radius-sm);
    padding: 24px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.v5-integrations-code pre {
    margin: 0;
}

.v5-integrations-code code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #E2E8F0;
    line-height: 1.8;
}

.v5-integrations-desc {
    /* container */
}

.v5-integrations-desc p {
    font-size: 15px;
    color: var(--v5-text-light);
    line-height: 1.7;
}

.v5-integrations-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* -------------------------------------------------------
   VISIBILITY (SEO / GEO / AEO)
   ------------------------------------------------------- */
.v5-visibility {
    padding: 112px 0;
    background: var(--v5-bg);
}

.v5-visibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.v5-visibility-card {
    background: white;
    border-radius: var(--v5-radius);
    overflow: hidden;
    box-shadow: var(--v5-shadow);
    transition: box-shadow var(--v5-transition);
}

.v5-visibility-card:hover {
    box-shadow: var(--v5-shadow-lg);
}

.v5-visibility-card-border {
    height: 5px;
}

.v5-visibility-card--blue .v5-visibility-card-border {
    background: var(--v5-accent);
}

.v5-visibility-card--green .v5-visibility-card-border {
    background: var(--v5-green);
}

.v5-visibility-card--amber .v5-visibility-card-border {
    background: var(--v5-amber);
}

.v5-visibility-card-body {
    padding: 28px 28px 32px;
}

.v5-visibility-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.v5-visibility-label--blue {
    background: var(--v5-accent-light);
    color: var(--v5-accent);
}

.v5-visibility-label--green {
    background: var(--v5-green-light);
    color: var(--v5-green);
}

.v5-visibility-label--amber {
    background: var(--v5-amber-light);
    color: var(--v5-amber);
}

.v5-visibility-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--v5-dark);
    margin-bottom: 12px;
}

.v5-visibility-card-body p {
    font-size: 15px;
    color: var(--v5-text-light);
    line-height: 1.7;
}

.v5-visibility-audience {
    font-size: 13px;
    color: var(--v5-text-muted);
    font-style: italic;
    margin-top: 8px;
}


/* -------------------------------------------------------
   SCALE
   ------------------------------------------------------- */
.v5-scale {
    padding: 112px 0;
}

.v5-scale-diagram {
    margin-bottom: 60px;
}

.v5-scale-diagram-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 40px 0;
}

.v5-scale-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius);
    min-width: 120px;
    box-shadow: var(--v5-shadow);
}

.v5-scale-node svg {
    width: 32px;
    height: 32px;
}

.v5-scale-node span {
    font-size: 13px;
    font-weight: 600;
    color: var(--v5-text);
}

.v5-scale-node--source {
    background: var(--v5-accent-light);
    border-color: rgba(66, 139, 255, 0.2);
}

.v5-scale-node--source svg {
    color: var(--v5-accent);
}

.v5-scale-node--api {
    background: var(--v5-green-light);
    border-color: rgba(16, 185, 129, 0.2);
}

.v5-scale-node--api svg {
    color: var(--v5-green);
}

.v5-scale-node--site {
    min-width: 100px;
}

.v5-scale-node--site svg {
    color: var(--v5-text-light);
}

.v5-scale-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.v5-scale-line {
    width: 40px;
    height: 2px;
    background: var(--v5-border);
}

.v5-scale-connector svg {
    width: 16px;
    height: 16px;
    color: var(--v5-text-muted);
    margin-left: -4px;
}

.v5-scale-node-group {
    display: flex;
    gap: 12px;
}

.v5-scale-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.v5-scale-card {
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius);
    padding: 28px;
    text-align: center;
}

.v5-scale-card-icon {
    width: 48px;
    height: 48px;
    background: var(--v5-accent-light);
    border-radius: var(--v5-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.v5-scale-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--v5-accent);
}

.v5-scale-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--v5-dark);
}

.v5-scale-card p {
    font-size: 14px;
    color: var(--v5-text-light);
    line-height: 1.6;
}


/* -------------------------------------------------------
   PROOF
   ------------------------------------------------------- */
.v5-proof {
    padding: 100px 0;
    background: var(--v5-bg);
}

.v5-proof-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--v5-gradient-dark);
    border-radius: var(--v5-radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
}

.v5-proof-metric {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-proof-metric:last-child {
    border-right: none;
}

.v5-proof-metric-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.v5-proof-metric-label {
    display: block;
    font-size: 13px;
    color: #94A3B8;
    margin-top: 4px;
}

.v5-proof-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.v5-testimonial-card {
    background: white;
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius);
    padding: 32px;
}

.v5-testimonial-quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--v5-text);
    font-style: italic;
    margin: 0 0 24px;
    quotes: none;
}

.v5-testimonial-quote::before {
    content: open-quote;
}

.v5-testimonial-quote::after {
    content: close-quote;
}

.v5-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.v5-testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.v5-testimonial-info {
    /* container */
}

.v5-testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--v5-dark);
}

.v5-testimonial-info span {
    font-size: 13px;
    color: var(--v5-text-light);
}

.v5-proof-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 28px;
    max-width: 800px;
    margin: 0 auto;
}

.v5-proof-logo {
    flex-shrink: 0;
}

.v5-proof-logo img {
    height: 22px;
    width: auto;
    filter: grayscale(100%) opacity(0.4);
    transition: all var(--v5-transition);
}

.v5-proof-logo:hover img {
    filter: grayscale(0%) opacity(1);
}


/* -------------------------------------------------------
   COVERAGE
   ------------------------------------------------------- */
.v5-coverage {
    padding: 100px 0;
}

.v5-coverage-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

.v5-coverage-table {
    width: 100%;
    border-collapse: collapse;
}

.v5-coverage-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--v5-text-muted);
    border-bottom: 2px solid var(--v5-border);
}

.v5-coverage-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--v5-border);
    font-size: 14px;
    color: var(--v5-text);
    vertical-align: middle;
}

.v5-coverage-table tbody tr:last-child td {
    border-bottom: none;
}

.v5-coverage-table .flag-icon {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.v5-lang-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--v5-accent-light);
    color: var(--v5-accent);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 4px 2px 0;
}

.v5-coverage-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--v5-text-light);
}


/* -------------------------------------------------------
   FAQ
   ------------------------------------------------------- */
.v5-faq {
    /* uses v5-section and v5-section--alt */
}

.v5-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.v5-faq-item {
    border-bottom: 1px solid var(--v5-border);
}

.v5-faq-item:last-child {
    border-bottom: none;
}

.v5-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--v5-dark);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color var(--v5-transition);
    gap: 16px;
    line-height: 1.4;
}

.v5-faq-q:hover {
    color: var(--v5-accent);
}

.v5-faq-q span:first-child {
    flex: 1;
}

.v5-faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: var(--v5-text-muted);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--v5-transition);
}

.v5-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.v5-faq-item--open .v5-faq-a {
    max-height: 500px;
}

.v5-faq-item--open .v5-faq-toggle {
    transform: rotate(45deg);
}

.v5-faq-a p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--v5-text-light);
    line-height: 1.8;
}


/* -------------------------------------------------------
   CONTACT
   ------------------------------------------------------- */
.v5-contact {
    background: var(--v5-gradient-dark);
    padding: 120px 0;
    color: #fff;
}

.v5-contact .v5-section-header {
    color: #fff;
}

.v5-contact .v5-section-header h2 {
    color: #fff;
}

.v5-contact .v5-section-sub {
    color: #94A3B8;
}

.v5-contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.v5-contact-form-col {
    /* container */
}

.v5-contact-form {
    /* container */
}

.v5-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.v5-contact-row--3col {
    grid-template-columns: 1fr 1fr 1fr;
}

.v5-contact-field {
    margin-bottom: 16px;
}

.v5-contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 6px;
}

.v5-contact-field input,
.v5-contact-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--v5-radius-sm);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color var(--v5-transition);
}

.v5-contact-field input:focus,
.v5-contact-field textarea:focus {
    border-color: var(--v5-accent);
}

.v5-contact-field input::placeholder,
.v5-contact-field textarea::placeholder {
    color: #64748B;
}

.v5-contact-interests {
    margin-bottom: 24px;
}

.v5-contact-interests-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 10px;
}

.v5-contact-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v5-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    color: #CBD5E1;
    cursor: pointer;
    transition: all var(--v5-transition);
}

.v5-check:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.v5-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--v5-accent);
}

.v5-contact-success {
    padding: 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--v5-radius-sm);
    margin-top: 16px;
}

.v5-contact-success p {
    color: var(--v5-green);
    font-size: 14px;
    margin: 0;
}

.v5-contact-error {
    padding: 16px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: var(--v5-radius-sm);
    margin-top: 16px;
}

.v5-contact-error p {
    color: #EF4444;
    font-size: 14px;
    margin: 0;
}

.v5-contact-info-col {
    /* container */
}

.v5-contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--v5-radius);
    padding: 32px;
}

.v5-contact-info-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #CBD5E1;
}

.v5-contact-info-item:last-child {
    border-bottom: none;
}

.v5-contact-info-item strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 12px;
}

.v5-contact-info-item .v5-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
}

.v5-contact-info-item a {
    color: var(--v5-accent);
    transition: color var(--v5-transition);
}

.v5-contact-info-item a:hover {
    color: #fff;
}

.v5-contact-info-icon {
    margin-right: 8px;
    font-size: 16px;
}

.v5-contact-response {
    /* uses v5-contact-info-item styles */
}

.v5-contact-response p {
    font-size: 13px;
    color: #94A3B8;
    font-style: italic;
    margin: 0;
}


/* -------------------------------------------------------
   FOOTER
   ------------------------------------------------------- */
.v5-footer {
    background: #0B1120;
    color: #94A3B8;
    padding: 72px 0 0;
}

.v5-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v5-footer-col {
    /* container */
}

.v5-footer-col--brand {
    /* wider first column — already handled by grid */
}

.v5-footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

.v5-footer-tagline {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    max-width: 320px;
}

.v5-footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #CBD5E1;
    margin-bottom: 16px;
}

.v5-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v5-footer-links li {
    padding: 4px 0;
}

.v5-footer-links a {
    color: #64748B;
    font-size: 14px;
    transition: color var(--v5-transition);
}

.v5-footer-links a:hover {
    color: #fff;
}

.v5-footer-links span {
    color: #64748B;
    font-size: 14px;
}

.v5-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
}

.v5-footer-bottom p {
    margin: 0;
    color: #475569;
}

.v5-footer-legal {
    display: flex;
    gap: 20px;
}

.v5-footer-legal a {
    color: #475569;
    font-size: 13px;
    transition: color var(--v5-transition);
}

.v5-footer-legal a:hover {
    color: #94A3B8;
}


/* -------------------------------------------------------
   ANIMATIONS / KEYFRAMES
   ------------------------------------------------------- */
@keyframes v5-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes v5-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -------------------------------------------------------
   RESPONSIVE — 1024px (Tablet Landscape)
   ------------------------------------------------------- */
@media (max-width: 1024px) {
    .v5-hero-inner {
        grid-template-columns: 1fr;
    }

    .v5-what-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-visibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-scale-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-proof-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-proof-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-contact-layout {
        grid-template-columns: 1fr;
    }

    .v5-tp-layout {
        grid-template-columns: 1fr;
    }

    .v5-tp-inputs {
        border-right: none;
        border-bottom: 1px solid var(--v5-border);
    }

    .v5-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* -------------------------------------------------------
   RESPONSIVE — 768px (Tablet Portrait / Mobile)
   ------------------------------------------------------- */
@media (max-width: 768px) {
    .v5-nav-links {
        display: none;
    }

    .v5-nav-links.v5-nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        border-bottom: 1px solid var(--v5-border);
        box-shadow: var(--v5-shadow-lg);
        gap: 0;
        z-index: 49;
    }

    .v5-nav-links.v5-nav-open li {
        width: 100%;
    }

    .v5-nav-links.v5-nav-open li a {
        display: block;
        padding: 12px 16px;
    }

    .v5-nav-links.v5-nav-open li a::after {
        display: none;
    }

    .v5-nav-links.v5-nav-open .v5-nav-cta {
        display: block;
        text-align: center;
    }

    .v5-mobile-toggle {
        display: block;
    }

    .v5-hero h1 {
        font-size: 38px;
    }

    .v5-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .v5-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .v5-hero-actions {
        justify-content: center;
    }

    .v5-section {
        padding: 64px 0;
    }

    .v5-what,
    .v5-solutions,
    .v5-capabilities,
    .v5-map-playground,
    .v5-visibility,
    .v5-scale,
    .v5-integrations,
    .v5-contact {
        padding: 64px 0;
    }

    .v5-section-header h2 {
        font-size: 30px;
    }

    .v5-what-grid {
        grid-template-columns: 1fr;
    }

    .v5-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .v5-visibility-grid {
        grid-template-columns: 1fr;
    }

    .v5-proof-testimonials {
        grid-template-columns: 1fr;
    }

    .v5-proof-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-scale-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-scale-diagram-row {
        flex-direction: column;
    }

    .v5-scale-connector {
        transform: rotate(90deg);
    }

    .v5-trust-logos {
        gap: 24px;
    }

    .v5-trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-tabs-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .v5-topbar-links {
        display: none;
    }

    .v5-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------------------------
   RESPONSIVE — 480px (Small Mobile)
   ------------------------------------------------------- */
@media (max-width: 480px) {
    .v5-hero h1 {
        font-size: 30px;
    }

    .v5-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .v5-hero-demo {
        padding: 16px;
    }

    .v5-contact-row,
    .v5-contact-row--3col {
        grid-template-columns: 1fr;
    }

    .v5-trust-stats {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------------------------
   Plugin generator icon override (V5-only)
   Adds an "appearance" icon distinct from the pin/color icon
   used by the Pin Style accordion item.
   ------------------------------------------------------- */
#yatmo-plugin-generator .pg-accIcon--appearance {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z'/></svg>");
}
