*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6F2E;
    --crimson: #8B1A2E;
    --crimson-light: #C23050;
    --night: #080A0E;
    --night-2: #0F1218;
    --night-3: #161B24;
    --night-4: #1E2535;
    --slate: #2C3547;
    --text-primary: #F5F0E8;
    --text-muted: #9DA8B8;
    --border: rgba(201, 168, 76, 0.18);
    --border-hover: rgba(201, 168, 76, 0.45);
    --glow: 0 0 40px rgba(201, 168, 76, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--night);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* LANG TOGGLE */
.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-btn {
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
}

.lang-btn .flag {
    font-size: 14px;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
}

.lang-btn:not(.active):hover {
    color: var(--gold);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(8, 10, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--crimson));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 0;
}

.logo-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 15% 80%, rgba(139, 26, 46, 0.25) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 55%);
}

.vinyl {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    animation: spin 30s linear infinite;
    opacity: 0.18;
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--crimson-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease 0.25s both;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeSlideUp 0.8s ease 0.35s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.45s both;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

/* STATS BAR */
.stats-bar {
    background: var(--night-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--gold);
    letter-spacing: 0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* SECTIONS */
section {
    padding: 100px 48px;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-body {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.75;
}

/* PLATFORM */
.platform {
    background: var(--night-2);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.fi-gold {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.fi-red {
    background: rgba(139, 26, 46, 0.2);
    border: 1px solid rgba(194, 48, 80, 0.25);
}

.fi-blue {
    background: rgba(56, 96, 180, 0.15);
    border: 1px solid rgba(56, 96, 180, 0.3);
}

.feature-text h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DASHBOARD */
.dashboard-preview {
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.5);
}

.dash-header {
    background: var(--night-4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

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

.dash-dot.r {
    background: #FF5F57;
}

.dash-dot.y {
    background: #FEBC2E;
}

.dash-dot.g {
    background: #28C840;
}

.dash-title-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 8px;
}

.dash-body {
    padding: 20px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.dash-metric {
    background: var(--night-4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
}

.dash-metric-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.dash-metric-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
}

.dash-metric-change {
    font-size: 10px;
    color: #4ADE80;
    margin-top: 4px;
}

.dash-chart-area {
    background: var(--night-4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    height: 120px;
    overflow: hidden;
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
    padding-bottom: 4px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
}

.dash-territories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.territory-row {
    display: flex;
    align-items: center;
    background: var(--night-4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    gap: 8px;
}

.territory-name {
    font-size: 12px;
    color: var(--text-muted);
    flex: 1;
}

.territory-rev {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--night-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), var(--night-2));
}

.service-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 24px;
}

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.service-link::after {
    content: '→';
    transition: transform 0.2s;
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* AI SECTION */
.ai-section {
    background: var(--night-2);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ai-cap {
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.2s;
}

.ai-cap:hover {
    border-color: var(--border-hover);
}

.ai-cap-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.ai-cap h5 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.ai-cap p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* TERRITORIES */
.territories-map-wrap {
    margin-top: 60px;
    background: var(--night-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.territories-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.region-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.region-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.region-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold);
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.platform-pill {
    background: var(--night-4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--night-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.07) 0%, var(--night-2) 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-fill {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
}

.btn-fill:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    transform: translateY(-1px);
}

/* CHAT */
.ai-demo-section {
    background: var(--night-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ai-demo-wrap {
    max-width: 900px;
    margin: 60px auto 0;
}

.ai-chat-window {
    background: var(--night-4);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), var(--glow);
}

.chat-header {
    background: var(--night-2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.ai-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--crimson));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ai-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ai-info p {
    font-size: 11px;
    color: var(--gold);
}

.ai-online {
    margin-left: auto;
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.chat-messages {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 420px;
    overflow-y: auto;
}

.chat-msg {
    display: flex;
    gap: 12px;
    max-width: 85%;
}

.chat-msg.user {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.msg-avatar.ai {
    background: linear-gradient(135deg, var(--gold), var(--crimson));
}

.msg-avatar.user {
    background: var(--slate);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.msg-bubble {
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.chat-msg.user .msg-bubble {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--text-primary);
}

.msg-hi {
    color: var(--gold);
    font-weight: 600;
}

.chat-input-area {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: var(--night-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--border-hover);
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-send {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s;
    color: var(--night);
    font-size: 18px;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--night-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    background: var(--night-2);
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: var(--night);
    border-top: 1px solid var(--border);
    padding: 60px 48px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--night-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 24px;
    }

    .platform-grid,
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .stats-bar {
        padding: 24px;
        gap: 32px;
    }

    .vinyl {
        display: none;
    }
}
