/* ============ TOKENS ============ */
:root{
  --container: 1200px;
  --pad: 24px;
  --blue: #2D6BFF;
  --blue-dark: #1f56e0;
  --ink: #131722;
  --ink-2: #2a3140;
  --muted: #7b8499;
  --muted-2: #aab2c2;
  --line: #eceef3;
  --bg: #f4f6f9;
  --white: #ffffff;
  --dark: #11151f;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --pill: 999px;
  --shadow-sm: 0 4px 18px rgba(19,23,34,.05);
  --shadow: 0 18px 50px rgba(19,23,34,.10);
  --shadow-lg: 0 40px 90px rgba(19,23,34,.16);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 var(--pad)}

/* ============ BUTTONS ============ */
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:700;border-radius:var(--pill);transition:.18s ease;white-space:nowrap}
.btn--sm{padding:11px 22px;font-size:14px}
.btn--lg{padding:17px 36px;font-size:16px}
.btn--primary{background:var(--blue);color:#fff;box-shadow:0 14px 30px rgba(45,107,255,.35)}
.btn--primary:hover{background:var(--blue-dark)}
.btn--dark{background:var(--ink);color:#fff}
.btn--dark:hover{background:#000}
.btn--block{display:flex;width:100%;padding:16px 20px}

/* ============ BADGES / TITLES ============ */
.badge{display:inline-block;background:#e6edff;color:var(--blue);font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:8px 16px;border-radius:var(--pill)}
.badge--center{display:block;width:fit-content;margin:0 auto}
.badge--blue{background:rgba(45,107,255,.18);color:#7fa6ff}
.section-title{font-size:46px;line-height:1.08;font-weight:800;letter-spacing:-.025em;color:var(--ink)}
.section-title--center{text-align:center;margin:18px auto 0}
.accent{color:var(--blue)}

/* ============ HEADER ============ */
.site-header{position:sticky;top:0;z-index:60;background:rgba(244,246,249,.85);backdrop-filter:blur(12px)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:74px}
.logo{display:inline-flex;align-items:center;gap:7px}
.logo__img{width:26px;height:26px;display:block}
.logo__word{font-size:23px;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
.logo--light .logo__word{color:#fff}
.nav{display:flex;gap:10px}
.nav a{font-size:15px;color:var(--ink-2);font-weight:600;padding:9px 18px;border-radius:var(--pill)}
.nav a.is-active{background:#e9edf3}
.nav a:hover{color:var(--blue)}

/* ============ BURGER ============ */
.burger{display:none;flex-direction:column;gap:5px;width:44px;height:44px;border-radius:12px;align-items:center;justify-content:center}
.burger span{width:20px;height:2px;background:var(--ink);border-radius:2px;transition:.25s}
.burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============ HERO ============ */
.hero{position:relative;overflow:hidden;padding:70px 0 30px;text-align:center}
.hero__glow{position:absolute;top:430px;left:50%;transform:translateX(-50%);width:1400px;height:760px;z-index:0;pointer-events:none;
  background:radial-gradient(closest-side at 50% 45%, rgba(160,190,255,.45), rgba(160,190,255,0) 72%);filter:blur(8px)}
.hero__inner{position:relative;z-index:2}
.hero__title{font-size:64px;line-height:1.05;font-weight:800;letter-spacing:-.035em}
.hero__subtitle{margin:24px auto 0;max-width:620px;color:var(--muted);font-size:19px}
.hero .btn--lg{margin-top:32px}

/* phone stage */
.hero__stage{position:relative;margin:60px auto 0;width:min(820px,100%);min-height:660px}
/* light, thin-framed device (matches mockup: pale frame, soft shadow, no notch) */
.phone{position:absolute;left:50%;top:0;transform:translateX(-50%);width:336px;height:660px;
  background:#eef1f7;border-radius:52px;padding:7px;
  box-shadow:0 50px 90px rgba(60,80,140,.22), inset 0 0 0 1px rgba(120,140,180,.18);z-index:3}
.phone__screen{height:100%;display:flex;flex-direction:column;background:#eef1f7;border-radius:46px;overflow:hidden}
.statusbar{display:flex;align-items:center;justify-content:space-between;padding:16px 28px 6px;font-size:15px;font-weight:700;color:#11151f}
.statusbar__icons{display:flex;align-items:center;gap:7px}
.sb-ic{display:block}
.sb-ic--signal{width:18px;height:12px}
.sb-ic--wifi{width:16px;height:12px}
.sb-ic--batt{width:27px;height:13px}
.chat__head{display:flex;align-items:center;gap:12px;padding:6px 18px 14px}
.chat__back{width:42px;height:42px;border-radius:50%;background:#fff;display:grid;place-items:center;box-shadow:0 6px 16px rgba(60,80,140,.10)}
.chat__back img{width:14px;height:14px}
.chat__id{flex:1;text-align:center;background:#fff;border-radius:16px;padding:8px 0;box-shadow:0 6px 16px rgba(60,80,140,.10);line-height:1.15}
.chat__id strong{font-size:15px;display:block}
.chat__id span{font-size:12px;color:var(--muted)}
.chat__logo{width:42px;height:42px;border-radius:50%;background:#fff;display:grid;place-items:center;box-shadow:0 6px 16px rgba(60,80,140,.10)}
.chat__logo img{width:20px;height:20px}
.chat__body{flex:1;overflow:hidden;padding:6px 16px 16px;display:flex;flex-direction:column;gap:12px}
.msg{font-size:13px;border-radius:18px;padding:9px 13px;max-width:86%;position:relative}
.msg__time,.msg em{font-style:normal;font-size:11px}
.msg em{color:rgba(255,255,255,.72)}
/* small outgoing /add bubble with tail */
.msg--out{align-self:flex-end;background:var(--blue);color:#fff;border-radius:18px 18px 6px 18px;display:inline-flex;align-items:baseline;gap:8px}
.msg--out em{margin-left:0}
/* listing card bubble */
.msg--listing{align-self:flex-end;background:var(--blue);color:#fff;padding:6px;border-radius:20px 20px 6px 20px;width:78%;display:block}
.listing__photo{width:100%;height:150px;object-fit:cover;border-radius:15px;display:block}
.listing__text{padding:10px 8px 2px;color:#fff}
.listing__text strong{font-size:14px;display:block;margin-bottom:4px;font-weight:700}
.listing__text p{font-size:12px;line-height:1.4;color:rgba(255,255,255,.95);min-height:1em}
.msg--listing .msg__time{display:block;text-align:right;margin-top:6px;padding-right:6px;color:rgba(255,255,255,.72)}
/* incoming confirmation */
.msg--ok{align-self:flex-start;background:#fff;color:var(--ink);display:flex;flex-wrap:wrap;align-items:flex-start;gap:8px;box-shadow:0 6px 16px rgba(60,80,140,.08);max-width:80%;border-radius:18px 18px 18px 6px}
.ok-check{width:20px;height:20px;border-radius:50%;background:#1fb866;display:grid;place-items:center;flex:none;margin-top:1px}
.ok-check img{width:11px;height:11px}
.ok-text{flex:1;min-width:0;font-size:13px;line-height:1.35}
.msg--ok .msg__time{color:var(--muted-2);width:100%;text-align:right}

/* floating cards around phone */
.float-card{position:absolute;background:#fff;border-radius:18px;box-shadow:var(--shadow);z-index:4}
.menu-card{left:0;top:235px;width:300px;padding:14px 18px;text-align:left}
.menu-row{padding:8px 0;border-bottom:1px solid var(--line)}
.menu-row:last-child{border-bottom:none}
.menu-row strong{display:block;font-size:14px;font-weight:700}
.menu-row span{font-size:12px;color:var(--muted)}
.input-card{right:0;top:470px;width:300px;display:flex;align-items:center;gap:10px;padding:8px 8px 8px 16px;border-radius:var(--pill)}
.input-clip{width:18px;height:18px}
.input-placeholder{flex:1;color:var(--muted-2);font-size:14px;text-align:left}
.input-send{width:40px;height:40px;border-radius:50%;background:var(--ink);display:grid;place-items:center;flex:none}
.input-send img{width:16px;height:16px}

/* category pills */
.cats{position:relative;margin:40px auto 0;width:min(960px,100%);height:300px}
.pill{position:absolute;display:inline-flex;align-items:center;gap:12px;background:#fff;border-radius:var(--pill);padding:12px 24px 12px 12px;font-size:18px;font-weight:600;color:var(--ink-2);box-shadow:var(--shadow);white-space:nowrap}
.pill__ic{width:36px;height:36px;border-radius:50%;display:grid;place-items:center}
.pill__ic img{width:20px;height:20px}
.ic-realty{background:#fdf0d9;color:#e0a32a}
.ic-auto{background:#e3ecff;color:#2D6BFF}
.ic-elec{background:#fde6ee;color:#e0507f}
.ic-services{background:#e2f4ec;color:#27a877}
.ic-animals{background:#e6ecfb;color:#3457d5}
.ic-work{background:#efe7fb;color:#7a5cff}
.pill--realty{top:0;left:50%;transform:translateX(-30%)}
.pill--auto{top:75px;left:8%}
.pill--elec{top:150px;left:24%}
.pill--services{top:165px;right:24%}
.pill--animals{top:90px;right:4%}
.pill--work{top:225px;left:12%}

/* hero intro */
.hero__intro{margin-top:30px;text-align:center;position:relative;z-index:2}
.hero__intro-title{font-size:46px;font-weight:800;letter-spacing:-.025em;line-height:1.1;margin-top:20px}
.hero__intro-text{margin:20px auto 0;max-width:560px;color:var(--muted);font-size:18px}
.checkbar{display:inline-flex;background:#fff;border-radius:var(--pill);box-shadow:var(--shadow-sm);margin-top:30px;overflow:hidden}
.checkbar__item{display:flex;align-items:center;gap:10px;font-weight:600;font-size:15px;padding:16px 26px;border-right:1px solid var(--line)}
.checkbar__item:last-child{border-right:none}
.checkbar__item img{width:18px;height:18px}

/* ============ WHY ============ */
.why{background:#fff;padding:90px 0;border-radius:var(--radius-xl);margin:40px 0}
.why__head{display:flex;justify-content:space-between;gap:40px;align-items:flex-start;margin-bottom:64px;flex-wrap:wrap}
.why__head-right{max-width:460px;padding-top:6px}
.why__head-right p{color:var(--muted);font-size:18px;margin-top:18px}
.why__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.feature{padding:0 36px;border-right:1px solid var(--line)}
.feature:first-child{padding-left:0}
.feature:last-child{padding-right:0;border-right:none}
.feature__icon{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;font-size:26px;margin-bottom:22px;color:#fff;font-weight:800}
.feature__icon img{width:28px;height:28px}
.ic-green{background:#1fb866}
.ic-blue{background:var(--blue)}
.ic-pink{background:#ec5b8a}
.ic-yellow{background:#f5b81f}
.feature h3{font-size:21px;margin-bottom:12px;letter-spacing:-.01em}
.feature p{color:var(--muted);font-size:15px}

/* ============ HOW ============ */
.how{padding:90px 0}
.how__inner{display:grid;grid-template-columns:560px 1fr;gap:80px;align-items:center}
.profile-wrap{background:linear-gradient(155deg,#2D6BFF 0%,#7aa6ff 45%,#eef3ff 100%);border-radius:var(--radius-xl);padding:60px 90px;display:flex;justify-content:center}
.profile-card{background:#fff;border-radius:var(--radius-lg);padding:0 26px 26px;text-align:center;box-shadow:var(--shadow);width:100%;max-width:340px}
.profile-card__photo{width:96px;height:96px;margin:-48px auto 0;position:relative}
.profile-card__photo>img{width:96px;height:96px;border-radius:50%;object-fit:cover;border:4px solid #fff}
.profile-card__online{position:absolute;right:2px;bottom:2px;width:26px;height:26px;border-radius:50%;background:#1fb866;border:3px solid #fff;display:grid;place-items:center}
.profile-card__online img{width:11px;height:11px}
.profile-card__name{font-size:22px;margin-top:14px}
.profile-card__status{display:inline-block;margin-top:8px;background:#e6edff;color:var(--blue);font-size:12px;font-weight:700;padding:5px 14px;border-radius:var(--pill)}
.profile-card__rows{margin:22px 0;display:flex;flex-direction:column;gap:10px}
.prow{display:flex;justify-content:space-between;align-items:center;font-size:15px;border:1px solid var(--line);border-radius:14px;padding:14px 16px}
.prow span{color:var(--muted)}
.prow strong{display:inline-flex;align-items:center;gap:6px}
.prow strong i{color:var(--blue);font-style:normal}
.inline-star{width:16px;height:16px}
.how__lead{color:var(--muted);font-size:18px;margin:20px 0 8px;max-width:480px}
.how__list{display:flex;flex-direction:column}
.how__list li{padding:24px 0;border-top:1px solid var(--line)}
.how__list strong{font-size:20px;display:block;margin-bottom:6px}
.how__list p{color:var(--muted);font-size:15px}

/* ============ STEPS ============ */
.steps{background:#fff;padding:90px 0;border-radius:var(--radius-xl);margin:0 0 40px}
.steps__sub{text-align:center;color:var(--muted);font-size:18px;margin:18px 0 60px}
.steps__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:48px 0}
.step{padding:0 40px;border-right:1px solid var(--line)}
.step:nth-child(3n){border-right:none;padding-right:0}
.step:nth-child(3n+1){padding-left:0}
.step__num{display:block;font-size:64px;font-weight:800;color:transparent;-webkit-text-stroke:1.5px #e2e6ee;letter-spacing:-.03em;margin-bottom:18px;line-height:1}
.step h3{font-size:22px;margin-bottom:14px;letter-spacing:-.01em}
.step p{color:var(--muted);font-size:15px}
.steps__cta{text-align:center;margin-top:56px}

/* ============ BONUSES ============ */
.bonuses{padding:90px 0}
.bonuses__sub{text-align:center;color:var(--muted);font-size:18px;margin:18px 0 56px}
.bonuses__grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.bonus{position:relative;background:#fff;border-radius:var(--radius-xl);padding:40px;box-shadow:var(--shadow-sm);overflow:hidden;min-height:300px}
.bonus__body{max-width:58%}
.bonus__icon{width:62px;height:62px;border-radius:50%;display:grid;place-items:center;margin-bottom:26px}
.bonus__icon img{width:30px;height:30px}
.ic-gold{background:#f5b81f}
.ic-green2{background:#1fb866}
.bonus h3{font-size:24px;line-height:1.15;margin-bottom:14px;letter-spacing:-.01em}
.bonus p{color:var(--muted);font-size:15px}
/* mini cards */
.mini-card{position:absolute;right:36px;top:50%;transform:translateY(-50%);width:160px;background:linear-gradient(180deg,#eef2fb,#dfe7f6);border-radius:22px;padding:18px;text-align:center;box-shadow:var(--shadow)}
.mini-card--user .mini-avatar{width:84px;height:84px;margin:6px auto 0}
.mini-card--user .mini-avatar img{width:84px;height:84px;border-radius:50%;object-fit:cover;border:3px solid #f5b81f}
.mini-badge{display:inline-block;background:#fdf0d9;color:#c8901c;font-size:11px;font-weight:700;padding:3px 12px;border-radius:var(--pill)}
.mini-card--user strong{display:block;margin-top:10px;font-size:16px}
.mini-city{font-size:13px;color:var(--muted)}
.mini-listing{position:relative}
.mini-photo{width:100%;height:110px;object-fit:cover;border-radius:14px}
.mini-num{position:absolute;top:8px;right:8px;width:24px;height:24px;border-radius:50%;background:#1fb866;color:#fff;font-size:12px;font-weight:700;display:grid;place-items:center}
.mini-card--listing strong{display:block;margin-top:10px;font-size:16px;text-align:left}
.mini-free{display:block;font-size:13px;color:#1fb866;font-weight:600;text-align:left}

/* ============ FAQ ============ */
.faq{padding:90px 0}
.faq__list{max-width:1100px;margin:54px auto 0}
.faq__item{border-top:1px solid #e2e6ee}
.faq__item:last-child{border-bottom:1px solid #e2e6ee}
.faq__item summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:28px 4px;font-weight:700;font-size:22px;letter-spacing:-.01em}
.faq__item summary::-webkit-details-marker{display:none}
.faq__toggle{position:relative;width:46px;height:46px;border-radius:50%;background:#e9edf3;flex:none;transition:.2s}
.faq__toggle::before,.faq__toggle::after{content:"";position:absolute;top:50%;left:50%;background:var(--ink);border-radius:2px;transform:translate(-50%,-50%)}
.faq__toggle::before{width:16px;height:2px}
.faq__toggle::after{width:2px;height:16px;transition:.2s}
.faq__item[open] .faq__toggle{background:var(--ink)}
.faq__item[open] .faq__toggle::before{background:#fff}
.faq__item[open] .faq__toggle::after{height:0}
.faq__answer{padding:0 4px 28px;color:var(--muted);font-size:17px;max-width:1000px}

/* ============ ACCESS ============ */
.access{position:relative;background:var(--dark);color:#fff;padding:80px 0 64px;border-radius:var(--radius-xl) var(--radius-xl) 0 0;margin:0;overflow:hidden}
.access__glow{position:absolute;left:8%;top:35%;width:620px;height:420px;background:radial-gradient(closest-side,rgba(45,107,255,.55),transparent 70%);filter:blur(20px);pointer-events:none}
.access__inner{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;z-index:2}
.access__title{font-size:52px;font-weight:800;letter-spacing:-.025em;line-height:1.06;margin-top:24px}
.access__lead{margin:26px 0 16px;font-size:18px;color:#cfd6e3;max-width:440px}
.access__note{font-size:15px;color:#838c9f;max-width:440px}
.access__side{display:flex;flex-direction:column;align-items:center;gap:18px}
.tg-card{background:#fff;color:var(--ink);border-radius:var(--radius-lg);padding:40px;width:100%;display:flex;flex-direction:column;align-items:center;text-align:center;gap:24px;box-shadow:var(--shadow-lg)}
.tg-card__icon{width:72px;height:72px;border-radius:50%;background:#2aa3ef;display:grid;place-items:center;box-shadow:0 12px 28px rgba(42,163,239,.4)}
.tg-card__icon img{width:36px;height:36px;transform:translateX(-1px)}
.tg-card__text{font-size:17px;line-height:1.5;color:var(--ink-2);max-width:380px}
.tg-card__btn{width:auto;padding:16px 40px}
.access__agree{font-size:13px;color:#838c9f;line-height:1.6;text-align:center;max-width:440px}
.access__agree a{text-decoration:underline}

/* ============ FOOTER ============ */
.footer{background:var(--dark);color:#fff;border-radius:0 0 var(--radius-xl) var(--radius-xl);margin:0 0 28px;padding:0 0 40px}
.footer__inner{display:flex;align-items:center;gap:40px;flex-wrap:wrap;padding-top:36px;border-top:1px solid rgba(255,255,255,.10)}
.footer .logo--light .logo__word{color:#fff}
.footer__nav{display:flex;align-items:center;gap:40px;flex:1}
.footer__nav a{font-size:15px;color:#aab2c2}
.footer__nav a:hover{color:#fff}
.footer__copy{font-size:15px;color:#aab2c2}
.footer__social{display:flex;gap:12px}
.footer__social a{width:46px;height:46px;border-radius:50%;background:#1b2130;border:1px solid rgba(255,255,255,.10);display:grid;place-items:center}
.footer__social a:hover{background:#222a3c}
.footer__social a img{width:18px;height:18px;filter:brightness(0) invert(1)}

/* ============ ANIMATIONS ============ */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.is-in{opacity:1;transform:none}
.reveal[data-delay="1"]{transition-delay:.12s}
.reveal[data-delay="2"]{transition-delay:.24s}
.hero__glow{opacity:0;transform:translateX(-50%) translateY(70px) scale(.8);transition:opacity 1.1s ease,transform 1.3s cubic-bezier(.2,.7,.2,1)}
.hero__glow.is-in{opacity:1;transform:translateX(-50%) translateY(0) scale(1)}
.phone{opacity:0;transform:translateX(-50%) translateY(80px);transition:opacity .9s ease .15s,transform 1s cubic-bezier(.2,.7,.2,1) .15s}
.phone.is-in{opacity:1;transform:translateX(-50%) translateY(0)}
.float-card{opacity:0;transform:translateY(40px) scale(.92)}
.float-card.is-in{opacity:1;transform:none;transition:opacity .7s ease .35s,transform .8s cubic-bezier(.2,.7,.2,1) .35s}
[data-float].pill{opacity:0;transform:scale(.5)}
[data-float].pill.is-in{opacity:1;transition:opacity .55s ease}
/* each pill drifts on its own gentle, scattered path once revealed */
.pill--realty.is-in{animation:driftA 11s ease-in-out infinite}
.pill--auto.is-in{animation:driftB 13s ease-in-out infinite}
.pill--elec.is-in{animation:driftC 12s ease-in-out infinite}
.pill--services.is-in{animation:driftD 14s ease-in-out infinite}
.pill--animals.is-in{animation:driftE 12.5s ease-in-out infinite}
.pill--work.is-in{animation:driftF 15s ease-in-out infinite}
/* realty keeps its -30% x base offset baked into the path */
@keyframes driftA{
  0%{transform:translate(calc(-30% + 0px),0)}
  25%{transform:translate(calc(-30% + 14px),-12px)}
  50%{transform:translate(calc(-30% + 6px),10px)}
  75%{transform:translate(calc(-30% - 12px),-6px)}
  100%{transform:translate(calc(-30% + 0px),0)}
}
@keyframes driftB{
  0%{transform:translate(0,0)}
  25%{transform:translate(-16px,8px)}
  50%{transform:translate(8px,16px)}
  75%{transform:translate(14px,-10px)}
  100%{transform:translate(0,0)}
}
@keyframes driftC{
  0%{transform:translate(0,0)}
  25%{transform:translate(12px,12px)}
  50%{transform:translate(-10px,6px)}
  75%{transform:translate(-6px,-14px)}
  100%{transform:translate(0,0)}
}
@keyframes driftD{
  0%{transform:translate(0,0)}
  25%{transform:translate(14px,-10px)}
  50%{transform:translate(-12px,-14px)}
  75%{transform:translate(8px,12px)}
  100%{transform:translate(0,0)}
}
@keyframes driftE{
  0%{transform:translate(0,0)}
  25%{transform:translate(-12px,-12px)}
  50%{transform:translate(12px,-6px)}
  75%{transform:translate(6px,14px)}
  100%{transform:translate(0,0)}
}
@keyframes driftF{
  0%{transform:translate(0,0)}
  25%{transform:translate(10px,14px)}
  50%{transform:translate(16px,-8px)}
  75%{transform:translate(-10px,8px)}
  100%{transform:translate(0,0)}
}
.chat__body [data-msg]{opacity:0;transform:translateY(14px) scale(.96)}
.chat__body [data-msg].is-shown{opacity:1;transform:none;transition:opacity .4s ease,transform .45s cubic-bezier(.2,.7,.2,1)}
.typing-dots{align-self:flex-start;background:#fff;box-shadow:var(--shadow-sm);border-radius:16px;padding:11px 13px;display:flex;gap:5px;width:fit-content}
.typing-dots span{width:6px;height:6px;border-radius:50%;background:#c2cad8;animation:blink 1.2s infinite ease-in-out}
.typing-dots span:nth-child(2){animation-delay:.2s}
.typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes blink{0%,80%,100%{opacity:.3;transform:translateY(0)}40%{opacity:1;transform:translateY(-3px)}}
.typed::after{content:"";display:inline-block;width:1px;height:1em;background:rgba(255,255,255,.8);margin-left:1px;vertical-align:-2px;animation:caret .8s step-end infinite}
.typed.done::after{display:none}
@keyframes caret{0%,100%{opacity:1}50%{opacity:0}}
@media (prefers-reduced-motion: reduce){
  .reveal,.hero__glow,.phone,.float-card,[data-float]{opacity:1!important;transform:none!important;animation:none!important;transition:none!important}
  .chat__body [data-msg]{opacity:1!important;transform:none!important}
  .typed::after{display:none}
}

/* ============ RESPONSIVE: TABLET ============ */
@media (max-width:1080px){
  .section-title{font-size:38px}
  .why__grid{grid-template-columns:repeat(2,1fr);gap:48px 0}
  .feature{padding:0 28px}
  .feature:nth-child(2){border-right:none;padding-right:0}
  .feature:nth-child(3){padding-left:0}
  .how__inner{grid-template-columns:1fr;gap:48px}
  .profile-wrap{padding:48px}
  .steps__grid{grid-template-columns:repeat(2,1fr);gap:44px 0}
  .step{padding:0 28px}
  .step:nth-child(3n){border-right:1px solid var(--line);padding-right:28px}
  .step:nth-child(2n){border-right:none;padding-right:0}
  .step:nth-child(2n+1){padding-left:0}
  .bonuses__grid{grid-template-columns:1fr}
  .hero__title{font-size:52px}
}

/* ============ RESPONSIVE: MOBILE (focus) ============ */
@media (max-width:760px){
  :root{--pad:18px}
  .header__inner{height:64px}
  .logo__word{font-size:20px}
  .nav{position:fixed;inset:64px 12px auto 12px;z-index:55;flex-direction:column;gap:4px;background:#fff;border-radius:18px;padding:10px;box-shadow:var(--shadow);transform:translateY(-160%);opacity:0;transition:transform .32s cubic-bezier(.2,.8,.2,1),opacity .25s}
  .nav.is-open{transform:translateY(0);opacity:1}
  .nav a{padding:14px 16px;font-size:16px;border-radius:12px}
  .nav a.is-active{background:#eef3ff}
  .burger{display:flex}
  .header__inner .btn--dark{display:none}

  .hero{padding:36px 0 16px}
  .hero__title{font-size:clamp(32px,9vw,42px);letter-spacing:-.03em}
  .hero__subtitle{font-size:16px;margin-top:18px}
  .hero__subtitle br{display:none}
  .hero .btn--lg{margin-top:24px;width:100%;max-width:340px}

  /* phone-first: real phone centered, floating cards stack naturally */
  .hero__stage{min-height:0;margin-top:36px;display:flex;flex-direction:column;align-items:center;gap:0}
  .phone{position:relative;left:auto;top:auto;transform:translateY(60px);width:min(320px,86vw);height:auto;aspect-ratio:336/660}
  .phone.is-in{transform:translateY(0)}
  .float-card{display:none}        /* menu/input float cards hidden on mobile, content lives in phone via chat */
  .chat__body{padding:10px 12px;gap:9px}
  .listing__photo{height:108px}

  /* category pills: animated horizontal marquee row */
  .cats{height:auto;width:100%;margin-top:32px;overflow:hidden;-webkit-mask:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
  .cats-track{display:flex;gap:12px;width:max-content;animation:marquee 22s linear infinite}
  .pill{position:static!important;transform:none!important;font-size:15px;padding:10px 18px 10px 10px;box-shadow:var(--shadow-sm)}
  .pill__ic{width:30px;height:30px}
  .pill__ic img{width:17px;height:17px}
  [data-float].pill.is-in{animation:none}     /* float idle off; marquee handles motion */
  @keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

  .hero__intro{margin-top:40px}
  .hero__intro-title{font-size:30px}
  .hero__intro-text{font-size:16px}
  .hero__intro-text br{display:none}
  .checkbar{flex-direction:column;border-radius:20px;width:100%;max-width:340px}
  .checkbar__item{border-right:none;border-bottom:1px solid var(--line);justify-content:flex-start;padding:14px 22px}
  .checkbar__item:last-child{border-bottom:none}

  .section-title{font-size:28px}
  .section-title br{display:block}

  .why,.steps,.faq,.access{border-radius:24px;margin:20px 0;padding:48px 0}
  .why__head{flex-direction:column;gap:16px;margin-bottom:36px}
  .why__head-right{max-width:none}
  .why__head-right p{font-size:16px;margin-top:12px}
  .why__grid{grid-template-columns:1fr;gap:34px}
  .feature{padding:0;border-right:none}
  .feature::after{content:none}

  .how{padding:48px 0}
  .profile-wrap{padding:36px 22px;border-radius:24px}
  .how__lead{font-size:16px}
  .how__list strong{font-size:18px}

  .steps__sub{font-size:16px;margin:14px 0 40px}
  .steps__grid{grid-template-columns:1fr;gap:0}
  .step{padding:28px 0;border-right:none!important;border-bottom:1px solid var(--line)}
  .step:last-child{border-bottom:none}
  .step__num{font-size:48px}

  .bonuses{padding:48px 0}
  .bonuses__sub{font-size:16px;margin:14px 0 32px}
  .bonuses__sub br{display:none}
  .bonus{padding:28px 22px;min-height:0}
  .bonus__body{max-width:100%}
  .bonus h3 br{display:none}
  .mini-card{position:relative;right:auto;top:auto;transform:none;margin:24px auto 0;width:180px}

  .faq{padding:48px 0}
  .faq__item summary{font-size:17px;padding:20px 2px;gap:14px}
  .faq__toggle{width:38px;height:38px}
  .faq__answer{font-size:15px;padding:0 2px 22px}

  .access{padding:48px 0}
  .access__inner{grid-template-columns:1fr;gap:30px}
  .access__title{font-size:34px}
  .access__lead{font-size:16px}
  .tg-card{padding:30px 24px;gap:20px}
  .tg-card__text{font-size:16px}

  .footer__inner{flex-direction:column;text-align:center;gap:20px}
  .footer__nav{flex-direction:column;gap:14px}
  .footer__social{order:-1}
}
@media (max-width:400px){
  .hero__title{font-size:30px}
  .section-title{font-size:25px}
  .access__title{font-size:30px}
}
