/* Phony.cam — Liquid Glass × Apple B&W minimalism
 * Pure black canvas. Pure white & grayscale typography. No color accents.
 * Cards are physical glass: top specular highlight, refractive blur+saturation,
 * inset rim light, bottom darken. No rainbow gradients.
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Surfaces — strict grayscale */
    --bg: #000000;
    --bg-soft: #050505;
    --bg-elevated: #0a0a0a;
    --dark: var(--bg);
    --dark-light: var(--bg-soft);

    /* Glass tints (white over black) */
    --glass-1: rgba(255, 255, 255, 0.045);
    --glass-2: rgba(255, 255, 255, 0.07);
    --glass-3: rgba(255, 255, 255, 0.10);
    --surface: var(--glass-1);
    --surface-hover: var(--glass-2);
    --surface-strong: var(--glass-3);
    --card-bg: var(--surface);
    --card-hover: var(--surface-hover);

    /* Glass rims */
    --rim: rgba(255, 255, 255, 0.10);
    --rim-strong: rgba(255, 255, 255, 0.18);
    --rim-bright: rgba(255, 255, 255, 0.32);
    --border: var(--rim);
    --border-strong: var(--rim-strong);
    --border-bright: var(--rim-bright);

    /* Apple-grade text scale */
    --text: #f5f5f7;             /* Apple white */
    --text-secondary: #a1a1a6;   /* Apple gray */
    --text-muted: #6e6e73;       /* Apple muted */
    --text-faint: rgba(245, 245, 247, 0.32);

    /* Legacy aliases retained so dashboard/admin don't break */
    --primary: #f5f5f7;
    --primary-dark: #d1d1d6;
    --secondary: #a1a1a6;

    /* Geometry */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Liquid-glass effects */
    --blur: 32px;
    --blur-strong: 48px;

    /* Shadows: pure black, no color */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 40px 80px -20px rgba(0, 0, 0, 0.75);

    /* Liquid-glass composite shadow (rim light + lift + inner refraction shade) */
    --liquid:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 -1px 0 rgba(0, 0, 0, 0.30) inset,
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 30px 60px -20px rgba(0, 0, 0, 0.6);

    --liquid-strong:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 -1px 0 rgba(0, 0, 0, 0.40) inset,
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 50px 100px -24px rgba(0, 0, 0, 0.75);

    --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
}

::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

img { max-width: 100%; }
/* Imgs that rely on margin auto for centering need block */
.empty-state img { display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===========================
   Background — austere
   =========================== */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg);
}

.animated-bg::before {
    /* almost-invisible vignette to give depth without color */
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04), transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.02), transparent 50%);
}

.animated-bg::after {
    /* film grain */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Reuse orb markup but make them pure white smudges, not rainbow */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    background: rgba(255, 255, 255, 0.05);
    animation: orb-drift 30s ease-in-out infinite;
}
.gradient-orb.orb-1 { width: 600px; height: 600px; top: -180px; left: -120px; }
.gradient-orb.orb-2 { width: 520px; height: 520px; top: 30%; right: -160px; animation-delay: -10s; }
.gradient-orb.orb-3 { width: 720px; height: 720px; bottom: -260px; left: 28%; animation-delay: -20s; opacity: 0.5; }

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -20px); }
}

#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

/* ===========================
   Liquid Glass primitive
   =========================== */
.glass {
    background: var(--glass-1);
    backdrop-filter: blur(var(--blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
    border: 1px solid var(--rim);
    border-radius: var(--radius-lg);
    box-shadow: var(--liquid);
    position: relative;
    isolation: isolate;
}

/* Specular top highlight — the signature of Liquid Glass */
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 38%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Rim light around perimeter */
.glass::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.04) 24%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.08) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 1.1rem 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    transition: padding 0.3s var(--ease), background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

/* Only show a subtle backdrop once the user scrolls, so it stays readable
   over content but there is NO rectangular bar at the top of the page. */
.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--rim);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 30px;
    height: 30px;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-icon svg path { stroke: #fff; }

.logo-text { color: #fff; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link, .nav-links a {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.92rem;
    transition: color 0.2s var(--ease);
}
.nav-link:hover, .nav-links a:hover { color: var(--text); }

.nav-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
}

/* ===========================
   Buttons — pill-shaped
   =========================== */
.btn {
    position: relative;
    padding: 0.78rem 1.4rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-large {
    padding: 1rem 1.9rem;
    font-size: 1rem;
}

.btn-block { width: 100%; }

/* Glass button — frosted with rim */
.btn-glass {
    background: var(--glass-2);
    border-color: var(--rim-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.14) inset,
        0 -1px 0 rgba(0,0,0,0.25) inset;
}
.btn-glass:hover {
    background: var(--glass-3);
    border-color: var(--rim-bright);
}

/* Primary CTA — white pill, black text (Apple's signature) */
.btn-gradient {
    background: #ffffff;
    color: #000;
    border-color: transparent;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 -1px 0 rgba(0,0,0,0.08) inset,
        0 12px 30px -10px rgba(255, 255, 255, 0.25);
}
.btn-gradient:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 -1px 0 rgba(0,0,0,0.08) inset,
        0 18px 40px -10px rgba(255, 255, 255, 0.35);
}

/* Drop the colored glow on primary — just keep the prop so legacy markup doesn't break */
.btn-glow { display: none; }

.btn-primary {
    background: #fff;
    color: #000;
    border-color: transparent;
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); }

.btn-secondary {
    background: var(--glass-2);
    border-color: var(--rim-strong);
    color: var(--text);
}
.btn-secondary:hover { background: var(--glass-3); }

/* ===========================
   Hero
   =========================== */
.hero {
    padding: 12rem 0 6rem;
    position: relative;
}

.hero .container > div {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.badge-icon { font-size: 0.85rem; }

/* Apple-grade hero typography */
.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 6.5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 1.75rem;
    color: #fff;
}

/* "accent" line — same white, italicized for emphasis instead of rainbow */
.gradient-text,
.gradient-text-animated {
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
    display: inline-block;
    font-style: italic;
    font-weight: 500;
    /* italic slants + descenders need horizontal & vertical padding
       so background-clip:text doesn't shave off the rightmost glyph */
    padding: 0.05em 0.12em 0.12em 0.04em;
    margin: -0.05em -0.12em -0.12em -0.04em;
    /* very subtle shine pass */
    background: linear-gradient(100deg, #ffffff 0%, #ffffff 40%, rgba(255,255,255,0.55) 50%, #ffffff 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s linear infinite;
}
@keyframes shine {
    0%   { background-position: 0% 50%; }
    100% { background-position: -200% 50%; }
}

.hero-description {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 580px;
}

.stat-card {
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: background 0.3s var(--ease);
}
.stat-card:hover { background: var(--glass-2); }

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0;
}

/* Hero visual: 3D phone — monochrome */
.hero-visual {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* original phone mockup styles removed — see v2 block below */

/* ===========================
   Section structure
   =========================== */
section { position: relative; z-index: 2; }

.features, .advanced-features, .pricing, .cta {
    padding: 9rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    letter-spacing: 0;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.feature-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.feature-card:hover {
    transform: translateY(-4px);
    background: var(--glass-2);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 -1px 0 rgba(0,0,0,0.20) inset;
}
.feature-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.feature-title {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
    color: #fff;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* No colored glow anymore */
.feature-glow { display: none; }

/* ===========================
   Advanced features
   =========================== */
.advanced-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advanced-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    align-items: center;
    overflow: hidden;
}

.advanced-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.advanced-feature-icon svg { width: 100%; height: 100%; }
.advanced-feature-icon svg [fill],
.advanced-feature-icon svg [stroke] { stroke: #fff; fill: transparent; }
.advanced-feature-icon svg circle[fill] { fill: #fff; }

.advanced-feature-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}
.advanced-feature-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}
.feature-list li {
    color: var(--text);
    font-size: 0.96rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: var(--glass-2);
    border: 1px solid var(--rim-strong);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}

.advanced-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Caller-ID demo */
.caller-id-demo {
    width: 100%;
    max-width: 340px;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--glass-1);
    border: 1px solid var(--rim);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--liquid);
    text-align: center;
}
.phone-display .phone-header {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.phone-display .phone-number {
    font-size: 1.55rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 0.25rem;
}
.phone-display .phone-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.phone-display .phone-arrow {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.phone-display .phone-recipient {
    font-size: 1.15rem;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
}

/* Recording demo */
.recording-demo { width: 100%; max-width: 380px; }
.recording-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.recording-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.2s var(--ease);
}
.recording-item:hover { background: var(--glass-2); }
.rec-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 0.85;
}
.rec-info { flex: 1; min-width: 0; }
.rec-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.rec-meta { font-size: 0.76rem; color: var(--text-muted); }
.rec-play {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 0.8rem;
    transition: transform 0.2s var(--ease);
}
.rec-play:hover { transform: scale(1.08); }

/* ===========================
   Pricing / calculator
   =========================== */
.calculator-wrapper {
    max-width: 720px;
    margin: 0 auto 5rem;
}

.calculator-card {
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    background: var(--glass-1);
    border: 1px solid var(--rim);
    backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    box-shadow: var(--liquid-strong);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.calculator-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 40%);
    pointer-events: none;
    z-index: 1;
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.calculator-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #fff;
}
.calculator-header p {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.calculator-body {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: inherit;
    font-size: 0.96rem;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-control:focus {
    outline: none;
    border-color: var(--rim-bright);
    background: var(--glass-2);
}
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a6' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 2.5rem;
}
select.form-control option {
    background: #0a0a0a;
    color: var(--text);
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.10);
    border-radius: 4px;
    outline: none;
    margin: 0.4rem 0;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 4px 12px rgba(0, 0, 0, 0.5);
}
.range-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.range-value {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.range-value span {
    color: #fff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.calculator-result {
    margin-top: 0.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--glass-2);
    border: 1px solid var(--rim);
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.result-row.small {
    margin-top: 0.5rem;
    font-size: 0.86rem;
    color: var(--text-secondary);
}
.result-row span:first-child {
    color: var(--text-secondary);
    font-size: 0.94rem;
}
.result-amount {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
}

.calculator-card .btn { margin-top: 0.5rem; position: relative; z-index: 2; }

/* Benefits */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 5rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    transition: background 0.3s var(--ease);
}
.benefit-item:hover { background: var(--glass-2); }
.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon img {
    width: 22px; height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.benefit-text h4 {
    font-size: 0.96rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
}
.benefit-text p {
    font-size: 0.87rem;
    color: var(--text-muted);
}

/* Payment methods */
.payment-methods { text-align: center; }
.payment-methods h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}
.payment-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.payment-card:hover:not(.disabled) {
    transform: translateY(-3px);
    background: var(--glass-2);
}
.payment-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.payment-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.85rem;
    border-radius: 13px;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-icon img {
    width: 26px; height: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.payment-name { font-weight: 600; margin-bottom: 0.2rem; color: #fff; }
.payment-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ===========================
   CTA Section
   =========================== */
.cta-content {
    text-align: center;
    padding: 5rem 3rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.cta-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    opacity: 0.85;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
}
.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 2.25rem;
    line-height: 1.5;
}

/* ===========================
   Footer
   =========================== */
.footer {
    border-top: 1px solid var(--rim);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-description {
    color: var(--text-muted);
    font-size: 0.94rem;
    max-width: 320px;
    line-height: 1.55;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.2s var(--ease);
}
.footer-column a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--rim);
    color: var(--text-muted);
    font-size: 0.86rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-social { display: flex; gap: 1.5rem; }
.social-link {
    color: var(--text-muted);
    transition: color 0.2s var(--ease);
}
.social-link:hover { color: var(--text); }

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal.active {
    display: flex;
    animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid var(--rim-strong);
    backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    box-shadow: var(--liquid-strong);
    isolation: isolate;
    animation: modal-pop 0.35s var(--ease);
}
.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 40%);
    pointer-events: none;
    z-index: 1;
}
@keyframes modal-pop {
    from { transform: translateY(20px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-2);
    border: 1px solid var(--rim);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    z-index: 2;
}
.modal-close:hover {
    background: var(--glass-3);
    color: var(--text);
}
.modal-close svg { width: 16px; height: 16px; }

.modal-content > * { position: relative; z-index: 2; }

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.modal-content .form-group { margin-bottom: 1.2rem; }
.modal-content input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: inherit;
    font-size: 0.96rem;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.modal-content input:focus {
    outline: none;
    border-color: var(--rim-bright);
    background: var(--glass-2);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero .container > div {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content { max-width: 100%; align-items: center; text-align: center; }
    .hero-stats { margin-left: auto; margin-right: auto; }
    .hero-visual { height: 500px; }

    .advanced-feature-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }

    .navbar { padding: 0.85rem 0; }
    .nav-links { display: none; }
    .nav-buttons .btn-glass { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 8rem 0 4rem; }
    .hero-buttons { justify-content: center; width: 100%; }
    .hero-buttons .btn { flex: 1; min-width: 0; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }

    .phone-frame { width: 240px; height: 480px; border-radius: 40px; }
    .phone-screen { border-radius: 30px; }
    .floating-element { display: none; }

    .features, .advanced-features, .pricing, .cta { padding: 6rem 0; }
    .features-grid { grid-template-columns: 1fr; }

    .advanced-feature-card { padding: 2rem; }

    .calculator-card { padding: 1.75rem; }

    .footer-links { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .cta-content { padding: 3rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   Careers page
   =========================== */
.careers-hero {
    padding: 11rem 0 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}
.careers-hero .hero-badge {
    margin-bottom: 1.5rem;
}
.careers-hero .hero-title {
    max-width: 880px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}
.careers-hero .hero-description {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.vacancies-section {
    padding: 4rem 0 9rem;
    position: relative;
    z-index: 2;
}
.vacancies-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto;
}

.vacancy-card {
    padding: 2.75rem;
    border-radius: var(--radius-xl);
}
.vacancy-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.vacancy-title {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}
.vacancy-salary {
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    padding: 0.55rem 1.1rem;
    background: var(--glass-2);
    border: 1px solid var(--rim-strong);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
}

.vacancy-tags {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.vacancy-tag {
    padding: 0.35rem 0.9rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.vacancy-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.02rem;
}

.vacancy-section {
    margin-bottom: 1.75rem;
}
.vacancy-section h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.vacancy-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.vacancy-section ul li {
    color: var(--text);
    line-height: 1.55;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.97rem;
}
.vacancy-section ul li::before {
    content: '';
    position: absolute;
    left: 0.2rem;
    top: 0.62em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}
.vacancy-section p {
    color: var(--text);
    line-height: 1.6;
}
.vacancy-card .btn {
    margin-top: 0.5rem;
}

/* ===========================
   Terms / legal page
   =========================== */
.terms-page {
    padding: 9rem 0 8rem;
    position: relative;
    z-index: 2;
}
.terms-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}
.terms-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 0.75rem;
}
.terms-content .terms-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.terms-meta {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.88rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rim);
}
.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 3rem 0 1rem;
    letter-spacing: -0.02em;
    scroll-margin-top: 100px;
}
.terms-content h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    margin: 1.75rem 0 0.6rem;
    letter-spacing: -0.015em;
}
.terms-content p {
    margin-bottom: 1.1rem;
}
.terms-content ul, .terms-content ol {
    margin: 0.85rem 0 1.25rem 1.5rem;
}
.terms-content li {
    margin-bottom: 0.55rem;
    color: var(--text-secondary);
    padding-left: 0.25rem;
}
.terms-content strong {
    color: var(--text);
    font-weight: 600;
}
.terms-content a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--rim-strong);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s var(--ease);
}
.terms-content a:hover {
    text-decoration-color: #fff;
}

.terms-toc {
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin: 0 0 3rem;
}
.terms-toc h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.terms-toc ol {
    column-count: 2;
    column-gap: 2rem;
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
}
.terms-toc ol li {
    margin-bottom: 0.55rem;
    break-inside: avoid;
    font-size: 0.95rem;
}
.terms-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.terms-toc a:hover { color: var(--text); }

.terms-footer-note {
    margin-top: 4rem;
    padding: 1.75rem 2rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .terms-toc ol { column-count: 1; }
    .vacancy-card { padding: 1.75rem; }
    .terms-page { padding: 7rem 0 5rem; }
    .careers-hero { padding: 8rem 0 2rem; }
}

/* ===========================
   404 page
   =========================== */
.not-found {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.nf-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.nf-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.95rem;
    background: var(--glass-1);
    border: 1px solid var(--rim);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nf-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: nf-blink 1.6s ease-in-out infinite;
}
@keyframes nf-blink {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%      { opacity: 1.0;  transform: scale(1.25); }
}

.nf-number-wrap {
    position: relative;
    display: block;
    line-height: 1;
    margin-bottom: 1.75rem;
}

.nf-number {
    font-size: clamp(5rem, 13vw, 10rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(100deg,
        #ffffff 0%, #ffffff 35%,
        rgba(255,255,255,0.32) 50%,
        #ffffff 65%, #ffffff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    padding: 0.04em 0.04em 0.10em 0.04em;
    margin: 0;
    display: block;
}

/* Ghost copy underneath for a faint refracted-glass feel */
.nf-number-ghost {
    position: absolute;
    inset: 0;
    z-index: -1;
    color: transparent;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.10), rgba(255,255,255,0) 65%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(20px);
    animation: nf-ghost-drift 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes nf-ghost-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50%      { transform: translate(6px, -4px); opacity: 1; }
}

.nf-title {
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.nf-description {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.nf-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.nf-quick-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.nf-quick-label {
    margin-right: 0.4rem;
    font-size: 0.85rem;
}
.nf-quick-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.2rem 0.1rem;
    transition: color 0.2s var(--ease);
}
.nf-quick-links a:hover { color: #fff; }
.nf-quick-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

@media (max-width: 560px) {
    .not-found { padding: 7rem 0 3rem; }
    .nf-badge  { margin-bottom: 1.5rem; }
    .nf-buttons .btn { flex: 1; min-width: 0; }
    .nf-quick-links { font-size: 0.85rem; }
}
/* ===== APK Download Section v2 ===== */
.apk-section {
    padding: 100px 0;
    position: relative;
}
.apk-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03), transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.apk-section .container { position: relative; z-index: 1; }

.apk-wrap {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.apk-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
}

.apk-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.apk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.apk-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d96b;
    box-shadow: 0 0 8px rgba(0, 217, 107, 0.6);
}

.apk-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #ffffff;
}

.apk-desc {
    font-size: 16px;
    color: #a1a1a6;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apk-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 40px;
    text-align: left;
}
.apk-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}
.apk-feature span {
    font-size: 13px;
    color: #d8d8dc;
    line-height: 1.4;
}
.apk-feat-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.apk-feat-icon svg { width: 18px; height: 18px; }

.apk-cta-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.apk-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #f5f5f7;
    color: #0a0a0a;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 12px 32px rgba(255, 255, 255, 0.12);
}
.apk-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 18px 48px rgba(255, 255, 255, 0.18);
}
.apk-btn:active { transform: translateY(0); }
.apk-btn-icon { width: 24px; height: 24px; flex-shrink: 0; }
.apk-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}
.apk-btn-line1 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.apk-btn-line2 {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.65;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.apk-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.apk-meta-item {
    font-size: 11px;
    color: #6e6e73;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .apk-section { padding: 60px 0; }
    .apk-wrap { padding: 36px 22px; border-radius: 22px; }
    .apk-title { font-size: 28px; letter-spacing: -0.6px; }
    .apk-desc { font-size: 14px; margin-bottom: 28px; }
    .apk-features-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 32px; }
    .apk-feature { padding: 12px 14px; }
    .apk-btn { padding: 16px 24px; gap: 12px; }
    .apk-btn-line1 { font-size: 15px; }
}
/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
    padding: 100px 0;
    position: relative;
}
.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03), transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.ecosystem-section .container { position: relative; z-index: 1; }

.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.eco-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: #f5f5f7;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background 0.3s ease;
}

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

.eco-card-glow {
    position: absolute;
    top: -40%;
    left: -20%;
    right: -20%;
    bottom: -40%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.eco-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}
.eco-card:hover::before {
    opacity: 1;
}
.eco-card:hover .eco-card-glow {
    opacity: 1;
}

.eco-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0, 217, 107, 0.18);
    border: 1px solid rgba(0, 217, 107, 0.5);
    color: #4cf9b8;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    z-index: 2;
}

.eco-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f7;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.3);
}
.eco-icon svg { width: 26px; height: 26px; }

.eco-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.eco-domain {
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, monospace;
    font-size: 12px;
    color: #a1a1a6;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.eco-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #a1a1a6;
    flex: 1;
    position: relative;
    z-index: 1;
}

.eco-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.eco-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 10.5px;
    font-weight: 600;
    color: #d8d8dc;
    letter-spacing: 0.3px;
}

.eco-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f7;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1;
}
.eco-arrow svg { width: 16px; height: 16px; }

.eco-card:hover .eco-arrow {
    background: #f5f5f7;
    color: #0a0a0a;
    transform: translateX(4px);
}

.eco-footer {
    text-align: center;
    margin-top: 12px;
}
.eco-footer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 13px;
    color: #a1a1a6;
}

@media (max-width: 1024px) {
    .eco-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ecosystem-section { padding: 60px 0; }
    .eco-grid { grid-template-columns: 1fr; gap: 14px; }
    .eco-card { padding: 22px; }
    .eco-name { font-size: 18px; }
    .eco-icon { width: 48px; height: 48px; }
    .eco-icon svg { width: 22px; height: 22px; }
    .eco-arrow { width: 32px; height: 32px; bottom: 18px; right: 18px; }
}
/* ===== PERFORMANCE & MOBILE FIXES (appended last → wins) ===== */

/* Disable expensive backdrop-filter and orb animation on mobile to stop lag.
   On desktop everything stays as-is. */
@media (max-width: 900px) {
    .gradient-orb,
    .orb-1, .orb-2, .orb-3 {
        display: none !important;
    }
    
    /* Reduce backdrop-filter blur on mobile (one of the biggest GPU costs on phones) */
    .glass,
    .auth-container,
    .navbar,
    .pkg-card,
    .stat-card,
    .feature-card,
    .pricing-card,
    .cta-content,
    .eco-card,
    .apk-wrap,
    .float-card,
    .phone-frame,
    .phone-screen {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    
    /* Disable heavy shimmer text on mobile — eats CPU */
    .hero-title,
    .apk-title {
        animation: none !important;
        background: none !important;
        -webkit-text-fill-color: #f5f5f7 !important;
        color: #f5f5f7 !important;
    }
    
    /* Stop AOS heavy animations on mobile (just fade in once) */
    [data-aos] {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}

/* Even on desktop — make orbs less aggressive (smaller blur radius) */
.gradient-orb {
    filter: blur(50px);
    will-change: transform;
}

/* On any device — kill expensive animations after page load idle */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hero services strip — quick links */
.hero-services-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 24px;
    align-items: center;
}
.hss-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 9px 16px;
    text-decoration: none;
    color: #f5f5f7;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}
.hss-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}
.hss-pill .hss-icon { font-size: 14px; }
.hss-pill .hss-arrow { 
    color: #a1a1a6; 
    transition: transform 0.2s ease;
}
.hss-pill:hover .hss-arrow {
    transform: translateX(3px);
    color: #f5f5f7;
}

.hss-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 7px 12px;
    text-decoration: none;
    color: #d8d8dc;
    font-size: 11.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.hss-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f5f5f7;
}

@media (max-width: 600px) {
    .hero-services-strip {
        gap: 6px;
        margin: 14px 0 18px;
    }
    .hss-pill {
        padding: 7px 12px;
        font-size: 12px;
        gap: 6px;
    }
    .hss-chip {
        padding: 5px 10px;
        font-size: 10.5px;
    }
}

/* ===== HERO MOCKUP — CLEAN OVERRIDE ===== */
/* ===== iPhone mockup — realistic, lighter, interactive (v2) ===== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.phone-3d {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
    animation: none;
    will-change: transform;
}

/* Titanium frame */
.phone-frame {
    width: 286px;
    height: 588px;
    background:
        linear-gradient(135deg, #3a3a3e 0%, #1b1b1d 22%, #2c2c30 50%, #141416 78%, #303034 100%);
    border-radius: 54px;
    padding: 5px;
    position: relative;
    box-shadow:
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.10),
        0 1px 2px rgba(255, 255, 255, 0.18),
        0 50px 90px -34px rgba(0, 0, 0, 0.8);
}

/* screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(130% 80% at 50% -10%, #15303f 0%, #0a0a0f 46%, #05050a 100%);
    border-radius: 49px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 2px #000;
}

/* Dynamic Island */
.dyn-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 11px;
}
.di-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #2a3a55 0%, #050608 70%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Status bar */
.ios-status {
    position: absolute;
    top: 17px;
    left: 0; right: 0;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: -apple-system, 'SF Pro Display', 'Poppins', sans-serif;
}
.ios-time { letter-spacing: 0.3px; }
.ios-icons { display: inline-flex; align-items: center; gap: 6px; }
.ios-icons svg { fill: #fff; }
.ios-signal { width: 18px; height: 12px; }
.ios-wifi { width: 16px; height: 12px; }
.ios-batt {
    width: 24px; height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    padding: 1.5px;
    position: relative;
    display: inline-flex;
}
.ios-batt::after {
    content: '';
    position: absolute;
    right: -3px; top: 50%;
    transform: translateY(-50%);
    width: 1.6px; height: 4px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 0 1px 1px 0;
}
.ios-batt-fill {
    flex: 1;
    border-radius: 1.5px;
    background: #fff;
}

/* call content */
.screen-content {
    position: absolute;
    inset: 0;
    padding: 70px 18px 26px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.call-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}
.call-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
}

/* avatar */
.call-avatar {
    position: relative;
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
}
.avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 158, 255, 0.55);
    animation: avatarPing 2.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.avatar-ring.r2 { animation-delay: 1.3s; }
@keyframes avatarPing {
    0%   { transform: scale(0.92); opacity: 0.9; }
    100% { transform: scale(1.55); opacity: 0; }
}
.avatar-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #26262b, #0c0c10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd2db;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.avatar-img svg { width: 52px; height: 52px; }

/* caller info */
.call-info { text-align: center; }
.caller-name {
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.call-status {
    font-size: 13px;
    color: #aeb1bb;
    letter-spacing: 0.4px;
    min-height: 17px;
}
.call-status .cs-active { display: none; }
.call-ui[data-state="active"] .cs-incoming { display: none; }
.call-ui[data-state="active"] .cs-active { display: inline; color: #4a9eff; }
.call-timer {
    font-variant-numeric: tabular-nums;
    font-size: 14px;
    color: #8a8d97;
    letter-spacing: 1px;
    margin-top: 7px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.call-ui[data-state="active"] .call-timer { opacity: 1; }

/* in-call quick pad */
.call-pad {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 22px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.call-ui[data-state="active"] .call-pad { opacity: 1; transform: none; }
.pad-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: #c8cad2;
    letter-spacing: 0.3px;
}
.pad-ico {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.pad-ico svg { width: 22px; height: 22px; }

/* action buttons */
.call-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 56px;
    width: 100%;
    padding-bottom: 8px;
}
.call-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-appearance: none;
    appearance: none;
    transition: transform 0.15s ease, opacity 0.3s ease;
}
.call-btn svg { width: 28px; height: 28px; }
.call-btn:active { transform: scale(0.9); }
.call-btn.decline { background: #ff3b30; box-shadow: 0 10px 26px rgba(255, 59, 48, 0.4); }
.call-btn.accept {
    background: #34c759;
    box-shadow: 0 10px 26px rgba(52, 199, 89, 0.4);
    animation: acceptPulse 1.8s ease-in-out infinite;
}
.call-btn.decline svg { transform: rotate(135deg); }
@keyframes acceptPulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(52, 199, 89, 0.4), 0 0 0 0 rgba(52, 199, 89, 0.5); }
    50%      { box-shadow: 0 10px 26px rgba(52, 199, 89, 0.4), 0 0 0 12px rgba(52, 199, 89, 0); }
}
/* when answered: hide accept, center decline, stop pulse */
.call-ui[data-state="active"] .call-btn.accept { display: none; }
.call-ui[data-state="active"] .call-actions { gap: 0; }

/* home indicator */
.ios-home {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 124px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.45);
    z-index: 5;
}

.phone-shadow {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 56%;
    height: 26px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65), transparent 72%);
    filter: blur(14px);
    z-index: 1;
}

/* floating chips */
.floating-element {
    position: absolute;
    z-index: 3;
    transition: transform 0.3s ease-out;
    will-change: transform;
}
.float-card {
    background: rgba(20, 20, 26, 0.66);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}
.float-icon {
    width: 30px; height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #e8e8ef;
}
.float-icon svg { width: 17px; height: 17px; }
.float-text { font-size: 12.5px; font-weight: 600; color: #f5f5f7; }

@media (max-width: 900px) {
    .hero-visual { min-height: 420px; }
    .phone-3d { transform: none !important; }
    .phone-frame { width: 232px; height: 478px; border-radius: 44px; }
    .phone-screen { border-radius: 40px; }
    .screen-content { padding: 60px 14px 20px; }
    .call-avatar { width: 88px; height: 88px; margin-bottom: 16px; }
    .avatar-img svg { width: 44px; height: 44px; }
    .caller-name { font-size: 18px; }
    .call-btn { width: 56px; height: 56px; }
    .call-btn svg { width: 24px; height: 24px; }
    .call-actions { gap: 44px; }
    .call-pad { margin-top: 22px; gap: 14px 18px; }
    .pad-ico { width: 46px; height: 46px; }
    .floating-element { display: none; }
}

/* ============================================
   Subscriptions section (PRO / PRO+) + MacBook mockup
   Monochrome to match site; green/blue only on tier accents.
   ============================================ */
.subs-section { padding: 100px 0; position: relative; }
.subs-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.subs-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin: 16px 0 14px; }
.subs-sub { color: var(--text-secondary, #9a9aa8); font-size: 17px; line-height: 1.6; }

/* ---- MacBook ---- */
.macbook { width: min(560px, 86vw); margin: 0 auto 56px; perspective: 1800px; }
.mac-screen {
    position: relative;
    transform-style: preserve-3d;
    transform-origin: bottom center;
    transform: rotateX(-88deg);                 /* folded (closed) */
    transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.macbook.is-open .mac-screen { transform: rotateX(0deg); }  /* opened */
.mac-lid {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(150deg, #111 0%, #050505 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px 16px 4px 4px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.03);
}
.mac-cam { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #1c1c1c; }
.mac-base {
    position: relative; height: 16px; width: 112%; margin-left: -6%;
    background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.mac-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; background: #0c0c0c; border-radius: 0 0 8px 8px; }

/* Faux CRM UI inside the lid */
.mac-ui { position: absolute; inset: 14px; display: flex; gap: 10px; opacity: 0; transition: opacity 0.5s ease 1.1s; }
.macbook.is-open .mac-ui { opacity: 1; }
.mac-ui-side { width: 44px; display: flex; flex-direction: column; gap: 8px; padding: 8px 6px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.mac-ui-logo { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg,#4a9eff,#7c5cff); margin: 0 auto 4px; }
.mac-ui-nav { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.mac-ui-nav.act { background: rgba(74,158,255,0.5); }
.mac-ui-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mac-ui-row { display: flex; gap: 8px; }
.mac-ui-stat { flex: 1; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.mac-ui-kanban { flex: 1; display: flex; gap: 8px; }
.mac-ui-col { flex: 1; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 6px; display: flex; flex-direction: column; gap: 6px; }
.mac-ui-col span { height: 22px; border-radius: 5px; background: rgba(255,255,255,0.07); }
.mac-ui-col:nth-child(2) span { background: rgba(245,166,35,0.25); }
.mac-ui-col:nth-child(3) span { background: rgba(124,92,255,0.25); }
.mac-ui-col:nth-child(4) span { background: rgba(46,204,113,0.25); }

/* ---- Plans ---- */
.subs-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.subs-plan {
    position: relative; background: var(--glass-1, rgba(255,255,255,0.045));
    border: 1px solid var(--rim, rgba(255,255,255,0.1)); border-radius: 20px; padding: 30px 26px;
    backdrop-filter: blur(20px);
}
.plan-plus { border-color: rgba(74,158,255,0.4); }
.subs-plan-glow { position: absolute; inset: -1px; border-radius: 20px; pointer-events: none;
    box-shadow: 0 0 40px rgba(74,158,255,0.25); }
.subs-plan-badge { display: inline-block; padding: 5px 16px; border-radius: 999px; font-weight: 800; font-size: 15px; letter-spacing: 0.5px; color: #fff; margin-bottom: 18px; }
.subs-plan-badge.pro { background: linear-gradient(135deg,#2ecc71,#27ae60); }
.subs-plan-badge.plus { background: linear-gradient(135deg,#4a9eff,#7c5cff); }
.subs-plan-price { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
.subs-plan-price span { font-size: 14px; font-weight: 500; color: var(--text-secondary,#9a9aa8); margin-left: 6px; }
.subs-plan-desc { color: var(--text-secondary,#9a9aa8); margin: 10px 0 18px; font-size: 14px; }
.subs-feat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.subs-feat li { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.4; }
.subs-feat li::before { position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; text-align: center; line-height: 18px; font-size: 12px; font-weight: 700; }
.subs-feat li.ok { color: #e8e8ef; }
.subs-feat li.ok::before { content: '✓'; background: rgba(46,204,113,0.18); color: #2ecc71; }
.subs-feat li.no { color: #6a6a78; }
.subs-feat li.no::before { content: '×'; background: rgba(255,255,255,0.06); color: #6a6a78; }
.subs-note { text-align: center; color: var(--text-secondary,#9a9aa8); font-size: 14px; margin-top: 32px; }

@media (max-width: 720px) {
    .subs-section { padding: 70px 0; }
    .subs-plans { grid-template-columns: 1fr; }
}

