/* TabMinder website — Aurora Glass (indigo / blue) */
:root {
  --a1: #6366f1; --a2: #2563eb;
  --grad: linear-gradient(135deg, var(--a1), var(--a2));
  --a-soft: #eef0ff; --a-ink: #4338ca;
  --bg: #f6f6fc; --bg-2: #ffffff;
  --glass: rgba(255,255,255,.66); --edge: rgba(255,255,255,.95);
  --ink: #16163a; --muted: #5d5d7a; --faint: #8c8ca8; --line: #e7e7f2;
  --ok: #10b981; --bad: #ef4444; --ok-ink: #047857; --bad-ink: #b91c1c;
  --shadow: 0 1px 2px rgba(22,22,58,.05), 0 12px 30px -18px rgba(79,70,229,.45);
  --shadow-lg: 0 40px 80px -30px rgba(37,37,110,.45), 0 0 0 1px rgba(22,22,58,.05);
  --r: 18px;
  --max: 1160px;
}
/* Dark theme: follows the system unless the visitor picks Light or Dark with the header switch */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --a-soft: rgba(99,102,241,.16); --a-ink: #a5b4fc;
    --bg: #0b0b1a; --bg-2: #12122a;
    --glass: rgba(30,30,64,.6); --edge: rgba(255,255,255,.08);
    --ink: #ececff; --muted: #a4a4c8; --faint: #72729a; --line: rgba(255,255,255,.08);
    --shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 16px 30px -18px rgba(0,0,0,.9);
    --shadow-lg: 0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.06);
    --ok-ink: #6ee7b7; --bad-ink: #fca5a5;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --a-soft: rgba(99,102,241,.16); --a-ink: #a5b4fc;
  --bg: #0b0b1a; --bg-2: #12122a;
  --glass: rgba(30,30,64,.6); --edge: rgba(255,255,255,.08);
  --ink: #ececff; --muted: #a4a4c8; --faint: #72729a; --line: rgba(255,255,255,.08);
  --shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 16px 30px -18px rgba(0,0,0,.9);
  --shadow-lg: 0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.06);
  --ok-ink: #6ee7b7; --bad-ink: #fca5a5;
  color-scheme: dark;
}
body { transition: background-color .25s, color .25s; }

/* theme switch + back-to-top */
.icon-btn { flex: none; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-2); color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: color .15s, border-color .15s, transform .15s; }
.icon-btn:hover { color: var(--a-ink); border-color: color-mix(in srgb, var(--a1) 40%, var(--line)); }
.icon-btn svg { width: 19px; height: 19px; }
.theme-btn .sun { display: none; }
:root[data-theme="dark"] .theme-btn .sun { display: block; }
:root[data-theme="dark"] .theme-btn .moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-btn .sun { display: block; }
  :root:not([data-theme]) .theme-btn .moon { display: none; }
}
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 48px; height: 48px; border-radius: 16px; border: 0; cursor: pointer; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 28px -10px rgba(79,70,229,.8); opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none; transition: opacity .25s, transform .25s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); }
.to-top svg { width: 22px; height: 22px; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--a-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, textarea { font: inherit; color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* background glow */
.aurora { position: absolute; inset: 0 0 auto 0; height: 900px; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora::before { content: ""; position: absolute; inset: -200px -10% 0;
  background:
    radial-gradient(520px 380px at 12% 30%, rgba(129,140,248,.40), transparent 70%),
    radial-gradient(520px 420px at 88% 20%, rgba(96,165,250,.35), transparent 70%),
    radial-gradient(600px 360px at 50% 85%, rgba(125,211,252,.25), transparent 70%); }

/* header */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); background: color-mix(in srgb, var(--bg) 72%, transparent); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 14px; height: 68px; }
.nav .nav-links { margin-right: 10px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14.5px; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.menu-btn { display: none; margin-left: auto; background: none; border: 0; width: 40px; height: 40px; border-radius: 10px; cursor: pointer; color: var(--ink); }
.menu-btn svg { width: 22px; height: 22px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; cursor: pointer; font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 13px; transition: transform .15s, box-shadow .15s, background .15s; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 14px 28px -12px rgba(79,70,229,.8), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-primary:hover { box-shadow: 0 18px 32px -12px rgba(79,70,229,.9), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost { background: var(--glass); color: var(--ink); border: 1px solid var(--edge); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: 11px; }
.btn-block { width: 100%; }

/* hero */
.hero { position: relative; padding: 72px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--a-ink); background: var(--a-soft); border: 1px solid color-mix(in srgb, var(--a1) 22%, transparent); padding: 6px 12px; border-radius: 99px; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.04; letter-spacing: -.035em; font-weight: 800; margin: 18px 0 18px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--muted); max-width: 560px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 18px; }
.fine { font-size: 13.5px; color: var(--faint); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.fine span { display: inline-flex; align-items: center; gap: 6px; }
.fine svg { width: 15px; height: 15px; color: var(--ok); }

.hero-art { position: relative; height: 560px; }
.shot { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; position: absolute; }
.shot img { width: 100%; height: auto; }
.hero-art .s1 { width: 58%; left: 4%; top: 0; transform: rotate(-3deg); z-index: 2; }
.hero-art .s2 { width: 54%; right: 2%; top: 70px; transform: rotate(4deg); z-index: 1; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; background: var(--glass); border: 1px solid var(--edge); backdrop-filter: blur(14px); box-shadow: var(--shadow); font-size: 13px; }
.float-card b { display: block; font-size: 14px; }
.float-card small { color: var(--muted); }
.float-card .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad); color: #fff; flex: none; }
.float-card .ic svg { width: 19px; height: 19px; }
.fc1 { left: -4%; bottom: 60px; }
.fc2 { right: -2%; bottom: 150px; }

/* sections */
section { padding: 84px 0; position: relative; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.kicker { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--a-ink); }
h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.12; letter-spacing: -.03em; font-weight: 800; margin: 10px 0 14px; }
.sec-head p { color: var(--muted); font-size: 17.5px; }

/* stat strip */
.strip { padding: 20px 0 10px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { text-align: center; padding: 20px 12px; border-radius: var(--r); background: var(--glass); border: 1px solid var(--edge); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); }
.card .ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--a-soft); color: var(--a-ink); margin-bottom: 16px; }
.card .ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 17px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--a-ink); background: var(--a-soft); border-radius: 99px; padding: 2px 8px; margin-left: 6px; vertical-align: 2px; }

/* showcase */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tabs-list { display: flex; flex-direction: column; gap: 10px; }
.tab-btn { text-align: left; border: 1px solid var(--line); background: var(--bg-2); border-radius: 16px; padding: 16px 18px; cursor: pointer; transition: all .18s; display: flex; gap: 14px; align-items: flex-start; }
.tab-btn .n { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; font-weight: 800; font-size: 13px; background: var(--a-soft); color: var(--a-ink); }
.tab-btn b { display: block; font-size: 15.5px; }
.tab-btn small { color: var(--muted); font-size: 13.5px; line-height: 1.5; display: block; margin-top: 2px; }
.tab-btn:hover { border-color: color-mix(in srgb, var(--a1) 35%, var(--line)); }
.tab-btn.on { border-color: transparent; background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: 0 14px 30px -18px rgba(79,70,229,.8); }
.tab-btn.on .n { background: var(--grad); color: #fff; }
.stage { position: relative; display: grid; place-items: center; min-height: 640px; }
.stage::before { content: ""; position: absolute; width: 80%; height: 70%; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,.35), transparent 70%); filter: blur(10px); }
.stage .shot { position: relative; width: min(400px, 90%); transition: opacity .25s, transform .25s; }
.stage .shot.fade { opacity: 0; transform: translateY(8px) scale(.98); }
.shot .logo-patch { position: absolute; left: 4%; top: 2.78%; width: 5.5%; height: auto; border-radius: 22%; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; }
.step { position: relative; padding: 26px 24px; border-radius: var(--r); background: var(--glass); border: 1px solid var(--edge); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.step::before { counter-increment: s; content: counter(s); width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--grad); margin-bottom: 14px; box-shadow: 0 8px 18px -8px rgba(79,70,229,.8); }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }
kbd { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px; font-weight: 700; padding: 2px 7px; border-radius: 6px; background: var(--bg-2); border: 1px solid var(--line); box-shadow: 0 2px 0 var(--line); }

/* pricing */
.trial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 900px; margin: 0 auto 40px; position: relative; }
.trial-track::before { content: ""; position: absolute; top: 18px; left: 16%; right: 16%; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--a1), var(--a2), color-mix(in srgb, var(--a2) 40%, var(--line))); }
.tt { text-align: center; padding: 0 12px; position: relative; }
.tt .d { width: 38px; height: 38px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center; background: var(--bg-2); border: 3px solid var(--a1); color: var(--a-ink); font-weight: 800; font-size: 13px; }
.tt:nth-child(2) .d { border-color: var(--a2); }
.tt:nth-child(3) .d { background: var(--grad); color: #fff; border-color: transparent; }
.tt b { display: block; font-size: 15px; }
.tt small { color: var(--muted); font-size: 13.5px; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 20px; justify-content: center; }
.plan { position: relative; padding: 30px; border-radius: 22px; background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan.best { background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box; border: 2px solid transparent; box-shadow: 0 30px 60px -30px rgba(79,70,229,.7); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 99px; letter-spacing: .04em; white-space: nowrap; }
.plan h3 { font-size: 18px; }
.plan .price { font-size: 46px; font-weight: 800; letter-spacing: -.04em; margin: 8px 0 0; line-height: 1.1; }
.plan .price small { font-size: 16px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.plan .sub { color: var(--muted); font-size: 14px; min-height: 22px; }
.plan ul { list-style: none; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; }
.plan li svg { width: 18px; height: 18px; color: var(--ok); flex: none; margin-top: 3px; }
.note-box { max-width: 780px; margin: 28px auto 0; padding: 16px 20px; border-radius: 16px; background: var(--a-soft); border: 1px solid color-mix(in srgb, var(--a1) 20%, transparent); font-size: 14.5px; color: var(--ink); display: flex; gap: 12px; }
.note-box svg { width: 20px; height: 20px; color: var(--a-ink); flex: none; margin-top: 2px; }

/* trust */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust .card { padding: 22px; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 500; color: var(--a-ink); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* contact */
.contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: var(--shadow); }
.panel h3 { font-size: 20px; margin-bottom: 4px; }
.panel > p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 700; color: var(--muted); }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); background: var(--bg); border-radius: 12px; padding: 12px 14px; font-size: 15px; outline: none; transition: border-color .15s, box-shadow .15s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--a1); box-shadow: 0 0 0 4px color-mix(in srgb, var(--a1) 18%, transparent); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.otp { text-align: center; font-size: 26px !important; letter-spacing: .4em; font-family: ui-monospace, Menlo, monospace; }
.msg { margin-top: 12px; font-size: 14px; padding: 10px 14px; border-radius: 10px; display: none; }
.msg.ok { display: block; background: rgba(16,185,129,.12); color: var(--ok-ink); }
.msg.err { display: block; background: rgba(239,68,68,.1); color: var(--bad-ink); }
.hidden { display: none !important; }

/* final cta */
.final { text-align: center; padding: 64px 28px; border-radius: 28px; background: var(--grad); color: #fff; position: relative; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(79,70,229,.9); }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 20% 0%, rgba(255,255,255,.25), transparent 70%), radial-gradient(400px 240px at 90% 100%, rgba(125,211,252,.35), transparent 70%); }
.final > * { position: relative; }
.final h2 { color: #fff; }
.final p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 560px; margin: 0 auto 26px; }
.final .btn { background: #fff; color: #3730a3; box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }

/* footer */
footer { padding: 48px 0 40px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 12px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.foot ul a { color: var(--muted); }
.foot p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 300px; }
.copy { margin-top: 36px; color: var(--faint); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 20px 40px; }
.legal h1 { font-size: clamp(34px, 5vw, 48px); margin: 8px 0 6px; }
.legal .updated { color: var(--faint); font-size: 14px; margin-bottom: 28px; }
.legal .summary { background: var(--a-soft); border: 1px solid color-mix(in srgb, var(--a1) 20%, transparent); border-radius: 16px; padding: 18px 22px; margin-bottom: 30px; }
.legal .summary ul { margin: 8px 0 0 18px; }
.legal h2 { font-size: 23px; margin: 36px 0 10px; letter-spacing: -.02em; }
.legal h3 { font-size: 17px; margin: 20px 0 6px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; display: flex; flex-direction: column; gap: 6px; }
.legal strong { color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; margin: 10px 0 18px; font-size: 14.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--muted); }
.legal th { color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.table-scroll { overflow-x: auto; }

/* simple centered page */
.center-page { min-height: calc(100vh - 220px); display: grid; place-items: center; padding: 60px 20px; }
.center-card { max-width: 560px; width: 100%; text-align: center; }
.center-card .big-ic { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; margin: 0 auto 20px; background: var(--grad); color: #fff; box-shadow: 0 20px 40px -18px rgba(79,70,229,.9); }
.center-card .big-ic svg { width: 36px; height: 36px; }
.center-card h1 { font-size: clamp(30px, 4.5vw, 42px); margin: 0 0 10px; }
.center-card ol { text-align: left; margin: 20px 0 24px 22px; color: var(--muted); display: flex; flex-direction: column; gap: 8px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* responsive */
@media (max-width: 980px) {
  .hero .wrap, .showcase, .contact { grid-template-columns: 1fr; }
  .hero-art { height: 520px; max-width: 560px; margin: 0 auto; width: 100%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .foot { grid-template-columns: 1fr 1fr; }
  .stage { min-height: 0; order: -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 20px 16px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .menu-btn { display: grid; place-items: center; margin-left: 0; }
  .theme-btn { margin-left: auto; }
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .nav .nav-cta { display: none; }
  section { padding: 64px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features, .steps, .plans, .trial-track { grid-template-columns: 1fr; }
  .trial-track { gap: 18px; }
  .trial-track::before { display: none; }
  .hero { padding-top: 44px; }
  .hero-art { height: 440px; }
  .fc2 { display: none; }
  .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust, .foot { grid-template-columns: 1fr; }
  .hero-art { height: 380px; }
  .fc1 { left: 0; bottom: 10px; }
}
