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

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --charcoal: #0B0B0D;
    --soft-black: #1A1A1E;
    --white: #FFFFFF;
    --silver: #D4D4D4;
    --gunmetal: #8B8B8B;
    --electric-blue: #38BDF8;
    --electric-blue-rgb: 56, 189, 248;
    --violet: #A78BFA;

    --z-cursor: 9999;
    --z-menu: 1000;
    --z-nav: 999;
    --z-overlay: 900;
    --z-content: 1;

    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    --radius-sm: 6px;
    --radius-lg: 12px;

    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.35);

    --max-width-desktop: 1400px;
    --max-width-content: 800px;
    --max-width-tablet: 1024px;
    --max-width-mobile: 90vw;

    --gradient-accent: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(167, 139, 250, 0.1));
    --gradient-scroll: linear-gradient(180deg, var(--electric-blue), transparent);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--soft-black) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

p {
    font-size: clamp(1rem, 1.05vw, 1.2rem);
    line-height: 1.7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--max-width-desktop);
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(var(--space-l) * 1.5);
}

/* ===== CUSTOM CURSOR ===== */
.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: difference;
}

.cursor-hidden {
    opacity: 0;
    pointer-events: none;
}

.cursor {
    background: var(--white);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--electric-blue);
    background: transparent;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--violet));
    z-index: var(--z-menu);
    transform-origin: left;
    transform: scaleX(0);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-nav);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-s) calc(var(--space-l) * 1.5);
}

.logo {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    color: var(--white);
}

.logo-sub {
    color: var(--gunmetal);
    font-size: 18px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.nav-link {
    color: var(--gunmetal);
    text-decoration: none;
    padding: var(--space-xs) var(--space-m);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.cta-link {
    background: var(--electric-blue);
    color: var(--black);
    font-weight: 600;
}

.nav-link.cta-link:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: var(--z-menu);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-l);
}

.mobile-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switcher {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lang-switcher {
        width: 100%;
        margin-top: var(--space-s);
    }
}

.mobile-links a:hover {
    color: var(--electric-blue);
}

.mobile-cta {
    background: var(--electric-blue);
    color: var(--black) !important;
    padding: var(--space-s) var(--space-l);
    border-radius: var(--radius-lg);
    margin-top: var(--space-m);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--space-xl) * 1.5);
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--space-s);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-m);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: var(--space-l);
}

.hero-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.75rem, 7vw, 5.625rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-m);
    letter-spacing: -3px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--silver);
    margin-bottom: calc(var(--space-l) * 1.5);
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    font-size: 0.95rem;
    color: var(--silver);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: var(--space-m);
    justify-content: center;
    margin-bottom: calc(var(--space-xxl) * 1.25);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gunmetal);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: var(--gradient-scroll);
    animation: scroll-fade 2s infinite;
}

@keyframes scroll-fade {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--space-s) var(--space-l);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.btn.large {
    padding: calc(var(--space-s) * 1.3) calc(var(--space-l) * 1.25);
    font-size: 18px;
}

.btn.full-width {
    width: 100%;
    text-align: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: calc(var(--space-xxl) * 1.5) 0;
    position: relative;
}

.section-header {
    margin-bottom: calc(var(--space-xl) * 1.25);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-s);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.5);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--electric-blue);
    margin-bottom: var(--space-m);
}

.section-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -2px;
    margin-bottom: var(--space-m);
}

.section-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: var(--silver);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.credibility-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    padding: 5rem 0;
}

.credibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.credibility-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credibility-stat .stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--electric-blue);
    font-family: 'Inter Tight', sans-serif;
}

.credibility-stat .stat-label {
    font-size: 1rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.credibility-story {
    max-width: 800px;
    margin: 0 auto;
}

.credibility-story h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.credibility-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: 1.25rem;
}

.credibility-story p strong {
    color: var(--white);
}

.former-work-section {
    background: var(--soft-black);
    padding: 5rem 0;
}

.section-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.former-clients-note {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--electric-blue);
    padding: 1.5rem 2rem;
    margin: 2rem auto 3rem;
    max-width: 700px;
    font-size: 0.95rem;
    color: var(--silver);
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.highlight-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: var(--silver);
    line-height: 1.6;
}

/* ===== DIFFERENCE SECTION ===== */
.difference-text p {
    color: var(--silver);
    margin-bottom: var(--space-m);
    line-height: 1.7;
}

.difference-text p.large {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.4;
}

.difference-text p.highlight {
    color: var(--white);
    font-weight: 600;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.agent-list {
    margin: var(--space-l) 0;
    padding-left: var(--space-s);
}

.agent-item {
    padding: var(--space-xs) 0;
    font-size: 1rem;
    color: var(--gunmetal);
    position: relative;
}

.agent-item::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--electric-blue);
}

.difference-principles {
    display: flex;
    gap: var(--space-m);
    margin: var(--space-l) 0;
}

.principle {
    padding: var(--space-xs) var(--space-m);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.system-content {
    max-width: 680px;
}


.system-meta {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    font-size: 0.9rem;
    color: var(--gunmetal);
    margin-top: var(--space-xs);
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--electric-blue);
    font-weight: 600;
}

/* ============= Workflow Zig-Zag ============= */
.workflow-zigzag {
    width: 100%;
    padding: calc(var(--space-xxl) * 2) 0;
    position: relative;
}

.workflow-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
}

.workflow-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.workflow-item.left {
    flex-direction: row;
}

.workflow-item.right {
    flex-direction: row-reverse;
}

.workflow-card {
    width: min(480px, 90%);
    padding: var(--space-l);
    border-radius: 28px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(12px);
}

/* Glass cards */
.workflow-card.glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Solid cards */
.workflow-card.solid {
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-s);
    line-height: 1.3;
}

.workflow-card p {
    color: var(--silver);
    line-height: 1.7;
    margin: 0;
}

/* Dots and line */
.connector {
    position: relative;
    width: 40px;
    height: 100%;
}

.connector::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--electric-blue);
}

.connector::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.12);
}

/* Last item has no connector line */
.workflow-item.last .connector {
    display: none;
}

.why-works {
    padding-top: var(--space-xxl);
}

.why-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.why-works .workflow-card {
    width: 100%;
    min-height: 100%;
}

/* Mobile Stack */
@media (max-width: 780px) {
    .workflow-item,
    .workflow-item.right,
    .workflow-item.left {
        flex-direction: column;
    }

    .connector {
        height: 40px;
        width: 20px;
    }

    .why-works-grid {
        grid-template-columns: 1fr;
    }
}
.credentials {
    background: rgba(255, 255, 255, 0.02);
}

.credentials-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.credentials-content p {
    color: var(--silver);
    margin-bottom: 30px;
    line-height: 1.8;
}

.credentials-content p.large {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    color: var(--white);
    line-height: 1.5;
}

/* ============= Case Study Pages ============= */
.case-page {
    background: var(--charcoal);
    color: var(--white);
}

.case-hero {
    padding: calc(var(--space-xxl) * 1.5) 0 var(--space-xxl);
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(10, 10, 14, 0.7));
}

.case-breadcrumb {
    margin-bottom: var(--space-m);
}

.breadcrumb-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.case-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.case-hero-text .case-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: var(--space-s);
}

.case-subtitle {
    color: var(--silver);
    margin-bottom: var(--space-m);
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-m);
}

.meta-item {
    padding: var(--space-m);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-label {
    display: block;
    color: var(--gunmetal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
}

.meta-value {
    font-weight: 700;
    color: var(--white);
}

.case-hero-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-section {
    padding: var(--space-xxl) 0;
}

.case-section-header {
    margin-bottom: var(--space-l);
}

.case-section .section-title {
    margin-top: var(--space-xs);
}

.case-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-m);
}

.overview-card {
    padding: var(--space-l);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.overview-card h3 {
    margin-bottom: var(--space-s);
    font-size: 1.1rem;
}

.case-text-block {
    display: grid;
    gap: var(--space-m);
    color: var(--silver);
    line-height: 1.7;
}

.case-text-block.two-col {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-m);
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-m);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-s);
}

.deliverables-list li {
    padding: var(--space-s) var(--space-m);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
    .case-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .case-hero {
        padding: var(--space-xxl) 0 var(--space-xl);
    }

    .overview-card,
    .meta-item {
        padding: var(--space-m);
    }
}

.credential-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Inter Tight', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--electric-blue);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gunmetal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PACKAGE GRID ===== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-l);
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--electric-blue);
}

.package-icon svg {
    width: 100%;
    height: 100%;
}

.package-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-m);
    color: var(--white);
}

.package-card ul {
    list-style: none;
}

.package-card ul li {
    padding: 10px 0;
    color: var(--silver);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-card ul li:last-child {
    border-bottom: none;
}

/* ===== WHY GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-l);
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-number {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--electric-blue);
    margin-bottom: var(--space-m);
    font-weight: 700;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.why-card p {
    color: var(--silver);
    line-height: 1.7;
}

/* ===== CASE STUDIES ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.case-image {
    height: 300px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: var(--space-m);
}

.case-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.case-type {
    font-size: 14px;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-content p {
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.case-meta {
    font-size: 13px;
    color: var(--gunmetal);
    font-weight: 600;
}

.case-study-card {
    background: var(--soft-black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.case-badge.new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--electric-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.case-study-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
}

.case-study-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(var(--electric-blue-rgb), 0.2);
    color: var(--electric-blue);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.case-study-content p {
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-deliverables {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.case-deliverables li {
    color: var(--silver);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.case-result {
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--electric-blue);
    margin-top: 1.5rem;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-m);
    margin: 2rem 0 1rem;
}

.case-stats .stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
}

.case-stats .stat-number {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.case-stats .stat-label {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.4;
}

.blog-preview {
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--electric-blue);
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
}

.deliverable-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.deliverable-icon {
    width: 24px;
    height: 24px;
    color: var(--electric-blue);
    flex-shrink: 0;
}

.blog-preview-content {
    padding-left: 2.5rem;
}

.preview-meta {
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-features {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.preview-features li {
    color: var(--silver);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.preview-sample {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.preview-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--electric-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.preview-sample blockquote {
    margin: 0;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    border-left: none;
}

.delivery-note {
    font-size: 0.9rem;
    color: var(--silver);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== PRICING INTRO SECTION ===== */
.pricing-intro-section {
    background: linear-gradient(135deg, var(--soft-black) 0%, var(--charcoal) 100%);
    padding: 5rem 0;
}

.pricing-intro-section .section-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.price-card-single {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.price-header {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #0080ff 100%);
    padding: 2.5rem 2rem;
    text-align: center;
}

.price-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-main {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    line-height: 1;
}

.price-conversions {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
    line-height: 1.6;
}

.price-body {
    padding: 2.5rem 2rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-ctas .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.pricing-location {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--silver);
    font-weight: 500;
}

.price-note {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

.pricing-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-top: 1rem;
}

.pricing-footnote {
    margin-top: 1rem;
    color: var(--silver);
    font-weight: 600;
}

.pricing-note-section {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--silver);
}

.pricing-note-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pricing-note-section p {
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

.pricing-note-section .cta-text {
    font-weight: 700;
    color: var(--white);
}

/* ===== IDEAL CLIENTS SECTION ===== */
.ideal-clients-section {
    background: var(--black);
    padding: 5rem 0;
}

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-type-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-type-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--electric-blue);
    transform: translateY(-4px);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.client-type-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-type-card p {
    color: var(--silver);
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .price-ctas {
        flex-direction: column;
    }
    
    .price-ctas .btn {
        width: 100%;
    }
    
    .client-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero pricing badge */
.pricing-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto;
}

.pricing-label {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 700;
}

.pricing-main {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--silver);
    text-align: center;
}

/* Hero pricing badge mobile */
@media (max-width: 768px) {
    .pricing-badge {
        padding: 0.75rem 1rem;
        margin: 1rem auto;
    }
    .pricing-main {
        font-size: 1.8rem;
    }
    .pricing-label,
    .pricing-note {
        font-size: 0.8rem;
    }
}

/* Regional Offer Styling */
.regional-offer {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #0080ff 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.regional-offer h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.big-price {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    line-height: 1;
    margin: 1rem 0;
}

.price-conversion {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.offer-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.regional-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.regional-ctas .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .regional-ctas {
        flex-direction: column;
    }
    
    .regional-ctas .btn {
        width: 100%;
    }
}

.lombok-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-l);
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content:last-child {
    grid-column: 3;
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--electric-blue);
    border-radius: 50%;
    border: 4px solid var(--black);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.timeline-content {
    padding: var(--space-m);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    box-shadow: var(--shadow-hover);
}

.timeline-day {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--electric-blue);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-content p {
    color: var(--silver);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CONSULTATION ===== */
.consultation-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: calc(var(--space-xl) * 1.5);
    align-items: center;
}

.consultation-content p {
    color: var(--silver);
    margin-bottom: var(--space-m);
    line-height: 1.8;
}

.consultation-content p.large {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    color: var(--white);
    line-height: 1.5;
}

.consultation-value {
    display: flex;
    align-items: center;
    gap: var(--space-l);
    padding: var(--space-l);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 40px 0;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-label {
    font-size: 13px;
    color: var(--gunmetal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.value-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
}

.value-item:last-child .value-amount {
    color: var(--electric-blue);
}

.value-arrow {
    font-size: 32px;
    color: var(--electric-blue);
}

.consultation-note {
    font-size: 14px !important;
    color: var(--gunmetal) !important;
    font-style: italic;
}

.document-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    height: 500px;
    box-shadow: var(--shadow-card);
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-icon {
    font-size: 40px;
}

.doc-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doc-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    animation: pulse 2s infinite;
}

.doc-line.short {
    width: 60%;
}

.doc-line.medium {
    width: 80%;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: calc(var(--space-l) * 1.2);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--electric-blue);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: var(--shadow-hover);
}

.pricing-card-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--electric-blue);
    color: var(--black);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-m);
    color: var(--white);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: var(--space-xs);
}

.currency {
    font-size: 32px;
    color: var(--silver);
}

.amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
}

.period {
    font-size: 18px;
    color: var(--gunmetal);
}

.pricing-monthly {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
}

.pricing-monthly .amount {
    font-size: 48px;
}

.pricing-subtitle {
    color: var(--silver);
    margin-bottom: 30px;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin: var(--space-l) 0;
}

.pricing-features li {
    padding: var(--space-xs) 0;
    color: var(--silver);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 30px;
}

.pricing-card .btn {
    margin-top: var(--space-m);
}

/* Lite Pricing */
.pricing-lite {
    padding-top: var(--space-xxl);
}

.pricing-lite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.pricing-lite-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.pricing-lite-card ul {
    margin: var(--space-m) 0;
    padding-left: var(--space-m);
    color: var(--silver);
    line-height: 1.6;
}

.pricing-lite-card li + li {
    margin-top: var(--space-xs);
}

.pricing-lite-card p {
    color: var(--silver);
}

.pricing-lite-card.featured {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.2);
}

.pricing-lite-card .btn {
    margin-top: auto;
}

.pricing-lite {
    padding-top: var(--space-xxl);
}

.pricing-lite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.pricing-lite-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.pricing-lite-card ul {
    margin: var(--space-m) 0;
    padding-left: var(--space-m);
    color: var(--silver);
    line-height: 1.6;
}

.pricing-lite-card li + li {
    margin-top: var(--space-xs);
}

.pricing-lite-card p {
    color: var(--silver);
}

.pricing-lite-card.featured {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.2);
}

.pricing-lite-card .btn {
    margin-top: auto;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 900;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-m);
    font-size: 13px;
    color: var(--gunmetal);
}

.add-ons {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.add-ons h4 {
    font-size: 24px;
    margin-bottom: var(--space-m);
    color: var(--white);
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-s);
}

.add-on {
    padding: var(--space-xs) var(--space-m);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--silver);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.add-on:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-m);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

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

.faq-question {
    padding: var(--space-m);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    text-align: left;
    font: inherit;
    transition: color 0.3s ease;
}

.faq-question:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 4px;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    font-size: 24px;
    color: var(--electric-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-m) var(--space-m);
    color: var(--silver);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--gradient-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.final-cta-content > p {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--silver);
    margin-bottom: 50px;
}

.final-cta-buttons {
    display: flex;
    gap: var(--space-m);
    justify-content: center;
    margin-bottom: 40px;
}

.final-note {
    font-size: 14px;
    color: var(--gunmetal);
}

.final-note strong {
    color: var(--electric-blue);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: calc(var(--space-xl) * 1.5) 0 var(--space-l);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: calc(var(--space-xl) * 1.5);
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gunmetal);
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-m);
}

.footer-col a {
    display: block;
    color: var(--gunmetal);
    text-decoration: none;
    margin-bottom: var(--space-xs);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--electric-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: var(--silver);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-legal {
    display: inline-flex;
    gap: var(--space-xs);
    align-items: center;
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Landing pages */
.landing-page .hero {
    padding-top: calc(var(--space-xxl) * 1.2);
}

.future-feature {
    margin-top: var(--space-m);
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

.voice-card {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    padding: var(--space-m);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.06), rgba(167, 139, 250, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.voice-icon svg {
    width: 32px;
    height: 32px;
    color: var(--electric-blue);
}

.voice-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.voice-langs {
    color: var(--silver);
}

.footer-actions {
    display: flex;
    align-items: flex-start;
}

.contact-form-wrapper {
    margin-top: var(--space-l);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-l);
    box-shadow: var(--shadow-card);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-m);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 2px;
}

/* Service page helpers */
.service-hero .hero-note { margin-top: 0.75rem; color: var(--text-muted); }
.lead-text { max-width: 900px; margin: 0 auto; text-align: center; color: var(--text-muted); }
.pill-tag { display: inline-block; padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--bg-soft); color: var(--text); font-weight: 600; margin-bottom: 0.75rem; }
.feature-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.feature-list.two-col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); display: grid; gap: 1rem 1.5rem; }
.pricing-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1rem; }
.price-card-simple { border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.price-card-simple.highlight { border-color: var(--accent); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.price-card-simple .section-tag { margin-bottom: 0.25rem; }
.plain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.volume-note { margin-top: 1rem; padding: 1rem; border: 1px dashed var(--border); border-radius: 10px; background: var(--bg-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.chips span { background: var(--bg-soft); padding: 0.4rem 0.75rem; border-radius: 999px; font-size: 0.95rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.service-card { border: 1px solid var(--border); border-radius: 10px; padding: 1rem; background: #fff; }
.three-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1rem 0; }
.mini-card { padding: 1rem; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.comparison-table { width: 100%; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr 1.2fr; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); }
.comparison-row.header { background: var(--bg-soft); font-weight: 700; }
.comparison-row.highlight { background: #f7fbff; border-left: 3px solid var(--accent); }
.comparison-row:last-child { border-bottom: none; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; align-items: start; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; padding: 1rem; background: #fff; }
.text-link { color: var(--accent); font-weight: 600; }
.small { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }
.emphasis { font-weight: 600; }
.alt { background: #fafbfd; }
.badge-inline { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.65rem; border-radius: 999px; background: var(--bg-soft); font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }

@media (max-width: 640px) {
    .comparison-row { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); font-size: 0.9rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; text-align: center; }
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: var(--space-s) var(--space-m);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: var(--z-menu);
}

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

.toast.error {
    border-color: #f87171;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid var(--electric-blue);
    display: grid;
    place-items: center;
    color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: var(--z-menu);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(56, 189, 248, 0.5);
}

.help-center {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-l);
    z-index: 1200;
}

.help-center.active {
    display: flex;
}

.help-center-panel {
    width: min(1100px, 95vw);
    max-height: 85vh;
    overflow: auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(10,10,14,0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: var(--space-l);
    box-shadow: var(--shadow-hover);
}

.help-center-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-m);
    margin-bottom: var(--space-m);
}

.help-search {
    margin-bottom: var(--space-m);
}

.help-search input {
    width: 100%;
    padding: var(--space-s) var(--space-m);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font: inherit;
}

.help-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: var(--space-xs) var(--space-m);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.help-center-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
}

.help-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-m);
}

.help-block h4 {
    margin-bottom: var(--space-s);
}

.help-item + .help-item {
    margin-top: var(--space-s);
}

.help-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: var(--space-s);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-question:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.help-icon {
    margin-left: var(--space-s);
    color: var(--electric-blue);
}

.help-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--silver);
    padding: 0 var(--space-s);
}

.help-item.open .help-answer {
    max-height: 200px;
    margin-top: var(--space-xs);
}

.help-item.open .help-icon {
    transform: rotate(45deg);
}

.help-empty {
    color: var(--silver);
    font-size: 0.95rem;
}

.region-banner {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin: 1rem auto var(--space-l);
    padding-left: 1rem;
    padding-right: 1rem;
}

.region-main-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0 auto var(--space-xl);
    border-radius: 12px;
    background: var(--electric-blue);
    color: var(--black);
    font-weight: 600;
    text-align: center;
}

.region-banner {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin: 1rem auto var(--space-l);
}

.region-main-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0 auto var(--space-xl);
    border-radius: 12px;
    background: var(--electric-blue);
    color: var(--black);
    font-weight: 600;
    text-align: center;
}

.help-actions {
    display: grid;
    gap: var(--space-m);
    margin-top: var(--space-m);
}

.help-cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-m);
}

.help-note {
    color: var(--silver);
    margin-top: var(--space-xs);
}

.voice-bridge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-m);
}

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

.case-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-m);
    margin: var(--space-l) 0;
    flex-wrap: wrap;
}

.case-nav a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.case-nav-cta {
    margin-top: var(--space-m);
    text-align: center;
}

.currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--silver);
    font-size: 14px;
}

.footer-meta {
    display: flex;
    gap: var(--space-s);
    align-items: center;
    justify-content: center;
    margin-top: var(--space-s);
    color: var(--silver);
}

.footer-wa {
    color: var(--electric-blue);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container {
        max-width: var(--max-width-tablet);
        padding: 0 var(--space-l);
    }
    
    .section-title {
        font-size: 50px;
    }
    
    .hero-title {
        font-size: 70px;
    }
    
    .package-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .system-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--space-s);
    }

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

    .help-center-list {
        grid-template-columns: 1fr;
    }

    .help-center-panel {
        max-height: 80vh;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .scroll-indicator {
        animation: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .container {
        max-width: var(--max-width-mobile);
        padding: 0 var(--space-s);
    }
    
    .nav-container {
        padding: 20px 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .difference-content,
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    
    .credential-stats,
    .package-grid,
    .why-grid,
    .cases-grid,
    .pricing-grid,
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    
    .final-cta-content h2 {
        font-size: 42px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .help-center-list {
        grid-template-columns: 1fr;
    }
    
    .help-center-panel {
        padding: var(--space-m);
    }
    
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .pricing-lite-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
}

@media (max-width: 375px) {
}

    .stage-text p {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    .node-name {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
}
