:root {
  --gold: #D4AF37;
  --gold-h: #C89B2F;
  --gold-l: #E8D39B;
  --gold-g: linear-gradient(135deg, #D4AF37 0%, #F3D87A 100%);
  --gold-glow: 0 0 40px rgba(212, 175, 55, .15);
  --gold-dim: rgba(212, 175, 55, .08);
  --gold-brd: rgba(212, 175, 55, .2);
  --bg: #0B0B0C;
  --bg2: #111111;
  --card: #171717;
  --card2: #1C1C1C;
  --slate: #242424;
  --white: #FFFFFF;
  --light: #E8E8E8;
  --muted: #A4A4A4;
  --dim: #666666;
  --border: rgba(255, 255, 255, .08);
  --border-g: rgba(212, 175, 55, .15);
  --green: #23C16B;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, .25);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, .15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }
section { padding: 120px 0; position: relative; }
.skip-link { position: absolute; left: 1rem; top: -40px; background: var(--gold); color: #111; padding: .5rem .8rem; z-index: 1100; border-radius: 8px; }
.skip-link:focus { top: .6rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.gt {
  background: var(--gold-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-brd);
  padding: 6px 16px; border-radius: 40px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.btn-gold, .btn-ghost, .btn-wa, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800; font-size: 15px;
  padding: 0 32px; height: 58px; border-radius: 14px;
  transition: all .3s var(--ease); border: none; white-space: nowrap;
}
.btn-gold, .btn--gold, .btn--primary {
  background: var(--gold-g); color: #111;
  box-shadow: 0 4px 20px rgba(212, 175, 55, .2);
}
.btn-gold:hover, .btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost, .btn--ghost {
  background: transparent; color: var(--gold);
  font-weight: 700; border: 1px solid var(--gold-brd);
}
.btn-ghost:hover, .btn--ghost:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }
.btn-wa {
  background: rgba(35, 193, 107, .08); border: 1px solid rgba(35, 193, 107, .25);
  color: var(--green); font-weight: 700;
}
.btn-wa:hover { background: rgba(35, 193, 107, .15); transform: translateY(-2px); }

.sec-h { margin-bottom: 60px; }
.sec-h.c { text-align: center; }
.sec-h.c .sub { margin: 14px auto 0; }
.sec-title { font-size: clamp(2rem, 4vw, 3rem); }
.sub { color: var(--muted); font-size: 17px; max-width: 580px; margin-top: 16px; line-height: 1.75; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.au { animation: fadeUp .8s var(--ease) forwards; opacity: 0; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; } .d5 { animation-delay: .5s; } .d6 { animation-delay: .6s; }
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rv.vis { opacity: 1; transform: none; }

nav.site-nav, .site-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(11, 11, 12, 0); border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
.site-nav.sc { background: rgba(11, 11, 12, .96); backdrop-filter: blur(24px); border-color: var(--border); }
.nlogo img { height: 36px; width: auto; }
.nlinks { display: flex; align-items: center; gap: 36px; }
.nlinks a { font-size: 14px; font-weight: 600; color: var(--muted); transition: color .2s; }
.nlinks a:hover, .nlinks a.on { color: var(--gold); }
.nr { display: flex; align-items: center; gap: 14px; }
.ham { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.ham span { width: 22px; height: 2px; background: var(--muted); border-radius: 2px; display: block; }
.mnav {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(11, 11, 12, .98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 24px 5%; z-index: 999;
}
.mnav.open { display: block; }
.mnav a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 600;
  color: var(--muted); border-bottom: 1px solid var(--border);
}
.mnav a:hover { color: var(--gold); }

#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0; }
.h-bg {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
  filter: brightness(.12) saturate(.8);
  transform: scale(1.05); transition: transform 10s ease;
}
#hero:hover .h-bg { transform: scale(1); }
.h-noise {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 10% 40%, rgba(212, 175, 55, .07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(212, 175, 55, .04) 0%, transparent 45%);
}
.h-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.h-content { position: relative; z-index: 2; padding: 120px 0 80px; max-width: 820px; }
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212, 175, 55, .06); border: 1px solid rgba(212, 175, 55, .2);
  padding: 8px 20px; border-radius: 40px;
  font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.h-h1 { font-size: clamp(3.2rem, 7vw, 5.6rem); margin-bottom: 8px; }
.h-industries { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 700; color: rgba(212, 175, 55, .7); letter-spacing: .05em; margin-bottom: 22px; }
.h-sub { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 660px; margin-bottom: 16px; line-height: 1.7; }
.h-checks { display: flex; flex-wrap: wrap; gap: 10px 32px; margin-bottom: 42px; }
.h-ck { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--muted); }
.h-ck i, .h-ck svg { color: var(--gold); }
.h-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.h-stats { display: flex; gap: 2px; flex-wrap: wrap; }
.stat-pill {
  background: rgba(255, 255, 255, .03); border: 1px solid var(--border);
  backdrop-filter: blur(12px); padding: 22px 28px; border-radius: 16px;
  transition: all .35s;
}
.stat-pill:hover { border-color: var(--gold-brd); background: var(--gold-dim); }
.stat-n { font-family: "Plus Jakarta Sans", sans-serif; font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.stat-l { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .04em; }
.h-tech { margin-top: 20px; }
.h-tl { font-size: 10px; color: var(--dim); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.t-row { display: flex; flex-wrap: wrap; gap: 8px; }
.t-pill { background: rgba(255, 255, 255, .03); border: 1px solid var(--border); color: var(--dim); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 8px; transition: all .25s; }
.t-pill:hover { color: var(--gold); border-color: var(--gold-brd); background: var(--gold-dim); }

#trust { padding: 30px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-track { display: flex; gap: 60px; animation: marquee 28s linear infinite; white-space: nowrap; width: max-content; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-item { font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; gap: 10px; }
.trust-item svg { color: var(--gold); opacity: .5; }
#trust:hover .trust-track { animation-play-state: paused; }

.i-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.i-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: .68; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), border-color .35s, box-shadow .35s;
  color: inherit; text-align: left; width: 100%;
}
.i-card:hover { transform: translateY(-12px); border-color: var(--gold-brd); box-shadow: var(--shadow-gold), var(--shadow-card); }
.i-card.prime { border-color: rgba(212, 175, 55, .25); }
.i-star { position: absolute; top: 12px; right: 12px; z-index: 3; background: var(--gold-g); color: #111; font-family: "Plus Jakarta Sans", sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .1em; padding: 4px 10px; border-radius: 6px; }
.i-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.3); transition: filter .5s, transform .6s; }
.i-card:hover .i-bg { filter: brightness(.22); transform: scale(1.07); }
.i-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 11, 12, .98) 0%, rgba(11, 11, 12, .5) 55%, transparent 100%); }
.i-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px 18px; }
.i-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-dim); border: 1px solid var(--gold-brd); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: all .3s; }
.i-card:hover .i-ico { background: var(--gold); }
.i-ico svg { color: var(--gold); }
.i-card:hover .i-ico svg { color: #111; }
.i-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.i-desc { font-size: 11px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.i-lnk { font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 5px; }
.i-card:hover .i-lnk { gap: 9px; }

.m-ov { position: fixed; inset: 0; background: rgba(0, 0, 0, .8); backdrop-filter: blur(16px); z-index: 2000; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.m-ov.open { opacity: 1; visibility: visible; }
.smod { position: fixed; top: 0; right: -100%; width: 100%; max-width: 680px; height: 100%; background: var(--card); border-left: 1px solid var(--border-g); z-index: 2001; overflow-y: auto; transition: right .55s var(--ease); }
.smod.open { right: 0; }
.sm-hero { position: relative; height: 220px; overflow: hidden; }
.sm-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.4); }
.sm-hero-g { position: absolute; inset: 0; background: linear-gradient(to top, var(--card) 0%, transparent 55%); }
.sm-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); display: flex; align-items: center; justify-content: center; color: var(--white); z-index: 2; }
.sm-hero-b { position: absolute; bottom: 22px; left: 30px; right: 30px; }
.sm-title { font-size: clamp(20px, 3.5vw, 26px); }
.sm-body { padding: 28px 32px 48px; }
.sm-lead { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.sm-h { font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sm-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 26px; }
.sm-feat { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .03); border: 1px solid var(--border); padding: 11px 15px; border-radius: 12px; font-size: 13px; color: var(--light); }
.sm-feat svg { color: var(--gold); }
.sm-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.sm-tag { background: var(--gold-dim); border: 1px solid var(--gold-brd); color: var(--gold); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 8px; }
.sm-ctas { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--border); }

#peptide { background: linear-gradient(180deg, var(--bg) 0%, var(--card) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.p-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.p-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.p-tag { background: rgba(212, 175, 55, .06); border: 1px solid rgba(212, 175, 55, .15); color: rgba(212, 175, 55, .8); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 8px; }
.p-feats { display: flex; flex-direction: column; gap: 10px; }
.p-feat { display: flex; gap: 14px; background: var(--card2); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; }
.p-feat:hover { border-color: var(--gold-brd); }
.p-feat-ico { font-size: 24px; }
.p-feat-t { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.p-feat-d { font-size: 12px; color: var(--muted); }
.p-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.p-card { background: var(--card); border: 1px solid var(--gold-brd); border-radius: 24px; overflow: hidden; position: relative; }
.p-card img { width: 100%; aspect-ratio: .88; object-fit: cover; filter: brightness(.55); }
.p-card-g { position: absolute; inset: 0; background: linear-gradient(to top, var(--card) 0%, transparent 50%); }
.p-card-f { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.p-card-hl { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.p-card-sb { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.p-metrics { display: flex; gap: 20px; }
.p-mn { font-family: "Plus Jakarta Sans", sans-serif; font-size: 24px; font-weight: 900; color: var(--gold); }
.p-ml { font-size: 10px; color: var(--muted); margin-top: 2px; }

.par { position: relative; min-height: 460px; background-attachment: fixed; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.par-ov { position: absolute; inset: 0; background: rgba(11, 11, 12, .82); }
.par-b { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.par-b h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.par-b p { color: var(--muted); font-size: 17px; line-height: 1.75; }

#services { background: var(--card); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: 20px; overflow: hidden; }
.srv-item { background: var(--card); padding: 24px 22px; display: flex; gap: 16px; align-items: flex-start; transition: background .3s; color: inherit; }
.srv-item:hover { background: var(--card2); }
.srv-ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-brd); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.srv-item:hover .srv-ico { background: var(--gold); }
.srv-ico svg { color: var(--gold); }
.srv-item:hover .srv-ico svg { color: #111; }
.srv-n { font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.srv-d { font-size: 12px; color: var(--dim); line-height: 1.5; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px 28px; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .3s, box-shadow .35s; }
.why-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-g); opacity: 0; transition: opacity .35s; }
.why-card:hover { transform: translateY(-8px); border-color: var(--gold-brd); box-shadow: var(--shadow-gold); }
.why-card:hover::before { opacity: 1; }
.why-ico { font-size: 32px; margin-bottom: 20px; display: block; }
.why-t { font-family: "Plus Jakarta Sans", sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-d { font-size: 14px; color: var(--muted); line-height: 1.7; }

.proc-grid { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.proc-line { position: absolute; top: 35px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .3; }
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.proc-n { width: 70px; height: 70px; background: var(--card); border: 2px solid var(--gold-brd); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 20px; transition: all .35s; }
.proc-step:hover .proc-n { background: var(--gold); color: #111; border-color: var(--gold); transform: scale(1.1); }
.proc-t { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.proc-d { font-size: 12px; color: var(--dim); line-height: 1.6; }

.tech-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.tech-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.tech-check { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.tech-check svg { color: var(--gold); }
.tech-strip-wrap { margin-top: 48px; }
.strip-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 18px; }
.tech-strip-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.ts-item { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border); padding: 16px 14px; border-radius: 16px; min-width: 88px; transition: all .3s; }
.ts-item:hover { border-color: var(--gold-brd); background: var(--gold-dim); }
.ts-item svg { color: var(--gold); }
.ts-item span { font-family: "Plus Jakarta Sans", sans-serif; font-size: 11px; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.3; }
.tpg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tpill { background: var(--card); border: 1px solid var(--border); padding: 13px 8px; text-align: center; border-radius: 14px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 700; color: var(--muted); transition: all .25s; }
.tpill:hover { background: var(--gold-dim); border-color: var(--gold-brd); color: var(--gold); transform: translateY(-2px); }

.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.seo-pts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 26px; }
.seo-pt { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); background: var(--card2); border: 1px solid var(--border); padding: 10px 14px; border-radius: 10px; }
.seo-pt svg { color: var(--gold); }
.score-card { background: var(--bg); border: 1px solid var(--gold-brd); border-radius: 24px; padding: 36px; }
.score-n { font-family: "Plus Jakarta Sans", sans-serif; font-size: 96px; font-weight: 900; line-height: 1; }
.score-l { font-size: 13px; color: var(--muted); margin-top: 6px; margin-bottom: 26px; }
.b-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.b-lbl { font-size: 12px; color: var(--muted); min-width: 96px; text-align: right; }
.b-track { flex: 1; height: 5px; background: var(--slate); border-radius: 3px; overflow: hidden; }
.b-fill { height: 100%; background: var(--gold-g); border-radius: 3px; width: 0; transition: width 1.8s ease; }
.b-val { font-size: 12px; color: var(--gold); font-weight: 700; min-width: 28px; }

.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 3px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item:hover { border-color: var(--gold-brd); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; font-weight: 700; color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q.on { color: var(--gold); }
.faq-ico { color: var(--gold); font-size: 22px; transition: transform .3s; }
.faq-q.on .faq-ico { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.78; }
.faq-a.on { display: block; }

#ctaban { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: center / cover no-repeat; filter: brightness(.1) saturate(.6); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, .08) 0%, transparent 65%); }
.cta-in { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-in h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.cta-in p { font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.c-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.c-det { display: flex; gap: 14px; margin-top: 22px; }
.c-ico { width: 44px; height: 44px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-brd); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.c-ico svg { color: var(--gold); }
.c-lbl { font-size: 11px; color: var(--dim); margin-bottom: 3px; letter-spacing: .04em; }
.c-val { font-size: 15px; font-weight: 600; color: var(--white); }
.c-val a { color: var(--gold); }
.wa-box { margin-top: 26px; background: rgba(35, 193, 107, .05); border: 1px solid rgba(35, 193, 107, .18); border-radius: 16px; padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.wa-n { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; font-weight: 900; color: var(--green); }
.wa-n a { color: var(--green); }

.f-box { background: var(--bg); border: 1px solid var(--border); border-radius: 24px; padding: 36px; }
.f-box h3 { font-size: 20px; margin-bottom: 6px; }
.f-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.flbl { display: block; font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.fi, .fsl, .fta {
  width: 100%; background: var(--card2); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-size: 14px; color: var(--white); font-family: Inter, sans-serif; outline: none;
}
.fi:focus, .fsl:focus, .fta:focus { border-color: var(--gold); }
.fta { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; }
.form-status { min-height: 1.2em; margin-top: 12px; color: var(--green); }
.form-status.is-error { color: #ef4444; }
.f-note { font-size: 12px; color: var(--dim); margin-top: 12px; }

footer.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 72px 0 36px; }
.f-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.f-logo img { height: 34px; margin-bottom: 18px; }
.f-about { font-size: 13px; color: var(--dim); line-height: 1.78; max-width: 240px; }
.f-h { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 18px; }
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 13px; color: var(--dim); }
.f-links a:hover { color: var(--gold); }
.f-c { font-size: 13px; color: var(--dim); display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.f-c svg { color: var(--gold); }
.f-bot { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-copy, .f-leg a { font-size: 12px; color: var(--dim); }
.f-leg { display: flex; gap: 20px; }
.f-leg a:hover { color: var(--gold); }

.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); z-index: 900; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 28px rgba(35, 193, 107, .4); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-tip { position: absolute; right: 68px; white-space: nowrap; background: var(--card); border: 1px solid var(--border); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 8px; color: var(--white); opacity: 0; pointer-events: none; transition: opacity .2s; }
.wa-float:hover .wa-tip { opacity: 1; }

.page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-hero .h-noise, .page-hero .h-grid { pointer-events: none; }
.lede { color: var(--muted); font-size: 17px; max-width: 640px; line-height: 1.75; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.card h2 { font-size: 1.15rem; margin: 8px 0; }
.card p { color: var(--muted); font-size: 14px; }
.card__kicker { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.prose { max-width: 720px; color: var(--muted); }
.prose h2, .prose h3 { color: var(--white); margin-top: 1.6rem; }
.prose a { color: var(--gold); }
.prose ul { padding-left: 1.2rem; margin: 1rem 0; }
.prose li { list-style: disc; margin: .4rem 0; }
.check-list li { list-style: none; padding-left: 1.4rem; position: relative; margin: .55rem 0; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.panel { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.4rem; }

@media (max-width: 1100px) {
  .i-grid { grid-template-columns: repeat(3, 1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .tech-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .proc-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .proc-line { display: none; }
  .p-grid, .seo-grid, .c-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .why-grid, .card-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .par { background-attachment: scroll !important; }
}
@media (max-width: 768px) {
  .nlinks, .nr { display: none; }
  .ham { display: flex; }
  section { padding: 80px 0; }
  .i-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .card-grid, .srv-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr; gap: 32px; }
  .smod { max-width: 100%; }
  .sm-feats, .frow, .seo-pts { grid-template-columns: 1fr; }
  .h-btns { flex-direction: column; }
  .btn-gold, .btn-ghost, .btn-wa { width: 100%; }
  .page-hero { padding: 120px 0 56px; }
}
@media (max-width: 480px) {
  .i-grid { grid-template-columns: 1fr; }
  .h-stats { display: none; }
  .tpg { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
