:root {
  --bg: #F4F2EC;
  --bg-deep: #ECEAE2;
  --paper: #FFFFFF;
  --ink: #111111;
  --ink-2: #2A2A2A;
  --ink-soft: #6E6E68;
  --line: rgba(17, 17, 17, 0.08);
  --line-soft: rgba(17, 17, 17, 0.04);
  --accent: #FF4A1C;
  --accent-soft: #FFE9DF;
  --good: #2F9D5C;
  --bad: #C53030;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Onest', sans-serif; overflow-x: hidden; }
body { font-weight: 400; font-size: 16px; line-height: 1.55; letter-spacing: -0.005em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.display { font-family: 'Onest', sans-serif; font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

/* ===== NAV ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: padding .35s, background .35s, backdrop-filter .35s, border-color .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(244,242,236,0.85); backdrop-filter: blur(14px); border-color: var(--line); }
.logo { font-weight: 700; font-size: 22px; letter-spacing: -0.04em; display: inline-flex; align-items: center; gap: 8px; }
.logo .box { width: 22px; height: 22px; border-radius: 6px; background: var(--ink); position: relative; }
.logo .box::after { content: ''; position: absolute; right: -7px; top: -7px; width: 16px; height: 16px; border-radius: 5px; background: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color .25s; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.pill-phone { font-weight: 600; font-size: 14px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 100px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform .25s, background .25s, color .25s, border-color .25s; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-primary .arr { width: 22px; height: 22px; border-radius: 50%; background: var(--paper); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background .25s, color .25s; }
.btn-primary:hover .arr { background: var(--paper); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--ink); transform: translateY(-1px); }
@media (max-width: 1000px) { .nav-links { display: none; } }
@media (max-width: 720px) { .pill-phone { display: none; } }

/* ===== HERO ===== */
.hero { padding: 140px 0 50px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; padding: 8px 14px; border-radius: 100px; background: var(--paper); border: 1px solid var(--line); font-size: 13px; font-weight: 500; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; }
.hero-eyebrow .dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--accent); opacity: 0.35; animation: pulse 2s infinite; }
@keyframes pulse { from { transform: scale(1); opacity: 0.4; } to { transform: scale(2.4); opacity: 0; } }

.hero h1 { font-size: clamp(40px, 5.2vw, 76px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin: 18px 0 22px; }
.hero h1 .accent { color: var(--accent); }
.hero h1 em { font-style: normal; background: linear-gradient(180deg, transparent 60%, var(--accent-soft) 60%); padding: 0 4px; }
.hero p.lead { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.hero p.lead b { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta { display: flex; gap: 36px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-meta .m .v { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.hero-meta .m .v sup { color: var(--accent); font-size: 16px; vertical-align: super; }
.hero-meta .m .l { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* Hero illustration */
.hero-art { position: relative; aspect-ratio: 1/1; max-width: 560px; margin-left: auto; }
.hero-art .card { position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 16px 18px; box-shadow: 0 16px 30px -16px rgba(0,0,0,0.08); }
.hero-art .stage { position: absolute; inset: 0; background: var(--paper); border-radius: 32px; border: 1px solid var(--line); overflow: hidden; }
.hero-art .gridbg { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle at center, #000 30%, transparent 80%); }
.hero-art .center-box { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 38%; aspect-ratio: 1/1; background: var(--ink); color: var(--paper); border-radius: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; box-shadow: 0 20px 50px -12px rgba(0,0,0,0.25); }
.hero-art .center-box .big { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; }
.hero-art .center-box .sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-family: 'JetBrains Mono', monospace; }
.hero-art .center-box::after { content: ''; position: absolute; right: -10px; top: -10px; width: 28px; height: 28px; background: var(--accent); border-radius: 9px; }

.hero-art .mp { position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 10px 16px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.hero-art .mp .dot { width: 8px; height: 8px; border-radius: 50%; }
.hero-art .mp.wb { top: 8%; left: 4%; }
.hero-art .mp.wb .dot { background: #7E1F86; }
.hero-art .mp.oz { top: 18%; right: 0%; }
.hero-art .mp.oz .dot { background: #005BFF; }
.hero-art .mp.ya { bottom: 14%; left: 2%; }
.hero-art .mp.ya .dot { background: #FFCC00; }
.hero-art .mp.zn { bottom: 6%; right: 6%; }
.hero-art .mp.zn .dot { background: var(--accent); }

.hero-art .ping { position: absolute; bottom: 22%; right: 0%; background: var(--ink); color: var(--paper); border-radius: 16px; padding: 12px 14px; font-size: 12px; line-height: 1.4; max-width: 200px; }
.hero-art .ping b { color: var(--accent); display: block; font-size: 18px; font-weight: 700; }

.hero-art svg.lines { position: absolute; inset: 0; pointer-events: none; }
.hero-art svg.lines path { stroke: var(--ink); stroke-width: 1; fill: none; stroke-dasharray: 4 4; opacity: 0.18; }

@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } .hero-art { max-width: 480px; margin: 0; } }

/* ===== STRIP ===== */
.strip { display: flex; flex-wrap: wrap; gap: 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 80px; align-items: center; justify-content: space-between; }
.strip span { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px; }
.strip span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ===== SECTION HEADER ===== */
section.s { padding: 130px 0; position: relative; }
.s-head { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 60px; }
.s-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.s-tag .n { color: var(--accent); font-weight: 600; }
.s-title { font-size: clamp(36px, 4.6vw, 64px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; font-family: 'Onest', sans-serif; }
.s-title .accent { color: var(--accent); }
.s-side { font-size: 12px; color: var(--ink-soft); text-align: right; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.7; }
@media (max-width: 800px) { .s-head { grid-template-columns: 1fr; gap: 14px; } .s-side { text-align: left; } section.s { padding: 80px 0; } }

/* ===== FEATURE BAR ===== */
.feat { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat .it { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 26px; display: flex; flex-direction: column; gap: 16px; min-height: 220px; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .25s; }
.feat .it:hover { transform: translateY(-4px); border-color: rgba(17,17,17,0.16); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.16); }
.feat .it .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.feat .it h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.feat .it p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-top: auto; }
@media (max-width: 900px) { .feat { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .feat { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.about-quote { font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; }
.about-quote .accent { color: var(--accent); }
.about-body { display: flex; flex-direction: column; gap: 16px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.about-body .bold { color: var(--ink); font-weight: 600; font-size: 19px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 6px 0; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { padding: 8px 14px; border: 1px solid var(--line); background: var(--paper); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--ink); transition: all .25s; }
.tag:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 30px; } }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; background: var(--ink); color: var(--paper); border-radius: 32px; overflow: hidden; }
.stats .st { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.stats .st:last-child { border-right: none; }
.stats .st .v { font-size: clamp(40px, 4.6vw, 64px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stats .st .v .plus { color: var(--accent); }
.stats .st .l { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.stats .st .idx { position: absolute; top: 16px; right: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.14em; }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } .stats .st:nth-child(2) { border-right: none; } .stats .st:nth-child(1), .stats .st:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); } }

/* ===== SERVICES ===== */
.svc-row { display: grid; grid-template-columns: 80px 1fr 1fr 60px; gap: 28px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding .35s; position: relative; }
.svc-row:first-of-type { border-top: 1px solid var(--line); }
.svc-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent); transition: width .35s; }
.svc-row:hover { padding-left: 18px; }
.svc-row:hover::before { width: 3px; }
.svc-row:hover .svc-name { color: var(--accent); }
.svc-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.16em; color: var(--ink-soft); }
.svc-name { font-size: clamp(20px, 2.2vw, 30px); font-weight: 600; letter-spacing: -0.025em; transition: color .25s; }
.svc-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.svc-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .25s, color .25s, border-color .25s; }
.svc-row:hover .svc-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (max-width: 800px) { .svc-row { grid-template-columns: 40px 1fr 32px; } .svc-desc { display: none; } }

/* ===== FBO/FBS COMPARISON ===== */
.comp { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comp-card { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 36px; }
.comp-card.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.comp-card h4 { font-size: 32px; font-weight: 700; letter-spacing: -0.035em; }
.comp-card .tag-mini { display: inline-block; padding: 4px 10px; border-radius: 100px; background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.comp-card.dark .tag-mini { background: rgba(255,255,255,0.1); color: var(--paper); }
.comp-card p.intro { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 14px 0 28px; }
.comp-card.dark p.intro { color: rgba(255,255,255,0.6); }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comp-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 15px; line-height: 1.5; }
.comp-list li .icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; margin-top: 2px; }
.comp-list li.pro .icon { background: var(--good); color: #fff; }
.comp-list li.con .icon { background: rgba(197,48,48,0.15); color: var(--bad); }
.comp-card.dark .comp-list li.con .icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
@media (max-width: 800px) { .comp { grid-template-columns: 1fr; } .comp-card { padding: 28px; } }

/* ===== MARKETPLACES ===== */
.mp-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
.mp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mp-card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 28px; position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .25s; }
.mp-card:hover { transform: translateY(-6px); border-color: rgba(17,17,17,0.18); }
.mp-card.hero { grid-column: span 1; background: var(--ink); color: var(--paper); border-color: var(--ink); grid-row: span 1; }
.mp-card .nm { font-size: 24px; font-weight: 700; letter-spacing: -0.025em; }
.mp-card .p { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.mp-card.hero .p { color: rgba(255,255,255,0.55); }
.mp-card .badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.mp-card .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.mp-card .meta { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; font-family: 'JetBrains Mono', monospace; }
.mp-card.hero .meta { color: rgba(255,255,255,0.5); }
.mp-card .swatch { width: 56px; height: 56px; border-radius: 16px; align-self: flex-end; }
@media (max-width: 900px) { .mp-grid { grid-template-columns: 1fr 1fr; } .mp-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .mp-grid { grid-template-columns: 1fr; } .mp-grid-3 { grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.pr-rows { border-top: 1px solid var(--ink); }
.pr-row { display: grid; grid-template-columns: 60px 1fr auto 180px; gap: 24px; padding: 28px 16px; border-bottom: 1px solid var(--line); align-items: center; transition: background .25s, padding .25s; position: relative; }
.pr-row:hover { background: var(--paper); padding-left: 24px; }
.pr-row .n { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.14em; }
.pr-row .name { font-size: clamp(18px, 2vw, 24px); font-weight: 600; letter-spacing: -0.02em; }
.pr-row .desc { font-size: 14px; color: var(--ink-soft); }
.pr-row .price { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.03em; text-align: right; }
.pr-row .price small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.pr-feat { background: var(--accent); color: #fff; border-radius: 28px; padding: 36px 32px; margin-top: 24px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.pr-feat h4 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
.pr-feat p { font-size: 15px; opacity: 0.85; margin-top: 10px; max-width: 460px; }
.pr-feat .num { font-size: clamp(48px, 6vw, 80px); font-weight: 700; letter-spacing: -0.04em; text-align: right; }
.pr-feat .num small { display: block; font-size: 12px; font-family: 'JetBrains Mono', monospace; font-weight: 400; opacity: 0.7; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 6px; }
@media (max-width: 800px) {
  .pr-row { grid-template-columns: 30px 1fr auto; }
  .pr-row .desc { display: none; }
  .pr-feat { grid-template-columns: 1fr; gap: 16px; }
  .pr-feat .num { text-align: left; }
}
.pr-note { display: flex; gap: 16px; align-items: flex-start; margin-top: 28px; padding: 20px; border: 1px dashed var(--line); border-radius: 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.pr-note .i { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; font-weight: 700; }
.pr-note b { color: var(--ink); }

/* ===== PERSONAL CABINET ===== */
.cab { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 36px; padding: 50px; }
.cab h3 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px; }
.cab p.lead { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; max-width: 460px; }
.cab .feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cab .feats .ft { display: flex; gap: 10px; font-size: 14px; }
.cab .feats .ft .c { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.cab-ui { background: var(--bg); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.cab-ui .top { padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex; gap: 8px; align-items: center; background: var(--paper); }
.cab-ui .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.cab-ui .dot.r { background: #FF5F57; } .cab-ui .dot.y { background: #FEBC2E; } .cab-ui .dot.g { background: #29C840; }
.cab-ui .top .ttl { margin-left: 16px; font-size: 12px; color: var(--ink-soft); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; }
.cab-ui .body { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cab-ui .card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.cab-ui .card .l { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.cab-ui .card .v { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-top: 4px; }
.cab-ui .card .v.a { color: var(--accent); }
.cab-ui .card.bar { grid-column: span 2; }
.cab-ui .bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 8px; }
.cab-ui .bars .b { flex: 1; background: var(--accent-soft); border-radius: 4px 4px 0 0; }
.cab-ui .bars .b.x { background: var(--accent); }
@media (max-width: 900px) { .cab { grid-template-columns: 1fr; padding: 30px; gap: 30px; } }

/* ===== PROCESS ===== */
.pr-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.pr-step { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 26px; position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; counter-increment: step; transition: transform .35s, border-color .25s; }
.pr-step:hover { transform: translateY(-4px); border-color: rgba(17,17,17,0.18); }
.pr-step .step-n { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--accent); }
.pr-step h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.pr-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.pr-step .glyph { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
@media (max-width: 900px) { .pr-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .pr-steps { grid-template-columns: 1fr; } }

/* ===== FORM ===== */
.form-block { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; background: var(--ink); color: var(--paper); border-radius: 36px; padding: 60px; position: relative; overflow: hidden; }
.form-block .left h3 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.form-block .left h3 .accent { color: var(--accent); }
.form-block .left p { color: rgba(255,255,255,0.6); margin-top: 20px; max-width: 420px; font-size: 16px; line-height: 1.6; }
.form-block .perks { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.form-block .perks .pk { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.9); }
.form-block .perks .pk .c { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }
form { display: flex; flex-direction: column; gap: 12px; }
.field { position: relative; }
.field input, .field textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 20px 14px; font-family: 'Onest', sans-serif; font-size: 16px; color: var(--paper); transition: border-color .25s, background .25s; }
.field textarea { min-height: 130px; resize: none; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.08); }
.field label { position: absolute; top: 14px; left: 22px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-family: 'JetBrains Mono', monospace; pointer-events: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--accent) !important; background: rgba(255, 74, 28, 0.1) !important; }
.field.has-success input, .field.has-success textarea { border-color: var(--good) !important; }
.field-error { font-size: 12px; color: var(--accent); margin-top: 6px; padding-left: 20px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; display: none; }
.field.has-error .field-error { display: block; }
.submit-btn { background: var(--accent); color: #fff; border: none; padding: 20px 26px; border-radius: 16px; font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .25s, transform .25s; }
.submit-btn:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.submit-btn .arr { width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: transform .25s; }
.submit-btn:hover .arr { background: var(--accent); color: #fff; transform: rotate(-45deg); }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; gap: 16px; }
.form-success .fs-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--good); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.form-success h4 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; }
.form-success p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.6; }
@media (max-width: 900px) { .form-block { grid-template-columns: 1fr; gap: 40px; padding: 36px; } }

/* ===== GALLERY ===== */
.gal-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 14px; }
.gal-grid-4 { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
.gal { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.gal:nth-child(2) { aspect-ratio: 4/5; transform: translateY(60px); }
.gal:nth-child(3) { aspect-ratio: 3/4; transform: translateY(-30px); }
.gal-grid-4 .gal:nth-child(4) { transform: translateY(20px); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.gal:hover img { transform: scale(1.06); }
.gal .meta { position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.gal .meta::before { content: ''; position: absolute; inset: -40px -18px 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); pointer-events: none; }
.gal .meta .t { font-size: 18px; font-weight: 600; position: relative; }
.gal .meta .c { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; position: relative; }
@media (max-width: 900px) { .gal-grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; } .gal-grid-4 .gal:nth-child(2) { transform: none; aspect-ratio: 3/4; } .gal-grid-4 .gal:nth-child(3), .gal-grid-4 .gal:nth-child(4) { transform: none; } }
@media (max-width: 600px) { .gal-grid, .gal-grid-4 { grid-template-columns: 1fr; } .gal:nth-child(2), .gal:nth-child(3), .gal-grid-4 .gal:nth-child(4) { transform: none; aspect-ratio: 4/3; } .gal { aspect-ratio: 4/3; } }

/* ===== FAQ ===== */
.faq { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { padding: 26px 0; border-top: 1px solid var(--line); cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-head { display: grid; grid-template-columns: 50px 1fr 36px; gap: 16px; align-items: center; }
.faq-q { font-size: clamp(18px, 2vw, 24px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; transition: color .25s; }
.faq-item:hover .faq-q { color: var(--accent); }
.faq-n { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); letter-spacing: 0.14em; }
.faq-p { width: 28px; height: 28px; position: relative; transition: transform .4s; }
.faq-p::before, .faq-p::after { content: ''; position: absolute; background: var(--ink); }
.faq-p::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-p::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); transition: opacity .3s; }
.faq-item.open .faq-p { transform: rotate(180deg); }
.faq-item.open .faq-p::after { opacity: 0; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1), padding .5s; padding-left: 66px; padding-right: 44px; }
.faq-item.open .faq-body { max-height: 320px; padding-top: 20px; }
.faq-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; max-width: 720px; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--paper); padding: 110px 0 40px; position: relative; overflow: hidden; }
.ft-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ft-head { font-size: clamp(48px, 8vw, 130px); font-weight: 700; letter-spacing: -0.045em; line-height: 0.95; }
.ft-head .accent { color: var(--accent); }
.ft-actions { display: flex; flex-direction: column; gap: 12px; }
.ft-actions .btn { justify-content: space-between; padding: 20px 26px; font-size: 14px; }
.ft-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.ft-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.ft-col p, .ft-col a { display: block; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.ft-col a:hover { color: var(--accent); }
.ft-bottom { margin-top: 60px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.ft-wm { position: absolute; bottom: -10vw; left: 0; right: 0; text-align: center; font-size: 28vw; font-weight: 700; letter-spacing: -0.06em; line-height: 0.85; color: rgba(255,255,255,0.03); pointer-events: none; user-select: none; white-space: nowrap; }
@media (max-width: 900px) { .ft-top { grid-template-columns: 1fr; } .ft-grid { grid-template-columns: 1fr 1fr; } }

/* ===== MISC ===== */
.progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--accent); width: 0; z-index: 100; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.cta-banner { background: var(--accent); color: #fff; border-radius: 36px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden; margin-top: 30px; }
.cta-banner h3 { font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
.cta-banner p { font-size: 16px; opacity: 0.9; margin-top: 12px; max-width: 540px; }
.cta-banner .arr-big { width: 88px; height: 88px; border-radius: 50%; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 28px; transition: transform .35s; }
.cta-banner:hover .arr-big { transform: rotate(-45deg) scale(1.08); }
.cta-banner::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.08); }
@media (max-width: 700px) { .cta-banner { grid-template-columns: 1fr; padding: 36px; } }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: all;
}
.l-panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--ink);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.25s;
  will-change: transform;
}
.l-top { top: 0; }
.l-bot { bottom: 0; }
#loader.exit .l-top { transform: translateY(-100%); }
#loader.exit .l-bot { transform: translateY(100%); }
.l-corners {
  position: absolute; inset: 20px;
  z-index: 2; pointer-events: none;
  opacity: 0; animation: l-fade-in .6s ease .4s forwards;
}
.l-ui {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; text-align: center;
  transition: opacity .4s ease, transform .4s ease;
}
#loader.exit .l-ui { opacity: 0; transform: translate(-50%, -54%); }

/* SVG logo */
.l-logo { width: 86px; height: 86px; margin-bottom: 28px; }
.l-r1 {
  stroke-dasharray: 132; stroke-dashoffset: 132;
  animation: l-draw .85s cubic-bezier(.65,0,.35,1) .35s forwards;
}
.l-r2 {
  stroke-dasharray: 132; stroke-dashoffset: 132;
  animation: l-draw .85s cubic-bezier(.65,0,.35,1) .8s forwards;
}
.l-cross-h { animation: l-appear .3s ease 1.5s forwards; }
.l-cross-v { animation: l-appear .3s ease 1.5s forwards; }
@keyframes l-draw  { to { stroke-dashoffset: 0; } }
@keyframes l-appear { to { opacity: 0.5; } }
@keyframes l-fade-in { to { opacity: 1; } }

/* Wordmark */
.l-name {
  font-family: 'Onest', sans-serif; font-size: 36px;
  font-weight: 700; letter-spacing: -0.04em; color: #fff;
  opacity: 0; transform: translateY(10px);
  animation: l-rise .55s ease 1.25s forwards;
}
.l-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 8px;
  opacity: 0;
  animation: l-rise .55s ease 1.5s forwards;
}
@keyframes l-rise { to { opacity: 1; transform: none; } }

/* Progress */
.l-bar-wrap {
  width: min(220px, 60vw); height: 1px;
  background: rgba(255,255,255,0.1); margin-top: 40px;
  opacity: 0; animation: l-fade-in .4s ease 1.6s forwards;
}
.l-bar {
  height: 100%; width: 0;
  background: var(--accent);
  transition: width 0.25s cubic-bezier(.16,1,.3,1);
}
.l-pct {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.35);
  margin-top: 10px;
  opacity: 0; animation: l-fade-in .4s ease 1.6s forwards;
}

/* ===== CUSTOM CURSOR ===== */
body.has-cursor * { cursor: none !important; }
#cur-dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 8000;
  will-change: transform;
}
#cur-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(17,17,17,0.25); border-radius: 50%;
  pointer-events: none; z-index: 7999;
  will-change: transform;
}

/* ===== ORBIT RING ===== */
.orbit-wrap {
  position: absolute; inset: 0;
  animation: orbit-spin 14s linear infinite;
  transform-origin: center;
  pointer-events: none;
}
.orbit-wrap svg { width: 100%; height: 100%; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* ===== STAGGER REVEALS ===== */
.feat .it:nth-child(2)  { transition-delay: .1s; }
.feat .it:nth-child(3)  { transition-delay: .2s; }
.feat .it:nth-child(4)  { transition-delay: .3s; }
.pr-step:nth-child(2)   { transition-delay: .1s; }
.pr-step:nth-child(3)   { transition-delay: .2s; }
.pr-step:nth-child(4)   { transition-delay: .3s; }
.mp-card:nth-child(2)   { transition-delay: .08s; }
.mp-card:nth-child(3)   { transition-delay: .16s; }
.mp-card:nth-child(4)   { transition-delay: .24s; }
.mp-card:nth-child(5)   { transition-delay: .32s; }
.mp-card:nth-child(6)   { transition-delay: .40s; }
.svc-row:nth-child(2)   { transition-delay: .06s; }
.svc-row:nth-child(3)   { transition-delay: .12s; }
.svc-row:nth-child(4)   { transition-delay: .18s; }
.svc-row:nth-child(5)   { transition-delay: .24s; }

/* ===== HERO FLOATING ===== */
.hero-art .ping {
  animation: hero-float 5s ease-in-out infinite;
}
.hero-art .mp.wb { animation: hero-float 4.2s ease-in-out -.8s infinite; }
.hero-art .mp.oz { animation: hero-float 4.8s ease-in-out -1.6s infinite; }
.hero-art .mp.ya { animation: hero-float 5.3s ease-in-out -2.4s infinite; }
.hero-art .mp.zn { animation: hero-float 4.5s ease-in-out -3.2s infinite; }
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
/* JS parallax overrides float on desktop via inline style */

/* ===== MAGNETIC BUTTON ===== */
.btn-primary { transition: background .25s, color .25s; }

/* ===== SECTION SVG ACCENT LINES ===== */
.s-tag .n {
  position: relative;
}
.s-tag .n::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
section:hover .s-tag .n::after { transform: scaleX(1); }

/* ===== HERO ART — counter pulse ring ===== */
.center-box::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0; transform: scale(1.12); }
}

/* ===== FOOTER SOCIAL LINKS ===== */
.ft-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75) !important;
  transition: color .25s !important;
}
.ft-social-link:hover { color: var(--accent) !important; }
.ft-social-link svg { flex-shrink: 0; opacity: 0.7; }

/* ===== FLOATING SOCIAL PANEL ===== */
.social-float {
  position: fixed; left: 20px; bottom: 50%;
  transform: translateY(50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 300;
}
.sf-btn {
  display: flex; align-items: center; gap: 0;
  width: 46px; height: 46px; border-radius: 14px;
  color: #fff; overflow: hidden;
  transition: width .3s cubic-bezier(.16,1,.3,1), border-radius .3s, box-shadow .3s;
  white-space: nowrap; box-shadow: 0 4px 16px -4px rgba(0,0,0,0.22);
  text-decoration: none;
}
.sf-btn svg { flex-shrink: 0; width: 46px; height: 46px; padding: 13px; }
.sf-label {
  font-size: 13px; font-weight: 600; font-family: 'Onest', sans-serif;
  padding-right: 16px; opacity: 0;
  transition: opacity .2s .1s;
  pointer-events: none;
}
.sf-btn:hover { width: 148px; border-radius: 14px; box-shadow: 0 8px 24px -6px rgba(0,0,0,0.28); }
.sf-btn:hover .sf-label { opacity: 1; }
.sf-phone { background: var(--ink); }
.sf-phone:hover { background: #2a2a2a; }
.sf-tg { background: #2AABEE; }
.sf-tg:hover { background: #1e96d4; }
.sf-vk { background: #0077FF; }
.sf-vk:hover { background: #0062d6; }
@media (max-width: 720px) {
  .social-float {
    bottom: 16px; left: 50%; top: auto;
    transform: translateX(-50%);
    flex-direction: row; gap: 10px;
  }
  .sf-btn { width: 50px; height: 50px; border-radius: 50%; }
  .sf-btn:hover { width: 50px; border-radius: 50%; }
  .sf-label { display: none; }
}

/* ===== MARKETPLACE PARTNERS (simplified) ===== */
.mp-simple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mp-partner {
  display: flex; align-items: center; gap: 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 24px; padding: 34px 28px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .35s;
}
.mp-partner:hover { transform: translateY(-5px); border-color: rgba(17,17,17,0.18); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.14); }
.mp-partner-color { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.mp-partner-name { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.025em; flex: 1; }
.mp-partner-check { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
@media (max-width: 700px) { .mp-simple { grid-template-columns: 1fr; } }

/* ===== CALCULATOR NAV BUTTON ===== */
.btn-calc { font-size: 13px; padding: 10px 18px; }
@media (max-width: 900px) { .btn-calc { display: none; } }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  transform: translateY(120%); opacity: 0;
  transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .35s;
  pointer-events: none;
}
.toast.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast-inner {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink); color: var(--paper);
  padding: 18px 22px; border-radius: 20px;
  box-shadow: 0 20px 60px -16px rgba(0,0,0,0.4);
  min-width: 300px; max-width: 400px;
}
.toast-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--good); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.toast-text { flex: 1; }
.toast-text strong { display: block; font-size: 15px; font-weight: 600; }
.toast-text span { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.toast-close { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 22px; padding: 2px 6px; flex-shrink: 0; transition: color .2s; line-height: 1; }
.toast-close:hover { color: #fff; }
@media (max-width: 480px) { .toast { left: 16px; right: 16px; bottom: 16px; } .toast-inner { min-width: 0; } }

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.72); backdrop-filter: blur(8px);
  z-index: 5000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--paper); border-radius: 36px;
  width: 100%; max-width: 880px; position: relative; overflow: hidden;
  transform: translateY(40px) scale(0.97);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.active .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-deep); border: none; font-size: 20px;
  cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s; line-height: 1;
}
.modal-close:hover { background: var(--line); }

/* ===== CALCULATOR MODAL ===== */
.calc-box { display: grid; grid-template-columns: 1fr 1.5fr; max-height: 92vh; overflow: hidden; }
.calc-l {
  background: var(--bg-deep); padding: 50px 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.calc-illo { width: 160px; height: 160px; margin-bottom: 8px; }
.calc-l h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.calc-l p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.calc-r { padding: 44px 40px; overflow-y: auto; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.calc-label { font-size: 11px; color: var(--ink-soft); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; }
.calc-field input, .calc-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: 'Onest', sans-serif; font-size: 15px; background: var(--bg); color: var(--ink);
  transition: border-color .25s; -webkit-appearance: none; appearance: none;
}
.calc-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6E68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--accent); }
.calc-field.calc-has-error input,
.calc-field.calc-has-error select { border-color: var(--accent) !important; background: rgba(255,74,28,0.05) !important; }
.calc-field.calc-has-error .phone-wrap { border-color: var(--accent); }
.calc-field.calc-has-error .phone-wrap input { background: rgba(255,74,28,0.03) !important; }
.calc-error { font-size: 11px; color: var(--accent); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; margin-top: 5px; display: block; }
.phone-wrap { display: flex; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: border-color .25s; }
.phone-wrap:focus-within { border-color: var(--accent); }
.phone-prefix { padding: 0 12px; display: flex; align-items: center; font-size: 15px; font-weight: 600; color: var(--ink-soft); background: var(--bg-deep); border-right: 1px solid var(--line); white-space: nowrap; flex-shrink: 0; }
.phone-wrap input { border: none !important; border-radius: 0 !important; flex: 1; background: var(--bg); }
.phone-wrap input:focus { border: none; outline: none; }
.radio-row { display: flex; gap: 22px; align-items: center; padding: 4px 0; }
.radio-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; user-select: none; }
.radio-opt input[type="radio"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.calc-submit {
  width: 100%; padding: 17px; border: none; background: var(--accent); color: #fff;
  border-radius: 12px; font-family: 'Onest', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .2s; margin-top: 4px;
}
.calc-submit:hover { background: var(--ink); transform: translateY(-2px); }
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; cursor: pointer; }
.consent-row input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.consent-row span { font-size: 12px; color: var(--ink-soft); line-height: 1.55; }
.consent-row a { color: var(--accent); }
.consent-row.error span { color: var(--accent); }
@media (max-width: 720px) {
  .calc-box { grid-template-columns: 1fr; max-height: 95vh; }
  .calc-l { display: none; }
  .calc-r { padding: 36px 24px; }
  .calc-row { grid-template-columns: 1fr; }
}

/* ===== POPUPS ===== */
.pop-overlay {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.6); backdrop-filter: blur(6px);
  z-index: 4999; display: flex; align-items: flex-end; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.pop-overlay.active { opacity: 1; pointer-events: auto; }
.pop-box {
  background: var(--paper); border-radius: 32px; padding: 44px 40px;
  max-width: 500px; width: 100%; position: relative;
  transform: translateY(60px);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.pop-overlay.active .pop-box { transform: none; }
.pop-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px;
  border-radius: 50%; background: var(--bg-deep); border: none; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s; line-height: 1;
}
.pop-close:hover { background: var(--bg-deep); filter: brightness(0.93); }
.pop-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: 100px; background: var(--accent-soft); color: var(--accent);
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.pop-title { font-size: clamp(24px, 3.5vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }
.pop-title .accent { color: var(--accent); }
.pop-sub { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 22px; }
.pop-form { display: flex; flex-direction: column; gap: 10px; }
.pop-phone {
  width: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px;
  font-family: 'Onest', sans-serif; font-size: 16px; background: var(--bg); color: var(--ink);
  transition: border-color .25s;
}
.pop-phone:focus { outline: none; border-color: var(--accent); }
.pop-phone.error { border-color: var(--accent); background: rgba(255,74,28,0.05); }
.pop-submit {
  width: 100%; padding: 17px; border: none; background: var(--accent); color: #fff;
  border-radius: 14px; font-family: 'Onest', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .2s;
}
.pop-submit:hover { background: var(--ink); transform: translateY(-2px); }
@media (max-width: 500px) { .pop-box { padding: 30px 22px; border-radius: 24px; } }

/* ===== BURGER BUTTON ===== */
.burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; border: none; background: transparent;
  cursor: pointer; padding: 8px; border-radius: 10px; flex-shrink: 0;
  transition: background .2s;
}
.burger:hover { background: var(--line); }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1000px) { .burger { display: flex; } }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 48;
  display: flex; flex-direction: column;
  padding: 28px 24px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  pointer-events: none; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); pointer-events: auto; }
.mob-links { display: flex; flex-direction: column; flex: 1; }
.mob-links a {
  font-size: clamp(26px, 7vw, 36px); font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.mob-links a:first-child { border-top: 1px solid var(--line); }
.mob-links a:hover { color: var(--accent); padding-left: 8px; }
.mob-bottom { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }

/* ===== MOBILE IMPROVEMENTS ===== */
@media (max-width: 720px) {
  #cur-dot, #cur-ring { display: none !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .comp { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  #marketplaces { border-radius: 32px !important; padding: 60px 20px !important; }
  .nav { padding: 14px 18px; }
  .nav-right .btn-primary { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .hero-meta { gap: 20px; }
  .hero-meta .m .v { font-size: 22px; }
  .form-block { padding: 28px 22px; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-top { gap: 36px; }
  .ft-head { font-size: 44px; }
  .ft-actions .btn { padding: 16px 20px; }
  .s-head { grid-template-columns: 1fr; }
  .s-side { display: none; }
  section.s { padding: 60px 0; }
  .svc-row { grid-template-columns: 36px 1fr 32px; gap: 12px; }
  .pr-row { grid-template-columns: 36px 1fr; gap: 12px; }
  .pr-row .price { display: none; }
  .comp-card { padding: 22px 18px; }
  .comp-card h4 { font-size: 22px; }
  .cab { padding: 24px 18px; }
  .cta-banner { padding: 28px 22px; border-radius: 24px; }
  .pr-feat { padding: 24px 22px; border-radius: 20px; }
  .stats .st { padding: 28px 18px; }
  .mp-card { min-height: 180px; padding: 20px; }
  .mp-card .nm { font-size: 20px; }
  .pop-box { padding: 28px 18px; border-radius: 20px; }
  .toast { left: 12px; right: 12px; bottom: 12px; }
  .toast-inner { min-width: 0; }
}


/* ============================================================
   MOBILE COMPREHENSIVE v2
   ============================================================ */
h1, h2, h3, h4, h5 { word-break: break-word; overflow-wrap: break-word; }

/* Gallery picture fill */
.gal picture { display: block; width: 100%; height: 100%; }
.gal picture img { width: 100%; height: 100%; object-fit: cover; }
.gal-grid-4 { overflow: visible; }
#gallery .s { overflow: hidden; }

/* ---- 900px ---- */
@media (max-width: 900px) {
  .hero { padding: 120px 0 50px; }
  section.s { padding: 80px 0; }
  .s-title { font-size: clamp(32px, 5vw, 52px); }
  .cab { padding: 32px; }
  .form-block { border-radius: 28px; }
  .cta-banner { padding: 40px 32px; }
}

/* ---- 720px ---- */
@media (max-width: 720px) {
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: clamp(34px, 8.5vw, 52px); margin: 12px 0 16px; }
  .hero p.lead { font-size: 16px; margin-bottom: 20px; }
  .hero-meta { gap: 16px; margin-top: 24px; padding-top: 16px; }
  .hero-meta .m .v { font-size: 22px; }
  .strip { gap: 14px; margin-top: 40px; justify-content: flex-start; }
  section.s { padding: 70px 0; }
  .s-head { margin-bottom: 32px; }
  .s-title { font-size: clamp(28px, 7vw, 44px); }
  .about-quote { font-size: clamp(22px, 6vw, 32px); }
  .about-body { font-size: 15px; }
  .stats { grid-template-columns: 1fr 1fr; border-radius: 24px; }
  .stats .st { padding: 28px 18px; }
  .stats .st:nth-child(1),
  .stats .st:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats .st:nth-child(2) { border-right: none !important; }
  .stats .st:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stats .st .v { font-size: clamp(32px, 8vw, 48px); }
  #marketplaces { border-radius: 28px !important; padding: 50px 18px !important; }
  .comp-card { padding: 28px 22px; border-radius: 22px; }
  .comp-card h4 { font-size: 26px; }
  .cta-banner { padding: 32px 24px; border-radius: 24px; }
  .cta-banner h3 { font-size: clamp(22px, 4vw, 36px); }
  .cta-banner p { font-size: 15px; }
  .cab { gap: 24px; padding: 28px 20px; border-radius: 24px; }
  .cab h3 { font-size: clamp(22px, 6vw, 32px); }
  .cab p.lead { font-size: 15px; }
  .cab .feats { grid-template-columns: 1fr; gap: 10px; }
  .form-block { padding: 32px 22px; border-radius: 24px; gap: 28px; }
  .form-block .left h3 { font-size: clamp(26px, 7vw, 36px); }
  .form-block .left p { font-size: 15px; margin-top: 14px; }
  footer { padding: 70px 0 100px; }
  .ft-head { font-size: clamp(36px, 10vw, 72px); }
  .ft-actions .btn { padding: 18px 22px; font-size: 14px; }
  .ft-grid { margin-top: 40px; gap: 22px; }
  .btn { min-height: 46px; }
  .faq-item { padding: 20px 0; }
  .svc-row { padding: 22px 0; gap: 14px; }
  .pr-row { padding: 20px 10px; }
  .pr-feat { border-radius: 22px; }
  .pr-feat h4 { font-size: clamp(22px, 5vw, 32px); }
  .pr-feat .num { font-size: clamp(40px, 10vw, 64px); }
  .pr-step { padding: 22px; min-height: 180px; }
  .pr-step h4 { font-size: 18px; }
  .gal-grid-4 .gal { transform: none !important; }
  .l-name { font-size: 28px; }
  .social-float { bottom: 80px; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .hero { padding: 80px 0 32px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 42px); margin: 10px 0 14px; }
  .hero p.lead { font-size: 15px; line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .hero-meta { gap: 14px; flex-wrap: wrap; }
  .hero-meta .m { min-width: calc(50% - 7px); }
  section.s { padding: 56px 0; }
  .s-head { gap: 10px; margin-bottom: 28px; }
  .s-side { display: none; }
  .s-title { font-size: clamp(26px, 7.5vw, 36px); }
  .about-quote { font-size: clamp(20px, 6.5vw, 28px); }
  .stats .st .v { font-size: clamp(28px, 9vw, 44px); }
  .stats .st .l { font-size: 12px; margin-top: 8px; }
  .svc-row { grid-template-columns: 32px 1fr 32px; gap: 10px; padding: 18px 0; }
  .svc-name { font-size: 18px; }
  .comp-card { padding: 20px 16px; border-radius: 18px; }
  .comp-card h4 { font-size: 20px; }
  .comp-card p.intro { font-size: 14px; margin: 10px 0 20px; }
  .comp-list li { font-size: 13px; }
  .cta-banner { grid-template-columns: 1fr; padding: 28px 20px; border-radius: 20px; }
  .cta-banner .arr-big { display: none; }
  .cta-banner h3 { font-size: clamp(20px, 6vw, 28px); }
  #marketplaces { border-radius: 20px !important; padding: 40px 16px !important; }
  .mp-card { min-height: 140px; padding: 18px; border-radius: 18px; }
  .mp-card .nm { font-size: 18px; }
  .pr-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 8px; }
  .pr-row .n { display: none; }
  .pr-row .name { font-size: 14px; }
  .pr-row .desc { display: none; }
  .pr-row .price { display: block !important; font-size: 15px; font-weight: 600; text-align: right; }
  .pr-row .price small { display: none; }
  .pr-feat { padding: 22px 18px; border-radius: 18px; gap: 10px; grid-template-columns: 1fr; }
  .pr-feat h4 { font-size: 20px; }
  .pr-feat .num { font-size: 36px; text-align: left; }
  .pr-note { padding: 16px; font-size: 13px; border-radius: 12px; }
  .cab { padding: 22px 16px; border-radius: 20px; }
  .cab h3 { font-size: clamp(18px, 6vw, 26px); }
  .cab p.lead { font-size: 14px; }
  .pr-steps { gap: 10px; }
  .pr-step { padding: 18px; min-height: 160px; border-radius: 18px; }
  .pr-step h4 { font-size: 17px; }
  .pr-step p { font-size: 13px; }
  .form-block { padding: 24px 18px; border-radius: 20px; gap: 22px; }
  .form-block .left h3 { font-size: clamp(22px, 7vw, 30px); }
  .form-block .left p { font-size: 14px; margin-top: 12px; }
  .field input, .field textarea { padding: 24px 16px 12px; font-size: 15px; }
  .submit-btn { padding: 18px 20px; font-size: 14px; }
  .gal { border-radius: 18px; }
  footer { padding: 56px 0 90px; }
  .ft-top { gap: 28px; }
  .ft-head { font-size: clamp(32px, 10vw, 56px); }
  .ft-actions { flex-direction: column; gap: 10px; }
  .ft-actions .btn { width: 100%; justify-content: space-between; padding: 16px 18px; font-size: 13px; }
  .ft-grid { margin-top: 32px; gap: 18px; }
  .ft-bottom { margin-top: 32px; padding-top: 20px; gap: 10px; }
  .faq-q { font-size: 15px; }
  .faq-body { padding-left: 40px; padding-right: 16px; }
  .faq-body p { font-size: 14px; }
  .toast { left: 12px; right: 12px; bottom: 12px; }
  .toast-inner { min-width: 0; gap: 10px; padding: 14px 16px; }
  .pop-box { padding: 28px 18px; border-radius: 20px; }
  .pop-title { font-size: clamp(20px, 6vw, 28px); }
  .pop-sub { font-size: 14px; }
  .l-logo { width: 64px; height: 64px; margin-bottom: 18px; }
  .l-name { font-size: 26px; }
  .l-sub { font-size: 9px; margin-top: 5px; }
  .l-bar-wrap { margin-top: 24px; }
}

/* ---- 380px ---- */
@media (max-width: 380px) {
  .wrap { padding: 0 14px; }
  .hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .s-title { font-size: clamp(22px, 7.5vw, 30px); }
  section.s { padding: 48px 0; }
  .stats .st { padding: 20px 14px; }
  .stats { grid-template-columns: 1fr; }
  .stats .st:nth-child(2) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats .st:nth-child(3) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ft-grid { grid-template-columns: 1fr; }
  .form-block { padding: 20px 14px; }
}


/* ============================================================
   FIX v3 — icons, pricing, padding
   ============================================================ */

/* Social float — center icons properly */
.sf-btn {
  justify-content: center;
}
.sf-btn svg {
  width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .social-float {
    bottom: 20px;
    left: 0;
    right: 0;
    transform: none;
    justify-content: center;
    padding: 0 16px;
  }
  .sf-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }
  .sf-btn:hover { width: 50px; border-radius: 50%; }
}

/* Wrap — proper horizontal padding on mobile */
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 80px 0 36px; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
}

/* Gallery — prevent parallax gap on mobile */
@media (max-width: 720px) {
  .gal picture img {
    transform: none !important;
    will-change: auto;
  }
}

/* Pricing — show price column on all mobile sizes */
@media (max-width: 800px) {
  .pr-row { grid-template-columns: 36px 1fr auto !important; gap: 12px; }
  .pr-row .desc { display: none; }
  .pr-row .price {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
  }
  .pr-row .price small { display: none; }
}
@media (max-width: 480px) {
  .pr-row {
    grid-template-columns: 1fr auto !important;
    gap: 8px;
    padding: 16px 4px;
  }
  .pr-row .n { display: none !important; }
  .pr-row .name { font-size: 14px; }
  .pr-row .price {
    display: block !important;
    font-size: 14px !important;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
  }
  .pr-row .price small { display: none !important; }
}

/* Hero meta — two columns on small screens */
@media (max-width: 480px) {
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .hero-meta .m { min-width: 0; }
  .hero-meta .m .v { font-size: 24px; }
  .hero-meta .m .l { font-size: 12px; }
}


/* ============================================================
   FIX v4 — wrap padding & icon hover gap
   ============================================================ */

/* Increase wrap side padding on all mobile sizes */
@media (max-width: 720px) { .wrap { padding: 0 24px; } }
@media (max-width: 480px) { .wrap { padding: 0 20px; } }
@media (max-width: 380px) { .wrap { padding: 0 16px; } }

/* Social icon hover: gap so label doesn't stick to icon */
.sf-btn { gap: 6px; }
.sf-btn .sf-label { padding-right: 14px; }

/* Gallery img on mobile: disable any transform set by JS,
   and ensure object-fit covers without gap */
@media (max-width: 720px) {
  .gal { overflow: hidden; }
  .gal img {
    transform: none !important;
    will-change: auto !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Nav padding consistent with wrap */
@media (max-width: 720px) { .nav { padding: 14px 24px; } }
@media (max-width: 380px) { .nav { padding: 14px 16px; } }


/* ── PATCH-4 FIXES ─────────────────────────────────────────── */

/* 1. Loader: prevent crop on small screens */
@media (max-width: 480px) {
  .l-ui {
    max-width: calc(100vw - 48px);
    width: 100%;
  }
  .l-sub {
    white-space: normal !important;
    word-break: break-word;
    max-width: 220px;
    text-align: center;
    line-height: 1.5;
  }
}

/* 2. Hero: enough top clearance so nav doesn't overlap eyebrow */
@media (max-width: 720px) {
  .hero { padding-top: 110px !important; }
}
@media (max-width: 480px) {
  .hero { padding-top: 96px !important; }
}

/* 3. Nav: iOS Safari position:fixed + backdrop-filter fix — force GPU layer */
#nav, .nav {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nav.scrolled {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
/* Ensure nav always has a background so it never vanishes */
@media (max-width: 720px) {
  .nav {
    background: var(--bg, #0a0a0a) !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
  }
}

/* 4+5. Services: fix text/arrow overflow on mobile */
@media (max-width: 800px) {
  .svc-row {
    grid-template-columns: 40px 1fr 44px !important;
    gap: 12px;
  }
  .svc-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .svc-row {
    grid-template-columns: 36px 1fr 40px !important;
    gap: 10px;
    padding-right: 0 !important;
  }
  .svc-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
  .svc-head {
    font-size: 15px !important;
  }
  .svc-tag {
    font-size: 10px !important;
    padding: 2px 7px !important;
  }
}

/* 6. FAQ: JS-controlled height animation — remove CSS max-height */
.faq-body {
  max-height: none !important;
  height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: height 0.5s cubic-bezier(0.16,1,0.3,1), padding-top 0.5s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-body {
  /* JS sets height; keep padding override so CSS doesn't fight JS */
  max-height: none !important;
}
