/* ============================================
   TRAFIX LOADER — Landing Page Styles
   Design system based on loader.trafix.tech
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors — from loader.trafix.tech */
    --color-primary: #97c238;
    --color-primary-hover: #88b32e;
    --color-primary-light: #dceebb;
    --color-primary-bg: #eef6dc;

    /* Neutrals — from loader.trafix.tech */
    --color-bg: #f7f7f8;
    --color-white: #ffffff;
    --color-dark: #111111;
    --color-text: #111111;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-border: #e5e7ea;
    --color-border-light: #f0f1f3;

    /* Accent */
    --color-danger: #ef4444;
    --color-warning: #f59e0b;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography */
    --font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --max-width: 1400px;
    --header-height: 72px;
}

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

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-family: var(--font-family);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.3;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 247, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    height: var(--header-height);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.header__logo-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-icon {
    flex-shrink: 0;
    height: 36px;
    width: auto;
}

.header__descriptor {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding-left: var(--space-md);
    border-left: 1px solid var(--color-border);
    line-height: 1.3;
    white-space: nowrap;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header__link:hover {
    color: var(--color-text);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__socials {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

.header__social:hover {
    color: var(--color-text);
    background: var(--color-border-light);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header__cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(151, 194, 56, 0.3);
}

.header__cta-outline {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header__cta-outline:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    max-width: 480px;
}

.hero__title {
    margin-bottom: var(--space-lg);
}

.hero__title-accent {
    color: var(--color-primary);
    display: block;
}

.hero__title-line {
    display: block;
}

.hero__subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin-bottom: var(--space-md);
    max-width: 480px;
}

.hero__subtitle-br {
    display: none;
}

.hero__subtitle strong {
    font-weight: 600;
    color: var(--color-text);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-family);
    white-space: nowrap;
}

.hero__btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(151, 194, 56, 0.35);
    padding: 0 12px 0 20px;
}

.hero__btn--primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(151, 194, 56, 0.45);
}

.hero__btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ff6b00;
    padding: 4px 8px 4px 10px;
    border-radius: 6px;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero__btn-promo:hover {
    background: #e86000;
}

.hero__btn-promo-text {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.hero__btn-promo-copy {
    color: #fff;
    flex-shrink: 0;
}

.hero__btn-promo-check {
    display: none;
    color: #fff;
    flex-shrink: 0;
}

.hero__btn-promo.copied .hero__btn-promo-copy {
    display: none;
}

.hero__btn-promo.copied .hero__btn-promo-check {
    display: block;
}

.hero__promo-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.hero__note {
    font-size: 13px;
    color: var(--color-text-muted);
}


/* --- Hero Visual --- */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__demo {
    position: relative;
    width: 100%;
}

.hero__video {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    background: #fff;
}

.hero__video:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.hero__demo-overlay {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    pointer-events: none;
}

.hero__demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(26, 26, 46, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.hero__demo-badge svg {
    flex-shrink: 0;
}


/* ============================================
   BLOCK 2 — PROBLEM
   ============================================ */
.problem {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.problem__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.problem__inner.zoomed-in {
    transform: scale(1);
    opacity: 1;
}

.problem__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.problem__card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.problem__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.problem__card--nedogruz .problem__card-icon {
    background: #eef6dc;
    color: #6a8c1f;
}

.problem__card--peregruz .problem__card-icon {
    background: #fef2f2;
    color: #dc2626;
}

.problem__card--nevlezlo .problem__card-icon {
    background: #fff7ed;
    color: #ea580c;
}

.problem__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.problem__card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.problem__card-stat {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.problem__card-stat-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.problem__card-stat--danger .problem__card-stat-num {
    color: #dc2626;
    font-size: 18px;
}

.problem__card-stat--warning .problem__card-stat-num {
    color: #ea580c;
}

.problem__card-stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.problem__bottom-note {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    font-style: italic;
    max-width: 640px;
    margin: 0 auto;
}


/* ============================================
   BLOCK 3 — SOLUTION
   ============================================ */
.solution {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.solution__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.solution__suptitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.solution__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.solution__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.solution__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution__card-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
}

.solution__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.solution__card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}


/* ============================================
   BLOCK 4 — HOW IT WORKS (STEPS)
   ============================================ */
.steps {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.steps__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.steps__title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.steps__subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.6;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
}

/* Connector line between steps */
.steps__grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: var(--color-primary-light);
    z-index: 0;
}

.steps__card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.steps__card-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.steps__card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.steps__card-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.steps__bottom {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-primary-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary-light);
}

.steps__bottom-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

.steps__bottom-text strong {
    font-weight: 700;
    color: var(--color-primary);
}


/* ============================================
   BLOCK 5 — AUDIENCE (WHO NEEDS THIS)
   ============================================ */
.audience {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.audience__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.audience__suptitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.audience__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.audience__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.audience__item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience__item:hover {
    box-shadow: var(--shadow-md);
}

.audience__item-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.audience__item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience__item-title {
    font-size: 18px;
    font-weight: 700;
}

.audience__chat {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.audience__bubble {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    position: relative;
    max-width: 85%;
}

.audience__bubble-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    padding: 2px 8px;
    border-radius: 4px;
}

.audience__bubble--problem {
    background: #fef2f2;
    border: 1px solid #fecaca;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.audience__bubble--problem .audience__bubble-label {
    color: #dc2626;
    background: #fee2e2;
}

.audience__bubble--solution {
    background: #eef6dc;
    border: 1px solid var(--color-primary-light);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.audience__bubble--solution .audience__bubble-label {
    color: #6a8c1f;
    background: #dceebb;
}

/* Animate: scroll-in for audience items */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   BLOCK 6 — NUMBERS / FACTS
   ============================================ */
.numbers {
    padding: var(--space-4xl) 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.numbers__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.numbers__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.numbers__title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.numbers__desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto;
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.numbers__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.numbers__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.numbers__card-prefix {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.numbers__card-value {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.03em;
    display: inline;
}

.numbers__card-unit {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--color-primary);
    display: inline;
    margin-left: 4px;
}

.numbers__card--danger .numbers__card-value,
.numbers__card--danger .numbers__card-unit {
    color: #ef4444;
}

.numbers__card--accent .numbers__card-value,
.numbers__card--accent .numbers__card-unit {
    color: #ff6b00;
}

.numbers__card-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-md);
}

.numbers__cta {
    text-align: center;
}

.numbers__cta-btn {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 32px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    font-family: var(--font-family);
}

.numbers__cta-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(151, 194, 56, 0.4);
}


/* ============================================
   BLOCK 7 — DIFFERENTIATORS
   ============================================ */
.differ {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.differ__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.differ__suptitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.differ__title {
    text-align: center;
    margin-bottom: var(--space-md);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.differ__desc {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.6;
}

.differ__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.differ__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.differ__card--reverse {
    direction: rtl;
}

.differ__card--reverse > * {
    direction: ltr;
}

.differ__card-media {
    position: relative;
}

.differ__card-placeholder {
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.differ__card-img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
    object-fit: cover;
}

.differ__card-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    padding: 6px 12px;
    background: rgba(26, 26, 46, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.differ__card-content {
    padding: var(--space-lg) 0;
}

.differ__card-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
}

.differ__card-title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.differ__card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}


/* ============================================
   BLOCK 8 — PRICING
   ============================================ */
.pricing {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.pricing__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.pricing__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* Free entry block */
.pricing__free {
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    border: 2px solid var(--color-primary-light);
    text-align: center;
    position: relative;
}

.pricing__free-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing__free-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-sm);
}

.pricing__free-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.pricing__free-text strong {
    color: #ff6b00;
    font-weight: 700;
}

.pricing__free-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 32px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    font-family: var(--font-family);
}

.pricing__free-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(151, 194, 56, 0.4);
}

/* Plans label */
.pricing__plans-label {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Pricing cards grid */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 960px;
    margin: 0 auto;
}

.pricing__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.pricing__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.pricing__card--popular {
    border-color: var(--color-primary);
    background: var(--color-primary-bg);
}

.pricing__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.pricing__card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-sm);
}

.pricing__card-price {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing__card-price span {
    font-size: 0.6em;
    font-weight: 600;
}

.pricing__card-daily {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing__card--popular .pricing__card-daily {
    color: #6a8c1f;
}


/* ============================================
   BLOCK 9 — FAQ
   ============================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.faq__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.faq__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.faq__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq__item {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq__item:hover {
    box-shadow: var(--shadow-sm);
}

.faq__item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
    content: '';
}

.faq__question:hover {
    color: var(--color-primary);
}

/* Animated plus/minus icon */
.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary-bg);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-primary);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    background: var(--color-primary);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
    background: #fff;
}

.faq__item[open] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer content with smooth animation */
.faq__answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq__item[open] .faq__answer {
    /* JS handles the animation, this is fallback */
}

.faq__answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.faq__answer strong {
    color: #ff6b00;
    font-weight: 700;
}


/* ============================================
   BLOCK 10 — FINAL CTA
   ============================================ */
.final-cta {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #7aa82a 0%, #97c238 40%, #a8d44a 100%);
    overflow: hidden;
}

.final-cta__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 10%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating dots animation */
.final-cta__bg-pattern::before,
.final-cta__bg-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    animation: floatCta 8s ease-in-out infinite;
}

.final-cta__bg-pattern::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.final-cta__bg-pattern::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -40px;
    animation-delay: -4s;
}

@keyframes floatCta {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Two-column layout: CTA left, summary right */
.final-cta__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.final-cta__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.final-cta__title {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    padding: 0 40px;
    background: #fff;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.final-cta__btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #111;
}

.final-cta__btn svg {
    transition: transform 0.3s ease;
}

.final-cta__btn:hover svg {
    transform: translateX(4px);
}

/* Promo code under button */
.final-cta__promo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.final-cta__promo-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.final-cta__promo-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.final-cta__promo-code:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta__promo-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.final-cta__promo-icon-copy {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.final-cta__promo-icon-check {
    display: none;
    color: #fff;
    flex-shrink: 0;
}

.final-cta__promo-code.copied .final-cta__promo-icon-copy {
    display: none;
}

.final-cta__promo-code.copied .final-cta__promo-icon-check {
    display: block;
}

.final-cta__promo-code.copied {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

/* Summary card — right column */
.final-cta__summary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
}

.final-cta__summary-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: var(--space-lg);
}

.final-cta__summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.final-cta__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.final-cta__list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.final-cta__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.final-cta__list li strong {
    color: #fff;
    font-weight: 700;
}

.final-cta__summary-conclusion {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-3xl);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__logo {
    display: inline-flex;
}

.footer__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer__heading {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.footer__email {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer__email:hover {
    color: var(--color-primary-light);
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__social-link:hover {
    color: var(--color-primary);
}

.footer__social-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover svg {
    opacity: 1;
}

.footer__meta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: var(--space-sm);
    line-height: 1.4;
}

/* Roadmap */
.footer__roadmap {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__roadmap-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.footer__roadmap-title svg {
    color: var(--color-primary);
}

.footer__roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer__roadmap-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color 0.25s ease;
}

.footer__roadmap-item:hover {
    border-color: rgba(151, 194, 56, 0.3);
}

.footer__roadmap-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer__roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__roadmap-list li {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 16px;
    position: relative;
}

.footer__roadmap-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(151, 194, 56, 0.5);
}

/* Footer bottom */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__privacy-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer__privacy-link:hover {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__note {
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .problem__grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .solution__grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .steps__grid::before {
        display: none;
    }

    .numbers__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .differ__card,
    .differ__card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .differ__card-media {
        order: -1;
    }

    .audience__bubble {
        max-width: 100%;
    }

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

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .final-cta__layout {
        gap: var(--space-2xl);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__roadmap-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header__descriptor {
        display: none;
    }

    .header__socials {
        display: none;
    }

    .header__cta-outline {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__inner {
        padding: 0 var(--space-md);
    }

    .hero__inner {
        padding: 0 var(--space-md);
    }

    .hero__subtitle-br {
        display: inline;
    }

    .hero__subtitle {
        margin-bottom: var(--space-sm);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__btn {
        width: auto;
        max-width: 100%;
    }

    .hero__btn--primary {
        padding: 0 10px 0 16px;
        font-size: 14px;
        height: auto;
        min-height: 44px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .hero__btn-promo {
        padding: 3px 6px 3px 8px;
        margin-left: 4px;
    }

    .hero__btn-promo-text {
        font-size: 11px;
    }

    .hero__promo-text {
        font-size: 12px;
    }

    .hero__promo {
        align-items: center;
    }

    .problem__inner,
    .solution__inner,
    .steps__inner,
    .audience__inner,
    .numbers__inner,
    .differ__inner {
        padding: 0 var(--space-md);
    }

    .problem,
    .solution,
    .steps,
    .audience,
    .numbers,
    .differ {
        padding: var(--space-3xl) 0;
    }

    .steps__grid {
        grid-template-columns: 1fr;
    }

    .numbers__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .differ__card,
    .differ__card--reverse {
        gap: var(--space-lg);
    }

    .pricing__inner,
    .faq__inner {
        padding: 0 var(--space-md);
    }

    .pricing,
    .faq {
        padding: var(--space-3xl) 0;
    }

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

    .pricing__free {
        padding: var(--space-lg);
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: var(--space-3xl) 0;
    }

    .final-cta__inner {
        padding: 0 var(--space-md);
    }

    .final-cta__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .final-cta__left {
        align-items: center;
        text-align: center;
    }

    .final-cta__btn {
        height: 52px;
        padding: 0 28px;
        font-size: 15px;
    }

    .final-cta__promo {
        flex-direction: column;
        gap: 6px;
    }

    .final-cta__summary {
        padding: var(--space-lg) var(--space-md);
    }

    .footer__inner {
        padding: 0 var(--space-md);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__roadmap-grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__subtitle {
        font-size: 16px;
    }

    .hero__subtitle-br {
        display: inline;
    }

    .hero__subtitle {
        margin-bottom: var(--space-sm);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta__title {
        font-size: 28px;
    }

    .final-cta__btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
