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

/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
    --bg: #04040e;
    --bg-2: #080818;
    --bg-3: #0c0c20;
    --surface: rgba(255,255,255,0.03);
    --surface-hover: rgba(255,255,255,0.06);
    --surface-active: rgba(255,255,255,0.09);
    --border: rgba(255,255,255,0.07);
    --border-2: rgba(255,255,255,0.12);
    --border-3: rgba(255,255,255,0.22);
    --text: #eeeeff;
    --text-2: #9999bb;
    --text-3: #55556a;
    --blue: #0055A4;
    --blue-2: #1a6fd4;
    --blue-light: #4d94ff;
    --blue-glow: rgba(0,85,164,0.5);
    --red: #EF4135;
    --red-2: #ff5a4e;
    --red-glow: rgba(239,65,53,0.45);
    --green: #22c55e;
    --green-glow: rgba(34,197,94,0.35);
    --orange: #f97316;
    --purple: #8b5cf6;
    --yellow: #f59e0b;
    --grad-fr: linear-gradient(135deg, var(--blue-light) 0%, #fff 45%, var(--red-2) 100%);
    --grad-blue: linear-gradient(135deg, #0055A4, #4d94ff);
    --grad-red: linear-gradient(135deg, #c0392b, #EF4135, #ff6b5b);
    --grad-green: linear-gradient(135deg, #15803d, #22c55e);
    --grad-purple: linear-gradient(135deg, #6d28d9, #8b5cf6);
    --grad-orange: linear-gradient(135deg, #c2410c, #f97316);
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;
    --sh: 0 4px 24px rgba(0,0,0,0.4);
    --sh-lg: 0 16px 64px rgba(0,0,0,0.6);
    --sh-xl: 0 32px 80px rgba(0,0,0,0.7);
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* =============================================
   BACKGROUND — ORBES GRADIENT FIXES
   ============================================= */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at 12% 8%,  rgba(0, 85, 164, 0.11) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 88% 88%, rgba(239, 65, 53, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 50% 50%, rgba(77, 148, 255, 0.05) 0%, transparent 60%);
    animation: bgShift 18s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0%   { opacity: 1;   transform: scale(1); }
    50%  { opacity: 0.8; transform: scale(1.03); }
    100% { opacity: 1;   transform: scale(1.01); }
}

/* Subtle dot grid */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 75%);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1240px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(8,8,24,0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-2);
    border-radius: var(--r-xl);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(4,4,14,0.92);
    border-color: var(--border-2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

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

.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: var(--r-sm);
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--grad-fr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: var(--surface-hover); }
.nav-links a.active { color: var(--text); background: var(--surface-active); }

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px !important;
    border-radius: var(--r-full) !important;
    background: var(--grad-blue) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 0 20px var(--blue-glow);
    transition: all var(--transition) !important;
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 35px var(--blue-glow) !important;
    background: rgba(255,255,255,0.06) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--r-sm);
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 100px;
    z-index: 1;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77,148,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,148,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

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

.hero-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: var(--r-full);
    padding: 8px 20px 8px 8px;
    margin-bottom: 36px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
    animation: heroFadeDown 0.7s ease both;
}

.hero-flag-badge .badge-flags {
    display: flex;
    gap: 3px;
    padding: 2px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-full);
}

.hero-flag-badge .badge-flag {
    width: 6px;
    height: 18px;
    border-radius: 2px;
}

.badge-flag.bl { background: #0055A4; }
.badge-flag.wh { background: #FFFFFF; }
.badge-flag.rd { background: #EF4135; }

.hero-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 6px var(--green); transform: scale(1); }
    50% { box-shadow: 0 0 14px var(--green), 0 0 24px rgba(34,197,94,0.3); transform: scale(1.15); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: heroFadeUp 0.7s ease 0.1s both;
}

.hero h1 .line-2 {
    background: var(--grad-fr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: heroFadeUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.7s ease 0.3s both;
    margin-bottom: 80px;
}

/* Floating mini-cards in hero */
.hero-floating {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero-floating-card {
    background: rgba(8,8,24,0.85);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    box-shadow: var(--sh);
}

.hero-floating-card .fc-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-floating.left {
    left: -20px;
    top: 50%;
    transform: translateY(-60%);
    animation: floatLeft 5s ease-in-out infinite;
}

.hero-floating.right {
    right: -20px;
    top: 35%;
    animation: floatRight 6s ease-in-out infinite 1s;
}

.hero-floating.bottom-left {
    left: 30px;
    bottom: 15%;
    animation: floatLeft 7s ease-in-out infinite 0.5s;
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(-60%) translateX(0); }
    50% { transform: translateY(-60%) translateX(-8px); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

/* Hero Stats */
.hero-stats-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    animation: heroFadeUp 0.7s ease 0.4s both;
    border-top: 1px solid var(--border);
    padding-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* =============================================
   SECTION COMMON
   ============================================= */
section {
    position: relative;
    z-index: 1;
    padding: 110px 24px;
}

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

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue-light);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.section-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 560px;
    line-height: 1.75;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
    border-radius: inherit;
}

.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
    background: var(--grad-blue);
    color: #fff;
    box-shadow: 0 0 24px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px var(--blue-glow), 0 12px 28px rgba(0,0,0,0.3);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border-2);
}

.btn-ghost:hover {
    background: var(--surface-hover);
    border-color: var(--border-3);
    transform: translateY(-2px);
}

.btn-red {
    background: var(--grad-red);
    color: #fff;
    box-shadow: 0 0 24px var(--red-glow);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px var(--red-glow);
}

.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover .btn-icon { transform: translateX(3px); }

/* =============================================
   GLOW CARDS / OFFER CARDS
   ============================================= */
.glow-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(77,148,255,0.3), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.glow-card:hover {
    border-color: var(--border-2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(77,148,255,0.1);
}

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

/* Offer Cards */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.offer-card {
    padding: 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.offer-card.featured {
    border-color: rgba(77,148,255,0.25);
    background: linear-gradient(160deg, rgba(0,85,164,0.08), rgba(0,0,0,0) 60%);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--r-full);
    background: var(--grad-blue);
    color: #fff;
}

.offer-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 22px;
    flex-shrink: 0;
    position: relative;
}

.offer-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    opacity: 0.12;
    filter: blur(10px);
    background: inherit;
}

.ic-blue { background: rgba(0,85,164,0.18); box-shadow: 0 0 18px rgba(0,85,164,0.25); }
.ic-green { background: rgba(34,197,94,0.13); box-shadow: 0 0 18px rgba(34,197,94,0.2); }
.ic-red { background: rgba(239,65,53,0.13); box-shadow: 0 0 18px rgba(239,65,53,0.2); }
.ic-orange { background: rgba(249,115,22,0.13); box-shadow: 0 0 18px rgba(249,115,22,0.2); }
.ic-purple { background: rgba(139,92,246,0.13); box-shadow: 0 0 18px rgba(139,92,246,0.2); }

.offer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.offer-desc {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.offer-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: var(--r-full);
    background: var(--surface-hover);
    border: 1px solid var(--border-2);
    color: var(--text-2);
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.offer-price-from {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.offer-price-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
}

.offer-price-val sup {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
    vertical-align: super;
    line-height: 0;
}

.offer-price-val span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-3);
}

.offer-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-hover);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition);
    color: var(--blue-light);
    flex-shrink: 0;
}

.offer-card:hover .offer-arrow {
    background: var(--grad-blue);
    border-color: transparent;
    color: #fff;
    transform: translateX(4px);
}

/* =============================================
   WHY US
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.why-card {
    padding: 28px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.why-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-2);
    transform: translateY(-4px);
    box-shadow: var(--sh);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 52px;
}

.pricing-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: color var(--transition);
}

.pricing-toggle-label.active { color: var(--text); }

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--surface-hover);
    border: 1px solid var(--border-2);
    border-radius: var(--r-full);
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-switch.on { background: var(--grad-blue); border-color: transparent; }

.toggle-switch .knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.toggle-switch.on .knob { transform: translateX(24px); }

.save-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-full);
    background: rgba(34,197,94,0.15);
    color: var(--green);
    border: 1px solid rgba(34,197,94,0.25);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    padding: 32px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card > .btn,
.pricing-card > a.btn {
    margin-top: auto;
}

.pricing-card:hover {
    border-color: var(--border-2);
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.pricing-card.popular {
    background: linear-gradient(160deg, rgba(0,85,164,0.12), var(--bg-3));
    border-color: rgba(77,148,255,0.3);
    box-shadow: 0 0 40px rgba(0,85,164,0.12), inset 0 1px 0 rgba(77,148,255,0.12);
}

.pricing-card.popular:hover { transform: translateY(-8px); }

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--blue-glow);
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.plan-sub {
    font-size: 0.82rem;
    color: var(--text-3);
    margin-bottom: 20px;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 6px;
}

.plan-price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.plan-price-cur {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-2);
    align-self: flex-start;
    padding-top: 6px;
}

.plan-price-per {
    font-size: 0.85rem;
    color: var(--text-3);
    align-self: flex-end;
    padding-bottom: 4px;
}

.plan-annual-note {
    font-size: 0.78rem;
    color: var(--green);
    margin-bottom: 22px;
    font-weight: 600;
    min-height: 18px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-2);
}

.feat-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}

.feat-cross {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-2);
    transform: translateY(-3px);
}

.t-stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.t-quote { font-size: 1.3rem; color: var(--text-3); margin-bottom: 10px; font-family: Georgia, serif; }
.t-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; margin-bottom: 22px; font-style: italic; }

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.t-name { font-weight: 700; font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(77,148,255,0.3); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-q-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-hover);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--blue-light);
    transition: all var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(77,148,255,0.1);
    border-color: rgba(77,148,255,0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 26px 22px;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.8;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, rgba(0,85,164,0.15), rgba(239,65,53,0.07));
    border: 1px solid rgba(77,148,255,0.2);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,85,164,0.12), transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239,65,53,0.08), transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 38px;
    position: relative;
    z-index: 1;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-trust {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-3);
    position: relative;
    z-index: 1;
}

/* =============================================
   DIVIDER
   ============================================= */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
    margin: 0 24px;
    position: relative;
    z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    position: relative;
    z-index: 1;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 80px 24px 36px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.8;
    max-width: 280px;
    margin-top: 14px;
}

.footer-fr-flag {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    align-items: center;
}

.fr-bar {
    height: 22px;
    width: 8px;
    border-radius: 2px;
}
.fr-bar.b { background: #0055A4; }
.fr-bar.w { background: rgba(255,255,255,0.9); }
.fr-bar.r { background: #EF4135; }

.footer-fr-flag span {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-left: 4px;
    font-weight: 600;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-bottom: 18px;
}

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

.footer-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-3);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-2);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(0,85,164,0.15);
    border-color: rgba(77,148,255,0.3);
    color: var(--blue-light);
    transform: translateY(-2px);
}

/* =============================================
   OFFER PAGE HERO
   ============================================= */
.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 24px 72px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-3);
    margin-bottom: 20px;
}

.breadcrumb a { color: var(--blue-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-hero-sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.07);
    border: 1px solid rgba(34,197,94,0.18);
    color: var(--green);
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 32px;
}

/* =============================================
   TECH STACK BADGES
   ============================================= */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: var(--r-full);
    background: var(--surface);
    border: 1px solid var(--border-2);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
}

/* =============================================
   INFRASTRUCTURE SECTION
   ============================================= */
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.infra-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all var(--transition);
}

.infra-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-2);
    transform: translateY(-3px);
}

.infra-card.wide {
    grid-column: span 2;
}

.infra-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.infra-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    margin-bottom: 6px;
}

.infra-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin-bottom: 4px;
}

.infra-detail {
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.6;
}

.infra-bar-wrap {
    margin-top: 10px;
    height: 4px;
    background: var(--border);
    border-radius: var(--r-full);
    overflow: hidden;
}

.infra-bar {
    height: 100%;
    border-radius: var(--r-full);
    background: var(--grad-blue);
    transform-origin: left;
    animation: barGrow 1.4s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes barGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.infra-spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.infra-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.infra-spec-row:last-child { border-bottom: none; }

.infra-spec-row .key { color: var(--text-3); }
.infra-spec-row .val { color: var(--text); font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

@media (max-width: 768px) {
    .infra-grid { grid-template-columns: 1fr; }
    .infra-card.wide { grid-column: span 1; }
}

/* =============================================
   END INFRASTRUCTURE
   ============================================= */
@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }
.reveal-delay-5 { transition-delay: 0.35s; }

/* Counter animation */
.counter-num {
    display: inline-block;
    transition: all 0.3s ease;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-floating { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .navbar { top: 10px; width: calc(100% - 24px); padding: 0 16px; height: 58px; }
    .nav-links { display: none; position: fixed; top: 78px; left: 12px; right: 12px;
        flex-direction: column; background: rgba(4,4,14,0.97); backdrop-filter: blur(20px);
        border: 1px solid var(--border-2); border-radius: var(--r-xl); padding: 16px;
        gap: 4px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 16px; border-radius: var(--r); }
    .hamburger { display: flex; }
    section { padding: 72px 16px; }
    .hero { padding: 110px 16px 80px; }
    .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
    .hero-stats-row { gap: 0; }
    .hero-stat { padding: 0 16px; min-width: 110px; }
    .hero-stat-num { font-size: 2rem; }
    .offers-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-desc, .footer-fr-flag { display: none; }
    .cta-banner { padding: 56px 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .page-hero { padding: 120px 16px 56px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
}

@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats-row { flex-direction: column; gap: 24px; padding-top: 36px; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
    .hero-stat:last-child { border-bottom: none; }
}
