/* ========================================
   CowTech Index Page Styles
   P3 step 2: homepage-specific layer loaded after shared tokens/components
   ======================================== */

/* ── Navigation ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; height: 64px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
}

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.logo {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 20px; font-weight: 600;
    color: var(--text-dark); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 40px; width: auto;
    vertical-align: middle;
}

.logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; font-weight: 700;
}

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
    font-family: 'Oxanium', sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary); text-decoration: none;
    transition: color 0.2s, border-color 0.3s;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-links a:hover { 
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}

/* Pill Button Style - Minimax Nav */
.nav-pill {
    font-family: 'Oxanium', sans-serif;
    padding: 8px 20px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 14px; font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.nav-pill:hover { 
    background: transparent;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}
.nav-pill.active { background: var(--brand-blue); color: white; }

/* CTA Button - Minimax Style */
.nav-cta {
    font-family: 'Oxanium', sans-serif;
    font-size: 14px; font-weight: 600;
    color: var(--white); background: var(--brand-blue);
    padding: 10px 24px; border-radius: 8px;
    text-decoration: none; transition: all 0.2s;
    box-shadow: var(--shadow-subtle);
}
.nav-cta:hover {
    background: var(--primary-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-elevated);
}
.nav-cta-desktop { display: inline-block; }

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}
.mobile-nav.active { 
    right: 0; 
    display: block;
}
.mobile-nav a {
    display: block;
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--brand-blue); }
.mobile-nav .lang-switch { display: flex; gap: 8px; margin-top: 24px; }
.mobile-nav .lang-switch a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Hero Section ── */
.hero {
    padding: 220px 32px 120px;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 120% 100% at 50% 0%, rgba(208, 191, 255, 0.25) 0%, rgba(0, 212, 170, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.08);
    padding: 6px 16px; border-radius: 9999px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--geo-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 64px;
    background: linear-gradient(180deg, var(--text-dark) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.60;
}

.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero-actions .btn-black {
    position: relative;
    background: var(--gray-900) !important;
    color: #ffffff !important;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}
.hero-actions .btn-black::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--geo-green));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.hero-actions .btn-black:hover { 
    color: var(--geo-green);
    box-shadow: 0 8px 32px rgba(20, 86, 240, 0.25);
}
.hero-actions .btn-black:hover::after { width: 100%; }

.hero-actions .btn-outline {
    position: relative;
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}
.hero-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--brand-blue);
    transition: left 0.3s ease;
    z-index: -1;
}
.hero-actions .btn-outline:hover {
    border-color: var(--brand-blue);
    color: #fff;
}
.hero-actions .btn-outline:hover::before { left: 0; }

/* ── Buttons - Minimax Style ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Oxanium', sans-serif;
    font-size: 15px; font-weight: 600;
    padding: 14px 28px; border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--brand-blue); color: var(--white);
    box-shadow: var(--shadow-subtle);
}
.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-secondary {
    background: var(--gray-100); color: var(--text-dark);
}
.btn-secondary:hover { background: var(--gray-200); }

.btn-dark {
    background: var(--dark-bg); color: var(--white);
}
.btn-dark:hover { background: var(--dark-surface); }

.btn-outline {
    background: var(--gray-50);
    color: var(--text-secondary);
    border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--text-secondary); color: var(--text-dark); }

.btn-geo {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}
.btn-geo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.25);
}

.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-lg { font-size: 16px; padding: 18px 36px; border-radius: 8px; }

/* Pill Buttons */
.btn-pill {
    border-radius: 8px;
    padding: 12px 28px;
}

/* Gold Button - Bottom Line Effect */
.btn-gold {
    position: relative;
    background: linear-gradient(135deg, #1456f0 0%, #0d3db5 100%);
    color: #90ee90;
    border: none;
    transition: color 0.3s ease;
}
.btn-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #10b981);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.btn-gold:hover {
    color: #00d4aa;
    box-shadow: 0 8px 32px rgba(20, 86, 240, 0.3);
}
.btn-gold:hover::after { width: 100%; }

/* ── Sections ── */
.section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-sm {
    background: var(--gray-50);
    padding: 80px 0;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

/* ── Cards - Minimax Style ── */
.card-grid {
    display: grid;
    gap: 24px;
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s;
}

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

.card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.card-icon-blue { background: rgba(20, 86, 240, 0.10); }
.card-icon-green { background: rgba(0, 212, 170, 0.10); }
.card-icon-purple { background: rgba(20, 86, 240, 0.08); }
.card-icon-pink { background: rgba(0, 212, 170, 0.08); }

.card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.60;
}

/* Product Card - Vibrant Gradient */
.product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(20, 86, 240, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.product-card h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ── Trial Banner ── */
.trial-banner {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.trial-banner h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
}

.trial-banner p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
}

/* ── LLM Grid - Minimax Style ── */
.llm-section {
    background: var(--gray-50);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 80px 0;
}

.llm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.llm-item {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 22px 16px 18px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.llm-item:hover {
    border-color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.02);
    transform: translateY(-2px);
}

.llm-item.selected {
    border-color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.05);
    box-shadow: var(--shadow-brand);
}

.llm-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 78px;
    font-size: 34px;
    overflow: hidden;
}

.llm-logo {
    width: 68px;
    height: 68px;
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.llm-icon svg {
    width: 68px;
    height: 68px;
    max-width: 68px;
    max-height: 68px;
    display: block;
    flex: 0 0 auto;
}

.llm-modal-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.llm-modal-logo,
.llm-modal-icon svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.llm-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.llm-region { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.llm-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    margin-top: 12px;
    font-size: 11px;
}

.llm-item.selected .llm-check {
    background: var(--brand-blue);
    color: white;
}

.llm-item:not(.selected) .llm-check {
    border: 2px solid var(--gray-300);
}

/* Quick Buttons */
.llm-quick {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
}

.quick-btn {
    font-family: 'Oxanium', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.quick-btn:hover, .quick-btn.active {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.05);
}

.selected-summary {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.selected-summary strong {
    color: var(--brand-blue);
}

/* ── Period Selector ── */
.period-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.period-item {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.period-item:hover {
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

.period-item.selected {
    border-color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.03);
}

.period-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 9999px;
    background: var(--geo-green);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.period-tag.save { background: var(--brand-blue); }
.period-tag.hot { background: #ef4444; }

.period-label { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.period-desc { font-size: 13px; color: var(--text-muted); }

/* ── Package Cards ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pkg-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--gray-300);
}

.pkg-card.selected {
    border-color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.02);
    box-shadow: var(--shadow-brand);
}

.pkg-card.god {
    border-color: var(--geo-green);
}

.pkg-card.god:hover {
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.20);
}

.pkg-card.god.selected {
    border-color: var(--geo-green);
    background: rgba(0, 212, 170, 0.05);
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.25);
}

.pkg-badge {
    position: absolute; top: 20px; right: 20px;
    font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 9999px;
    background: linear-gradient(135deg, var(--geo-green) 0%, #00b894 100%);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-name {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 28px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pkg-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pkg-price {
    margin-bottom: 24px;
}

.pkg-price .amount {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 48px; font-weight: 700;
    color: var(--text-dark);
}

.pkg-price .currency {
    font-size: 20px; font-weight: 500;
    color: var(--text-muted);
}

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

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

.pkg-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex; align-items: center; gap: 12px;
}

.pkg-features li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--geo-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}

.pkg-card .btn { width: 100%; }

.pkg-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
}

/* ── Footer ── */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 32px 32px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { height: 80px; line-height: 80px;  color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.60; }

.footer-col h5 {
    font-family: 'Oxanium', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--white); }

/* ── Process/Steps ── */
.step-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

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

.step-number {
    width: 40px; height: 40px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 16px; font-weight: 600;
    margin: 0 auto 12px;
}

.step-name {
    font-size: 13px; font-weight: 500;
    color: var(--text-secondary);
}

.step-arrow {
    display: flex; align-items: center;
    color: var(--gray-300);
    font-size: 20px;
}

/* ── Responsive - Minimax Breakpoints ── */
@media (max-width: 1024px) {
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    .hero { padding: 140px 24px 80px; }
    .section { padding: 80px 24px; }
    .llm-grid { grid-template-columns: repeat(3, 1fr); }
    .period-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-sm { padding: 72px 16px; }
    .llm-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .llm-item { padding: 18px 10px; }
    .nav-links { display: none; }
    .hamburger { display: flex !important; }
    .nav-cta-desktop { display: none; }
    .mobile-nav { display: none; }
    .mobile-nav-overlay { display: none; }
}

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }

/* ── Language Switcher ── */
.lang-switch a {
    font-size: 12px !important;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--gray-100);
    color: var(--text-secondary) !important;
    transition: all 0.2s;
}

.lang-switch a:hover {
    background: var(--brand-blue) !important;
    color: var(--white) !important;
}

/* ── Enhanced Hero ── */
.hero-badge-new {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    padding: 8px 20px; border-radius: 9999px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(20, 86, 240, 0.3);
}

.hero-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8f4ff 40%, #dbeafe 70%, #ffffff 100%);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(20, 86, 240, 0.08) 0%, rgba(0, 212, 170, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

/* ── Enhanced Cards ── */
.card-gradient {
    background: linear-gradient(135deg, rgba(20, 86, 240, 0.03) 0%, rgba(0, 212, 170, 0.03) 100%);
    border: 1px solid var(--border-light);
}

.card:hover {
    background: var(--white);
}

/* ── FAQ Enhanced ── */
.faq-section {
    background: var(--gray-50) !important;
    border-top: 1px solid var(--border-light);
}

.faq-item {
    background: var(--white);
    border-radius: 16px !important;
    padding: 28px !important;
    box-shadow: var(--shadow-subtle);
    transition: all 0.25s;
    border: 1px solid var(--border-light);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-blue);
}

.faq-q {
    font-size: 17px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
}

.faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.70;
}

.faq-number {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600;
    flex-shrink: 0;
}

/* ── Service Cards Enhanced ── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

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

.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(20, 86, 240, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
}

/* ── Pricing Cards Enhanced ── */
.pricing-highlight {
    background: linear-gradient(135deg, rgba(20, 86, 240, 0.04) 0%, rgba(0, 212, 170, 0.04) 100%);
    border: 2px solid var(--geo-green) !important;
}

.pricing-highlight::before {
    content: 'Best Value';
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--geo-green) 0%, #00b894 100%);
    color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 16px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Footer Enhanced ── */
.footer-gradient {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f1419 100%);
}

/* ── Section Title Decoration ── */
.section-title-decoration {
    position: relative;
    display: inline-block;
}

.section-title-decoration::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    border-radius: 2px;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 170, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    position: relative;
}

.cta-btns .btn-black {
    background: var(--geo-green);
    color: white;
    font-size: 16px; font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.cta-btns .btn-black:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5), 0 0 30px rgba(20, 86, 240, 0.3);
    background: var(--geo-green-dark);
}

.cta-btns .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 16px; font-weight: 500;
    padding: 14px 32px;
    transition: all 0.3s ease;
}
.cta-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* ── Enhanced Footer ── */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 48px;
}

footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    margin-top: 16px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ── Service Cards Grid ── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

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

.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(20, 86, 240, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
}

.service-card h3 {
    font-size: 22px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.60;
}

/* ── Process Steps ── */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.flow-step {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.25s;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-blue);
}

.flow-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 20px; font-weight: 700;
    margin: 0 auto 16px;
}

.flow-step h4 {
    font-size: 17px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Package Grid Enhanced ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pkg-grid,
    .service-grid,
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}

/* ── Cases Section ── */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.25s;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--geo-green);
}

.case-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(20, 86, 240, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.case-card h3 {
    font-size: 20px; font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.case-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.60;
    margin-bottom: 12px;
}

.case-result {
    font-size: 14px !important;
    color: var(--geo-green) !important;
    font-weight: 500;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: 16px;
}

/* ── Delivery Preview ── */
.delivery-preview {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
    background:
        linear-gradient(180deg, rgba(20, 86, 240, 0.05), rgba(255, 255, 255, 0)),
        var(--white);
}

.delivery-preview > .section-header,
.delivery-preview > .delivery-grid,
.delivery-preview > .delivery-proof {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.report-preview,
.dashboard-preview {
    border: 1px solid rgba(20, 86, 240, 0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.preview-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid var(--gray-200);
    background: #f8fafc;
}

.preview-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-toolbar span:nth-child(1) { background: #ef4444; }
.preview-toolbar span:nth-child(2) { background: #f59e0b; }
.preview-toolbar span:nth-child(3) { background: #22c55e; }
.preview-toolbar strong {
    margin-left: 8px;
    color: var(--gray-700);
    font-size: 13px;
}

.report-score-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
}

.report-score-row div {
    background: #f8fafc;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px;
    min-height: 92px;
}

.preview-label {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
    margin-bottom: 8px;
}

.report-score-row strong {
    display: block;
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.25;
}

.report-lines {
    display: grid;
    gap: 12px;
    padding: 0 22px 22px;
}

.report-lines p {
    border-left: 3px solid var(--brand-blue);
    background: rgba(20, 86, 240, 0.04);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    color: var(--gray-700);
    font-size: 14px;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    background: #0a0a14;
    color: #e5e7eb;
}

.dash-sidebar {
    padding: 22px 16px;
    background: #12121f;
    border-right: 1px solid #2a2a4a;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dash-sidebar strong {
    color: #ffffff;
    margin-bottom: 10px;
}

.dash-sidebar span {
    color: #94a3b8;
    font-size: 13px;
    padding: 9px 10px;
    border-radius: 8px;
}

.dash-sidebar span.active {
    color: #ffffff;
    background: #6366f1;
}

.dash-main {
    padding: 22px;
    display: grid;
    gap: 14px;
    align-content: start;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.dash-header span {
    color: #22c55e;
    font-size: 13px;
}

.dash-header b {
    background: #6366f1;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
}

.file-chip {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    background: #16213e;
    border: 1px solid #2a2a4a;
    border-radius: 8px;
    padding: 14px;
    color: #ffffff;
    font-size: 13px;
}

.file-chip em {
    color: #94a3b8;
    font-style: normal;
    font-size: 12px;
    text-align: right;
}

.delivery-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.delivery-proof div {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-proof strong {
    color: var(--brand-blue);
    font-size: 22px;
    line-height: 1.2;
}

.delivery-proof span {
    color: var(--gray-500);
    font-size: 13px;
}

/* ── Section Header Enhanced ── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ── Badge Tags ── */
.badge-pro {
    background: var(--brand-blue) !important;
    color: white !important;
}

.badge-god {
    background: linear-gradient(135deg, var(--geo-green) 0%, #00b894 100%) !important;
    color: white !important;
}

/* ── Select Indicator ── */
.select-indicator {
    position: absolute;
    top: 16px; right: 16px;
    width: 24px; height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    transition: all 0.2s;
}

.pkg-card.selected .select-indicator {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(20, 86, 240, 0.2);
}

.pkg-card.god.selected .select-indicator {
    border-color: var(--geo-green);
    background: var(--geo-green);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.2);
}

/* ── More Feature ── */
.pkg-features li.more {
    color: var(--text-muted);
    font-style: italic;
}

/* ── Enhanced Typography ── */
.pkg-sub {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    line-height: 1.50 !important;
    margin-bottom: 20px !important;
}

.amount {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 52px !important;
    font-weight: 700;
    color: var(--text-dark);
}

.unit {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

/* ── Responsive Fixes ── */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .amount {
        font-size: 40px !important;
    }
}

/* ── Modal Overlay ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal h3 {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-family: 'Oxanium', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(20, 86, 240, 0.1);
}

.form-group .hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ── Period Grid Centering ── */
.period-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 32px;
}

@media (max-width: 768px) {
    .period-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* ── Package Badge Fix ── */
.pkg-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px; font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    z-index: 2;
}

.pkg-card.selected .pkg-badge.pro,
.pkg-badge.pro {
    background: var(--brand-blue);
    color: white;
}

.pkg-badge.hot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
}

.pkg-badge.god,
.pkg-card.god .pkg-badge.god {
    background: linear-gradient(135deg, var(--geo-green) 0%, #00b894 100%);
    color: white;
}

/* ── Select Indicator Fix ── */
.select-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 20px; height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    transition: all 0.2s;
}

.pkg-card.selected .select-indicator {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(20, 86, 240, 0.15);
}

.pkg-card.god.selected .select-indicator {
    border-color: var(--geo-green);
    background: var(--geo-green);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}

/* ── Trial Banner ── */
.trial-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 170, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.trial-banner h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
}

.trial-banner p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 32px;
    position: relative;
}

/* ── Order Bar ── */
.order-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.order-bar.visible {
    transform: translateY(0);
}

.order-bar .summary {
    font-size: 14px;
    color: var(--text-muted);
}

.order-bar .total {
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--text-dark);
}

/* ── Language Switcher ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Scanner Button - Hero Banner */
.btn-scanner {
    display: inline-block;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Oxanium', sans-serif;
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
}
.btn-scanner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(52, 211, 153, 0.5), 0 0 30px rgba(20, 86, 240, 0.3);
    background: linear-gradient(135deg, #10b981, #059669);
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    font-family: 'Oxanium', sans-serif;
    font-size: 12px !important;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--text-dark) !important;
    background: var(--gray-200);
}

.lang-btn.active {
    background: var(--white);
    color: var(--text-dark) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ── ENHANCED GRADIENTS ── */

/* Hero Background - More Vibrant */
.hero-gradient {
    background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 30%, #ffffff 100%);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 500px;
    background: radial-gradient(ellipse 150% 80% at 50% 0%, rgba(20, 86, 240, 0.12) 0%, rgba(0, 212, 170, 0.06) 40%, transparent 70%);
    pointer-events: none;
}

/* Hero Badge - Glow Effect */
.hero-badge-new {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 50%, var(--geo-green) 100%);
    padding: 10px 24px; border-radius: 9999px;
    margin-bottom: 28px;
    box-shadow: 
        0 4px 20px rgba(20, 86, 240, 0.4),
        0 0 40px rgba(0, 212, 170, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Icon - Stronger Gradient */
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(0, 212, 170, 0.8) 100%);
    box-shadow: 0 4px 16px rgba(20, 86, 240, 0.3);
}

/* Case Tag - Vibrant */
.case-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(20, 86, 240, 0.25);
}

/* CTA Section - Stronger Gradient */
.cta-section {
    background: linear-gradient(135deg, #0a0a14 0%, #0f1629 25%, #1a1a3e 50%, #0f1a2e 75%, #0a1420 100%);
    color: white;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(20, 86, 240, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 212, 170, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

/* Trial Banner - Stronger */
.trial-banner {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 30%, #1a2744 50%, #0f2030 70%, #0a1520 100%);
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(20, 86, 240, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

/* Button GEO Gradient */
.btn-geo {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 50%, var(--geo-green) 100%);
    color: var(--white);
    box-shadow: 
        0 4px 16px rgba(20, 86, 240, 0.4),
        0 0 30px rgba(0, 212, 170, 0.2);
}
.btn-geo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(20, 86, 240, 0.5),
        0 0 40px rgba(0, 212, 170, 0.3);
}

/* Footer Gradient */
footer {
    background: linear-gradient(180deg, #0f1419 0%, #0a0f14 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 48px;
}

/* FAQ Number Gradient */
.faq-number {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(20, 86, 240, 0.3);
}

/* Flow Step Number Gradient */
.flow-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 50%, var(--geo-green) 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oxanium', 'DM Sans', sans-serif;
    font-size: 20px; font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(20, 86, 240, 0.35);
}

/* Section Title Decoration */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 5px;
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--geo-green) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(20, 86, 240, 0.3);
}

/* Logo Icon Gradient */
.logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; font-weight: 700;
    box-shadow: 0 2px 8px rgba(20, 86, 240, 0.3);
}

/* Period Tag Gradient */
.period-tag {
    background: linear-gradient(135deg, var(--geo-green) 0%, #00a080 100%);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.period-tag.save {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
    box-shadow: 0 2px 8px rgba(20, 86, 240, 0.3);
}

/* LLM Item Hover */
.llm-item:hover {
    border-color: var(--brand-blue);
    background: rgba(20, 86, 240, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(20, 86, 240, 0.15);
}

/* Card Hover Glow */
.card:hover,
.service-card:hover,
.case-card:hover,
.flow-step:hover {
    box-shadow: 
        0 8px 30px rgba(20, 86, 240, 0.12),
        0 0 20px rgba(0, 212, 170, 0.08);
    border-color: transparent;
}

/* ── Section Blue Border ── */
.section-blue-border {
    background: var(--gray-50);
    border: 2px solid var(--brand-blue) !important;
    border-radius: 24px;
    margin: 20px auto;
    max-width: calc(100% - 40px);
}

.section-blue-border-sm {
    background: var(--gray-50);
    border: 2px solid var(--brand-blue) !important;
    border-radius: 24px;
    margin: 20px auto;
    max-width: calc(100% - 40px);
}

/* ── Ensure all text uses Oxanium ── */
.hero p,
.case-card p,
.case-result,
.section p,
.footer-col p,
.footer-col ul {
    font-family: 'Oxanium', sans-serif;
}

.stat-number,
.big-number,
.percentage {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
}

@media (max-width: 900px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }

    .delivery-preview {
        padding-left: 16px;
        padding-right: 16px;
    }

    .report-score-row {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .report-lines {
        padding: 0 16px 16px;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        border-right: none;
        border-bottom: 1px solid #2a2a4a;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dash-sidebar strong {
        width: 100%;
        margin-bottom: 0;
    }

    .file-chip {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-chip em {
        text-align: left;
    }

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

/* ── P3 UI B Polish Layer ── */
.hero-gradient {
    background:
        linear-gradient(180deg, rgba(20, 86, 240, 0.10) 0%, rgba(20, 86, 240, 0.05) 36%, rgba(255, 255, 255, 0.96) 78%, #ffffff 100%);
}

.hero-gradient::before {
    background:
        radial-gradient(ellipse 110% 70% at 50% 0%, rgba(20, 86, 240, 0.14) 0%, rgba(0, 212, 170, 0.08) 42%, transparent 72%);
}

.section {
    padding: 96px 24px;
}

.section-sm {
    padding: 80px 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--gray-50) 24%, var(--gray-50) 100%);
}

.delivery-preview {
    padding-top: 96px;
    padding-bottom: 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, rgba(20, 86, 240, 0.045) 18%, rgba(248, 249, 250, 0.9) 100%);
}

.faq-section {
    background:
        linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%) !important;
}

.cta-section {
    padding: 88px 24px 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, rgba(20, 86, 240, 0.06) 12%, #0f1419 28%, #0a0f14 100%);
}

.cta-section::before {
    background:
        radial-gradient(ellipse at 50% 45%, rgba(20, 86, 240, 0.28) 0%, transparent 48%),
        radial-gradient(ellipse at 70% 72%, rgba(0, 212, 170, 0.20) 0%, transparent 45%);
}

.trial-banner {
    padding: 64px 24px 72px;
    background:
        linear-gradient(180deg, #0f1419 0%, #0a0f14 100%);
}

.trial-banner::before {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(20, 86, 240, 0.20) 0%, transparent 54%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 170, 0.18) 0%, transparent 48%);
}

.trial-banner h2,
.cta-section h2 {
    font-size: 32px;
}

footer {
    margin-top: 0;
    background:
        linear-gradient(180deg, #0a0f14 0%, #080b10 100%);
    padding: 64px 24px 40px;
}

.section-header {
    margin-bottom: 48px;
}

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

.section-header h2::after {
    width: min(100%, 220px);
    height: 2px;
    bottom: -14px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 22%, var(--geo-green) 78%, transparent 100%);
    box-shadow: none;
}

.section-header p,
.card p,
.service-card p,
.flow-step p,
.pkg-desc,
.pkg-sub,
.period-desc,
.selected-summary,
.modal-sub,
.form-group .hint,
.unit,
.llm-region {
    color: var(--text-secondary);
}

.btn,
.btn-black,
.btn-outline,
.btn-gold,
.btn-geo,
.nav-cta,
.btn-scanner,
.quick-btn,
.lang-btn,
.mobile-nav .lang-switch a {
    border-radius: 8px;
}

.btn-black,
.hero-actions .btn-black,
.cta-btns .btn-black {
    background: var(--brand-blue) !important;
    color: var(--white) !important;
    border: 1px solid var(--brand-blue) !important;
    box-shadow: 0 14px 34px rgba(20, 86, 240, 0.24);
}

.btn-black:hover,
.hero-actions .btn-black:hover,
.cta-btns .btn-black:hover {
    background: var(--primary-600) !important;
    border-color: var(--primary-600) !important;
    color: var(--white) !important;
    box-shadow: 0 18px 42px rgba(20, 86, 240, 0.32);
}

.btn-gold {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-600) 100%);
    color: var(--white) !important;
    box-shadow: 0 14px 34px rgba(20, 86, 240, 0.24);
}

.btn-gold:hover {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
}

.nav-links {
    gap: 24px;
}

.nav-links a {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .section,
    .section-sm,
    .delivery-preview {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media (max-width: 768px) {
    .hero h1,
    .section-header h2,
    .trial-banner h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .section,
    .section-sm,
    .delivery-preview,
    .cta-section,
    .trial-banner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── B-plan mobile polish / overflow guard ── */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.btn-geo {
    box-shadow:
        0 4px 16px rgba(20, 86, 240, 0.32),
        0 12px 32px rgba(0, 212, 170, 0.12);
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 18px;
        gap: 14px;
    }

    .hamburger {
        display: flex !important;
        position: absolute;
        right: 18px;
        top: 22px;
        z-index: 1002;
        width: 28px !important;
        height: 22px !important;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background: var(--text-dark) !important;
        border-radius: 2px;
    }

    .nav-cta,
    .nav-cta-desktop {
        display: none !important;
    }

    .logo img {
        max-width: 116px;
        height: auto;
    }

    .hero {
        padding: 136px 20px 72px;
    }

    .hero-badge-new {
        display: block;
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
        line-height: 1.35;
        padding: 9px 16px;
        border-radius: 8px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.16;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero p {
        max-width: 100%;
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .hero-actions {
        width: min(100%, 320px);
        max-width: 340px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .agent-ready-banner,
    .section,
    .section-sm {
        overflow-x: clip;
    }

    .btn-scanner {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 31px;
    }
}

@media (max-width: 768px) {
    body .hero.hero-gradient {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    body .hero.hero-gradient .hero-badge-new,
    body .hero.hero-gradient h1,
    body .hero.hero-gradient p,
    body .hero.hero-gradient .hero-actions {
        box-sizing: border-box;
        width: min(100%, 300px);
        max-width: calc(100vw - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    body .hero.hero-gradient .hero-badge-new {
        font-size: 13px;
    }

    body .hero.hero-gradient h1 {
        font-size: 30px;
        line-height: 1.18;
    }

    body .hero.hero-gradient p {
        font-size: 15px;
        line-height: 1.65;
    }

    body .hero.hero-gradient .hero-actions {
        width: min(100%, 280px);
    }

    body .hero.hero-gradient .hero-actions .btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    body section[style*="f0fdf4"] > div {
        max-width: min(300px, calc(100vw - 40px)) !important;
    }

    body section[style*="f0fdf4"] h2,
    body section[style*="f0fdf4"] p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

/* ── B-plan full-bleed finish ── */
html {
    background: #080b10;
}

body {
    background: var(--white);
}

body .cta-section,
body .geo-section,
body .trial-banner,
body footer {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

body .geo-section {
    padding: 72px 24px 84px !important;
    background:
        linear-gradient(180deg, #f8fafc 0%, #f8fafc 54%, rgba(15, 20, 25, 0.08) 82%, rgba(15, 20, 25, 0.18) 100%) !important;
}

body .geo-section > div {
    max-width: 1180px;
    margin: 0 auto;
}

body .geo-section p {
    max-width: 1120px;
    margin-left: auto !important;
    margin-right: auto !important;
}

body .geo-section div[style*="grid-template-columns"] {
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;
}

body .trial-banner {
    margin-top: 0;
    padding: 72px 24px 78px;
    background:
        linear-gradient(180deg, #111821 0%, #0b121a 42%, #080d13 100%);
}

body .trial-banner::before {
    background:
        radial-gradient(ellipse 82% 72% at 50% 0%, rgba(20, 86, 240, 0.24) 0%, rgba(20, 86, 240, 0.08) 38%, transparent 72%),
        radial-gradient(ellipse 70% 68% at 50% 96%, rgba(0, 212, 170, 0.16) 0%, transparent 62%);
}

body footer {
    padding: 56px 24px max(72px, env(safe-area-inset-bottom));
    background:
        linear-gradient(180deg, #080d13 0%, #070a0f 52%, #05070b 100%);
}

body footer > p,
body footer .footer-links,
body footer .social-links {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    body .geo-section {
        padding: 56px 18px 68px !important;
    }

    body .geo-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    body .trial-banner {
        padding: 56px 18px 64px;
    }

    body footer {
        padding: 44px 18px max(64px, env(safe-area-inset-bottom));
    }
}
