/* ═══════════════════════════════════════════════
   DESIGN TOKENS — Dark Premium (AutFalcon)
   ═══════════════════════════════════════════════ */
:root {
    --bg: #050505;
    --bg-card: #0e0e0e;
    --bg-card-2: #141414;
    --bg-elevated: #1a1a1a;
    --accent: #0066FF;
    --accent-glow: rgba(0, 102, 255, 0.5);
    --accent-dim: rgba(0, 102, 255, 0.15);
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-300: #a0a0a0;
    --gray-500: #666666;
    --gray-700: #333333;
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Inter', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-700) var(--bg);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.brand__logo-svg {
    color: var(--white);
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.4));
    transition: transform 0.4s var(--ease);
}

.brand:hover .brand__logo-svg {
    transform: rotate(15deg) scale(1.05);
}

.brand span {
    color: var(--accent);
}

.nav__links {
    display: flex;
    gap: 36px;
}

.nav__links a {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s, text-shadow 0.3s;
    text-transform: uppercase;
}

.nav__links a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease);
}

.nav__cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s;
}

.nav__cta:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 30px var(--accent-glow);
}

.nav__cta:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* Burger active state */
.burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero__tag::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    word-break: normal;
    overflow-wrap: break-word;
}

.hero__title span {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn--primary:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 35px var(--accent-glow);
    transform: translateY(-2px);
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

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

.hero__box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero__image {
    width: 100%;
    height: auto;
    filter: brightness(0.85) contrast(1.05);
    transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero__box:hover .hero__image {
    filter: brightness(1) contrast(1);
    transform: scale(1.02);
}

/* Floating Badge */
.hero__badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floating 3s ease-in-out infinite alternate;
}

@keyframes floating {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.hero__badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.hero__badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero__badge-text span {
    display: block;
    color: var(--gray-300);
    font-weight: 400;
    font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════ */
.section {
    padding: 100px 0;
    position: relative;
}

.section--border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section__subtitle {
    font-size: 0.98rem;
    color: var(--gray-300);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   PROBLEMS SECTION
   ═══════════════════════════════════════════════ */
.problems-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 var(--radius) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-dim);
}

.problem-card:hover::before {
    opacity: 0.8;
}

.problem-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease);
}

.problem-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card:hover .problem-card__icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px var(--accent-glow);
}

.problem-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.problem-card__desc {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-weight: 300;
}

.problems-visual {
    position: relative;
}

.problems-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.problems-image {
    width: 100%;
    height: auto;
    filter: brightness(0.8) contrast(1.05);
    transition: filter 0.4s var(--ease);
}

.problems-img-box:hover .problems-image {
    filter: brightness(0.95);
}

/* ═══════════════════════════════════════════════
   SOLUTION SECTION
   ═══════════════════════════════════════════════ */
.solution-highlight {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.solution-highlight__accent {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.solution-highlight__desc {
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 300;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px var(--accent-dim);
}

.solution-card__img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
    filter: brightness(0.9);
}

.solution-card:hover .solution-card__img {
    transform: scale(1.04);
    filter: brightness(1);
}

.solution-card__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solution-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.solution-card:hover .solution-card__title {
    color: var(--accent);
}

.solution-card__desc {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   PROCESS SECTION (Етапи роботи)
   ═══════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.step-card__num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.4s var(--ease);
}

.step-card:hover .step-card__num {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.05);
}

.step-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card__desc {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--ease);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-dim);
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--ease);
}

.benefit-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card:hover .benefit-card__icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px var(--accent-glow);
}

.benefit-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card__desc {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.65;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   KEY RESULTS SECTION
   ═══════════════════════════════════════════════ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--ease);
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px var(--accent-dim);
}

.result-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease);
}

.result-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.result-card:hover .result-card__icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px var(--accent-glow);
}

.result-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-card__desc {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   FINAL CALL TO ACTION
   ═══════════════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.cta-section__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-section__title span {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.cta-section__desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: #080808;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer__brand span {
    color: var(--accent);
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 500;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for stagger reveal */
.reveal-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN BREAKPOINTS
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero__content {
        align-items: center;
    }
    
    .hero__subtitle {
        max-width: 600px;
    }
    
    .problems-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problems-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid::before {
        display: none; /* remove line on wrap */
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }
    
    .burger {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #080808;
        border-left: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        padding: 100px 40px;
        gap: 28px;
        transition: right 0.4s var(--ease);
        z-index: 100;
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__cta {
        display: none; /* Hide in header, show in burger if needed, or keep simple */
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-card {
        align-items: center;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer__grid {
        flex-direction: column;
        text-align: center;
    }
}

/* Prevent body scrolling when mobile menu open */
body.no-scroll {
    overflow: hidden;
}
