/* ============================================
   HR IPR - Landing v5
   Style: light, emerald, refined, feminine
   ============================================ */

:root {
    /* Emerald palette */
    --em-50: #ecfdf5;
    --em-100: #d1fae5;
    --em-200: #a7f3d0;
    --em-300: #6ee7b7;
    --em-400: #34d399;
    --em-500: #10b981;
    --em-600: #059669;
    --em-700: #047857;
    --em-800: #065f46;

    /* Neutrals */
    --c-ink: #0f1419;
    --c-ink-2: #2d3540;
    --c-text: #4b5563;
    --c-muted: #6b7280;
    --c-line: #e7eaee;
    --c-line-2: #f1f3f6;
    --c-bg: #ffffff;
    --c-bg-soft: #fafbfc;
    --c-bg-em: #f0fdf4;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .04), 0 1px 2px rgba(15, 23, 42, .03);
    --shadow-md: 0 8px 32px -8px rgba(15, 23, 42, .12), 0 4px 8px -4px rgba(15, 23, 42, .04);
    --shadow-lg: 0 32px 64px -16px rgba(15, 23, 42, .18), 0 16px 32px -8px rgba(15, 23, 42, .08);
    --shadow-em: 0 24px 48px -16px rgba(5, 150, 105, .25);

    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    --container: 1200px;

    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-display);
    color: var(--c-ink);
    background: var(--c-bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* ===== Typography ===== */
.display {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin: 0;
    color: var(--c-ink);
}
.display--cta { font-size: clamp(34px, 4.5vw, 56px); color: #fff; line-height: 1.1; }

.h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--c-ink);
}

.grad {
    background: linear-gradient(135deg, var(--em-500) 0%, var(--em-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--em-600);
}
.grad-light {
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hl {
    position: relative;
    display: inline-block;
    z-index: 1;
    white-space: nowrap;
}
.hl::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px;
    bottom: 0.06em;
    height: 0.32em;
    background: var(--em-100);
    border-radius: 4px;
    z-index: -1;
}

.kicker {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--em-700);
    margin-bottom: 16px;
}

.lead {
    margin-top: 18px;
    color: var(--c-text);
    font-size: 18.5px;
    line-height: 1.6;
    max-width: 640px;
}

.head { margin-bottom: 64px; max-width: 740px; }
.head--center { text-align: center; margin-left: auto; margin-right: auto; }
.head--center .lead { margin-left: auto; margin-right: auto; }

.ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: var(--em-50);
    color: var(--em-700);
    border: 1px solid var(--em-100);
    border-radius: var(--r-pill);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 28px;
}
.ribbon__icon {
    color: var(--em-500);
    font-size: 14px;
    display: inline-block;
    animation: spin 5s linear infinite;
}
.ribbon--light {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.ribbon--light .ribbon__icon { color: #a7f3d0; }
@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform .15s, box-shadow .2s, background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-display);
}
.btn--primary {
    background: var(--em-600);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(5, 150, 105, .45);
}
.btn--primary:hover {
    background: var(--em-700);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(5, 150, 105, .55);
}
.btn--outline {
    background: #fff;
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn--outline:hover { border-color: var(--em-600); color: var(--em-700); }
.btn--white {
    background: #fff;
    color: var(--em-700);
}
.btn--white:hover { background: var(--em-50); transform: translateY(-2px); }
.btn--link {
    background: transparent;
    color: var(--c-ink);
    padding-left: 10px; padding-right: 10px;
}
.btn--link:hover { color: var(--em-700); }
.btn--lg { padding: 16px 28px; font-size: 16.5px; }
.btn--sm { padding: 8px 18px; font-size: 14px; gap: 6px; }
.btn--full { width: 100%; }
.btn .arrow { display: inline-block; transition: transform .2s ease; font-weight: 500; }
.btn:hover .arrow { transform: translateX(4px); }
.play-dot {
    display: inline-flex;
    width: 22px; height: 22px;
    align-items: center; justify-content: center;
    background: var(--em-100);
    color: var(--em-700);
    border-radius: 50%;
    font-size: 9px;
    padding-left: 2px;
}

.link-quiet { font-size: 14.5px; color: var(--c-text); font-weight: 500; }
.link-quiet:hover { color: var(--em-700); }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.header.is-scrolled { border-color: var(--c-line); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.03em;
    color: var(--c-ink);
}
.logo__leaf { width: 28px; height: 28px; display: block; }
.logo__text { display: inline-flex; align-items: baseline; gap: 4px; }
.logo__one {
    font-weight: 500;
    font-style: italic;
    color: var(--em-600);
    font-size: 0.85em;
}
.logo__ipr {
    font-weight: 800;
    color: var(--c-ink);
}

.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
    color: var(--c-text);
    font-weight: 500;
    font-size: 14.5px;
    transition: color .15s;
}
.nav a:hover { color: var(--em-700); }

.header__actions { display: flex; gap: 18px; align-items: center; }

.burger {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 10px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform .2s;
}
.burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--c-line);
    background: #fff;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
    padding: 10px 0;
    font-weight: 500;
    color: var(--c-text);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 56px 0 24px;
    background:
        radial-gradient(ellipse at top, rgba(16, 185, 129, .07), transparent 60%),
        radial-gradient(circle at 0% 30%, rgba(167, 243, 208, .15), transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(110, 231, 183, .12), transparent 40%),
        #fff;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__leaf {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: .35;
    filter: blur(8px);
}
.hero__leaf--1 {
    width: 380px; height: 380px;
    top: -120px; right: -80px;
    background: linear-gradient(135deg, var(--em-200), var(--em-100));
    transform: rotate(25deg);
}
.hero__leaf--2 {
    width: 320px; height: 320px;
    top: 30%; left: -160px;
    background: linear-gradient(135deg, var(--em-100), var(--em-50));
    transform: rotate(-15deg);
}

.hero__head {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
}
.display--center { text-align: center; }
.hero__lead {
    color: var(--c-text);
    font-size: 19px;
    margin: 24px auto 0;
    line-height: 1.6;
    max-width: 640px;
}
.hero__cta {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.hero__bullets {
    margin-top: 28px;
    display: flex;
    gap: 8px 28px;
    flex-wrap: wrap;
    color: var(--c-text);
    font-size: 14px;
    justify-content: center;
}
.hero__bullets span { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets i {
    width: 6px; height: 6px;
    background: var(--em-500);
    border-radius: 50%;
    display: inline-block;
}

/* ===== Showcase (big dashboard mock) ===== */
.showcase {
    position: relative;
    z-index: 1;
    margin: 64px auto 0;
    max-width: 1080px;
    perspective: 2000px;
}
.showcase__frame {
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow:
        0 64px 96px -32px rgba(15, 23, 42, .25),
        0 32px 48px -16px rgba(15, 23, 42, .12),
        var(--shadow-em);
    border: 1px solid var(--c-line);
    overflow: hidden;
    transform: rotateX(2deg);
    transform-origin: top center;
    transition: transform .6s ease;
}
.showcase:hover .showcase__frame { transform: rotateX(0); }

.showcase__bar {
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sc-dot { width: 12px; height: 12px; border-radius: 50%; }
.sc-dot--r { background: #ff5f57; }
.sc-dot--y { background: #febc2e; }
.sc-dot--g { background: #28c840; }
.showcase__url {
    flex: 1;
    text-align: center;
    font-size: 12.5px;
    color: var(--c-muted);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    padding: 5px 16px;
    max-width: 380px;
    margin: 0 auto;
}
.showcase__url .lock { color: var(--em-600); margin-right: 4px; }
.showcase__user {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--em-500), var(--em-700));
    color: #fff;
    font-weight: 700;
    font-size: 11.5px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.showcase__app {
    display: grid;
    grid-template-columns: 220px 1fr;
}
.sc-side {
    background: var(--c-bg-soft);
    border-right: 1px solid var(--c-line);
    padding: 20px 14px;
}
.sc-side__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 16px;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 14px;
    color: var(--c-ink);
}
.sc-side__group {
    font-size: 10.5px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 14px 8px 6px;
}
.sc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--c-text);
    border-radius: var(--r-sm);
    margin-bottom: 1px;
}
.sc-link span:first-child {
    color: var(--c-muted);
    width: 14px; text-align: center;
}
.sc-link em {
    font-style: normal;
    margin-left: auto;
    background: var(--em-100);
    color: var(--em-700);
    padding: 1px 8px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
}
.sc-link--active {
    background: var(--em-50);
    color: var(--em-800);
    font-weight: 600;
    border: 1px solid var(--em-100);
}
.sc-link--active span:first-child { color: var(--em-600); }

.sc-main { padding: 28px 32px; }
.sc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.sc-head__eb {
    font-size: 11px;
    font-weight: 700;
    color: var(--em-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sc-head__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 4px 0 0;
    letter-spacing: -0.02em;
}
.sc-head__actions { display: flex; gap: 10px; align-items: center; }
.chip-mini {
    padding: 6px 12px;
    background: #fff;
    color: var(--c-text);
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 500;
}
.sc-btn {
    background: var(--em-600);
    color: #fff;
    border: 0;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.sc-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.sc-kpi {
    padding: 16px 18px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
}
.sc-kpi__lbl {
    font-size: 11px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.sc-kpi__val {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 8px 0 6px;
}
.sc-kpi__val small { font-size: 13px; color: var(--c-muted); font-weight: 500; margin-left: 2px; }
.sc-kpi__trend { font-size: 11.5px; color: var(--c-muted); font-weight: 500; }
.sc-kpi__trend--up { color: var(--em-600); font-weight: 600; }

.sc-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}
.sc-panel {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 18px 20px;
}
.sc-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--c-ink-2);
}
.sc-legend { display: flex; gap: 12px; font-size: 11px; color: var(--c-muted); font-weight: 500; }
.leg {
    display: inline-block;
    width: 10px; height: 2px;
    margin-right: 4px;
    vertical-align: middle;
    border-radius: 2px;
}
.leg--em { background: var(--em-600); }
.leg--mute { background: #cbd5e1; }
.sc-svg { width: 100%; height: 130px; }

.sc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.sc-list li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-line);
}
.sc-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.sc-list strong { display: block; font-size: 13px; font-weight: 700; color: var(--c-ink); }
.sc-list em { display: block; font-style: normal; font-size: 11.5px; color: var(--c-muted); margin-top: 1px; }
.when {
    font-size: 11px;
    color: var(--em-700);
    background: var(--em-50);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-weight: 600;
    border: 1px solid var(--em-100);
}

/* Floating mini cards above showcase */
.float-mini {
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    animation: bob 5s ease-in-out infinite;
}
.float-mini--approve {
    top: -24px;
    left: 4%;
    animation-delay: 0s;
}
.float-mini--note {
    top: 28%;
    right: -16px;
    animation-delay: -2.5s;
    background: #fffbeb;
    border-color: #fde68a;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.fm__ic {
    width: 36px; height: 36px;
    background: var(--em-600);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fm__ic svg { width: 18px; height: 18px; }
.fm__sticker {
    width: 4px; height: 36px;
    background: #f59e0b;
    border-radius: 4px;
}
.float-mini strong { display: block; font-weight: 700; font-size: 13.5px; line-height: 1.2; }
.float-mini span { font-size: 11.5px; color: var(--c-muted); }

.ava {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--em-500), var(--em-700));
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ava--1 { background: linear-gradient(135deg, var(--em-400), var(--em-600)); }
.ava--2 { background: linear-gradient(135deg, #5eead4, #0d9488); }
.ava--3 { background: linear-gradient(135deg, #86efac, #15803d); }
.ava--more { background: var(--c-ink); }
.ava--xl { width: 56px; height: 56px; font-size: 16px; }

.float-note {
    position: absolute;
    bottom: -16px;
    left: -32px;
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.float-note__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--em-600);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.float-note__icon svg { width: 18px; height: 18px; }
.float-note strong { display: block; font-weight: 700; font-size: 13.5px; }
.float-note span { font-size: 11.5px; color: var(--c-muted); }

/* ===== Proof bar ===== */
.proof-bar {
    margin-top: 96px;
    padding: 28px 32px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.proof-bar__left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.ava-stack { display: flex; }
.ava-stack .ava {
    border: 3px solid var(--c-bg-soft);
    margin-left: -10px;
}
.ava-stack .ava:first-child { margin-left: 0; }
.proof-bar__left strong { display: block; font-weight: 700; font-size: 15px; }
.proof-bar__left > div > span { font-size: 13.5px; color: var(--c-muted); }
.proof-bar__logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}
.proof-bar__logos span {
    font-weight: 700;
    color: #94a3b8;
    font-size: 14px;
    letter-spacing: 0.08em;
    opacity: .7;
}

/* ===== Stats ===== */
.stats { padding: 80px 0; }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--em-700) 0%, var(--em-500) 100%);
    border-radius: var(--r-xl);
    padding: 8px;
    box-shadow: var(--shadow-em);
}
.stat-card {
    padding: 36px 28px;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,.15);
    color: #fff;
}
.stat-card:last-child { border-right: 0; }
.stat-card__val {
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-card__val small {
    font-size: 0.5em;
    opacity: .7;
    font-weight: 600;
    margin-left: 4px;
}
.stat-card__lbl {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}

/* ===== Spotlight ===== */
.spotlight { padding: 96px 0; }
.spotlight--alt { background: var(--c-bg-soft); }
.spotlight__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}
.spotlight__inner--reverse { grid-template-columns: 1fr 1.15fr; }
.spotlight__inner--reverse .spotlight__visual { order: 2; }
.spotlight__visual { position: relative; }
.emerald-bg {
    position: absolute;
    inset: -32px;
    background:
        radial-gradient(circle at 30% 30%, var(--em-100), transparent 60%),
        radial-gradient(circle at 70% 70%, var(--em-50), transparent 60%);
    border-radius: var(--r-xl);
    z-index: 0;
}

.ui-frame {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
    overflow: hidden;
    display: grid;
    grid-template-columns: 160px 1fr;
}
.ui-frame__sidebar {
    background: var(--c-bg-soft);
    border-right: 1px solid var(--c-line);
    padding: 18px 12px;
}
.ui-frame__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 16px;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 14px;
    color: var(--c-ink);
}
.emerald-square {
    width: 18px; height: 18px;
    background: var(--em-600);
    border-radius: 5px;
}
.ui-frame__nav { display: grid; gap: 2px; }
.ufn {
    padding: 8px 12px;
    font-size: 12.5px;
    color: var(--c-text);
    border-radius: var(--r-sm);
    cursor: default;
}
.ufn--active {
    color: var(--c-ink);
    font-weight: 600;
}
.ufn--current {
    background: var(--em-50);
    color: var(--em-700);
    font-weight: 600;
    border: 1px solid var(--em-100);
}

.ui-frame__main { padding: 24px 28px; }

.uf-steps {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.uf-step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--c-line-2);
    color: var(--c-muted);
    font-size: 12px;
    font-weight: 500;
}
.uf-step i {
    font-style: normal;
    font-weight: 700;
    display: inline-flex;
    width: 16px; height: 16px;
    background: rgba(255,255,255,.5);
    color: var(--c-muted);
    border-radius: 50%;
    align-items: center; justify-content: center;
    font-size: 10px;
}
.uf-step.done { background: var(--em-100); color: var(--em-700); }
.uf-step.done i { background: var(--em-600); color: #fff; }
.uf-step.active { background: var(--em-600); color: #fff; font-weight: 600; }
.uf-step.active i { background: #fff; color: var(--em-700); }

.uf-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.uf-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.emerald-tag {
    background: var(--em-100);
    color: var(--em-700);
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 600;
}
.grey-tag {
    background: var(--c-line-2);
    color: var(--c-text);
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 500;
}

.uf-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.uf-field__label {
    font-size: 11px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 6px;
}
.uf-field__input {
    padding: 10px 14px;
    background: var(--c-bg-soft);
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-sm);
    font-size: 13.5px;
    font-weight: 500;
}
.uf-field__input--em {
    border-color: var(--em-500);
    background: var(--em-50);
    color: var(--em-700);
    font-weight: 600;
}

.uf-progress {
    background: var(--c-bg-soft);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-bottom: 16px;
}
.uf-progress__bar {
    height: 8px;
    background: var(--c-line);
    border-radius: var(--r-pill);
    overflow: hidden;
    margin-bottom: 8px;
}
.uf-progress__bar i {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--em-500), var(--em-600));
    border-radius: var(--r-pill);
}
.uf-progress__label {
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 500;
}

.uf-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.uf-btn {
    padding: 8px 18px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid;
    background: #fff;
    cursor: pointer;
}
.uf-btn--ghost { color: var(--c-text); border-color: var(--c-line); }
.uf-btn--em { background: var(--em-600); color: #fff; border-color: var(--em-600); }

.spotlight__copy h2 { margin-bottom: 18px; }
.spotlight__copy p {
    color: var(--c-text);
    font-size: 17.5px;
    line-height: 1.6;
    margin: 0 0 32px;
}

.feature-list { display: grid; gap: 20px; }
.feature-list__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: flex-start;
}
.feature-list__num {
    width: 36px; height: 36px;
    background: var(--em-50);
    color: var(--em-700);
    border-radius: 50%;
    font-weight: 800;
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--em-100);
}
.feature-list h4 {
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--c-ink);
}
.feature-list p { color: var(--c-text); font-size: 14.5px; margin: 0; line-height: 1.5; }

/* ===== Screen frame (generic for spotlights 2-3) ===== */
.screen-frame {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
    overflow: hidden;
}
.sf-bar {
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.sf-bar__title {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 500;
}
.sf-body { padding: 24px 26px; }

/* Analytics block */
.ana-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.ana-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}
.ana-pills { display: flex; gap: 4px; background: var(--c-bg-soft); padding: 4px; border-radius: var(--r-md); border: 1px solid var(--c-line); }
.ana-pill {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-muted);
    border-radius: var(--r-sm);
    cursor: default;
}
.ana-pill--active { background: #fff; color: var(--em-700); font-weight: 600; box-shadow: var(--shadow-sm); }

.ana-hero {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 18px;
    margin-bottom: 20px;
}
.ana-big {
    background: linear-gradient(135deg, var(--em-50), var(--em-100));
    border: 1px solid var(--em-100);
    border-radius: var(--r-md);
    padding: 18px 20px;
}
.ana-big__num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--em-800);
}
.ana-big__num small { font-size: 18px; color: var(--em-600); font-weight: 600; }
.ana-big__delta {
    font-size: 12px;
    color: var(--em-700);
    font-weight: 600;
    margin-top: 8px;
}

.ana-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ana-mini {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    padding: 10px 14px;
}
.ana-mini__lbl {
    font-size: 10.5px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.ana-mini__val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    margin-top: 2px;
}

.ana-chart {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 16px 18px;
}
.ana-chart__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.ana-chart__head > span:first-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--c-ink-2);
}
.ana-legend { display: flex; gap: 12px; font-size: 10.5px; color: var(--c-muted); }
.ana-legend i {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}
.ana-svg { width: 100%; height: 110px; }

/* Competencies block */
.comp-head {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-line);
}
.comp-head h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.comp-head span {
    font-size: 12.5px;
    color: var(--c-muted);
}
.comp-level {
    background: var(--em-100);
    color: var(--em-700);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 700;
    border: 1px solid var(--em-200);
}

.comp-section { margin-bottom: 18px; }
.comp-section:last-of-type { margin-bottom: 14px; }
.comp-section__title {
    font-size: 11px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 10px;
}
.comp-list { display: grid; gap: 10px; }
.comp-row {
    display: grid;
    grid-template-columns: 120px 1fr 70px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}
.comp-row__name { color: var(--c-ink-2); font-weight: 600; }
.comp-row__val { text-align: right; font-size: 12px; color: var(--c-muted); }
.comp-row__val b { color: var(--em-700); font-size: 13px; }
.comp-row__val em { font-style: normal; }
.comp-bar {
    position: relative;
    height: 8px;
    background: var(--c-line);
    border-radius: var(--r-pill);
    overflow: hidden;
}
.comp-bar__tgt, .comp-bar__cur {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: var(--w);
    border-radius: var(--r-pill);
}
.comp-bar__tgt { background: var(--em-200); }
.comp-bar__cur { background: linear-gradient(90deg, var(--em-500), var(--em-600)); z-index: 2; }

.comp-legend {
    display: flex;
    gap: 18px;
    font-size: 11.5px;
    color: var(--c-muted);
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}
.dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.dot--cur { background: var(--em-600); }
.dot--tgt { background: var(--em-200); }

/* Phone block */
.spotlight__visual--phone {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    min-height: 540px;
}
.phone {
    width: 240px;
    height: 480px;
    background: #1f2937;
    border-radius: 36px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 3px solid #111827;
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}
.phone__notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1f2937;
    border-radius: 14px;
    z-index: 2;
}
.phone__screen {
    background: linear-gradient(180deg, var(--em-50) 0%, #fff 30%, #fff 100%);
    border-radius: 28px;
    height: 100%;
    padding: 40px 14px 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ph-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--c-muted);
    font-weight: 600;
    padding: 0 4px;
    margin-bottom: 4px;
}
.ph-greet {
    padding: 4px 4px 0;
    margin-bottom: 4px;
}
.ph-greet strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--c-ink);
}
.ph-greet span { font-size: 11.5px; color: var(--c-muted); }

.ph-streak {
    background: linear-gradient(135deg, var(--em-600), var(--em-500));
    border-radius: var(--r-md);
    padding: 12px 14px;
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
}
.ph-streak__num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.ph-streak__lbl {
    font-size: 10.5px;
    line-height: 1.2;
    opacity: .9;
    font-weight: 600;
}
.ph-streak__bar {
    grid-column: 1 / -1;
    height: 4px;
    background: rgba(255,255,255,.25);
    border-radius: var(--r-pill);
    overflow: hidden;
    margin-top: 4px;
}
.ph-streak__bar i {
    display: block; height: 100%;
    background: #fff;
    border-radius: var(--r-pill);
}

.ph-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 10px 12px;
    box-shadow: var(--shadow-sm);
}
.ph-card__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.ph-card__tag {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--em-700);
    background: var(--em-50);
    padding: 2px 8px;
    border-radius: var(--r-pill);
}
.ph-card__tag--mute { color: var(--c-muted); background: var(--c-line-2); }
.ph-card__tag--ok { color: #fff; background: var(--em-600); }
.ph-card__time { font-size: 10px; color: var(--c-muted); font-weight: 600; }
.ph-card strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}
.ph-card span { font-size: 10.5px; color: var(--c-muted); }
.ph-bar {
    height: 4px;
    background: var(--em-50);
    border-radius: var(--r-pill);
    overflow: hidden;
    margin-top: 8px;
}
.ph-bar i {
    display: block; height: 100%;
    background: var(--em-600);
    border-radius: var(--r-pill);
}
.ph-bar--sm { height: 3px; }
.ph-card--ghost { background: var(--c-bg-soft); }
.ph-card--done strong { color: var(--em-700); }

.ph-tabs {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--c-line);
}
.ph-tab {
    text-align: center;
    font-size: 9px;
    color: var(--c-muted);
    padding: 4px 2px;
    font-weight: 600;
    border-radius: var(--r-sm);
}
.ph-tab--active { color: var(--em-700); background: var(--em-50); }

.lap-mini {
    flex: 1;
    max-width: 320px;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
    overflow: hidden;
    margin-bottom: 60px;
    z-index: 1;
    transform: translateX(-32px);
}
.lap-mini__bar {
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    padding: 8px 14px;
    display: flex;
    gap: 6px;
}
.lap-mini__bar .sc-dot { width: 10px; height: 10px; }
.lap-mini__body { padding: 14px; }
.lm-courses { display: grid; gap: 10px; }
.lm-course {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
}
.lm-course__thumb {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
}
.lm-course__thumb--1 { background: var(--em-100); }
.lm-course__thumb--2 { background: #fde68a; }
.lm-course__info strong { display: block; font-size: 12.5px; font-weight: 700; }
.lm-course__info em { display: block; font-style: normal; font-size: 10.5px; color: var(--c-muted); margin-top: 2px; }
.lm-course__pct {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--em-700);
    font-size: 14px;
}

/* ===== Grid features ===== */
.grid-features { padding: 120px 0; background: var(--c-bg-soft); }
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--em-200);
}
.feature__icon {
    display: inline-flex;
    width: 48px; height: 48px;
    background: var(--em-50);
    color: var(--em-700);
    border-radius: var(--r-md);
    align-items: center; justify-content: center;
    margin-bottom: 18px;
    border: 1px solid var(--em-100);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
}
.feature p {
    color: var(--c-text);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.5;
}

/* ===== Workflow ===== */
.workflow { padding: 120px 0; }
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step-counter;
}
.step {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--em-200);
}
.step__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.step__circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--em-600);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.step__time {
    font-size: 12px;
    color: var(--c-muted);
    background: var(--c-bg-soft);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    border: 1px solid var(--c-line);
    font-weight: 500;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
}
.step p { color: var(--c-text); font-size: 14.5px; margin: 0; }

/* ===== Story ===== */
.story-section { padding: 120px 0; background: var(--c-bg-soft); }
.story-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.story-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 180px;
    font-weight: 800;
    color: var(--em-50);
    line-height: 1;
    pointer-events: none;
}
.story-card__left { position: relative; z-index: 1; }
.story-card__quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin: 18px 0 28px;
}
.story-card__author { display: flex; align-items: center; gap: 14px; }
.story-card__author strong { display: block; font-weight: 700; font-size: 16px; }
.story-card__author span { font-size: 13.5px; color: var(--c-muted); }

.story-card__right {
    display: grid;
    gap: 20px;
    padding-left: 40px;
    border-left: 1px solid var(--c-line);
}
.story-metric__num {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--em-700);
    margin-bottom: 4px;
}
.story-metric__num small {
    font-size: 0.45em;
    color: var(--c-text);
    font-weight: 600;
    margin-left: 4px;
}
.story-metric__lbl {
    font-size: 13.5px;
    color: var(--c-text);
    line-height: 1.4;
}

.reviews-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.rmini {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s, transform .2s;
}
.rmini:hover { border-color: var(--em-200); transform: translateY(-2px); }
.rmini__stars { color: #f59e0b; font-size: 15px; letter-spacing: 1.5px; }
.rmini p {
    font-size: 15px;
    color: var(--c-ink-2);
    line-height: 1.5;
    margin: 0;
}
.rmini__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}
.rmini__author strong { display: block; font-weight: 700; font-size: 14px; }
.rmini__author span { font-size: 12.5px; color: var(--c-muted); }

/* ===== Pricing ===== */
.pricing { padding: 120px 0; }
.prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.price {
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--em-200); }
.price--featured {
    background: linear-gradient(180deg, var(--em-700) 0%, var(--em-600) 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-em);
}
.price--featured:hover { transform: translateY(-12px); }
.price--featured .price__hint { color: rgba(255,255,255,.78); }
.price--featured .price__list { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.92); }
.price--featured .price__list li::before {
    background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
    border-color: transparent;
}
.price--featured .price__list li strong { color: #fff; }

.price__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--em-700);
    padding: 7px 18px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--em-200);
}
.price__head { margin-bottom: 20px; }
.price__head h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.price__sub {
    display: inline-block;
    padding: 4px 12px;
    background: var(--em-50);
    color: var(--em-700);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
}
.price__sub--featured { background: rgba(255,255,255,.15); color: #fff; }
.price__amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 12px;
}
.price__amount small {
    font-size: 14px;
    color: var(--c-muted);
    font-weight: 500;
    margin-left: 6px;
    font-family: var(--font-body);
}
.price--featured .price__amount small { color: rgba(255,255,255,.7); }
.price__hint {
    color: var(--c-text);
    font-size: 14.5px;
    margin: 0 0 28px;
    line-height: 1.5;
}
.price__list {
    list-style: none;
    padding: 28px 0 0;
    margin: 28px 0 0;
    border-top: 1px solid var(--c-line);
    display: grid;
    gap: 12px;
}
.price__list li {
    padding-left: 28px;
    position: relative;
    font-size: 14.5px;
    color: var(--c-text);
}
.price__list li strong { color: var(--c-ink); font-weight: 600; }
.price__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--em-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

.prices__note { text-align: center; color: var(--c-muted); font-size: 13px; margin-top: 32px; }

/* ===== FAQ ===== */
.faq { padding: 120px 0; background: var(--c-bg-soft); }
.faq__list { display: grid; gap: 10px; }
.faq__item {
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-md);
    transition: border-color .15s;
}
.faq__item[open] { border-color: var(--em-300); }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--c-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    width: 28px; height: 28px;
    background: var(--em-50);
    color: var(--em-700);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 400;
    transition: transform .2s, background .2s;
    flex-shrink: 0;
}
.faq__item[open] summary::after { content: '−'; background: var(--em-600); color: #fff; }
.faq__body {
    padding: 0 24px 22px;
    color: var(--c-text);
    line-height: 1.6;
    font-size: 15px;
}

/* ===== Final CTA ===== */
.cta { padding: 120px 0; }
.cta__card {
    background: linear-gradient(135deg, var(--em-800) 0%, var(--em-600) 60%, var(--em-500) 100%);
    border-radius: var(--r-xl);
    padding: 80px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-em);
}
.cta__leaf {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.cta__leaf--a {
    width: 360px; height: 360px;
    top: -100px; right: -80px;
    background: rgba(110, 231, 183, .5);
}
.cta__leaf--b {
    width: 320px; height: 320px;
    bottom: -120px; left: -60px;
    background: rgba(167, 243, 208, .35);
}
.cta__inner { position: relative; z-index: 1; }
.cta__lead {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    max-width: 520px;
    margin: 20px auto 40px;
}
.cta__form {
    display: flex;
    gap: 10px;
    max-width: 540px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cta__input {
    flex: 1;
    min-width: 240px;
    height: 56px;
    padding: 0 24px;
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: var(--r-pill);
    color: #fff;
    font-size: 16px;
    transition: border-color .15s, background .15s;
    backdrop-filter: blur(8px);
}
.cta__input::placeholder { color: rgba(255,255,255,.55); }
.cta__input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,.18);
}
.cta__form .btn--white { height: 56px; padding: 0 28px; }
.cta__success {
    max-width: 540px;
    margin: 16px auto 0;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,.3);
    font-size: 14.5px;
    text-align: center;
}
.cta__small { color: rgba(255,255,255,.6); font-size: 12.5px; margin-top: 24px; }
.cta__small a { color: #fff; border-bottom: 1px solid currentColor; }

/* ===== Footer ===== */
.footer {
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
    padding: 80px 0 24px;
    color: var(--c-text);
    font-size: 14.5px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
}
.footer__brand { max-width: 360px; }
.footer__brand p { margin: 16px 0 20px; color: var(--c-muted); line-height: 1.6; }
.footer__contacts { display: flex; flex-direction: column; gap: 4px; }
.footer__contacts a { color: var(--c-ink); font-weight: 500; }
.footer__contacts a:hover { color: var(--em-700); }

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__cols h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--c-ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer__cols a {
    display: block;
    color: var(--c-muted);
    padding: 5px 0;
    transition: color .15s;
}
.footer__cols a:hover { color: var(--em-700); }

.footer__bottom {
    border-top: 1px solid var(--c-line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--c-muted);
    font-size: 13px;
    align-items: center;
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
    width: 36px; height: 36px;
    background: var(--em-50);
    border: 1px solid var(--em-100);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--em-700);
    transition: background .15s, color .15s;
}
.footer__socials a:hover { background: var(--em-600); color: #fff; border-color: var(--em-600); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .showcase { margin-top: 48px; }
    .showcase__app { grid-template-columns: 1fr; }
    .sc-side { display: none; }
    .sc-main { padding: 22px 20px; }
    .sc-kpis { grid-template-columns: repeat(2, 1fr); }
    .sc-split { grid-template-columns: 1fr; }
    .float-mini--approve { left: 0; top: -16px; }
    .float-mini--note { right: 0; top: 20%; }

    .proof-bar { flex-direction: column; text-align: center; }
    .proof-bar__left { flex-direction: column; }

    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
    .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
    .stat-card:nth-last-child(-n+2) { border-bottom: 0; }

    .spotlight__inner,
    .spotlight__inner--reverse { grid-template-columns: 1fr; gap: 56px; }
    .spotlight__inner--reverse .spotlight__visual { order: 0; }
    .ui-frame { grid-template-columns: 1fr; }
    .ui-frame__sidebar { display: none; }

    .ana-hero { grid-template-columns: 1fr; }
    .comp-row { grid-template-columns: 100px 1fr 60px; gap: 10px; font-size: 12.5px; }
    .spotlight__visual--phone { gap: 12px; min-height: auto; flex-wrap: wrap; justify-content: center; }
    .lap-mini { transform: none; margin-bottom: 0; max-width: 280px; }

    .features__grid { grid-template-columns: repeat(2, 1fr); }

    .steps { grid-template-columns: repeat(2, 1fr); }

    .story-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .story-card__right { padding-left: 0; border-left: 0; border-top: 1px solid var(--c-line); padding-top: 32px; }

    .reviews-mini { grid-template-columns: 1fr; }

    .prices { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .price--featured { transform: none; }
    .price--featured:hover { transform: translateY(-4px); }

    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .nav, .header__actions { display: none; }
    .burger { display: flex; }
    .header__inner { height: 64px; }
    .container { padding: 0 18px; }

    .hero { padding: 32px 0 16px; }
    .hero__lead { font-size: 16px; }
    .hero__leaf { display: none; }
    .float-mini { display: none; }
    .showcase__url { display: none; }
    .showcase__bar { justify-content: flex-start; }
    .sc-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
    .sc-kpi { padding: 12px 14px; }
    .sc-kpi__val { font-size: 24px; }
    .sc-kpi__lbl { font-size: 11px; }
    .sc-kpi__trend { font-size: 11px; }
    .sc-head__title { font-size: 16px; }
    .sc-split { gap: 12px; }
    .sc-panel__head { font-size: 13px; }
    .sc-list li { font-size: 13px; }
    .proof-bar { margin-top: 56px; padding: 24px 20px; }
    .proof-bar__logos { gap: 12px; justify-content: center; font-size: 12px; }

    .sf-body { padding: 14px; }
    .ana-mini-grid { grid-template-columns: 1fr 1fr; }
    .ana-big__num { font-size: 36px; }
    .phone { width: 200px; height: 400px; }
    .lap-mini { display: none; }

    .stats { padding: 48px 0; }
    .stats__grid { grid-template-columns: 1fr; padding: 4px; }
    .stat-card { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.15); padding: 24px; }
    .stat-card:last-child { border-bottom: 0; }
    .stat-card__val { font-size: 40px; }

    .spotlight, .grid-features, .workflow, .story-section, .pricing, .faq, .cta { padding: 48px 0; }
    .spotlight__copy .h2 { font-size: 26px; }
    .feature-list__item { gap: 14px; }
    .feature-list__item h4 { font-size: 15px; }
    .feature-list__item p { font-size: 14px; }

    .features__grid { grid-template-columns: 1fr; }
    .feature { padding: 24px 20px; }

    .steps { grid-template-columns: 1fr; }
    .story-card { padding: 32px 24px; }
    .story-card::before { display: none; }
    .story-card__quote { font-size: 18px; }
    .story-metric__num { font-size: 32px; }
    .rmini { padding: 24px 20px; }
    .rmini p { font-size: 14px; }

    .comp-row { grid-template-columns: 80px 1fr 50px; gap: 8px; font-size: 12px; }
    .comp-head { flex-wrap: wrap; gap: 12px; }
    .comp-section__title { font-size: 13px; }

    .ui-frame__main { padding: 18px 20px; }
    .uf-fields { grid-template-columns: 1fr; }
    .uf-title { font-size: 16px; }
    .uf-tags { flex-wrap: wrap; }

    .cta__card { padding: 48px 20px; }
    .display--cta { font-size: 28px; }
    .cta__lead { font-size: 15px; }

    .footer__cols { grid-template-columns: 1fr 1fr; }
    .footer__brand p { font-size: 14px; }
    .footer__bottom { font-size: 13px; flex-wrap: wrap; gap: 12px; }

    .mobile-menu { padding: 20px 18px; }
    .mobile-menu a, .mobile-menu button { font-size: 16px; }
}

@media (max-width: 420px) {
    .container { padding: 0 16px; }
    .h2 { font-size: 26px; }
    .display { font-size: 32px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .hero__bullets { justify-content: center; font-size: 13px; }
    .ribbon { font-size: 13px; }
    .kicker { font-size: 12px; }
    .sc-kpis { grid-template-columns: 1fr 1fr; }
    .footer__cols { grid-template-columns: 1fr; gap: 24px; }
    .price { padding: 28px 20px; }
    .price__amount { font-size: 32px; }
    .faq__item summary { font-size: 15px; padding: 16px 0; }
    .faq__body { font-size: 14px; }

    .modal-overlay { padding: 12px; }
    .modal { border-radius: 16px; }
    .modal__body { padding: 32px 20px 24px; }
    .modal__title { font-size: 20px; }
    .modal__text { font-size: 14px; }
    .modal__input { padding: 11px 14px; font-size: 15px; }
}

/* ===== Request Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.is-open {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: modalIn 0.25s ease-out;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.modal__close:hover {
    background: #f1f5f9;
    color: #334155;
}
.modal__body {
    padding: 40px 32px 32px;
}
.modal__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.modal__text {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.5;
}
.modal__input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    margin-bottom: 12px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.modal__input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.modal__input::placeholder {
    color: #94a3b8;
}
.modal__body form .btn {
    margin-top: 8px;
}
.modal__success {
    text-align: center;
}
.modal__check {
    width: 56px;
    height: 56px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.modal__success .modal__title {
    margin-bottom: 8px;
}
.modal__success .modal__text {
    margin-bottom: 24px;
}
.modal__success .btn {
    margin-top: 0;
}
.modal__body.is-hidden {
    display: none;
}
