/* FinanCo Capital V7 — Design System */
/* Mobile-first. Clean. No patches. */

/* ── TOKENS ── */
:root {
  color-scheme: light only;
  /* Colors */
  --c-white:    #ffffff;
  --c-paper:    #fafaf8;
  --c-stone:    #f4f3f0;
  --c-border:   #e8e6e1;
  --c-border2:  #d4d0c8;
  --c-ink:      #0d0d0b;
  --c-ink2:     #2d2d2a;
  --c-ink3:     #5c5a54;
  --c-ink4:     #9c9a94;
  --c-night:    #0a0f1e;
  --c-navy:     #0f1729;
  --c-blue:     #1a2d6b;
  --c-blue2:    #2040a0;
  --c-blue3:    #e8ecf8;
  --c-blue4:    #c8d0ee;
  --c-gold:     #b8860b;
  --c-gold2:    #fdf6e3;
  --c-gold3:    #f0d060;
  --c-green:    #0a5c3a;
  --c-green2:   #e8f5ee;
  --c-red:      #8b1a1a;

  /* Typography */
  --f-serif:    'Playfair Display', Georgia, serif;
  --f-sans:     'Outfit', system-ui, sans-serif;

  /* Spacing */
  --sp-xs: 8px;
  --sp-s:  16px;
  --sp-m:  24px;
  --sp-l:  40px;
  --sp-xl: 64px;
  --sp-2xl:96px;

  /* Radius */
  --r-s:  6px;
  --r-m:  12px;
  --r-l:  20px;
  --r-xl: 32px;

  /* Shadows */
  --sh-s: 0 2px 8px rgba(10,15,30,.06);
  --sh-m: 0 6px 24px rgba(10,15,30,.1);
  --sh-l: 0 16px 56px rgba(10,15,30,.14);
  --sh-gold: 0 6px 24px rgba(184,134,11,.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: #ffffff;
  color: #0d0d0b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: var(--f-sans); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--c-blue); border-radius: 2px; }

/* ── LEGAL BAR ── */
.lbar {
  background: var(--c-night);
  color: rgba(255,255,255,.38);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2px;
  padding: 9px 20px;
  text-align: center;
  line-height: 1.6;
}
.lbar strong { color: rgba(200,208,238,.7); font-weight: 500; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--sh-m); }

.nav-logo {
  font-family: var(--f-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo em {
  color: var(--c-blue2);
  font-style: normal;
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--c-ink3);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--r-s);
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-ink); background: var(--c-stone); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta-tel {
  display: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink3);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--r-s);
  transition: color .2s;
}
.nav-cta-tel:hover { color: var(--c-blue2); }

.btn-nav {
  background: var(--c-blue);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--r-s);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(26,45,107,.3);
}
.btn-nav:hover { background: var(--c-night); transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 11px 20px;
  background: var(--c-stone);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--c-ink4);
}
.breadcrumb a { color: var(--c-blue2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--c-border2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  border-radius: var(--r-m);
}
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  padding: 15px 28px;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(26,45,107,.3);
}
.btn-primary:hover { background: var(--c-night); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,45,107,.35); }

.btn-secondary {
  background: var(--c-white);
  color: var(--c-ink2);
  padding: 14px 26px;
  font-size: 15px;
  border: 1.5px solid var(--c-border2);
}
.btn-secondary:hover { border-color: var(--c-blue2); color: var(--c-blue2); }

.btn-wa {
  background: #25d366;
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

.btn-gold {
  background: var(--c-gold);
  color: #fff;
  padding: 15px 28px;
  font-size: 15px;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { background: #9a6e09; transform: translateY(-2px); }

/* ── KICKER ── */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--c-blue2);
  margin-bottom: 14px;
}
.kicker::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--c-gold);
  flex-shrink: 0;
}
.kicker.white { color: rgba(200,208,238,.8); }
.kicker.white::before { background: var(--c-gold3); }

/* ── HEADINGS ── */
.h1 {
  font-family: var(--f-serif);
  font-size: clamp(34px, 9vw, 76px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--c-ink);
}
.h2 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--c-ink);
}
.h3 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
  color: var(--c-ink);
}
.h1 em, .h2 em, .h3 em {
  font-style: italic;
  color: var(--c-blue2);
}
.h1.white, .h2.white, .h3.white { color: #fff; }
.h2.white em { color: var(--c-gold3); }

.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-ink3);
  line-height: 1.45;
}
.lead.large { font-size: 18px; }

/* ── LAYOUT ── */
.container { width: 100%; padding: 0 20px; }
.section { padding: var(--sp-xl) 0; background: var(--c-white); }
.section-stone { background: var(--c-stone); }
.section-dark { background: var(--c-navy); }
.section-night { background: var(--c-night); }

/* ── LEGAL BAND ── */
.legal-band {
  background: var(--c-gold2);
  border-top: 2px solid rgba(184,134,11,.15);
  border-bottom: 2px solid rgba(184,134,11,.15);
  padding: 20px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.legal-band-icon { font-size: 18px; padding-top: 1px; }
.legal-band-title { font-size: 12.5px; font-weight: 600; color: #7a5c09; margin-bottom: 5px; }
.legal-band-body { font-size: 12px; color: #7a5c09; font-weight: 300; line-height: 1.75; }
.legal-band-body strong { font-weight: 600; }

/* ── SPEC CARD ── */
.spec-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-m);
  position: relative;
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-blue2));
}
.spec-card-head {
  background: var(--c-night);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec-card-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.spec-card-title { font-size: 13px; font-weight: 600; color: #fff; }
.spec-card-sub { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--c-border);
  transition: background .15s;
}
.spec-row:last-of-type { border-bottom: none; }
.spec-row:hover { background: var(--c-stone); }
.spec-label { font-size: 13px; color: var(--c-ink4); }
.spec-val { font-size: 13.5px; font-weight: 600; color: var(--c-ink); }
.spec-val.blue { color: var(--c-blue2); }
.spec-val.gold { color: var(--c-gold); }
.spec-val.green { color: var(--c-green); }
.spec-val.red { color: var(--c-red); }
.spec-note {
  margin: 4px 16px 16px;
  background: var(--c-blue3);
  border: 1px solid var(--c-blue4);
  border-radius: var(--r-s);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--c-blue);
  line-height: 1.65;
}

/* ── FEAT LIST ── */
.feat-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--c-ink2);
  font-weight: 300;
  line-height: 1.7;
}
.feat-icon {
  width: 22px; height: 22px;
  background: var(--c-blue3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--c-blue2);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── PRODUCT CARDS ── */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prod-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-m);
  padding: 22px 18px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.prod-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-blue2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.prod-card:hover {
  border-color: rgba(26,45,107,.3);
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}
.prod-card:hover::after { transform: scaleX(1); }
.prod-card-icon { font-size: 28px; }
.prod-card-name {
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.25;
}
.prod-card-range { font-size: 11.5px; color: var(--c-blue2); font-weight: 500; }
.prod-card-arrow {
  align-self: flex-end;
  margin-top: auto;
  width: 28px; height: 28px;
  background: var(--c-blue3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue2);
  font-size: 13px;
  transition: all .2s;
}
.prod-card:hover .prod-card-arrow { background: var(--c-blue); color: #fff; }

/* ── BLOG CARDS ── */
.blog-grid { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-l);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.blog-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-gold), var(--c-blue2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s;
}
.blog-card:hover { border-color: rgba(26,45,107,.25); box-shadow: var(--sh-m); transform: translateY(-2px); }
.blog-card:hover::before { transform: scaleY(1); }
.blog-cat { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-blue2); margin-bottom: 10px; }
.blog-title {
  font-family: var(--f-serif);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.25;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.blog-excerpt { font-size: 14px; color: var(--c-ink3); font-weight: 300; line-height: 1.75; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--c-ink4); }
.blog-read { color: var(--c-blue2); font-weight: 500; font-size: 13px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(26,45,107,.3); }
.faq-item.open { border-color: rgba(26,45,107,.4); box-shadow: var(--sh-s); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
  background: none; border: none; cursor: pointer;
  font-family: var(--f-sans); font-size: 14px; font-weight: 500;
  color: var(--c-ink); text-align: left;
  transition: background .15s;
}
.faq-btn:hover { background: var(--c-stone); }
.faq-item.open .faq-btn { color: var(--c-blue2); }
.faq-chevron { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-ink4); transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--c-blue2); }
.faq-body { display: none; padding: 0 18px 16px; font-size: 13.5px; color: var(--c-ink3); font-weight: 300; line-height: 1.85; }
.faq-item.open .faq-body { display: block; }

/* ── CTA SECTION ── */
.cta-wrap {
  background: var(--c-blue);
  position: relative;
  overflow: hidden;
  padding: var(--sp-xl) 20px;
  text-align: center;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,134,11,.2), transparent 65%);
  pointer-events: none;
}
.cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 65%);
  pointer-events: none;
}
.cta-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 24px; }
.cta-disc { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,.28); font-style: italic; }

/* ── DARK SECTION BITS ── */
.dark-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-l);
  padding: var(--sp-m);
}
.dark-row {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dark-row:last-child { border-bottom: none; }
.dark-row-icon { font-size: 14px; flex-shrink: 0; padding-top: 2px; }
.dark-row-text { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.65; }
.dark-row-text strong { color: rgba(255,255,255,.8); font-weight: 500; }

.vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.val-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-m);
  padding: 18px;
  transition: all .2s;
}
.val-card:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.val-card-icon { font-size: 20px; margin-bottom: 10px; }
.val-card-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.val-card-body { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 300; line-height: 1.45; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-border);
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--c-stone);
}
.stat {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-n sup { font-size: 13px; color: var(--c-blue2); font-family: var(--f-sans); font-weight: 500; }
.stat-l { font-size: 11px; color: var(--c-ink4); }

/* ── OTHER PRODUCTS ── */
.others-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.other-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-m);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  display: flex; align-items: center; gap: 12px;
  transition: all .2s;
}
.other-card:hover { border-color: rgba(26,45,107,.3); transform: translateY(-2px); box-shadow: var(--sh-s); }
.other-card-icon { font-size: 20px; flex-shrink: 0; }
.other-card-name { font-size: 13px; font-weight: 500; color: var(--c-ink); line-height: 1.3; }
.other-card-range { font-size: 11px; color: var(--c-blue2); font-weight: 500; margin-top: 2px; }
.other-card-arrow { margin-left: auto; color: var(--c-ink4); font-size: 14px; flex-shrink: 0; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--c-night);
  padding: 13px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: rgba(255,255,255,.38);
}
.trust-item-dot { width: 4px; height: 4px; background: var(--c-gold3); border-radius: 50%; }

/* ── ARTICLE ── */
.art-layout {
  background: var(--c-white);
}
.art-body { padding: 48px 20px 64px; background: var(--c-white); }
.art-cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-blue3); border: 1px solid var(--c-blue4);
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; color: var(--c-blue2);
  text-decoration: none; margin-bottom: 18px;
  transition: all .2s;
}
.art-cat-link:hover { background: var(--c-blue2); color: #fff; }
.art-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--c-ink4); margin: 14px 0 24px; }
.art-lead {
  font-size: 16.5px; font-weight: 300; color: var(--c-ink2);
  line-height: 1.85; padding: 20px 22px;
  background: var(--c-stone);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--r-m) var(--r-m) 0;
  margin-bottom: 32px;
}
.art-content { background: var(--c-white); }
.art-content h2 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin: 40px 0 16px;
}
.art-content h2 em { color: var(--c-blue2); font-style: italic; }
.art-content h3 {
  font-family: var(--f-serif);
  font-size: 18px; font-weight: 700;
  color: var(--c-ink); margin: 28px 0 12px;
}
.art-content p { font-size: 15px; color: var(--c-ink2); font-weight: 300; line-height: 1.9; margin-bottom: 18px; }
.art-content strong { font-weight: 600; color: var(--c-ink); }
.art-content ul, .art-content ol { padding-left: 20px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 10px; }
.art-content li { font-size: 15px; color: var(--c-ink2); font-weight: 300; line-height: 1.75; }
.art-content hr { border: none; border-top: 1px solid var(--c-border); margin: 36px 0; }
.art-content .highlight { background: var(--c-blue3); border: 1px solid var(--c-blue4); border-radius: var(--r-m); padding: 20px 22px; margin: 28px 0; }
.art-content .highlight p { color: var(--c-blue); font-size: 14px; margin: 0; }
.art-content .warning { background: var(--c-gold2); border: 1px solid rgba(184,134,11,.2); border-radius: var(--r-m); padding: 20px 22px; margin: 28px 0; }
.art-content .warning p { color: #7a5c09; font-size: 14px; margin: 0; }
.art-content .tip-box { background: var(--c-green2); border: 1px solid rgba(10,92,58,.2); border-radius: var(--r-m); padding: 20px 22px; margin: 28px 0; }
.art-content .tip-box p { color: #0a5c3a; font-size: 14px; margin: 0; }
.art-disc { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--c-border); font-size: 12px; color: var(--c-ink4); font-style: italic; line-height: 1.7; }

/* ── SIDEBAR ── */
.sidebar-cta {
  background: var(--c-blue);
  border-radius: var(--r-l);
  padding: 26px;
  text-align: center;
  margin-bottom: 16px;
}
.sidebar-cta-title { font-family: var(--f-serif); font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.sidebar-cta-title em { font-style: italic; color: var(--c-gold3); }
.sidebar-cta-desc { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.7; margin-bottom: 18px; }
.sidebar-cta-btn { display: block; background: #fff; color: var(--c-blue2); padding: 12px 18px; border-radius: var(--r-s); font-size: 13.5px; font-weight: 600; text-decoration: none; margin-bottom: 10px; transition: all .2s; }
.sidebar-cta-btn:hover { background: var(--c-stone); }
.sidebar-cta-wa { display: flex; align-items: center; justify-content: center; gap: 6px; color: rgba(255,255,255,.45); font-size: 13px; text-decoration: none; transition: color .2s; }
.sidebar-cta-wa:hover { color: #fff; }
.sidebar-links { background: var(--c-stone); border: 1px solid var(--c-border); border-radius: var(--r-l); padding: 22px; }
.sidebar-links-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-ink4); margin-bottom: 14px; }
.sidebar-link { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--c-ink2); text-decoration: none; line-height: 1.5; padding: 8px 0; border-bottom: 1px solid var(--c-border); transition: color .2s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--c-blue2); }
.sidebar-link-arrow { color: var(--c-blue2); flex-shrink: 0; margin-top: 1px; }

/* ── CONTACT FORM ── */
.form-wrap { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-m); }
.form-label { font-size: 11px; font-weight: 600; color: var(--c-ink3); display: block; margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-s);
  font-size: 14px; font-family: var(--f-sans);
  color: var(--c-ink); background: var(--c-stone);
  outline: none; transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-blue2); background: var(--c-white);
}
.form-textarea { resize: vertical; }
.form-row { display: grid; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--c-blue2); }
.form-check label { font-size: 12px; color: var(--c-ink3); line-height: 1.65; cursor: pointer; }
.form-check a { color: var(--c-blue2); }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--r-s); font-size: 13.5px; text-align: center; margin-top: 10px; }
.form-msg.ok { background: var(--c-green2); color: var(--c-green); border: 1px solid rgba(10,92,58,.2); }
.form-msg.err { background: #fee2e2; color: #8b1a1a; border: 1px solid rgba(139,26,26,.2); }

/* ── CONTACT METHODS ── */
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.contact-method {
  background: var(--c-stone); border: 1.5px solid var(--c-border);
  border-radius: var(--r-l); padding: 20px;
  text-decoration: none; display: flex; align-items: center; gap: 14px;
  transition: all .2s;
}
.contact-method:hover { border-color: rgba(26,45,107,.3); transform: translateY(-2px); box-shadow: var(--sh-s); }
.contact-method-icon { width: 44px; height: 44px; border-radius: var(--r-m); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-method-icon.blue { background: var(--c-blue3); }
.contact-method-icon.wa { background: #dcfce7; }
.contact-method-label { font-size: 12px; font-weight: 600; margin-bottom: 3px; }
.contact-method-label.blue { color: var(--c-blue2); }
.contact-method-label.wa { color: #059669; }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--c-ink); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 300;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none; transition: all .25s;
  animation: waPop .6s .8s ease both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPop { from { opacity:0; transform:scale(0); } to { opacity:1; transform:scale(1); } }

/* ── MOB BAR ── */
.mob-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mob-bar-btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 9px 6px;
  border-radius: var(--r-s); text-decoration: none;
  font-family: var(--f-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .2px; transition: all .2s;
}
.mob-bar-call { background: var(--c-green2); color: var(--c-green); border: 1.5px solid rgba(10,92,58,.15); }
.mob-bar-wa { background: #dcfce7; color: #25d366; border: 1.5px solid rgba(37,211,102,.2); }
.mob-bar-cta { background: var(--c-blue); color: #fff; border: 1.5px solid var(--c-blue); box-shadow: 0 3px 12px rgba(26,45,107,.3); }

/* ── FOOTER ── */
.footer {
  background: var(--c-night);
  padding: 52px 20px 32px;
}
.footer-logo { font-family: var(--f-serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: rgba(200,208,238,.7); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.32); font-weight: 300; line-height: 1.75; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 9px; margin-bottom: 28px; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-s);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s;
  color: rgba(255,255,255,.4);
}
.fsoc:hover { background: var(--c-blue2); border-color: var(--c-blue2); color: #fff; transform: translateY(-2px); }
.fsoc svg { width: 15px; height: 15px; fill: currentColor; }
.footer-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 14px;
  padding-top: 28px; margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.footer-col h4 { font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.32); text-decoration: none; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: rgba(200,208,238,.8); }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: rgba(255,255,255,.2);
  display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom a { color: rgba(255,255,255,.2); text-decoration: none; }
.footer-bottom a:hover { color: rgba(200,208,238,.6); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.anim { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .container { padding: 0 48px; }
  .section { padding: var(--sp-2xl) 0; }
  .nav { padding: 0 48px; height: 70px; }
  .breadcrumb { padding: 11px 48px; }
  .legal-band { padding: 22px 48px; }
  .trust-strip { padding: 13px 48px; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .others-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-wrap { padding: var(--sp-2xl) 48px; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .footer { padding: 64px 48px 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .mob-bar { display: none; }
  .wa-float { bottom: 32px; right: 32px; }
  .art-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; max-width: 1100px; margin: 0 auto; padding: 60px 48px 80px; }
  .art-body { padding: 0; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-methods { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .container { padding: 0 72px; }
  .nav { padding: 0 72px; }
  .section { padding: 108px 0; }
  .breadcrumb { padding: 11px 72px; }
  .legal-band { padding: 22px 72px; }
  .trust-strip { padding: 13px 72px; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer { padding: 72px 72px 44px; }
}
@media (max-width: 767px) {
  body { padding-bottom: 74px; }
  .wa-float { bottom: 100px !important; right: 14px !important; }
  .h1 { font-size: clamp(32px, 8.5vw, 76px); }
}

/* ── HAMBURGER MENU ─────────────────────────────── */
.nav-hamburger{display:flex;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;padding:8px;background:none;border:none;margin-left:12px;min-width:36px;min-height:36px}
.nav-hamburger span{display:block;width:22px;height:2px;background:#0a0f1e;border-radius:2px;transition:all .3s}
.nav-hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.nav-mobile-menu{display:none;position:fixed;top:58px;left:0;right:0;bottom:0;background:#ffffff;z-index:9998;overflow-y:auto;padding:0 0 100px}
.nav-mobile-menu.open{display:block!important}
.nav-mobile-menu a{display:block;padding:16px 24px;font-family:'Outfit',sans-serif;font-size:16px;font-weight:400;color:#0a0f1e;text-decoration:none;border-bottom:1px solid #f0ede8}
.nav-mobile-menu a:hover{background:#fafaf8;color:#1a2d6b}
.nav-mobile-menu .mob-menu-cta{margin:16px;display:block;background:#1a2d6b;color:#fff!important;text-align:center;padding:16px 24px!important;border-radius:10px;font-weight:600!important;border-bottom:none!important;font-size:16px}
@media(min-width:1200px){.nav-hamburger{display:none!important}.nav-mobile-menu{display:none!important}.nav-links{display:flex!important}.nav-cta-tel{display:block!important}}
@media(max-width:1199px){.nav-links{display:none!important}.nav-cta-tel{display:none!important}.nav-hamburger{display:flex!important}}

body.menu-open{overflow:hidden}
.nav-mobile-menu[hidden]{display:none!important}
.nav-mobile-menu{box-shadow:0 24px 64px rgba(10,15,30,.12)}
.footer-legal-note{text-align:center;font-size:11px;color:rgba(200,208,238,.45);margin-top:16px;padding-top:12px;border-top:1px solid rgba(255,255,255,.06)}
