/* ─── RESET & TOKENS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #07070F;
  --bg2:      #0E0E1A;
  --bg3:      #141425;
  --border:   rgba(255,255,255,.07);
  --purple:   #7B5CF6;
  --purple-l: #9D7DFF;
  --purple-d: #5038D4;
  --pink:     #E040C8;
  --text:     #F0EFF8;
  --muted:    #9491B0;
  --radius:   14px;
  --font-head: 'Segoe UI', 'Segoe UI Historic', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── UTILITIES ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--purple-l); background: rgba(123,92,246,.15); border: 1px solid rgba(123,92,246,.3); border-radius: 50px; padding: 4px 14px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: .95rem; font-weight: 600; border-radius: 50px; padding: 13px 28px; transition: all .22s ease; border: none; }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 0 30px rgba(123,92,246,.4); }
.btn-primary:hover { background: var(--purple-l); box-shadow: 0 0 40px rgba(123,92,246,.6); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: rgba(123,92,246,.5); color: var(--purple-l); }
.btn-outline { background: transparent; color: var(--purple-l); border: 1.5px solid rgba(123,92,246,.4); }
.btn-outline:hover { background: rgba(123,92,246,.1); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── NAVBAR ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(7,7,15,.92); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: .9rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: .9rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav__login:hover { color: var(--text); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav__mobile { display: none; flex-direction: column; gap: 12px; padding: 20px 24px; background: var(--bg2); border-top: 1px solid var(--border); }
.nav__mobile a { font-size: 1rem; color: var(--muted); padding: 6px 0; }
.nav__mobile.open { display: flex; }

/* ─── HERO ─── */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero__glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse at center, rgba(123,92,246,.25) 0%, transparent 70%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__eyebrow .tag { display: inline-flex; align-items: center; gap: 6px; }
.hero__eyebrow .tag img { width: 16px; height: 16px; object-fit: contain; display: inline-block; }
.hero__title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 22px; }
.hero__title em { font-style: normal; background: linear-gradient(135deg, var(--purple-l), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__sub { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }
.hero__micro { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero__micro::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }

/* ─── CHAT MOCKUP ─── */
.hero__visual { position: relative; }
.chat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; overflow: visible; box-shadow: 0 40px 80px rgba(0,0,0,.5); position: relative; margin-top: 20px; }
.chat-header { background: linear-gradient(135deg, #5038D4, #7B5CF6); padding: 16px 20px; display: flex; align-items: center; gap: 12px; border-radius: 20px 20px 0 0; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.chat-info { flex: 1; }
.chat-name { font-weight: 700; font-size: .95rem; }
.chat-status { font-size: .75rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 320px; overflow: hidden; border-radius: 0 0 20px 20px; }
.msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: .875rem; line-height: 1.5; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.msg.visible { opacity: 1; transform: translateY(0); }
.msg-in { background: var(--bg3); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-out { background: linear-gradient(135deg, var(--purple-d), var(--purple)); border-bottom-right-radius: 4px; align-self: flex-end; color: rgba(255,255,255,.95); }
.msg-time { font-size: .7rem; color: var(--muted); margin-top: 4px; }
.msg-in .msg-time { text-align: left; }
.msg-out .msg-time { text-align: right; color: rgba(255,255,255,.5); }
.typing { display: none; gap: 4px; align-items: center; padding: 10px 14px; background: var(--bg3); border-radius: 12px; border-bottom-left-radius: 4px; width: fit-content; align-self: flex-start; }
.typing.visible { display: flex; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chat-tag { position: absolute; top: -14px; right: 20px; background: #22C55E; color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; z-index: 2; }

/* ─── LOGOS BAR MARQUEE ─── */
.logos-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-bar__label { text-align: center; font-size: .8rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; }
.logos-bar__wrapper { overflow: hidden; position: relative; }
.logos-bar__wrapper::before,
.logos-bar__wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.logos-bar__wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logos-bar__wrapper::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.logos-bar__track { display: flex; align-items: center; gap: 36px; animation: marquee 50s linear infinite; width: max-content; padding: 0 18px; }
.logos-bar__track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logos-bar__item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; opacity: .5; transition: opacity .2s; cursor: default; }
.logos-bar__item:hover { opacity: 1; }
.logos-bar__item img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
.logos-bar__item span { font-size: .68rem; color: var(--muted); white-space: nowrap; }

/* ─── SECTION DEFAULTS ─── */
.section { padding: 100px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__head .tag { margin-bottom: 16px; }
.section__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 16px; }
.section__sub { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* ─── PROBLEM ─── */
.problem { background: var(--bg2); }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prob-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color .2s, transform .2s; }
.prob-card:hover { border-color: rgba(123,92,246,.3); transform: translateY(-3px); }
.prob-icon { font-size: 2rem; margin-bottom: 16px; }
.prob-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.prob-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.prob-card__transition { text-align: center; margin-top: 48px; font-size: 1rem; color: var(--muted); max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ─── SOLUTION FLOW ─── */
.flow { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 560px; margin: 0 auto; }
.flow::before { content: ''; position: absolute; left: 22px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom, var(--purple), var(--pink)); opacity: .3; }
.flow-step { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; }
.flow-dot { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-d), var(--purple)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; position: relative; z-index: 1; box-shadow: 0 0 16px rgba(123,92,246,.4); }
.flow-text h4 { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.flow-text p { font-size: .875rem; color: var(--muted); }

/* ─── DIFFERENTIALS ─── */
.diffs__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.diff-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; gap: 20px; transition: border-color .2s; }
.diff-card:hover { border-color: rgba(123,92,246,.3); }
.diff-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(123,92,246,.15); border: 1px solid rgba(123,92,246,.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.diff-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.diff-body p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─── INTEGRATIONS ─── */
.integrations { background: var(--bg2); }
.integ-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.integ-group { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.integ-group h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--purple-l); margin-bottom: 16px; }
.integ-list { display: flex; flex-wrap: wrap; gap: 12px; }
.integ-item { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 56px; transition: transform .2s; cursor: default; }
.integ-item:hover { transform: translateY(-2px); }
.integ-item img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; border: 1px solid var(--border); background: var(--bg2); padding: 4px; }
.integ-item span { font-size: .62rem; color: var(--muted); text-align: center; line-height: 1.2; }
.integ-cta { text-align: center; margin-top: 40px; color: var(--muted); font-size: .95rem; }
.integ-cta a { color: var(--purple-l); font-weight: 600; transition: color .2s; }
.integ-cta a:hover { color: var(--text); }

/* ─── FOR WHO ─── */
.forwho__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.segment-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .2s; cursor: default; }
.segment-card:hover { border-color: rgba(123,92,246,.35); background: rgba(123,92,246,.05); transform: translateY(-2px); }
.segment-icon { font-size: 1.8rem; margin-bottom: 14px; }
.segment-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.segment-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.howto { background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
/* Line centered behind circles: step has padding-top 28px, circle is 56px → center at 28+28=56px */
.steps::before { content: ''; position: absolute; top: 56px; left: 12%; right: 12%; height: 2px; background: linear-gradient(to right, var(--purple), var(--pink)); opacity: .2; z-index: 0; }
.step { text-align: center; padding: 28px 20px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-d), var(--purple)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin: 0 auto 20px; position: relative; z-index: 2; box-shadow: 0 0 24px rgba(123,92,246,.4); }
.step h3 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ─── PLANS ─── */
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}
.plan-card.featured {
  border-color: rgba(123,92,246,.5);
  background: linear-gradient(160deg, rgba(123,92,246,.08), var(--bg2));
  box-shadow: 0 0 0 1px rgba(123,92,246,.3), 0 20px 60px rgba(123,92,246,.15);
}
.plan-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(123,92,246,.5), 0 32px 80px rgba(123,92,246,.28);
}
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.plan-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.plan-desc { font-size: .85rem; color: var(--muted); margin-bottom: 24px; min-height: 40px; }
.plan-price { margin-bottom: 28px; }
.plan-price .currency { font-size: 1rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--muted); }
.plan-price .amount { font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; }
.plan-price .period { font-size: .85rem; color: var(--muted); }
.plan-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.plan-item .check { color: #4ADE80; flex-shrink: 0; margin-top: 2px; }
.plan-item span { color: var(--muted); }
.plan-item strong { color: var(--text); }
.plan-footer { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.6; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.plan-footer a { color: var(--purple-l); }
.plan-coupon { text-align: center; margin-top: 40px; font-size: .88rem; color: var(--muted); }
.plan-coupon strong { color: var(--text); }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.testi-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-d), var(--purple)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(123,92,246,.3); }
.faq-q { width: 100%; background: none; border: none; text-align: left; color: var(--text); font-family: var(--font-body); font-size: .95rem; font-weight: 600; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .2s; }
.faq-q:hover { background: var(--bg2); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--purple-l); transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: .9rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ─── FINAL CTA ─── */
.final-cta { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse at center, rgba(123,92,246,.2) 0%, transparent 70%); pointer-events: none; }
.final-cta__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.final-cta__sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 28px; font-size: .82rem; color: var(--muted); }
.final-cta__badges span { display: flex; align-items: center; gap: 6px; }
.final-cta__badges span::before { content: '✓'; color: #4ADE80; font-weight: 700; }

/* ─── FOOTER ─── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand img { height: 28px; margin-bottom: 14px; }
.footer__tagline { font-size: .875rem; color: var(--muted); margin-bottom: 20px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.footer__socials a:hover { border-color: var(--purple); color: var(--purple-l); }
.footer__col h5 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer__col ul a:hover { color: var(--text); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: center; align-items: center; }
.footer__copy { font-size: .8rem; color: var(--muted); text-align: center; }

/* ─── COOKIE ─── */
.cookie { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 520px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; z-index: 999; box-shadow: 0 8px 40px rgba(0,0,0,.6); transform: translateY(120px); opacity: 0; transition: all .4s ease; }
.cookie.visible { transform: translateY(0); opacity: 1; }
.cookie p { font-size: .82rem; color: var(--muted); flex: 1; }
.cookie p a { color: var(--purple-l); }
.cookie__btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .integ-groups { grid-template-columns: repeat(2, 1fr); }
  .forwho__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  /* Chat stays below the content on mobile — no order reversal */
  .problem__grid { grid-template-columns: 1fr; }
  .diffs__grid { grid-template-columns: 1fr; }
  .integ-groups { grid-template-columns: 1fr; }
  .forwho__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .plans__grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; }
  .hero__title { font-size: 1.85rem; }
}
