/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--orange-500);
}

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

.logo-accent {
    color: var(--orange-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--orange-500);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-600);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--orange-300);
    color: var(--orange-600);
    background: var(--orange-50);
}

.btn-outline {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--orange-400);
    color: var(--orange-600);
    background: var(--orange-50);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

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

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 50%, #fef3e2 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--orange-400);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-300);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--orange-500);
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

.hero-badge {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-700);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange-500);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--slate-400);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* Hero Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-mockup {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-100);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-200);
}

.mockup-dots span:first-child { background: #ff6b6b; }
.mockup-dots span:nth-child(2) { background: #feca57; }
.mockup-dots span:nth-child(3) { background: #48dbfb; }

.mockup-url {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-family: monospace;
}

.mockup-body {
    display: flex;
    min-height: 260px;
}

.mockup-sidebar {
    width: 50px;
    background: var(--slate-800);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-nav-item {
    height: 28px;
    border-radius: 6px;
    background: var(--slate-700);
    transition: background 0.3s;
}

.mockup-nav-item.active {
    background: var(--orange-500);
}

.mockup-content {
    flex: 1;
    padding: 16px;
}

.mockup-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mockup-title {
    width: 120px;
    height: 14px;
    background: var(--slate-200);
    border-radius: 4px;
}

.mockup-btn {
    width: 80px;
    height: 24px;
    background: var(--orange-400);
    border-radius: 6px;
}

.mockup-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-row {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    background: var(--slate-50);
    border-radius: 6px;
}

.mockup-label {
    width: 60px;
    height: 8px;
    background: var(--slate-200);
    border-radius: 3px;
    margin-left: 8px;
    flex-shrink: 0;
}

.mockup-bar {
    position: absolute;
    top: 6px;
    bottom: 6px;
    border-radius: 4px;
    opacity: 0.85;
}

.bar-blue { background: #60a5fa; }
.bar-orange { background: var(--orange-400); }
.bar-purple { background: #a78bfa; }
.bar-green { background: #34d399; }

/* ===== Section Shared ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-700);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--slate-500);
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-100);
    background: var(--white);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--orange-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
    background: linear-gradient(135deg, var(--orange-50), #fff9f0);
    border-color: var(--orange-200);
}

.feature-highlight .feature-icon {
    grid-row: 1 / 3;
}

.feature-highlight .feature-list {
    grid-column: 2;
}

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

.icon-orange { background: var(--orange-100); color: var(--orange-600); }
.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-green { background: #d1fae5; color: #059669; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-red { background: #fce7f3; color: #db2777; }
.icon-teal { background: #ccfbf1; color: #0d9488; }

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-top: 16px;
}

.feature-list li {
    padding: 6px 0;
    color: var(--slate-600);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-500);
    font-weight: 700;
}

/* ===== Mobile Section ===== */
.mobile-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--slate-900), #1a2332);
    color: var(--white);
}

.mobile-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mobile-section .section-badge {
    background: rgba(249,115,22,0.15);
    color: var(--orange-300);
}

.mobile-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mobile-subtitle {
    font-size: 1.1rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 40px;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-feature {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.mobile-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.mobile-feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(249,115,22,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.mobile-feature p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.5;
}

/* Phone Mockup */
.mobile-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    background: var(--slate-800);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--slate-900);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
}

.phone-header {
    background: var(--slate-900);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.phone-card {
    padding: 20px;
    border-bottom: 1px solid var(--slate-100);
}

.phone-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-900);
}

.phone-card-plate {
    font-family: monospace;
    font-weight: 700;
    color: var(--slate-500);
    font-size: 0.85rem;
    margin-top: 4px;
}

.phone-card-status {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-confirmed {
    color: #22c55e;
}

.phone-fields {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-field-label {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.phone-field-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-800);
}

.phone-btn {
    margin: 16px 20px 20px;
    background: var(--orange-500);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===== Process ===== */
.process {
    padding: 100px 0;
    background: var(--slate-50);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--orange-200);
    margin-top: 46px;
    flex-shrink: 0;
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    background: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.pricing-popular {
    border: 2px solid var(--orange-400);
    box-shadow: var(--shadow-xl);
    padding: 48px 32px 36px;
    background: linear-gradient(180deg, var(--orange-50), var(--white) 30%);
}

.pricing-popular:hover {
    box-shadow: 0 20px 40px rgba(249,115,22,0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-top: 4px;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-100);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
}

.price-amount-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-top: 6px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.disabled {
    color: var(--slate-400);
}

.check {
    color: var(--orange-500);
    font-weight: 700;
    font-size: 1.1rem;
}

.cross {
    color: var(--slate-300);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange-50), #fef9f0, var(--orange-50));
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta > .container > .cta-content > p:first-of-type {
    font-size: 1.15rem;
    color: var(--slate-500);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
    outline: none;
}

.form-input:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}

.form-wide {
    flex: 2;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--slate-400);
    margin-top: 16px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 0;
    background: var(--slate-900);
    color: var(--slate-400);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding: 20px 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .feature-highlight {
        grid-column: 1 / -1;
    }

    .mobile-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mobile-visual {
        order: -1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .mobile-section h2 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
}
