/* ================================================
   CYBER LEGAL SERVICES
   Palette: Warm Stone + Forest Green + Burnt Amber
   Fonts: Syne + Instrument Sans + JetBrains Mono
   NOTHING like WLRC. Fresh. Bold. Unique.
================================================= */

:root {
  /* ── BACKGROUNDS ── */
  --bg:      #F0EDE5;   /* warm stone linen */
  --bg2:     #E8E4DA;   /* deeper linen */
  --bg3:     #DDD8CC;   /* deepest linen */
  --card:    #F8F6F1;   /* warm white card */
  --cardh:   #FDFCF9;   /* hovered card */

  /* ── FOREST GREEN (primary) ── */
  --g:       #1B4332;   /* deep forest */
  --g2:      #245437;   /* medium forest */
  --g3:      #2D6A4F;   /* lighter forest */
  --gbg:     #D8EAE0;   /* green tint bg */
  --gbg2:    #B7D9C6;   /* deeper green tint */

  /* ── BURNT AMBER (accent) ── */
  --a:       #C4601C;   /* burnt amber */
  --a2:      #D47A38;   /* lighter amber */
  --a3:      #E09050;   /* even lighter */
  --abg:     #FDF0E5;   /* amber tint bg */
  --abg2:    #F5D9B8;   /* deeper amber tint */

  /* ── TEXT ── */
  --ink:     #1C1208;   /* near-black warm */
  --ink2:    #3A2E20;   /* dark brown */
  --ink3:    #5C4E3A;   /* medium brown */
  --mid:     #8C7A62;   /* warm mid */
  --muted:   #B5A48E;   /* light muted */

  /* ── BORDERS ── */
  --bdr:     #D4CABC;
  --bdr2:    #C2B5A0;

  /* ── FONTS ── */
  --fd: 'Syne', sans-serif;
  --fb: 'Instrument Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { text-decoration: none; cursor: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; font-family: var(--fb); }

/* ── CURSOR ── */
#cursor-dot {
  position: fixed; width: 9px; height: 9px;
  background: var(--a); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(196, 96, 28, 0.4);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
}
.ch #cursor-dot { width: 16px; height: 16px; background: var(--g); }
.ch #cursor-ring { width: 48px; height: 48px; border-color: rgba(27, 67, 50, 0.35); }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 99990;
  background: var(--g);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.ld-logo {
  width: 76px; height: 76px; object-fit: contain;
  opacity: 0; transform: scale(0.75);
  animation: ldpop .65s .25s var(--ease) forwards;
}
@keyframes ldpop { to { opacity: 1; transform: scale(1); } }
.ld-bar { width: 180px; height: 2px; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.ld-fill { height: 100%; width: 0; background: var(--a2); animation: ldfill 2s .4s var(--ease) forwards; }
@keyframes ldfill { to { width: 100%; } }
.ld-text {
  font-family: var(--fm); font-size: 9px; letter-spacing: 3px;
  color: rgba(255,255,255,.35); text-transform: uppercase;
  opacity: 0; animation: ldup .4s .35s ease forwards;
}
@keyframes ldup { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* ── NAVBAR ── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 14px 40px;
  transition: padding .35s var(--ease);
}
#hdr.stuck { padding: 8px 40px; }
#hdr nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px 10px 16px;
  background: rgba(240, 237, 229, 0);
  border: 1px solid transparent;
  border-radius: 56px;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
#hdr.stuck nav {
  background: rgba(240, 237, 229, 0.92);
  border-color: var(--bdr);
  box-shadow: 0 4px 28px rgba(27, 67, 50, 0.1);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand-name {
  font-family: var(--fd); font-size: 14.5px; font-weight: 700;
  color: #fff; display: block; line-height: 1.1;
  transition: color .3s;
}
#hdr.stuck .brand-name { color: var(--g); }
.brand-tag {
  font-family: var(--fm); font-size: 7px; letter-spacing: 2px;
  color: var(--a2); display: block; text-transform: uppercase;
}
#hdr.stuck .brand-tag { color: var(--a); }

.nav-ul { display: flex; align-items: center; gap: 2px; }
.nav-a {
  display: block; padding: 7px 14px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7); border-radius: 28px;
  transition: color .25s, background .25s;
}
#hdr.stuck .nav-a { color: var(--ink3); }
.nav-a:hover, .nav-a.act { color: #fff; background: rgba(255,255,255,.1); }
#hdr.stuck .nav-a:hover { color: var(--g); background: var(--gbg); }
#hdr.stuck .nav-a.act { color: var(--g); background: var(--gbg); }

.nav-btn {
  padding: 9px 22px; background: var(--a); color: #fff;
  font-size: 12.5px; font-weight: 700; border-radius: 28px;
  transition: background .3s; flex-shrink: 0;
  font-family: var(--fd);
}
.nav-btn:hover { background: var(--g); }
#hdr.stuck .nav-btn { background: var(--g); }
#hdr.stuck .nav-btn:hover { background: var(--a); }

.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 3px; }
.hbg span { display: block; width: 21px; height: 1.5px; background: rgba(255,255,255,.8); transition: all .3s; }
#hdr.stuck .hbg span { background: var(--g); }
.hbg.on span:nth-child(1) { transform: rotate(40deg) translate(4px, 4px); }
.hbg.on span:nth-child(2) { transform: rotate(-40deg) translate(4px, -4px); }

/* MOBILE MENU */
#mob {
  position: fixed; inset: 0; z-index: 800; background: var(--g);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
#mob.on { transform: none; }
.mob-inner {
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; padding: 80px 48px 60px;
}
.mob-inner a {
  font-family: var(--fd); font-size: clamp(26px, 6vw, 42px);
  font-weight: 700; color: rgba(255,255,255,.65);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: block; transition: color .2s, padding-left .3s var(--ease);
}
.mob-inner a:hover { color: var(--a2); padding-left: 12px; }

/* ── LAYOUT UTILS ── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.sec-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: 9.5px; letter-spacing: 3px;
  color: var(--a); text-transform: uppercase; margin-bottom: 16px;
}
.sec-chip::before { content: ''; width: 24px; height: 1.5px; background: currentColor; }
.sec-chip.light { color: var(--a2); }
.sec-h2 {
  font-family: var(--fd); font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; line-height: 1.08; color: var(--g);
  letter-spacing: -0.5px;
}
.sec-h2 em { font-style: italic; color: var(--a); font-weight: 400; }
.sec-h2.light { color: #fff; }
.sec-h2.light em { color: var(--a2); }

/* SCROLL REVEAL — items are VISIBLE by default, JS hides then reveals */
.reveal { }
.js-loaded .reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.js-loaded .reveal.on { opacity: 1; transform: none; }

/* HERO ELEMENTS — also hidden only after js-loaded */
.js-loaded .fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js-loaded .fade-up.on { opacity: 1; transform: none; }
.js-loaded .hero-h1 .word-line .wl-inner {
  opacity: 0; transform: translateY(100%);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-loaded .hero-h1 .word-line .wl-inner.on { opacity: 1; transform: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(138deg, #132e22 0%, #1B4332 45%, #1e3b2a 100%);
  display: grid; grid-template-columns: 52% 48%;
  align-items: center; position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(196,96,28,.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(196,96,28,.07) 0%, transparent 45%);
}
#hero::after {
  content: '';
  position: absolute; inset: 0;
  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: 64px 64px;
}
.hero-left {
  padding: 80px 0 80px 48px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 16px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); border-radius: 30px;
  font-family: var(--fm); font-size: 9px; letter-spacing: 2.5px;
  color: var(--a2); text-transform: uppercase; margin-bottom: 36px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--a);
  animation: bdot 2.5s ease infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.8)} }

.hero-h1 {
  font-family: var(--fd); font-weight: 800;
  line-height: .98; letter-spacing: -2px;
  margin-bottom: 28px; overflow: hidden;
}
.word-line {
  display: block; overflow: hidden;
  font-size: clamp(52px, 7.5vw, 100px);
  color: rgba(255,255,255,.96);
}
.word-line.alt {
  color: var(--a2);
  -webkit-text-stroke: 1px var(--a2);
  color: transparent;
  font-size: clamp(52px, 7.5vw, 100px);
}
.word-line.sm { font-size: clamp(22px, 3vw, 38px); letter-spacing: -0.5px; font-weight: 600; margin-top: 8px; }
.word-line.sm .wl-inner { color: rgba(255,255,255,.55); }

.hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,.55); line-height: 1.78;
  max-width: 460px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--a); color: #fff;
  font-family: var(--fd); font-size: 13.5px; font-weight: 700;
  border-radius: 4px; border: none;
  position: relative; overflow: hidden;
  transition: color .35s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--g); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease); z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }
.btn-primary span:last-child { transition: transform .3s var(--ease); }
.btn-primary:hover span:last-child { transform: translate(2px, -2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); font-family: var(--fd);
  font-size: 13px; font-weight: 600; border-radius: 4px;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--a2); color: var(--a2); }
.btn-ghost span:last-child { transition: transform .3s var(--ease); }
.btn-ghost:hover span:last-child { transform: translateX(4px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.65); font-family: var(--fd);
  font-size: 12.5px; font-weight: 600; border-radius: 4px;
  transition: border-color .3s, color .3s;
}
.btn-outline-light:hover { border-color: var(--a2); color: var(--a2); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: 13.5px; font-weight: 700;
  color: var(--g); transition: gap .3s, color .3s;
}
.link-arrow:hover { gap: 14px; color: var(--a); }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

.hero-nums {
  display: flex; align-items: center; gap: 0;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  width: 100%;
}
.hn { flex: 1; }
.hn-n {
  font-family: var(--fd); font-size: 36px; font-weight: 800;
  color: rgba(255,255,255,.95); line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
}
.hn-n sup { font-size: 16px; color: var(--a2); vertical-align: super; }
.hn-l { font-family: var(--fm); font-size: 8px; letter-spacing: 1.5px; color: rgba(255,255,255,.35); text-transform: uppercase; margin-top: 5px; }
.hn-div { width: 1px; height: 44px; background: rgba(255,255,255,.12); flex-shrink: 0; margin: 0 20px; }

/* HERO RIGHT */
.hero-right { position: relative; z-index: 2; padding: 80px 48px 80px 20px; display: flex; align-items: center; justify-content: center; }
.hero-visual-box {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.hvb-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(196,96,28,.18) 0%, transparent 65%);
  border-radius: 50%;
}
.hvb-logo {
  position: relative; z-index: 3;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.08); padding: 16px;
  display: flex; align-items: center; justify-content: center;
}
.hvb-logo img { width: 100%; height: 100%; object-fit: contain; }
.hvb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.r1 { width: 180px; height: 180px; animation: spin 18s linear infinite; }
.r2 { width: 280px; height: 280px; animation: spin 26s linear infinite reverse; }
.r3 { width: 380px; height: 380px; border-style: dashed; animation: spin 40s linear infinite; opacity: .5; }
@keyframes spin { from{transform:translate(-50%,-50%) rotate(0)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.hf-badge {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; background: rgba(240,237,229,.12);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; min-width: 180px;
  opacity: 0; transform: scale(.85);
  transition: background .3s, transform .3s var(--ease);
}
.hf-badge:hover { background: rgba(240,237,229,.2); transform: scale(1.03) !important; }
.hf-badge > span:first-child { font-size: 20px; flex-shrink: 0; }
.hfb-t { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.2; }
.hfb-s { font-family: var(--fm); font-size: 8px; letter-spacing: .5px; color: rgba(255,255,255,.45); margin-top: 2px; }
.hfb1 { top: 4%; left: -8%; }
.hfb2 { top: 28%; right: -10%; }
.hfb3 { bottom: 24%; left: -12%; }
.hfb4 { bottom: 4%; right: -6%; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--g); overflow: hidden; height: 46px;
  display: flex; align-items: center;
  border-top: 2px solid rgba(255,255,255,.06);
}
.mq-track { display: flex; animation: mq 32s linear infinite; white-space: nowrap; }
.mq-inner { display: flex; align-items: center; flex-shrink: 0; }
.mq-inner span {
  font-family: var(--fm); font-size: 10px; letter-spacing: 2px;
  color: rgba(255,255,255,.45); text-transform: uppercase; padding: 0 28px;
}
.mq-inner em { color: var(--a2); font-style: normal; font-size: 8px; flex-shrink: 0; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--card); padding: 110px 0; border-bottom: 1px solid var(--bdr); }
.as-left h2 { margin-bottom: 24px; }
.as-left p { font-size: 15px; color: var(--ink3); line-height: 1.8; margin-bottom: 14px; }
.as-left p:last-of-type { margin-bottom: 32px; }
.as-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.asr-big { border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.asr-item {
  padding: 30px 32px; border-bottom: 1px solid var(--bdr);
  transition: background .3s; cursor: default;
}
.asr-item:last-child { border-bottom: none; }
.asr-item:hover { background: var(--gbg); }
.asr-n {
  font-family: var(--fd); font-size: 48px; font-weight: 800;
  color: var(--g); line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
}
.asr-n sup { font-size: 20px; color: var(--a); vertical-align: super; }
.asr-l { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--g); margin: 8px 0 4px; }
.asr-p { font-size: 12.5px; color: var(--mid); line-height: 1.55; }
.asr-alert {
  padding: 18px 22px; background: var(--gbg); border: 1px solid var(--gbg2);
  border-left: 3px solid var(--g); border-radius: 6px;
  display: flex; align-items: flex-start; gap: 12px;
}
.asr-alert-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.asr-alert p { font-size: 13px; color: var(--ink2); line-height: 1.65; }
.asr-alert strong { color: var(--g2); }

/* ── SERVICES ── */
.services-sec { background: var(--g); padding: 110px 0; }
.svc-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.svc-list { border: 1px solid rgba(255,255,255,.1); border-radius: 8px; overflow: hidden; }
.svc-row {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 32px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04); transition: background .3s;
  position: relative;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: rgba(255,255,255,.1); }
.sr-num {
  font-family: var(--fm); font-size: 10px; letter-spacing: 1px;
  color: rgba(255,255,255,.25); flex-shrink: 0; width: 28px;
}
.sr-icon { font-size: 26px; flex-shrink: 0; }
.sr-text { flex: 1; }
.sr-name {
  font-family: var(--fd); font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,.9); margin-bottom: 5px;
  transition: color .3s;
}
.svc-row:hover .sr-name { color: var(--a2); }
.sr-desc { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.6; }
.sr-tags { display: flex; gap: 6px; flex-shrink: 0; }
.sr-tags span {
  font-family: var(--fm); font-size: 8px; letter-spacing: 1px;
  color: rgba(255,255,255,.4); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); padding: 3px 10px; border-radius: 20px;
}
.sr-arrow {
  font-size: 20px; color: rgba(255,255,255,.2); flex-shrink: 0;
  transition: color .3s, transform .3s var(--ease);
}
.svc-row:hover .sr-arrow { color: var(--a2); transform: translate(3px,-3px); }
.svc-more { text-align: center; margin-top: 48px; }

/* ── REGULATORS ── */
.reg-sec { background: var(--abg); padding: 100px 0; border-top: 1px solid var(--abg2); border-bottom: 1px solid var(--abg2); }
.reg-head { text-align: center; margin-bottom: 56px; }
.reg-head .sec-h2 { font-size: clamp(24px, 3vw, 40px); }
.reg-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid var(--bdr2); border-radius: 8px; overflow: hidden;
}
.reg-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 20px; border-right: 1px solid var(--bdr2);
  text-align: center; transition: background .3s; cursor: default;
}
.reg-item:last-child { border-right: none; }
.reg-item:hover { background: var(--card); }
.ri-abbr {
  font-family: var(--fd); font-size: 26px; font-weight: 800;
  color: var(--g); display: block; margin-bottom: 7px;
  transition: color .3s;
}
.reg-item:hover .ri-abbr { color: var(--a); }
.ri-name { font-size: 11px; color: var(--mid); line-height: 1.4; }

/* ── WHY ── */
.why-sec { background: var(--bg2); padding: 110px 0; }
.why-head { margin-bottom: 60px; }
.why-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.why-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 10px; padding: 36px 30px;
  position: relative; overflow: hidden; cursor: default;
  transition: background .35s, box-shadow .35s, transform .35s var(--ease);
}
.why-card:hover { background: var(--cardh); box-shadow: 0 16px 40px rgba(27,67,50,.09); transform: translateY(-4px); }
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--g), var(--a));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.wc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.wc-n {
  font-family: var(--fd); font-size: 48px; font-weight: 800;
  color: var(--gbg2); line-height: 1;
}
.wc-ico { font-size: 26px; }
.why-card h3 {
  font-family: var(--fd); font-size: 19px; font-weight: 700;
  color: var(--g); margin-bottom: 12px; line-height: 1.2;
  transition: color .3s;
}
.why-card:hover h3 { color: var(--a); }
.why-card p { font-size: 13px; color: var(--ink3); line-height: 1.75; margin-bottom: 20px; }
.why-card ul { display: flex; flex-direction: column; gap: 8px; }
.why-card li {
  font-size: 12.5px; color: var(--mid);
  display: flex; align-items: center; gap: 9px;
}
.why-card li::before { content: ''; width: 12px; height: 1.5px; background: var(--a); flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--card); padding: 110px 0; border-top: 1px solid var(--bdr); }
.testi-head { margin-bottom: 48px; }
.testi-box { background: var(--bg); border: 1px solid var(--bdr); border-radius: 12px; overflow: hidden; }
.testi-slides { position: relative; }
.tslide { display: none; padding: 56px 60px; animation: tsIn .4s var(--ease); }
.tslide.active { display: block; }
@keyframes tsIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.ts-q { font-family: var(--fd); font-size: 72px; font-weight: 800; color: var(--gbg2); line-height: .65; margin-bottom: 20px; }
.tslide blockquote {
  font-family: var(--fd); font-size: clamp(17px, 2vw, 23px);
  font-style: italic; font-weight: 400; color: var(--ink);
  line-height: 1.62; margin-bottom: 36px; max-width: 800px;
}
.ts-author { display: flex; align-items: center; gap: 14px; }
.ts-av {
  width: 46px; height: 46px; border-radius: 6px;
  background: var(--gbg); border: 1.5px solid var(--gbg2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 18px; font-weight: 800; color: var(--g);
  flex-shrink: 0;
}
.ts-name { font-size: 13.5px; font-weight: 700; color: var(--g); }
.ts-co { font-size: 11.5px; color: var(--a); margin-top: 3px; }
.testi-ctrl {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 60px; background: var(--bg2);
  border-top: 1px solid var(--bdr);
}
.testi-ctrl button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--bdr2);
  background: var(--card); color: var(--ink3); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.testi-ctrl button:hover { background: var(--g); border-color: var(--g); color: #fff; }
#tDots { display: flex; gap: 6px; }
.td { height: 3px; border-radius: 2px; background: var(--bdr2); transition: all .35s var(--ease); width: 18px; cursor: none; }
.td.on { width: 36px; background: var(--g); }

/* ── CLIENTS ── */
.clients-sec { background: var(--bg2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 68px 48px; }
.clients-lbl {
  text-align: center; font-family: var(--fm); font-size: 9px;
  letter-spacing: 3px; color: var(--mid); text-transform: uppercase; margin-bottom: 36px;
}
.clients-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden;
  max-width: 1100px; margin: 0 auto;
}
.ci {
  padding: 18px 30px; border-right: 1px solid var(--bdr);
  font-family: var(--fd); font-size: 15.5px; font-weight: 700;
  color: var(--mid); cursor: default; transition: all .3s;
}
.ci:last-child { border-right: none; }
.ci:hover { background: var(--card); color: var(--g); }

/* ── CTA ── */
.cta-sec { background: var(--g2); padding: 110px 0; position: relative; overflow: hidden; }
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(196,96,28,.12) 0%, transparent 55%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--fd); font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--a2); font-weight: 400; }
.cta-p { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 30px; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cta-badges span {
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); border-radius: 28px;
  font-family: var(--fm); font-size: 8.5px; letter-spacing: 1.5px;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}
.cta-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 700; color: rgba(255,255,255,.7);
  font-family: var(--fd); transition: color .3s;
}
.cta-phone:hover { color: var(--a2); }
.cta-r {
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 40px 36px;
}
.cta-r h3 {
  font-family: var(--fd); font-size: 20px; font-weight: 700;
  color: rgba(255,255,255,.92); margin-bottom: 24px;
}
#ctaForm { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg label {
  font-family: var(--fm); font-size: 8.5px; letter-spacing: 2px;
  color: rgba(255,255,255,.38); text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  padding: 11px 14px; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  font-family: var(--fb); font-size: 13.5px; color: #fff;
  outline: none; border-radius: 5px; width: 100%;
  transition: background .3s, border-color .3s;
  -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg select { color: rgba(255,255,255,.6); cursor: none; }
.fg select option { color: #1C1208; background: #F8F6F1; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4);
}
.fg textarea { resize: vertical; }
.btn-submit {
  padding: 14px 28px; background: var(--a); color: #fff;
  font-family: var(--fd); font-size: 14px; font-weight: 800;
  border: none; border-radius: 5px; width: 100%;
  position: relative; overflow: hidden; transition: color .35s;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bg); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease); z-index: 0;
}
.btn-submit:hover { color: var(--g); }
.btn-submit:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-submit span { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.9);
  padding: 80px 0 36px;
  width: 100%;
}
footer .wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.ft-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
  width: 100%;
}
.ft-brand, .ft-col { min-width: 0; }
.ft-logo { display: flex !important; align-items: center; gap: 11px; margin-bottom: 16px; }
.ft-logo img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.ft-name { font-family: var(--fd); font-size: 14.5px; font-weight: 700; color: rgba(255,255,255,.88); display: block; line-height: 1.2; }
.ft-tag  { font-family: var(--fm); font-size: 7.5px; letter-spacing: 2px; color: var(--a2); display: block; }
.ft-tagline { font-family: var(--fd); font-size: 13px; font-style: italic; font-weight: 400; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 20px; max-width: 230px; }
.ft-contact { display: block; font-size: 12.5px; color: rgba(255,255,255,.42); margin-bottom: 8px; text-decoration: none; transition: color .3s; }
.ft-contact:hover { color: var(--a2); }
.ft-col h5 { font-family: var(--fm); font-size: 8.5px; letter-spacing: 2.5px; color: var(--a2); text-transform: uppercase; margin-bottom: 18px; display: block; }
.ft-col a { display: block; font-size: 12.5px; color: rgba(255,255,255,.42); margin-bottom: 10px; text-decoration: none; transition: color .3s; }
.ft-col a:hover { color: rgba(255,255,255,.82); }
.ft-bot { display: flex !important; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bot p  { font-size: 11.5px; color: rgba(255,255,255,.25); }
.ft-links  { display: flex; gap: 20px; }
.ft-links a { font-size: 11.5px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .3s; }
.ft-links a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .why-cards { grid-template-columns: repeat(2,1fr); }
  .reg-grid { grid-template-columns: repeat(3,1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { padding: 0 48px 60px; min-height: 340px; }
}
@media (max-width: 900px) {
  .as-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sr-tags { display: none; }
}
@media (max-width: 768px) {
  #hdr { padding: 10px 20px; }
  #hdr.stuck { padding: 6px 20px; }
  .nav-ul, .nav-btn { display: none; }
  .hbg { display: flex; }
  .wrap { padding: 0 24px; }
  .about-strip, .services-sec, .reg-sec, .why-sec, .testi-sec { padding: 72px 0; }
  .why-cards { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: repeat(2,1fr); }
  .cta-sec { padding: 72px 0; }
  footer { padding: 60px 0 28px; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 12px; }
  .tslide { padding: 36px 28px; }
  .testi-ctrl { padding: 16px 28px; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-right { padding: 0 24px 52px; }
  .hero-visual-box { width: 280px; height: 280px; }
  .hfb1, .hfb2, .hfb3, .hfb4 { min-width: 155px; }
  .hfb2 { right: -5px; }
  .hfb3, .hfb4 { display: none; }
  .clients-sec { padding: 52px 24px; }
  .clients-row { border-radius: 0; }
  .ci { width: 33.3%; text-align: center; border-bottom: 1px solid var(--bdr); }
  .cta-r { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; }
  .hero-nums { flex-wrap: wrap; }
  .hn { min-width: 40%; margin-bottom: 12px; }
  .hn-div { display: none; }
}
@media (max-width: 480px) {
  .word-line { font-size: 42px; }
  .word-line.sm { font-size: 20px; }
  .hero-badge { font-size: 8px; }
}