/* ============================================================
   RegionRank — premium dark theme
   ============================================================ */

:root {
    /* Brand colors */
    --bg: #07091A;
    --bg-elev: #0D1124;
    --surface: #131934;
    --surface-2: #1A2143;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --text: #F1F5FB;
    --text-muted: #8A93B2;
    --text-dim: #5C6585;

    --accent: #00E5A0;
    --accent-2: #00B8FF;
    --accent-warm: #FFB547;
    --gradient: linear-gradient(135deg, #00E5A0 0%, #00B8FF 100%);
    --gradient-soft: linear-gradient(135deg, rgba(0, 229, 160, 0.15) 0%, rgba(0, 184, 255, 0.15) 100%);

    /* Spacing & radius */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    /* Type */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --shadow-glow: 0 0 60px -10px rgba(0, 229, 160, 0.4);
    --shadow-card: 0 8px 32px -8px rgba(0, 0, 0, 0.6);

    --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

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

section { padding: 100px 0; position: relative; }

.section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}

.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
    background: var(--gradient);
    color: #06141C;
    box-shadow: 0 6px 20px -6px rgba(0, 229, 160, 0.55);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(0, 229, 160, 0.7);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 160, 0.06);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(7, 9, 26, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.nav-wrapper.scrolled {
    background: rgba(7, 9, 26, 0.92);
    border-bottom-color: var(--border);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.01em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--gradient);
    color: #06141C;
}

.brand-text { color: var(--text); }
.brand-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gradient);
    transition: width 0.25s ease;
    border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 10px 18px; font-size: 13.5px; }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    padding: calc(var(--header-h) + 80px) 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
}
.hero-glow-1 {
    width: 500px; height: 500px;
    background: #00E5A0;
    top: -100px; left: -150px;
}
.hero-glow-2 {
    width: 600px; height: 600px;
    background: #00B8FF;
    bottom: -200px; right: -200px;
    opacity: 0.3;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 229, 160, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}
.hero-trust svg { color: var(--accent); }

/* Hero visual / dashboard */
.hero-visual {
    position: relative;
    perspective: 1500px;
}

.dash-card {
    background: linear-gradient(155deg, rgba(26, 33, 67, 0.9) 0%, rgba(13, 17, 36, 0.95) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.6),
        0 0 80px -20px rgba(0, 229, 160, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: rotateY(-4deg) rotateX(2deg);
    backdrop-filter: blur(10px);
    animation: dashFloat 6s ease-in-out infinite;
}

@keyframes dashFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

.dash-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.dash-dots span:first-child { background: #FF5F57; opacity: 0.8; }
.dash-dots span:nth-child(2) { background: #FEBC2E; opacity: 0.8; }
.dash-dots span:nth-child(3) { background: #28C840; opacity: 0.8; }
.dash-title {
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.02em;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}
.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.stat-trend {
    font-size: 11px;
    font-weight: 600;
}
.stat-trend.up { color: var(--accent); }

.dash-chart {
    height: 110px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 8px;
    overflow: hidden;
}
.dash-chart svg { width: 100%; height: 100%; }

.chart-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2.5s ease forwards 0.3s;
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.dash-keywords {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kw {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
}
.kw-pos {
    font-weight: 700;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 4px;
}
.kw-pos.up {
    color: var(--accent);
    background: rgba(0, 229, 160, 0.1);
}
.kw-name { color: var(--text-muted); font-family: 'Courier New', monospace; font-size: 12px; }
.kw-rank {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}

.float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
    animation: floatBadge 4s ease-in-out infinite;
}
.float-badge svg { color: var(--accent); }

.float-badge-2 {
    top: 53%; right: -16px;
    animation-delay: 0.8s;
}

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

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
    padding: 36px 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.trust-label {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.35;
}
.trust-label span {
    display: block;
    color: var(--text-dim);
    font-size: 12.5px;
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.service-card {
    padding: 32px;
    background: linear-gradient(155deg, var(--surface) 0%, var(--bg-elev) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border-radius: 12px;
    background: var(--gradient-soft);
    color: var(--accent);
    margin-bottom: 22px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   PACKAGES
   ============================================================ */

.packages {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}

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

.pkg-card {
    position: relative;
    padding: 36px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.pkg-card-featured {
    background: linear-gradient(160deg, rgba(0, 229, 160, 0.06) 0%, var(--surface) 60%);
    border: 1px solid rgba(0, 229, 160, 0.35);
    box-shadow: 0 20px 60px -20px rgba(0, 229, 160, 0.3);
    transform: scale(1.02);
}
.pkg-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient);
    color: #06141C;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
}

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

.pkg-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pkg-name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.pkg-tagline {
    font-size: 14.5px;
    color: var(--text-muted);
}

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 22px 0 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.pkg-currency {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}
.pkg-amount {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.pkg-period {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}
.pkg-period small {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
    font-weight: 500;
}

.pkg-features {
    margin-bottom: 28px;
    flex-grow: 1;
}
.pkg-features li {
    position: relative;
    padding: 9px 0 9px 28px;
    font-size: 14.5px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li.pkg-highlight {
    color: var(--accent);
    font-weight: 600;
}
.pkg-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 16px; height: 16px;
    background: var(--gradient-soft);
    border-radius: 50%;
}
.pkg-features li::after {
    content: '';
    position: absolute;
    left: 4px; top: 18px;
    width: 5px; height: 8px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
}

.pkg-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 15px;
}
.pkg-note a {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px dashed currentColor;
}
.pkg-note a:hover { opacity: 0.8; }

/* ============================================================
   ABOUT
   ============================================================ */

.about-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-copy .section-title { text-align: left; }
.about-copy .section-eyebrow { text-align: left; }

.about-lead {
    font-size: 19px;
    color: var(--text);
    margin: 24px 0 18px;
    font-weight: 400;
    line-height: 1.55;
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.7;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.pillar {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.pillar:hover {
    border-color: rgba(0, 229, 160, 0.3);
    transform: translateY(-3px);
}

.pillar-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.pillar h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}
.pillar p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.about-card {
    position: relative;
    padding: 38px 32px;
    background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-card-glow {
    position: absolute;
    top: -50%; right: -50%;
    width: 300px; height: 300px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}

.about-card-content { position: relative; z-index: 1; }
.about-card-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}
.about-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-card-list { margin-bottom: 28px; }
.about-card-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.about-card-list li:last-child { border-bottom: none; }
.about-card-list strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 2px;
}
.about-card-list span {
    color: var(--text-muted);
    font-size: 13.5px;
}

.about-card-quote {
    padding: 18px;
    background: rgba(0, 229, 160, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 15px;
    color: var(--text);
}

/* ============================================================
   PROCESS
   ============================================================ */

.process { background: var(--bg-elev); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.step {
    position: relative;
    padding: 30px 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 160, 0.3);
    box-shadow: var(--shadow-card);
}

.step-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;
}

.contact-info .section-title,
.contact-info .section-eyebrow { text-align: left; }

.contact-lead {
    font-size: 17px;
    color: var(--text-muted);
    margin: 22px 0 36px;
    line-height: 1.65;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--gradient-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-list span {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.contact-list a, .contact-list p {
    color: var(--text);
    font-size: 15.5px;
    font-weight: 500;
}
.contact-list a:hover { color: var(--accent); }

/* Form */
.contact-form {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 18px;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
    transition: all 0.2s ease;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.12);
    background: var(--bg);
}

.form-field.invalid input,
.form-field.invalid textarea {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-error {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: #FF8C8C;
    min-height: 16px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}
.form-check input {
    margin-top: 3px;
    accent-color: var(--accent);
    width: 16px; height: 16px;
}
.form-check a { color: var(--accent); text-decoration: underline; }

.form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 600;
}
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }
.footer-blurb {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li {
    color: var(--text-muted);
    font-size: 14.5px;
    transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.social-link:hover {
    background: var(--gradient);
    color: #06141C;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 13.5px;
    color: var(--text-muted);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 13.5px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   SITE NOTICE (cookie info)
   ============================================================ */

.site-notice {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(13, 17, 36, 0.98);
    border-top: 1px solid var(--border-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.site-notice[hidden] { display: none; }

.site-notice-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.site-notice-inner p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.site-notice-inner a {
    color: var(--accent);
    text-decoration: underline;
}
.site-notice-inner .btn {
    padding: 10px 22px;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .site-notice {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .site-notice-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 20px;
    }
    .site-notice-inner .btn {
        width: 100%;
    }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300E5A0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-q::after {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 28px 22px;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { max-width: 520px; margin: 0 auto; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
    section { padding: 70px 0; }

    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(7, 9, 26, 0.98);
        backdrop-filter: blur(16px);
        border-top: 1px solid var(--border);
        padding: 18px 24px;
        transform: translateY(-120%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: var(--text);
    }
    .nav-links a::after { display: none; }

    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero { padding-top: calc(var(--header-h) + 50px); }

    .trust-bar-inner { justify-content: center; gap: 28px; }
    .trust-divider { display: none; }

    .about-pillars { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }

    .float-badge-2 { display: none; }
    .dash-card { transform: none; animation: none; }

    .pkg-card-featured { transform: none; }
    .pkg-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { gap: 12px; }
    .contact-form { padding: 24px; }
    .pkg-card { padding: 28px 22px; }
}
