/* ═══════════════════════════════════════════════
   SWADPOS — SHOWCASE PAGE STYLES v1.0
   Clean, Modern, High-Performance Aesthetic
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    /* Brand Guide Colors */
    --navy-900: #0a0e27;
    --navy-800: #0f1538;
    --navy-100: #c0cff0;
    --blue-500: #3b82f6;
    --swad-orange: #E8760A;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f1f5;
    --gray-200: #e2e4eb;
    --gray-400: #9ca1b3;
    --gray-500: #6b7280;

    /* Spacing */
    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 32px;
    --sp-xl: 48px;
    --sp-2xl: 64px;
    --sp-3xl: 120px;

    /* Shadows */
    --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.08);
    --shadow-lg: 0 8px 32px rgba(10, 14, 39, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 14, 39, 0.15);
    --shadow-glow: 0 0 40px rgba(232, 118, 10, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, blinkmacsystemfont, sans-serif;
}

html, body {
    background-color: var(--white);
    color: var(--navy-900);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    cursor: none; /* Hide default cursor to use Orange Dot */
}

/* ── Custom Orange Dot Cursor ── */
.custom-cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    background: var(--swad-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    box-shadow: 0 0 12px rgba(232, 118, 10, 0.4), 0 0 24px rgba(232, 118, 10, 0.2);
    mix-blend-mode: multiply; /* Looks premium on white */
}

.custom-cursor.cursor-hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--navy-900);
    mix-blend-mode: normal;
    opacity: 0.15;
}

@media (max-width: 1024px) {
    body { cursor: auto; } /* Revert on mobile */
    .custom-cursor { display: none; }
}

/* ──────────────────────────────────────────
   1. NAVIGATION
   ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: var(--sp-md) var(--sp-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
    .navbar {
        height: 64px;
        padding: 0 16px;
    }
}

.navbar-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    position: relative; /* For absolute centering of links */
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-mobile-btn {
    display: none;
}

.back-link,
.dropdown-trigger {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    text-decoration: none;
    padding: 8px 16px !important;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.back-link::after,
.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--navy-200);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.back-link:hover,
.dropdown-trigger:hover {
    background: rgba(10, 14, 39, 0.03);
}

.back-link:hover::after,
.dropdown-trigger:hover::after {
    width: 16px;
}

.back-link:hover {
    background: rgba(10, 14, 39, 0.03);
}

.back-link:hover::after {
    width: 16px;
}

.nav-cta {
    background: var(--navy-900);
    color: white !important;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(10, 14, 39, 0.1);
}

.nav-cta:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 14, 39, 0.15), 0 0 0 4px rgba(10, 14, 39, 0.05);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Premium Dropdown Design for Swad */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--swad-orange);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.dropdown-trigger:hover {
    background: rgba(10, 14, 39, 0.03);
    transform: translateY(-1px);
}

.dropdown-trigger:hover::after {
    width: 24px;
}

.dropdown-trigger svg {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
    color: var(--swad-orange);
    opacity: 1;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    min-width: 240px;
    border-radius: 20px;
    border: 1px solid rgba(10, 14, 39, 0.05);
    box-shadow: 0 20px 50px rgba(10, 14, 39, 0.1);
    opacity: 0;
    visibility: hidden;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex !important;
    flex-direction: column;
    padding: 12px 16px !important;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.dropdown-item:last-child { margin-bottom: 0; }

.dropdown-item:hover {
    background: rgba(255, 107, 0, 0.05);
}

.di-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-900);
    display: block;
    margin-bottom: 2px;
}

.di-desc {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 400;
}

.dropdown-item:hover .di-title {
    color: var(--swad-orange);
}

.nav-brand-serif {
    display: flex;
    align-items: center;
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 32px;
    color: #1A1208;
    text-decoration: none;
    letter-spacing: -1.5px;
}

@media (max-width: 768px) {
    .nav-brand-serif { font-size: 24px; letter-spacing: -1px; }
}

.nav-brand-serif span {
    color: var(--swad-orange);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--navy-900);
    transform: translateX(-4px);
}

/* ──────────────────────────────────────────
   2. HERO SECTION
   ────────────────────────────────────────── */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--sp-3xl) var(--sp-xl);
    background: radial-gradient(circle at top right, #fdf8f4 0%, var(--white) 60%);
    position: relative;
    overflow: hidden;
}

.hero-cloche {
    margin-bottom: var(--sp-2xl);
    animation: clocheBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(232, 118, 10, 0.15));
}

.hero h1 {
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -3px;
    max-width: 1000px;
    overflow-wrap: break-word;
}

.hero h1 span {
    color: var(--swad-orange);
}

.hero p {
    font-size: 20px;
    color: var(--gray-500);
    max-width: 600px;
    margin-top: var(--sp-lg);
}

.hero-stats {
    display: flex;
    gap: var(--sp-2xl);
    margin-top: var(--sp-3xl);
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--sp-lg);
        margin-top: var(--sp-xl);
        align-items: flex-start;
        text-align: left;
    }
}

.stat-card {
    text-align: left;
    padding-left: var(--sp-sm);
    border-left: 2px solid var(--gray-100);
}

@media (max-width: 768px) {
    .stat-card {
        border-left-color: var(--swad-orange);
        padding-left: 12px;
    }
}

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

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

/* ──────────────────────────────────────────
   3. "WOW" FACTORS GRID
   ────────────────────────────────────────── */
.wow-grid {
    padding: var(--sp-3xl) var(--sp-xl);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2xl);
}

.wow-card {
    padding: var(--sp-2xl);
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.wow-card.featured {
    grid-column: span 2;
    background: #fff8f1;
    border: none;
}

.featured-icon {
    background: white !important;
}

@media (max-width: 1024px) {
    .wow-card.featured {
        grid-column: span 1;
    }
}

.wow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 118, 10, 0.2);
}

.wow-icon {
    width: 64px;
    height: 64px;
    background: #fff8f1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-xl);
}

.wow-card h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: var(--sp-sm);
    letter-spacing: -1px;
}

.wow-card p {
    color: var(--gray-500);
    font-size: 18px;
}

/* ──────────────────────────────────────────
   4. MODULES SECTION (BENTO GRID)
   ────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-3xl);
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--swad-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--sp-xs);
    display: block;
}

.bento-grid {
    padding: 0 var(--sp-xl) var(--sp-3xl);
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: var(--sp-md);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
        padding-bottom: 60px;
    }
    
    .bento-large, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        padding: 32px 24px;
        min-height: 200px;
    }
}

.bento-item {
    background: var(--gray-50);
    border-radius: 24px;
    padding: var(--sp-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.bento-desc {
    color: var(--gray-500);
}

/* ──────────────────────────────────────────
   5. TECH STACK
   ────────────────────────────────────────── */
.tech-section {
    background: var(--navy-900);
    color: var(--white);
    padding: var(--sp-3xl) var(--sp-xl);
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-md);
    margin-top: var(--sp-2xl);
}

.tech-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-4px);
}

/* ──────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────── */
@keyframes clocheBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

.reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .wow-grid, .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .navbar { padding: var(--sp-md) var(--sp-lg); }
}

/* ──────────────────────────────────────────
   NAV DROPDOWN (v1.7.0)
   ────────────────────────────────────────── */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-trigger svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
    color: var(--swad-orange);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    padding: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    text-align: left;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex !important;
    flex-direction: column;
    padding: 12px 16px !important;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background: #fff8f1;
}

.di-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    display: block;
}

.di-desc {
    font-size: 12px;
    color: var(--gray-400);
    display: block;
}

.dropdown-item:hover .di-title {
    color: var(--swad-orange);
}

/* ──────────────────────────────────────────
   FEATURE SHOWCASE (v1.8.0)
   ────────────────────────────────────────── */
.feature-showcase {
    padding: var(--sp-3xl) var(--sp-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3xl);
    margin-bottom: var(--sp-3xl);
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1.5;
}

.browser-frame {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame:hover {
    transform: scale(1.02);
}

.browser-header {
    height: 32px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-frame img {
    width: 100%;
    display: block;
    height: auto;
    margin-top: -30px; /* Soft-crop the Mac menu bar */
}

.feature-text h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: var(--sp-md);
    line-height: 1.1;
}

.feature-text p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: var(--sp-lg);
}

.feature-steps {
    list-style: none;
    margin-top: var(--sp-lg);
}

.feature-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--navy-900);
    font-weight: 500;
}

.feature-step svg {
    color: var(--swad-orange);
    flex-shrink: 0;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .feature-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-row:nth-child(even) {
        flex-direction: column !important; /* Force same order on mobile */
    }

    .feature-text h2 { 
        font-size: 32px; 
    }

    .feature-text p {
        font-size: 16px;
    }
}
/* ──────────────────────────────────────────
   6. FOOTER (v1.9.0)
   ────────────────────────────────────────── */
.footer {
    padding-top: var(--sp-2xl);
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-xl);
    padding: var(--sp-2xl) var(--sp-xl);
}

.footer-brand .nav-brand-serif {
    margin-bottom: 24px;
    display: inline-block;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 15px;
    max-width: 320px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--navy-900);
}

.social-link:hover {
    background: #fff8f1;
    border-color: var(--swad-orange);
    color: var(--swad-orange);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding: 24px var(--sp-xl);
    border-top: 1px solid var(--gray-50);
}

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

/* ──────────────────────────────────────────
   MOBILE TWEAKS
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --sp-3xl: 64px; /* Reduce massive section gaps */
        --sp-2xl: 48px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
        padding: var(--sp-2xl) var(--sp-lg);
    }
    
    .navbar {
        padding: 12px 20px;
    }

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

    .hero-cloche svg {
        width: 72px;
        height: 72px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 17px;
    }

    .feature-text h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .wow-grid {
        padding: var(--sp-2xl) var(--sp-lg);
        gap: var(--sp-md);
    }

    .wow-card {
        padding: var(--sp-xl) var(--sp-md);
    }

    .wow-card h3 {
        font-size: 26px;
    }

    .section-header {
        margin-bottom: var(--sp-xl);
        padding: 0 20px;
    }

    .bento-grid {
        padding: 0 20px var(--sp-2xl);
        gap: 16px;
    }

    .tech-section {
        padding: var(--sp-2xl) 20px;
    }

    .tech-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Mobile Menu Implementation for Swad */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

    .nav-mobile-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        cursor: pointer;
        z-index: 1002;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-mobile-btn span {
        width: 24px;
        height: 2px;
        background: var(--navy-900);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        margin: 0 auto;
    }

    .nav-mobile-btn.active {
        background: var(--navy-900);
        border-color: var(--navy-900);
    }

    .nav-mobile-btn.active span {
        background: var(--white);
    }

    .nav-mobile-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-mobile-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .nav-mobile-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 60px 40px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        transform: scale(1.05);
        transform-origin: center;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .mobile-link {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--navy-900);
        text-decoration: none;
        letter-spacing: -2px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-menu.active .mobile-link {
        animation: mobileLinkIn 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active .mobile-link:nth-child(2) { animation-delay: 0.1s; }
    .mobile-menu.active .mobile-dropdown { animation-delay: 0.15s; }
    .mobile-menu.active .mobile-link:nth-child(4) { animation-delay: 0.25s; }

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

    .mobile-dropdown {
        width: 100%;
        max-width: 320px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-dropdown-btn {
        background: none;
        border: none;
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--navy-900);
        letter-spacing: -2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s ease;
        padding-bottom: 8px;
    }

    .mobile-dropdown.active .mobile-dropdown-btn {
        color: var(--swad-orange);
    }

    .mobile-dropdown-btn svg {
        transition: transform 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-btn svg {
        transform: rotate(180deg);
    }

    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        display: flex;
    }

    .mobile-dropdown-item {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        padding: 12px;
        border-radius: 12px;
        background: rgba(10, 14, 39, 0.03);
    }

    .mdi-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy-900);
    }

    .mdi-desc {
        font-size: 0.75rem;
        color: var(--gray-400);
    }

    .mobile-cta {
        margin-top: 16px;
        font-size: 1.1rem;
        padding: 18px 40px;
        color: var(--white) !important;
        border-radius: 100px;
        text-align: center;
        width: auto;
    }

    .mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-900);
        cursor: pointer;
        z-index: 1002;
    }
}
/* ──────────────────────────────────────────
   CONTACT SECTION (v1.9.0)
   ────────────────────────────────────────── */
.contact-section {
    padding: var(--sp-3xl) var(--sp-xl);
    background: radial-gradient(circle at bottom left, #fff8f1 0%, var(--white) 50%);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 8px;
    line-height: 1.1;
}

.contact-card {
    background: var(--white);
    padding: var(--sp-2xl);
    border-radius: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.swad-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

@media (max-width: 768px) {
    .swad-form .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--sp-md);
}

.form-group:last-of-type {
    margin-bottom: var(--sp-xl);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    font-size: 16px;
    color: var(--navy-900);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--swad-orange);
    box-shadow: 0 0 0 4px rgba(232, 118, 10, 0.05);
}

.swad-submit-btn {
    width: 100%;
    background: var(--navy-900);
    color: white;
    padding: 20px;
    border-radius: 100px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.swad-submit-btn:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 14, 39, 0.15);
}

.swad-submit-btn:hover svg {
    transform: translateX(4px);
}

.swad-submit-btn svg.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: var(--sp-xl) 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.success-icon {
    margin-bottom: var(--sp-md);
}

.form-success-message h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--gray-500);
}

/* ──────────────────────────────────────────
   6. PRICING SECTION
   ────────────────────────────────────────── */
.pricing-section {
    padding: var(--sp-3xl) var(--sp-xl);
    background: #ffffff;
    position: relative;
}

.pricing-grid {
    max-width: 1200px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--swad-orange);
}

.pricing-card.featured {
    border: 2px solid var(--swad-orange);
    background: linear-gradient(180deg, #ffffff 0%, #FFF9F3 100%);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--swad-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--navy-900);
}

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

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-900);
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1;
}

.price-period {
    color: var(--gray-500);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--swad-orange);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pricing-cta.secondary {
    background: var(--gray-100);
    color: var(--navy-900);
}

.pricing-cta.secondary:hover {
    background: var(--gray-200);
}

.pricing-cta.primary {
    background: var(--swad-orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(232, 118, 10, 0.2);
}

.pricing-cta.primary:hover {
    background: #CF6908;
    box-shadow: 0 12px 32px rgba(232, 118, 10, 0.3);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 24px;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}


/* ------------------------------------------
   7. LEGAL SUBPAGES (v1.10.0)
   ------------------------------------------ */
.legal-page {
    background: var(--white);
}

.legal-hero {
    padding: 160px var(--sp-xl) 80px;
    background: var(--navy-900);
    background-image: 
        radial-gradient(circle at 50% 100%, rgba(232, 118, 10, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(10, 25, 41, 0.9), rgba(10, 25, 41, 0.9)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'%3E%3Cpath d='M36 34v-1h-2v1h-1v2h1v1h2v-1h1v-2h-1zM24 24v-1h-2v1h-1v2h1v1h2v-1h1v-2h-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.legal-hero p {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content-section {
    padding: var(--sp-3xl) var(--sp-xl);
    background: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-900);
    margin: 48px 0 24px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.legal-container h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--swad-orange);
    border-radius: 2px;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-900);
    margin: 32px 0 16px;
}

.legal-container p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-container li {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
}

.legal-container li strong {
    color: var(--swad-orange);
}

.legal-container strong {
    color: var(--navy-900);
}

.contact-box {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--gray-100);
    margin-top: 64px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    border-color: var(--swad-orange-soft);
}

.contact-box h3 {
    margin-top: 0;
    color: var(--swad-orange);
}

.contact-box p {
    margin-bottom: 12px !important;
}

.contact-box p:last-child {
    margin-bottom: 0 !important;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.back-home-link:hover {
    color: var(--swad-orange);
    opacity: 1;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 24px 60px;
    }
    .legal-content-section {
        padding: 60px 24px;
    }
    .legal-container h2 {
        font-size: 24px;
    }
}

/* ──────────────────────────────────────────
   GEO OPTIMIZATION COMPONENTS
   ────────────────────────────────────────── */

/* Comparison Table */
.comparison-section {
    padding: var(--sp-2xl) var(--sp-xl);
    background: var(--white);
}

.table-wrapper {
    max-width: 1000px;
    margin: 48px auto 0;
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--gray-50);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table .feature-col {
    width: 30%;
    font-weight: 600;
    color: var(--navy-900);
}

.comparison-table .swad-col {
    width: 35%;
    background: rgba(232, 118, 10, 0.03);
    color: var(--swad-orange);
    font-weight: 700;
}

.comparison-table .legacy-col {
    width: 35%;
    color: var(--gray-500);
}

.check-mark {
    color: #10B981;
    font-weight: bold;
}

.x-mark {
    color: #EF4444;
    font-weight: bold;
}

/* Quote Section */
.quote-section {
    padding: var(--sp-2xl) var(--sp-xl);
    background: var(--navy-900);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-author {
    font-size: 18px;
    color: var(--swad-orange);
    font-weight: 700;
}

.quote-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

