/* ============================================================
   Argos CRM — Landing styles
   Warm + human reading of the navy/green product brand
   ============================================================ */

/* ---- Tokens ---- */
:root{
  /* surfaces — clean, faintly cool (matches the product UI) */
  --bg:        #F8F9FB;   /* product page gray */
  --bg-tint:   #EEF3FB;   /* light blue band */
  --surface:   #FFFFFF;
  --surface-2: #F3F6FC;
  --ink:       #18254A;   /* deep blue-ink (≈ product #1C398E) */
  --ink-2:     #4D5670;   /* muted */
  --ink-3:     #828BA0;   /* faint */
  --line:      #E4E9F2;   /* cool hairline */
  --line-2:    #D5DEEC;

  /* brand — sampled from the product */
  --primary:   #155DFC;   /* action blue (the "Создать заказ" button) */
  --primary-700:#1148D8;
  --navy:      #16275A;   /* deep blue for dark sections & marks */
  --navy-700:  #101C42;
  --blue:      #155DFC;   /* links / accents */
  --blue-50:   #EFF6FF;   /* light blue chip (active nav) */
  --green:     #00A63E;   /* success green */
  --green-600: #0C8A37;
  --green-50:  #F0FDF4;   /* mint chip */

  /* warm accent — used sparingly for human warmth */
  --amber:     #DB8A2E;
  --amber-50:  #FBEFDA;

  /* contact CTA green */
  --cta-green:     #16A34A;
  --cta-green-700: #0F8038;

  --radius:    20px;
  --radius-sm: 13px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(22,33,58,.05), 0 2px 6px rgba(22,33,58,.04);
  --shadow:    0 2px 4px rgba(22,33,58,.05), 0 18px 40px -20px rgba(22,33,58,.22);
  --shadow-lg: 0 30px 70px -28px rgba(22,33,58,.40);

  --maxw: 1180px;
  --font:  'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
}

/* ---- Reset ---- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  font-size:18px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,p{ margin:0; }
::selection{ background:var(--amber-50); color:var(--navy); }

/* ---- Layout helpers ---- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.section{ padding:108px 0; }
.section-tight{ padding:80px 0; }
.center{ text-align:center; }
.em{ font-family:var(--serif); font-style:italic; font-weight:500; }

/* eyebrow */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--primary);
  background:var(--blue-50);
  border:1px solid #DCE5FF;
  padding:7px 14px; border-radius:999px;
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px var(--green-50); }
.eyebrow.amber{ color:#9A5B12; background:var(--amber-50); border-color:#F2DDBC; }
.eyebrow.amber .dot{ background:var(--amber); box-shadow:0 0 0 4px #F7E4C8; }

/* headings */
.h-xl{ font-size:clamp(40px, 6.2vw, 76px); font-weight:800; line-height:1.02; letter-spacing:-.025em; text-wrap:balance; }
.h-lg{ font-size:clamp(31px, 4.2vw, 50px); font-weight:800; line-height:1.07; letter-spacing:-.02em; text-wrap:balance; }
.h-md{ font-size:clamp(23px, 2.6vw, 30px); font-weight:700; line-height:1.18; letter-spacing:-.01em; text-wrap:balance; }
.lead{ font-size:clamp(18px, 2.1vw, 21px); color:var(--ink-2); line-height:1.55; }
.section-head{ max-width:680px; }
.section-head.center{ margin:0 auto; }
.section-head .lead{ margin-top:18px; }
.section-head .h-lg{ margin-top:18px; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-weight:600; font-size:16.5px; line-height:1;
  padding:15px 24px; border-radius:13px; border:1.5px solid transparent;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn:active{ transform:translateY(1px); }
.btn-msg{ background:var(--cta-green); color:#fff; box-shadow:0 10px 24px -10px rgba(31,174,84,.7); }
.btn-msg:hover{ background:var(--cta-green-700); box-shadow:0 14px 30px -10px rgba(31,174,84,.75); transform:translateY(-1px); }
.btn-navy{ background:var(--primary); color:#fff; box-shadow:0 10px 24px -12px rgba(21,93,252,.75); }
.btn-navy:hover{ background:var(--primary-700); transform:translateY(-1px); }
.btn-ghost{ background:var(--surface); color:var(--primary); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:var(--primary); background:#fff; transform:translateY(-1px); }
.btn-lg{ padding:18px 30px; font-size:17.5px; border-radius:15px; }
.btn-block{ width:100%; }

/* ============================================================
   Header
   ============================================================ */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(244,247,251,.70);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.scrolled{ border-color:var(--line); box-shadow:0 6px 24px -18px rgba(22,33,58,.4); background:rgba(248,250,253,.88); }
.header .wrap{ display:flex; align-items:center; gap:28px; height:74px; }
.brand{ display:flex; align-items:center; gap:11px; font-weight:800; font-size:21px; letter-spacing:-.02em; color:var(--ink); }
.brand .mark{ width:38px; height:38px; flex:none; }
.brand small{ font-weight:500; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); display:block; margin-top:-3px; }
.nav{ display:flex; align-items:center; gap:6px; margin-left:8px; }
.nav a{ padding:9px 13px; border-radius:10px; font-weight:500; font-size:16px; color:var(--ink-2); transition:color .15s, background .15s; white-space:nowrap; }
.nav a:hover{ color:var(--ink); background:rgba(22,33,58,.05); }
.header .spacer{ flex:1; }
.header-cta{ display:flex; align-items:center; gap:12px; }
.link-login{ font-weight:600; font-size:16px; color:var(--ink); padding:9px 6px; }
.link-login:hover{ color:var(--primary); }
.burger{ display:none; width:44px; height:44px; border:1px solid var(--line-2); background:var(--surface); border-radius:12px; align-items:center; justify-content:center; }
.burger svg{ width:22px; height:22px; }

/* mobile menu */
.mobile-menu{
  position:fixed; inset:74px 0 auto 0; z-index:49;
  background:var(--bg); border-bottom:1px solid var(--line);
  padding:14px 28px 24px; display:none; flex-direction:column; gap:4px;
  box-shadow:var(--shadow);
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{ padding:13px 6px; font-size:18px; font-weight:600; border-bottom:1px solid var(--line); }
.mobile-menu .btn{ margin-top:14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero{ position:relative; padding:74px 0 96px; overflow:hidden;
  background:linear-gradient(180deg, #E8F0FE 0%, #EDF3FC 20%, var(--bg) 78%); }
.hero::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(56% 46% at 82% 4%, rgba(21,93,252,.12), transparent 70%),
    radial-gradient(46% 42% at 5% 22%, rgba(0,166,62,.07), transparent 70%);
}
.hero .wrap{ position:relative; z-index:1; }
.hero-grid{ display:grid; grid-template-columns:1.04fr .96fr; gap:56px; align-items:center; }
.hero h1{ margin-top:22px; }
.hero .lead{ margin-top:24px; max-width:540px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:18px 26px; margin-top:30px; }
.hero-trust span{ display:inline-flex; align-items:center; gap:9px; font-size:15.5px; font-weight:500; color:var(--ink-2); }
.hero-trust svg{ width:19px; height:19px; color:var(--green); flex:none; }

/* product window */
.window{
  position:relative;
  background:var(--surface); border:1px solid var(--line);
  border-radius:18px; box-shadow:var(--shadow-lg); overflow:hidden;
}
.window-bar{
  display:flex; align-items:center; gap:8px;
  padding:13px 16px; border-bottom:1px solid var(--line);
  background:linear-gradient(#fff,#FBF8F2);
}
.window-bar .dot{ width:11px; height:11px; border-radius:50%; }
.window-bar .dot.r{ background:#F0A39B; } .window-bar .dot.y{ background:#F2CD7E; } .window-bar .dot.g{ background:#A8D9A0; }
.window-bar .url{
  margin-left:12px; flex:1; max-width:280px; height:26px; border-radius:8px;
  background:var(--surface-2); border:1px solid var(--line);
  display:flex; align-items:center; gap:7px; padding:0 11px;
  font-size:12.5px; color:var(--ink-3); font-weight:500;
}
.window-bar .url svg{ width:13px; height:13px; color:var(--green); }
.window img, .window image-slot{ display:block; width:100%; }
.window image-slot{ height:auto; }

.hero-shot{ position:relative; }
/* floating chips */
.float{
  position:absolute; background:var(--surface); border:1px solid var(--line);
  border-radius:15px; box-shadow:var(--shadow); padding:13px 16px;
  display:flex; align-items:center; gap:12px;
}
.float .ic{ width:40px; height:40px; border-radius:11px; display:grid; place-items:center; flex:none; }
.float .ic svg{ width:21px; height:21px; }
.float .lbl{ font-size:12.5px; color:var(--ink-2); font-weight:500; line-height:1.2; }
.float .val{ font-size:18px; font-weight:800; letter-spacing:-.01em; }
.float.rev{ right:-22px; top:34px; }
.float.rev .ic{ background:var(--green-50); color:var(--green); }
.float.rev .val{ color:var(--green-600); }
.float.note{ left:-26px; bottom:40px; max-width:250px; }
.float.note .ic{ background:#E4F6EC; color:var(--cta-green); }
.float.note .val{ font-size:14px; font-weight:600; color:var(--ink); }
.float.note .lbl{ font-size:11.5px; }

/* logo strip / audiences */
.audience{ padding:64px 0 8px; }
.audience-head{ font-size:14px; font-weight:600; letter-spacing:.04em; color:var(--ink-3); text-transform:uppercase; }
.aud-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:26px; }
.aud-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; box-shadow:var(--shadow-sm); transition:transform .2s, box-shadow .2s, border-color .2s;
}
.aud-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--line-2); }
.aud-card .ic{ width:46px; height:46px; border-radius:13px; background:var(--blue-50); color:var(--primary); display:grid; place-items:center; }
.aud-card .ic svg{ width:24px; height:24px; }
.aud-card h3{ font-size:19px; font-weight:700; margin-top:18px; }
.aud-card p{ font-size:15.5px; color:var(--ink-2); margin-top:7px; }

/* ============================================================
   Pains  ("Знакомо?")
   ============================================================ */
.pains{ background:var(--bg-tint); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pain-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:48px; }
.pain{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px; box-shadow:var(--shadow-sm);
}
.pain .ic{ width:48px; height:48px; border-radius:13px; background:var(--amber-50); color:#B0701C; display:grid; place-items:center; }
.pain .ic svg{ width:25px; height:25px; }
.pain h3{ font-size:18px; font-weight:700; margin-top:18px; letter-spacing:-.01em; }
.pain p{ font-size:15px; color:var(--ink-2); margin-top:8px; }
.pains-foot{ margin-top:44px; display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; text-align:center; }
.pains-foot .ar{ font-family:var(--serif); font-style:italic; font-size:clamp(22px,3vw,30px); color:var(--navy); font-weight:600; }

/* ============================================================
   Features (alternating)
   ============================================================ */
.feature{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.feature + .feature{ margin-top:120px; }
.feature.flip .feat-media{ order:-1; }
.feat-tag{ display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--primary); letter-spacing:.02em; }
.feat-tag .num{ width:26px; height:26px; border-radius:8px; background:var(--navy); color:#fff; display:grid; place-items:center; font-size:13px; font-weight:700; }
.feature h2{ margin-top:16px; }
.feature .lead{ margin-top:16px; }
.feat-list{ margin-top:24px; display:flex; flex-direction:column; gap:13px; }
.feat-list li{ display:flex; gap:12px; align-items:flex-start; list-style:none; font-size:16.5px; color:var(--ink); }
.feat-list{ padding:0; }
.feat-list .ck{ width:24px; height:24px; border-radius:50%; background:var(--green-50); color:var(--green); display:grid; place-items:center; flex:none; margin-top:1px; }
.feat-list .ck svg{ width:15px; height:15px; }
.feat-media{ position:relative; }

/* mock: card frame */
.mock{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow); padding:22px; position:relative; overflow:hidden;
}
.mock-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.mock-title{ font-size:15px; font-weight:700; }
.mock-sub{ font-size:12.5px; color:var(--ink-3); }

/* kanban mock */
.kanban{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.kanban .col{ background:var(--surface-2); border:1px solid var(--line); border-radius:14px; padding:11px; min-height:230px; }
.kanban .col h4{ font-size:12.5px; font-weight:700; color:var(--ink-2); margin-bottom:10px; display:flex; align-items:center; gap:7px; }
.kanban .col h4 .pip{ width:8px; height:8px; border-radius:50%; }
.kanban .ticket{ background:#fff; border:1px solid var(--line); border-radius:11px; padding:11px; margin-bottom:9px; box-shadow:var(--shadow-sm); }
.kanban .ticket .no{ font-size:11px; color:var(--ink-3); font-weight:600; }
.kanban .ticket .nm{ font-size:13.5px; font-weight:600; margin-top:3px; }
.kanban .ticket .mt{ display:flex; align-items:center; gap:6px; margin-top:9px; }
.kanban .ticket .badge{ font-size:10.5px; font-weight:700; padding:3px 7px; border-radius:6px; }
.kanban .ticket.drag{ transform:rotate(-2deg); box-shadow:var(--shadow); border-color:var(--blue); }

/* whatsapp chat mock */
.chat{ background:#E9E2D6; border-radius:var(--radius); padding:18px; position:relative; }
.chat::before{ content:""; position:absolute; inset:0; border-radius:var(--radius); opacity:.5;
  background-image:radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px); background-size:16px 16px; }
.chat-row{ position:relative; display:flex; margin-bottom:12px; }
.chat-row.out{ justify-content:flex-end; }
.bubble{ max-width:80%; padding:11px 14px; border-radius:14px; font-size:14.5px; line-height:1.4; box-shadow:var(--shadow-sm); }
.bubble.in{ background:#fff; border-top-left-radius:4px; }
.bubble.out{ background:#DCF8C6; border-top-right-radius:4px; }
.bubble .meta{ display:block; font-size:10.5px; color:var(--ink-3); text-align:right; margin-top:5px; }
.bubble .meta svg{ width:14px; height:14px; vertical-align:-3px; color:#34B7F1; }
.typing{ display:inline-flex; gap:4px; align-items:center; }
.typing i{ width:7px; height:7px; border-radius:50%; background:#9aa0a6; animation:blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.2s; } .typing i:nth-child(3){ animation-delay:.4s; }
@keyframes blink{ 0%,60%,100%{ opacity:.3; } 30%{ opacity:1; } }

/* phone mock */
.phone{
  width:268px; margin:0 auto; background:#11182B; border-radius:38px; padding:11px;
  box-shadow:var(--shadow-lg); position:relative;
}
.phone-screen{ background:var(--bg); border-radius:28px; overflow:hidden; aspect-ratio:9/19; position:relative; }
.phone-notch{ position:absolute; top:9px; left:50%; transform:translateX(-50%); width:90px; height:22px; background:#11182B; border-radius:12px; z-index:3; }
.phone-app-top{ background:var(--navy); color:#fff; padding:34px 18px 16px; }
.phone-app-top .t{ font-size:16px; font-weight:700; }
.phone-app-top .s{ font-size:12px; opacity:.7; margin-top:2px; }
.phone-stat{ display:flex; gap:9px; padding:14px; }
.phone-stat .s{ flex:1; background:#fff; border:1px solid var(--line); border-radius:13px; padding:11px; }
.phone-stat .s .l{ font-size:10.5px; color:var(--ink-3); font-weight:600; }
.phone-stat .s .v{ font-size:16px; font-weight:800; margin-top:4px; }
.phone-list{ padding:0 14px; display:flex; flex-direction:column; gap:9px; }
.phone-item{ background:#fff; border:1px solid var(--line); border-radius:13px; padding:11px 12px; display:flex; align-items:center; gap:10px; }
.phone-item .av{ width:34px; height:34px; border-radius:9px; display:grid; place-items:center; font-size:13px; font-weight:700; flex:none; }
.phone-item .nm{ font-size:12.5px; font-weight:600; } .phone-item .meta{ font-size:10.5px; color:var(--ink-3); }
.phone-item .st{ margin-left:auto; font-size:9.5px; font-weight:700; padding:3px 7px; border-radius:6px; }

/* finance mini dashboard */
.fin{ display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.fin .stat{ background:var(--surface-2); border:1px solid var(--line); border-radius:14px; padding:15px; }
.fin .stat .l{ font-size:12.5px; color:var(--ink-2); font-weight:600; }
.fin .stat .v{ font-size:24px; font-weight:800; letter-spacing:-.02em; margin-top:6px; }
.fin .stat .v.green{ color:var(--green-600); }
.fin .stat .d{ font-size:12px; font-weight:600; margin-top:5px; display:inline-flex; gap:5px; align-items:center; }
.fin .stat .d.up{ color:var(--green); } .fin .stat .d.dn{ color:#C0552C; }
.fin .chart{ grid-column:1 / -1; background:var(--surface-2); border:1px solid var(--line); border-radius:14px; padding:16px 16px 8px; }
.fin .chart .l{ font-size:12.5px; color:var(--ink-2); font-weight:600; margin-bottom:12px; }
.bars{ display:flex; align-items:flex-end; gap:9px; height:96px; }
.bars .bar{ flex:1; border-radius:6px 6px 0 0; background:linear-gradient(var(--blue),#5B8DEF); opacity:.85; }
.bars .bar.hi{ background:linear-gradient(var(--green),#34C76A); }

/* unique tech cards */
.tech-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:50px; }
.tech{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 26px; box-shadow:var(--shadow-sm); transition:transform .2s, box-shadow .2s;
  position:relative; overflow:hidden;
}
.tech:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.tech .ic{ width:54px; height:54px; border-radius:15px; display:grid; place-items:center; }
.tech .ic svg{ width:27px; height:27px; }
.tech.a .ic{ background:var(--amber-50); color:#B0701C; }
.tech.b .ic{ background:var(--blue-50); color:var(--navy); }
.tech.c .ic{ background:var(--green-50); color:var(--green-600); }
.tech h3{ font-size:20px; font-weight:700; margin-top:20px; }
.tech p{ font-size:15.5px; color:var(--ink-2); margin-top:9px; }

/* ============================================================
   Steps
   ============================================================ */
.steps{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.steps::before{ content:""; position:absolute; inset:0;
  background:radial-gradient(50% 60% at 85% 0%, rgba(255,255,255,.08), transparent 70%); }
.steps .wrap{ position:relative; }
.steps .eyebrow{ background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.18); color:#CFE0FF; }
.steps .h-lg{ color:#fff; }
.steps .lead{ color:rgba(255,255,255,.72); }
.step-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:54px; counter-reset:s; }
.step{ position:relative; padding-top:18px; }
.step .n{ font-family:var(--serif); font-style:italic; font-size:46px; font-weight:600; color:var(--amber); line-height:1; }
.step h3{ font-size:20px; font-weight:700; margin-top:14px; }
.step p{ font-size:15.5px; color:rgba(255,255,255,.66); margin-top:9px; }
.step .ln{ position:absolute; top:30px; left:64px; right:-12px; height:2px; background:repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 7px, transparent 7px 14px); }
.step:last-child .ln{ display:none; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing{ background:var(--bg-tint); border-top:1px solid var(--line); }
.price-wrap{ max-width:560px; margin:48px auto 0; }
.price-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow); overflow:hidden; position:relative;
}
.price-top{ padding:34px 36px 30px; border-bottom:1px dashed var(--line-2); position:relative; }
.price-badge{ position:absolute; top:24px; right:28px; background:var(--green-50); color:var(--green-600); font-size:12.5px; font-weight:700; padding:6px 12px; border-radius:999px; }
.price-card h3{ font-size:26px; font-weight:800; letter-spacing:-.01em; }
.price-card .pdesc{ font-size:15.5px; color:var(--ink-2); margin-top:6px; }
.price-amt{ display:flex; align-items:baseline; gap:8px; margin-top:24px; }
.price-amt .num{ font-size:54px; font-weight:800; letter-spacing:-.03em; line-height:1; }
.price-amt .per{ font-size:16px; color:var(--ink-2); font-weight:500; }
.price-body{ padding:30px 36px 36px; }
.price-list{ list-style:none; padding:0; margin:0 0 26px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.price-list li{ display:flex; gap:11px; align-items:flex-start; font-size:15.5px; }
.price-list .ck{ width:22px; height:22px; border-radius:50%; background:var(--green-50); color:var(--green); display:grid; place-items:center; flex:none; }
.price-list .ck svg{ width:14px; height:14px; }
.price-note{ text-align:center; font-size:14px; color:var(--ink-3); margin-top:16px; }

/* ============================================================
   Final CTA
   ============================================================ */
.final{ padding:104px 0; position:relative; overflow:hidden; }
.final-card{
  background:linear-gradient(135deg,#1E3A8A,#23306B 60%,#2B2A55);
  border-radius:var(--radius-lg); padding:64px 56px; text-align:center; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.final-card::before{ content:""; position:absolute; inset:0;
  background:radial-gradient(40% 60% at 80% 10%, rgba(219,138,46,.28), transparent 70%),
             radial-gradient(45% 55% at 10% 90%, rgba(37,99,235,.4), transparent 70%); }
.final-card > *{ position:relative; }
.final-card h2{ color:#fff; font-size:clamp(30px,4.4vw,52px); font-weight:800; letter-spacing:-.02em; line-height:1.05; }
.final-card p{ color:rgba(255,255,255,.78); font-size:19px; margin-top:18px; max-width:520px; margin-left:auto; margin-right:auto; }
.final-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:34px; }
.final-card .btn-ghost{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.25); }
.final-card .btn-ghost:hover{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.5); }
.final-note{ color:rgba(255,255,255,.6); font-size:14.5px; margin-top:22px; }

/* ============================================================
   Footer
   ============================================================ */
.footer{ border-top:1px solid var(--line); padding:56px 0 40px; }
.footer-grid{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; }
.footer .brand{ font-size:20px; }
.footer-tag{ font-size:15px; color:var(--ink-2); margin-top:14px; max-width:300px; }
.footer-links{ display:flex; gap:40px; flex-wrap:wrap; }
.footer-col h4{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-3); margin-bottom:14px; }
.footer-col a{ display:block; font-size:15.5px; color:var(--ink-2); padding:5px 0; }
.footer-col a:hover{ color:var(--primary); }
.footer-bottom{ margin-top:44px; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:14px; color:var(--ink-3); }
.footer-bottom a{ color:var(--ink-3); } .footer-bottom a:hover{ color:var(--primary); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal{ }
.reveal.pre{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.pre.in{ opacity:1; transform:none; }
.reveal.pre.d1{ transition-delay:.07s; } .reveal.pre.d2{ transition-delay:.14s; } .reveal.pre.d3{ transition-delay:.21s; } .reveal.pre.d4{ transition-delay:.28s; }
@media (prefers-reduced-motion:reduce){ .reveal.pre{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1080px){
  .hero-grid{ grid-template-columns:1fr; gap:56px; }
  .hero-shot{ max-width:600px; margin:0 auto; }
  .float.rev{ right:8px; } .float.note{ left:8px; }
  .pain-grid{ grid-template-columns:repeat(2,1fr); }
  .step-grid{ grid-template-columns:repeat(2,1fr); gap:36px 24px; }
  .step .ln{ display:none; }
  .feature + .feature{ margin-top:96px; }
}
@media (max-width:968px){
  .nav{ display:none; }
  .link-login{ display:none; }
  .burger{ display:inline-flex; }
  .header-cta .btn-msg{ display:none; }
  .feature{ grid-template-columns:1fr; gap:40px; }
  .feature.flip .feat-media{ order:0; }
  .tech-grid{ grid-template-columns:1fr; }
  .section{ padding:78px 0; }
  .section-tight{ padding:64px 0; }
}
@media (max-width:680px){
  .aud-grid{ grid-template-columns:1fr; }
  .pain-grid{ grid-template-columns:1fr; }
  .step-grid{ grid-template-columns:1fr; gap:30px; }
  .price-list{ grid-template-columns:1fr; }
  .price-top{ padding:28px 26px 24px; }
  .price-body{ padding:26px 26px 30px; }
  .feature + .feature{ margin-top:72px; }
}
@media (max-width:560px){
  body{ font-size:17px; }
  .wrap{ padding:0 18px; }
  .section{ padding:64px 0; }
  .hero{ padding:56px 0 72px; }
  .hero-cta{ gap:11px; }
  .hero-cta .btn{ width:100%; }
  .hero-trust{ gap:12px 20px; margin-top:24px; }
  .float{ padding:10px 13px; }
  .float .val{ font-size:16px; }
  .float.note{ display:none; }
  .final-card{ padding:40px 22px; }
  .feat-list li{ font-size:15.5px; }
  .price-amt .num{ font-size:46px; }
}
@media (max-width:380px){
  .brand small{ display:none; }
  .kanban{ gap:8px; } .kanban .col{ padding:9px; }
  .phone{ width:240px; }
}

/* ===================== FAQ ===================== */
.faq-list{ max-width:760px; margin:48px auto 0; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:0 22px; transition:border-color .2s, box-shadow .2s; }
.faq-item[open]{ border-color:var(--primary); box-shadow:var(--shadow-sm); }
.faq-item summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 0; font-size:17px; font-weight:600; color:var(--ink); letter-spacing:-.01em; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-ico{ flex:none; width:26px; height:26px; display:grid; place-items:center; color:var(--ink-3); transition:transform .25s; }
.faq-ico svg{ width:20px; height:20px; }
.faq-item[open] .faq-ico{ transform:rotate(180deg); color:var(--primary); }
.faq-a{ padding:0 0 22px; font-size:15.5px; line-height:1.6; color:var(--ink-2); max-width:62ch; }
@media (max-width:560px){
  .faq-list{ margin-top:34px; }
  .faq-item{ padding:0 18px; }
  .faq-item summary{ font-size:16px; padding:17px 0; }
}

/* ===================== BLOG ===================== */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:48px; }
.blog-card{ display:block; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; text-decoration:none; color:inherit; transition:box-shadow .2s, transform .2s, border-color .2s; }
.blog-card:hover{ box-shadow:var(--shadow); transform:translateY(-2px); border-color:var(--primary); }
.blog-cover{ aspect-ratio:16/9; overflow:hidden; }
.blog-cover img{ width:100%; height:100%; object-fit:cover; display:block; }
.blog-body{ padding:20px 22px 24px; }
.blog-date{ font-size:13px; color:var(--ink-3); }
.blog-title{ font-size:19px; font-weight:700; letter-spacing:-.01em; margin-top:8px; color:var(--ink); }
.blog-excerpt{ font-size:15px; color:var(--ink-2); margin-top:10px; line-height:1.55; }
.blog-pager{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:44px; }
.blog-page{ min-width:42px; height:42px; padding:0 13px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:12px; background:var(--surface); color:var(--ink-2); font-weight:600; font-size:15px; transition:border-color .15s, color .15s, background .15s; }
.blog-page:hover{ border-color:var(--primary); color:var(--primary); }
.blog-page.is-active{ background:var(--primary); border-color:var(--primary); color:#fff; }
.blog-page.is-disabled{ opacity:.4; pointer-events:none; }
.article-wrap{ max-width:760px; }
.article-back{ display:inline-block; margin-bottom:22px; color:var(--ink-2); text-decoration:none; font-weight:600; }
.article-cover{ margin:24px 0; border-radius:var(--radius); overflow:hidden; background:var(--surface-2); }
.article-cover img{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.article-content{ font-size:17px; line-height:1.7; color:var(--ink); }
.article-content p{ margin:0 0 18px; }
.article-content h2{ font-size:26px; font-weight:700; margin:34px 0 14px; letter-spacing:-.015em; }
.article-content h3{ font-size:21px; font-weight:700; margin:28px 0 12px; }
.article-content ul, .article-content ol{ margin:0 0 18px; padding-left:24px; }
.article-content li{ margin:6px 0; }
.article-content a{ color:var(--primary); text-decoration:underline; text-underline-offset:3px; }
.article-content blockquote{ margin:18px 0; padding:8px 18px; border-left:3px solid var(--primary); color:var(--ink-2); }
@media (max-width:860px){ .blog-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .blog-grid{ grid-template-columns:1fr; } .article-content{ font-size:16px; } }
