/* ============================================
   Magic VPN — Celestial Luxury Theme
   ============================================ */

:root {
    /* Core palette */
    --void: #0a0a14;
    --deep: #0f0f1e;
    --surface: #151528;
    --surface-light: #1c1c38;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Brand accents */
    --gold: #f0a030;
    --gold-light: #ffd080;
    --magenta: #e040a0;
    --violet: #8b5cf6;
    --cyan: #06b6d4;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #f0a030, #e040a0, #8b5cf6);
    --grad-card: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    --grad-card-hover: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    --grad-glow: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);

    /* Typography */
    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --container: min(1200px, 90vw);

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
    background: var(--violet);
    color: #fff;
}

/* ── Starfield Canvas ── */

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── Gradient Orbs ── */

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 25s ease-in-out infinite;
}

.gradient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 64, 160, 0.08), transparent 70%);
    top: 50%;
    left: -150px;
    animation: orbFloat2 30s ease-in-out infinite;
}

.gradient-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06), transparent 70%);
    bottom: 20%;
    right: -100px;
    animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 100px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(0.9); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -60px); }
}

/* ── Shared ── */

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    line-height: 1.7;
}

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

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn__arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
    transform: translate(3px, -3px);
}

.btn--primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 0 30px rgba(224, 64, 160, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(224, 64, 160, 0.3), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.85rem 0.5rem;
}

.btn--ghost:hover {
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-hover);
    width: 100%;
    justify-content: center;
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 160, 48, 0.05);
    transform: translateY(-1px);
}

.btn--large {
    padding: 1.1rem 2.4rem;
    font-size: 1.05rem;
    border-radius: 16px;
}

/* ── Navigation ── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav__logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.3rem !important;
    border-radius: 10px;
    color: #fff !important;
    border: 1px solid var(--border);
    transition: all 0.2s !important;
}

.nav__cta:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--border-hover) !important;
}

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

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.mobile-menu__link:hover { color: #fff; }

.mobile-menu__cta {
    margin-top: 1rem;
    font-size: 1.2rem !important;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero ── */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 0 60px;
    gap: clamp(2rem, 6vw, 6rem);
}

.hero__content {
    flex: 1;
    min-width: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

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

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.45);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero__visual {
    flex: 0 0 auto;
    animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

.hero__phone-wrapper {
    position: relative;
}

.hero__phone-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(224, 64, 160, 0.08) 40%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero__phone {
    position: relative;
    width: clamp(240px, 28vw, 320px);
    border-radius: 36px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.hero__phone-screen {
    width: 100%;
    display: block;
}

/* ── Stats ── */

.stats {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 0 var(--section-pad);
}

.stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
}

.stats__suffix {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--gold);
}

.stats__label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stats__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Features ── */

.features {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: var(--section-pad);
}

.features__header {
    margin-bottom: 3.5rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.feature-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: var(--grad-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.feature-card--large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-card--large .feature-card__desc {
    flex: 1;
}

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

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feature-card__desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.feature-card__metric {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.feature-card__metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card__metric-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
}

/* ── Showcase ── */

.showcase {
    position: relative;
    z-index: 1;
    padding-bottom: var(--section-pad);
    overflow: hidden;
}

.showcase__header {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.showcase__header .section-subtitle {
    margin: 0 auto;
}

.showcase__phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    padding: 0 5%;
}

.showcase__phone {
    position: relative;
    flex-shrink: 0;
}

.showcase__phone-img {
    border-radius: 28px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 30px 80px rgba(0, 0, 0, 0.5);
}

.showcase__phone--left,
.showcase__phone--right {
    width: clamp(160px, 22vw, 260px);
    opacity: 0.5;
    transform: scale(0.88);
    transition: all 0.5s var(--ease-out);
}

.showcase__phone--left:hover,
.showcase__phone--right:hover {
    opacity: 0.8;
    transform: scale(0.92);
}

.showcase__phone--center {
    width: clamp(200px, 28vw, 300px);
    z-index: 2;
}

.showcase__phone-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.showcase__phone-glow--center {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
}

/* ── Pricing ── */

.pricing {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: var(--section-pad);
}

.pricing__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing__header .section-subtitle {
    margin: 0 auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.pricing-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.pricing-card--featured {
    border-color: rgba(240, 160, 48, 0.3);
    background: linear-gradient(160deg, rgba(240, 160, 48, 0.06) 0%, rgba(224, 64, 160, 0.03) 100%);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
    border-color: rgba(240, 160, 48, 0.5);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-card__period {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-card__save {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.3rem;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.1rem;
    margin: 0.6rem 0 0.3rem;
}

.pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-card__original {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

.pricing-card__billing {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.3rem;
}

.pricing-card__features {
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-card__features li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.45rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card__features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.65rem;
    top: 0.55rem;
}

.pricing__disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── CTA ── */

.cta {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: var(--section-pad);
}

.cta__inner {
    position: relative;
    text-align: center;
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 60%);
    pointer-events: none;
}

.cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.cta__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
}

/* ── Footer ── */

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__brand {
    max-width: 200px;
}

.footer__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.footer__name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__links {
    display: flex;
    gap: 4rem;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.footer__col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
}

.footer__col a:hover { color: #fff; }

.footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Scroll Reveal ── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ── Entry Animation ── */

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

/* ── Responsive ── */

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card--large {
        grid-row: span 1;
    }
    .feature-card--wide {
        grid-column: span 2;
    }
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card--featured {
        transform: none;
    }
    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__mobile-toggle { display: flex; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }

    .hero__phone {
        width: clamp(220px, 55vw, 280px);
    }

    .stats__inner {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
        padding: 1.5rem 2rem;
    }
    .stats__divider { display: none; }

    .features__grid {
        grid-template-columns: 1fr;
    }
    .feature-card--wide {
        grid-column: span 1;
    }

    .showcase__phones {
        flex-direction: column;
        gap: 1.5rem;
    }
    .showcase__phone--left,
    .showcase__phone--right {
        width: 55%;
        opacity: 0.7;
        transform: scale(0.92);
    }
    .showcase__phone--center {
        width: 70%;
    }

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

    .footer__inner {
        flex-direction: column;
        gap: 2rem;
    }
    .footer__links {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.4rem;
    }
    .stats__inner {
        gap: 1rem 1.5rem;
    }
    .footer__links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}
