/* ═══════════════════════════════════════════════════════════════════════════
   SubNix Landing — Premium 2026 CSS
   Engine: Transparent PNG mockups · frosted glass · geometric background
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
    --black: #000000;
    --indigo: #5E5CE6;
    --indigo-bright: #7B79FF;
    --indigo-glow: rgba(94, 92, 230, 0.22);
    --indigo-dim: rgba(94, 92, 230, 0.13);
    --indigo-border: rgba(94, 92, 230, 0.28);
    --white: #FFFFFF;
    --grey-300: #D1D1D6;
    --grey-500: #8E8E9F;
    --grey-600: #48484F;
    --white-02: rgba(255, 255, 255, 0.02);
    --white-04: rgba(255, 255, 255, 0.04);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-10: rgba(255, 255, 255, 0.1);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --section-v: clamp(100px, 12vw, 160px);
    --row-gap: clamp(80px, 10vw, 140px);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ── Global image rule — keep 3x mockups razor-sharp at any scale ─────────── */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL BACKGROUND OVERHAUL
   1. Subtle Geometric Grid
   2. Layered Indigo Fog
   3. Noise Texture Matte Finish
   ═══════════════════════════════════════════════════════════════════════════ */
body {
    color: var(--grey-300);
    font-family: var(--font);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--black);
}

/* Layer 1: The Dark Fog */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 90% 45% at 35% 105%, rgba(70, 10, 160, 0.20) 0%, transparent 65%),
        radial-gradient(ellipse 55% 55% at 95% 65%, rgba(94, 92, 230, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 45%, rgba(110, 15, 210, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 110% 65% at 50% -5%, rgba(94, 92, 230, 0.28) 0%, rgba(60, 10, 180, 0.10) 40%, transparent 68%),
        /* Extra dense depth layers */
        radial-gradient(ellipse 70% 40% at 25% 30%, rgba(94, 92, 230, 0.11) 0%, transparent 70%),
        radial-gradient(ellipse 65% 45% at 80% 70%, rgba(80, 5, 180, 0.10) 0%, transparent 70%);
    filter: blur(60px);
}

/* Layer 2: Geometric Grid & Matte Noise Texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Composite the noise and the grid together */
    background-image:
        /* The CSS Geometric Grid */
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        /* The SVG Noise */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: clamp(30px, 4vw, 60px) clamp(30px, 4vw, 60px), clamp(30px, 4vw, 60px) clamp(30px, 4vw, 60px), 300px 300px;
    background-position: center bottom;
    background-repeat: repeat;
    /* Opacity applies to both to keep them deeply subtle */
    opacity: 0.12;
    mix-blend-mode: overlay;
    /* Fade grid out near top and bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

/* ── All semantic content above the fog ──────────────────────────────────── */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
/* Silver-white gradient on ALL major headings */
h1,
h2 {
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.048em;
    background: linear-gradient(to bottom, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h3,
h4 {
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.03em;
}

p {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.88;
}

a {
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.25s ease;
}

strong {
    color: var(--white);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(48px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 14px rgba(94, 92, 230, 0.30),
            0 0 36px rgba(94, 92, 230, 0.10);
    }

    50% {
        box-shadow: 0 0 24px rgba(94, 92, 230, 0.55),
            0 0 56px rgba(94, 92, 230, 0.20);
    }
}

/* Background pulse for glassmorphism feature cards */
@keyframes glassPulse {

    0%,
    100% {
        background: rgba(94, 92, 230, 0.01);
        box-shadow: 0 0 30px rgba(94, 92, 230, 0.02);
    }

    50% {
        background: rgba(94, 92, 230, 0.03);
        box-shadow: 0 0 60px rgba(94, 92, 230, 0.08);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 34px;
    width: 34px;
    border-radius: 8px;
    object-fit: contain;
    image-rendering: auto;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--white-06);
}

.premium-nav-link {
    color: var(--indigo) !important;
    font-weight: 600 !important;
    margin-right: 12px;
}

.premium-nav-link:hover {
    color: var(--indigo-bright) !important;
    text-shadow: 0 0 12px rgba(94, 92, 230, 0.4);
}

/* ── Social icon links ─────────────────────────────────────── */
.social-links {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-left: 0.625rem;
    margin-left: 0.25rem;
    border-left: 1px solid var(--white-06);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.55);
    transition:
        color 0.25s ease,
        transform 0.3s var(--ease-spring),
        filter 0.3s ease,
        background 0.25s ease;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
    background: var(--white-10);
    filter: drop-shadow(0 0 12px rgba(94, 92, 230, 0.45));
}

.social-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    flex-shrink: 0;
}

.footer-social {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    padding: clamp(60px, 8vw, 80px) 0 calc(var(--section-v) * 0.8);
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.hero-content {
    animation: fadeSlideUp 0.9s var(--ease-out) both;
}

/* ── Badge ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo-dim);
    border: 1px solid var(--indigo-border);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 9999px;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.badge-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--indigo-bright);
    box-shadow: 0 0 8px var(--indigo-bright);
    flex-shrink: 0;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-divider {
    opacity: 0.35;
}

.badge-text {
    color: var(--grey-300);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
}

.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 5.8rem);
    letter-spacing: -0.052em;
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: 2rem;
    color: var(--grey-500);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    padding: 7px 18px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-06);
}

.stars {
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store-link {
    display: inline-block;
    border-radius: 10px;
    transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
}

.store-link:hover {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 14px 32px rgba(94, 92, 230, 0.50));
}

.store-badge {
    display: block;
    height: 48px;
    width: auto;
    border-radius: 10px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    animation: fadeSlideUp 1.1s 0.12s var(--ease-out) both;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOCKUPS — Static, deep shadow framing
   ═══════════════════════════════════════════════════════════════════════════ */
.floating-mockup {
    display: block;
    width: 100%;
    height: auto;
    /* Static float, deep physical shadows */
    filter:
        drop-shadow(0 30px 60px rgba(94, 92, 230, 0.2)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    /* Levitation permanently removed */
    transform: none;
    animation: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ZIG-ZAG FEATURES w/ Frosted Glass Cards
   ═══════════════════════════════════════════════════════════════════════════ */
.zig-zag-features {
    display: flex;
    flex-direction: column;
    gap: var(--row-gap);
    padding: var(--section-v) 0;
}

.feature-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

/* Frosted glass wrapper for text */
.feature-text.feature-glass {
    width: 100%;
    max-width: 560px;
    background: var(--white-02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--white-04);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 40px);
    animation: glassPulse 6s ease-in-out infinite;
    box-sizing: border-box;
}

.feature-glass h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-bottom: 1.25rem;
}

.feature-glass p {
    color: var(--grey-500);
    margin-bottom: 0;
}

.feature-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
}

/* Double mockup logic */
.double-mockup {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2.5vw, 18px);
    max-width: 360px;
    overflow: visible;
}

.double-mockup .floating-mockup {
    width: calc(50% - 9px);
    flex-shrink: 0;
}

.mockup-offset {
    /* Offset retained for styling, but no animation */
    margin-top: 40px;
}

/* Premium badge in features */
.badge-pro {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--indigo-bright);
    background: rgba(94, 92, 230, 0.10);
    border: 1px solid rgba(94, 92, 230, 0.30);
    padding: 5px 16px;
    border-radius: 9999px;
    margin-bottom: 1rem;
    animation: badgePulse 3.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPARE PLANS TABLE
   ═══════════════════════════════════════════════════════════════════════════ */
.compare-section {
    padding: var(--section-v) 0;
}

.compare-header {
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.compare-header .section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--grey-500);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.compare-table-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 500px;
}

.compare-table th,
.compare-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--white-06);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--grey-300);
    width: 50%;
    padding-left: 1.5rem;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr {
    transition: background 0.3s ease;
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

/* Free Plan Column */
.free-col {
    color: var(--grey-500);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Premium Plan Column */
.premium-col {
    background: rgba(94, 92, 230, 0.05);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid var(--indigo-border);
    border-bottom: none;
    position: relative;
}

.compare-table td:last-child {
    background: rgba(94, 92, 230, 0.05);
    border-left: 1px solid var(--indigo-border);
    border-right: 1px solid var(--indigo-border);
}

.compare-table tbody tr:last-child td:last-child {
    border-bottom: 1px solid var(--indigo-border);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.premium-col-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
}

.premium-col-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.recommended-badge {
    background: var(--indigo);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 9999px;
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--grey-600);
}

.check-icon.highlight {
    color: var(--indigo-bright);
    filter: drop-shadow(0 0 8px rgba(94, 92, 230, 0.5));
}

.empty-dash {
    color: var(--grey-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED SECTION HEADING
   ═══════════════════════════════════════════════════════════════════════════ */
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════════════════════════════════ */
.video-section {
    padding: var(--section-v) 0;
}

.video-glass-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.05);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.70),
        0 0 80px rgba(94, 92, 230, 0.22),
        0 0 180px rgba(80, 10, 180, 0.10);

    transition: box-shadow 0.4s ease;
}

.video-glass-wrapper:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 24px 80px rgba(0, 0, 0, 0.75),
        0 0 120px rgba(94, 92, 230, 0.35),
        0 0 240px rgba(80, 10, 180, 0.18);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.bottom-cta {
    padding: var(--section-v) 0;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-title {
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.cta-sub {
    color: var(--grey-500);
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    max-width: 440px;
    margin-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: transparent;
    border-top: 1px solid var(--white-06);
    padding: 3rem 0 40px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--grey-600);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TERMS / STATIC PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.page-content {
    flex: 1;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
    max-width: 1000px;
    margin-inline: auto;
    width: 100%;
}

.page-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.875rem;
    opacity: 0.45;
    margin-bottom: 2.5rem;
}

.document-card {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--white-06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.document-card h2 {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.75rem;
}

.document-card h2:first-child {
    margin-top: 0;
}

.document-card p {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.legal-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--grey-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--indigo-bright);
    font-weight: 800;
}

.legal-content strong {
    color: var(--white);
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP ≥ 900px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {

    .hero-grid {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        flex: 1 1 55%;
        max-width: 580px;
    }

    .hero-subtitle {
        margin-inline: 0;
    }

    .rating,
    .store-badges {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1 1 40%;
        justify-content: flex-end;
        max-width: 380px;
    }

    .feature-row {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    .feature-row.reverse {
        flex-direction: row-reverse;
    }

    /* Target the frosted glass card */
    .feature-glass {
        flex: 1 1 50%;
        max-width: 520px;
    }

    .feature-image-wrapper {
        flex: 1 1 40%;
        max-width: 320px;
    }

    .double-mockup {
        max-width: 380px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-end;
    }

    .footer-social {
        justify-content: flex-end;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE < 768px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

    .feature-row>.feature-glass,
    .feature-row.reverse>.feature-glass {
        order: 2;
        /* Padding stays handled by the clamp() on .feature-glass */
    }

    .feature-row>.feature-image-wrapper,
    .feature-row.reverse>.feature-image-wrapper {
        order: 1;
    }

    .feature-image-wrapper {
        max-width: 240px;
    }

    .double-mockup {
        max-width: 280px;
        gap: 10px;
    }

    .hero-visual {
        max-width: 260px;
    }

    .video-glass-wrapper {
        padding: 10px;
        border-radius: 18px;
    }

    .video-container {
        border-radius: 10px;
    }

    .compare-table th,
    .compare-table td {
        padding: 1rem 0.5rem;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        padding-left: 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTRA SMALL < 420px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
    .badge {
        font-size: 0.70rem;
        padding: 4px 12px;
    }
}

/* ── Store Badges ───────────────────────────────────────────────────────────── */
.store-link {
    display: inline-block;
    transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
}

.store-badge {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    padding: 2px;
    box-sizing: border-box;
    transition: filter 0.3s ease;
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(to bottom, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-center {
    text-align: center;
}

/* ── Languages Section ───────────────────────────────────────────────────── */
.languages-section {
    text-align: center;
    padding: 80px 0;
}

.languages-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 12px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(94, 92, 230, 0.3);
}

.languages-title {
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.languages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.lang-pill {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 10px 20px;
    color: #A1A1AA;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.lang-pill:hover {
    color: var(--white);
    border-color: rgba(94, 92, 230, 0.5);
    background: rgba(94, 92, 230, 0.08);
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(94, 92, 230, 0.15),
        inset 0 0 10px rgba(94, 92, 230, 0.05);
}

/* ── Pricing Section ─────────────────────────────────────────────────────── */
.pricing-section {
    padding: 80px 0;
}

.pricing-subtitle {
    margin-top: 1.75rem !important;
    margin-bottom: 60px !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px 30px 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 1px solid var(--indigo);
    box-shadow:
        0 0 30px rgba(94, 92, 230, 0.15),
        inset 0 0 20px rgba(94, 92, 230, 0.05);
}

.pricing-card h4 {
    font-size: 0.9rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card .period {
    font-size: 1.1rem;
    color: var(--grey-500);
    font-weight: 500;
}

.pricing-card .desc {
    color: var(--grey-500);
    font-size: 0.95rem;
    margin-top: 10px;
}