@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:    #0D1B2A;
  --blue:    #1E3A5F;
  --blue-m:  #2C5282;
  --gold:    #C9A84C;
  --gold-l:  #D4B866;
  --gray-bg: #F7F8FA;
  --white:   #FFFFFF;
  --text:    #2D3748;
  --muted:   #718096;
  --font:    'Inter', sans-serif;
  --serif:   'Playfair Display', serif;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,.08);
  --shadow-m:0 6px 28px rgba(0,0,0,.13);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 84px 0; }
.section-sm { padding: 60px 0; }
.center  { text-align: center; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;
}
.s-title {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  line-height: 1.2; color: var(--navy); margin-bottom: 16px;
}
.s-title.white  { color: var(--white); }
.s-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 620px;
}
.s-sub.white    { color: rgba(255,255,255,.72); }
.s-sub.center   { margin: 0 auto; }
.gold-line {
  display: block; width: 44px; height: 2px;
  background: var(--gold); margin: 16px 0;
}
.gold-line.center { margin: 16px auto; }
.sec-head       { max-width: 680px; }
.sec-head.center{ margin: 0 auto; text-align: center; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: .84rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn-gold          { background: var(--gold); color: var(--navy); }
.btn-gold:hover    { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-primary       { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-m); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-blue  { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-wpp           { background: #25D366; color: var(--white); }
.btn-wpp:hover     { background: #1da851; transform: translateY(-2px); }
.btn-lg            { padding: 16px 36px; font-size: .9rem; }
.btn-sm            { padding: 10px 20px; font-size: .76rem; }
.btn-full          { width: 100%; justify-content: center; }

/* ─── PROGRESS BAR ───────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; background: var(--gold); z-index: 9999; transition: width .1s linear;
}

/* ─── FRAMEUP BAR ────────────────────────────────────── */
#fb {
  background: var(--navy); color: rgba(255,255,255,.55);
  text-align: center; padding: 7px 24px; font-size: .68rem;
  font-weight: 600; letter-spacing: .08em;
}
#fb strong { color: var(--gold); }
#fb a { color: var(--gold); }

/* ─── TOP BAR ────────────────────────────────────────── */
#top-bar {
  background: var(--gold); color: var(--navy);
  text-align: center; padding: 10px 24px;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
}

/* ─── HEADER ─────────────────────────────────────────── */
#header {
  position: sticky; top: 0;
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 1000; transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo              { display: flex; flex-direction: column; line-height: 1; }
.logo-nexus        { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.logo-line         { height: 1px; background: var(--gold); margin: 3px 0; }
.logo-sub          { font-size: .52rem; font-weight: 700; letter-spacing: .22em; color: var(--blue-m); text-transform: uppercase; }
.nav-links         { display: flex; gap: 28px; align-items: center; }
.nav-links a       { font-size: .84rem; font-weight: 500; color: var(--text); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.header-actions    { display: flex; align-items: center; gap: 10px; }
.header-tel        { font-size: .82rem; font-weight: 600; color: var(--blue); margin-right: 4px; }
.hamburger         { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span    { display: block; width: 24px; height: 2px; background: var(--navy); transition: all .3s; }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 100vw);
  height: 100vh; background: var(--white); z-index: 2000;
  box-shadow: -4px 0 30px rgba(0,0,0,.15); transition: right .3s ease;
  padding: 24px; display: flex; flex-direction: column; gap: 24px; overflow-y: auto;
}
.drawer.open       { right: 0; }
.drawer-close      { align-self: flex-end; font-size: 1.4rem; color: var(--muted); background: none; border: none; cursor: pointer; }
.drawer-links      { display: flex; flex-direction: column; gap: 18px; }
.drawer-links a    { font-size: .95rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--gray-bg); padding-bottom: 14px; }
.overlay           { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.open      { opacity: 1; pointer-events: all; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  background:
    linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(30,58,95,.82) 100%),
    url('foto-hero.jpg') center center / cover no-repeat;
  padding: 84px 0 100px; position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
}
.hero-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.hero-h1           { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-p            { font-size: 1rem; color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 32px; max-width: 520px; }
.hero-badges       { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px; border-radius: 20px;
}
.badge-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: 12px; padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-card-head    { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hc-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-m));
  display: flex; align-items: center; justify-content: center;
}
.hc-icon svg       { width: 18px; height: 18px; }
.hc-title          { font-size: .95rem; font-weight: 700; color: var(--navy); }
.hc-sub            { font-size: .74rem; color: var(--muted); }
.hc-free           { margin-left: auto; background: #ECFDF5; color: #065F46; font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.form-field        { margin-bottom: 13px; }
.form-field label  { display: block; font-size: .72rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.form-field input,
.form-field select {
  width: 100%; padding: 9px 13px; border: 1.5px solid #E2E8F0; border-radius: var(--radius);
  font-size: .84rem; font-family: var(--font); color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--blue); }
.form-field input.error,
.form-field select.error { border-color: #E53E3E; }
.hc-crc {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid #F0F0F0;
  font-size: .68rem; color: var(--muted); font-weight: 500;
}
.crc-dot { width: 6px; height: 6px; background: #38A169; border-radius: 50%; flex-shrink: 0; }

/* ─── LOGOS CAROUSEL ─────────────────────────────────── */
#logos { padding: 48px 0; border-bottom: 1px solid #F0F0F0; }
.logos-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 28px; }
.logos-wrap   { overflow: hidden; }
.logos-track  { display: flex; gap: 20px; animation: scroll-logos 30s linear infinite; width: max-content; }.logo-item {
  width: 156px; height: 50px; background: var(--gray-bg);
  border: 1px solid #EAECEF; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  letter-spacing: .04em; flex-shrink: 0;
}
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── POSITIONING ────────────────────────────────────── */
.pos-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.pos-card  { border-radius: var(--radius); padding: 32px; border-top: 3px solid transparent; }
.pos-bad   { background: var(--white); border-top-color: #FC8181; box-shadow: var(--shadow); }
.pos-good  { background: var(--navy); border-top-color: var(--gold); }
.pos-card-title { font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.pos-bad  .pos-card-title { color: var(--text); }
.pos-good .pos-card-title { color: var(--white); }
.pos-list  { display: flex; flex-direction: column; gap: 11px; }
.pos-item  { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; line-height: 1.55; }
.pos-bad  .pos-item { color: var(--text); }
.pos-good .pos-item { color: rgba(255,255,255,.82); }
.pos-ico   { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; margin-top: 1px; }
.ico-bad   { background: #FED7D7; color: #C53030; }
.ico-good  { background: rgba(201,168,76,.18); color: var(--gold); }
.pos-cta   { text-align: center; }
.pos-micro { font-size: .76rem; color: var(--muted); margin-top: 10px; }

/* ─── SERVICES ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.service-card {
  border: 1px solid #E8ECF0; border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 26px 22px;
  transition: all .25s; background: var(--white);
}
.service-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); border-top-color: var(--blue); }
.svc-icon  { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.svc-name  { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; line-height: 1.35; }
.svc-desc  { font-size: .8rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.svc-link  { font-size: .75rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.svc-link:hover { gap: 9px; }

/* ─── PROCESS ────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.25));
}
.proc-card   { text-align: center; }
.proc-num    { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.proc-title  { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.proc-desc   { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.75; }

/* ─── NUMBERS ────────────────────────────────────────── */
#numbers {
  padding: 60px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.num-val   { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.num-suffix{ color: var(--gold); }
.num-label { font-size: .78rem; font-weight: 600; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; }

/* ─── TEAM ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--gold);
}
.team-avatar {
  width: 86px; height: 86px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-m));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: var(--serif);
  font-size: 1.5rem; color: var(--white); font-weight: 700;
}
.team-name   { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role   { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.team-crc    { font-size: .7rem; color: var(--muted); margin-bottom: 12px; }
.team-quote  { font-size: .78rem; color: var(--muted); line-height: 1.65; font-style: italic; border-top: 1px solid #F0F0F0; padding-top: 12px; margin-top: 10px; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.test-card { background: var(--blue-m); border-radius: var(--radius); padding: 28px 24px; border-top: 3px solid var(--gold); }
.test-stars{ color: var(--gold); font-size: .95rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-text  { font-size: .83rem; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.test-name  { font-size: .82rem; font-weight: 700; color: var(--white); }
.test-co    { font-size: .74rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ─── DIAGNOSTIC ─────────────────────────────────────── */
.diag-card {
  max-width: 700px; margin: 48px auto 0;
  background: var(--white); border-radius: 12px; padding: 48px;
  box-shadow: var(--shadow-m); border: 1px solid rgba(201,168,76,.22);
  border-top: 4px solid var(--gold);
}
.diag-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.diag-item  { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: var(--text); line-height: 1.5; }
.diag-item-ico { flex-shrink: 0; font-size: .95rem; }
.diag-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.diag-full  { grid-column: 1 / -1; }
.diag-privacy { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 10px; }
.form-success { background: #F0FFF4; border: 1px solid #9AE6B4; border-radius: var(--radius); padding: 24px; text-align: center; display: none; }
.form-success.visible { display: block; }
.form-success h4 { font-size: 1rem; font-weight: 700; color: #2F855A; margin-bottom: 6px; }
.form-success p  { font-size: .85rem; color: #276749; }

/* ─── BLOG ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 36px; }
.blog-card { border: 1px solid #E8ECF0; border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.blog-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.blog-thumb { height: 110px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-m) 100%); display: flex; align-items: flex-end; padding: 14px; }
.blog-tag   { font-size: .66rem; font-weight: 700; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; }
.blog-body  { padding: 20px; }
.blog-meta  { font-size: .7rem; color: var(--muted); margin-bottom: 8px; }
.blog-title { font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 9px; }
.blog-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.65; }

/* ─── DIFFERENTIALS ──────────────────────────────────── */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.diff-card { padding: 28px 24px; border: 1px solid rgba(201,168,76,.14); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.diff-ico   { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.diff-title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.diff-desc  { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list   { max-width: 800px; margin: 48px auto 0; }
.faq-item   { border-bottom: 1px solid #E8ECF0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: .93rem; font-weight: 600; color: var(--navy);
  text-align: left; gap: 16px; background: none; border: none; cursor: pointer;
}
.faq-q:hover { color: var(--blue); }
.faq-ico {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--navy); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: transform .3s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-ans    { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-ans-inner { padding-bottom: 20px; font-size: .86rem; color: var(--muted); line-height: 1.8; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-ico  { font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: .86rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item p,
.contact-item a  { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.contact-item a:hover { color: var(--blue); }
.contact-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.contact-badge {
  background: var(--gray-bg); border: 1px solid #E2E8F0; border-radius: 6px;
  padding: 5px 12px; font-size: .68rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: .06em;
}
.map-ph {
  height: 340px; border-radius: 12px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px); background-size: 30px 30px; }
.map-pin  { font-size: 2.5rem; position: relative; z-index: 1; }
.map-addr { font-size: .8rem; color: rgba(255,255,255,.75); text-align: center; line-height: 1.65; max-width: 200px; position: relative; z-index: 1; }

/* ─── CTA FINAL ──────────────────────────────────────── */
#cta-final { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 100px 0; }
.cta-title { font-family: var(--serif); font-size: 2.4rem; color: var(--white); text-align: center; margin-bottom: 56px; }
.cta-split { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 28px; align-items: center; max-width: 860px; margin: 0 auto; }
.cta-card  { border-radius: 12px; padding: 40px 32px; text-align: center; }
.cta-left  { background: rgba(255,255,255,.06); border: 1.5px solid var(--gold); }
.cta-right { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18); }
.cta-card-ico   { font-size: 2rem; margin-bottom: 14px; }
.cta-card-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-card-desc  { font-size: .83rem; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 22px; }
.cta-or  { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-or-line { width: 1px; height: 80px; background: rgba(255,255,255,.2); }
.cta-or-txt  { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.cta-bottom  { text-align: center; margin-top: 44px; }
.cta-bottom p { font-size: .86rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }

/* ─── FOOTER ─────────────────────────────────────────── */
#footer { background: var(--navy); border-top: 2px solid var(--gold); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.fc-title    { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-ci span:first-child { font-size: .95rem; flex-shrink: 0; }
.footer-ci span:last-child  { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-soc { width: 32px; height: 32px; background: rgba(255,255,255,.06); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.45); transition: all .2s; }
.footer-soc:hover { background: var(--gold); color: var(--navy); }
.footer-seals { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.footer-seal { font-size: .62rem; font-weight: 700; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.18); color: var(--gold); padding: 3px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; }
.footer-bottom { background: rgba(0,0,0,.25); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .7rem; color: rgba(255,255,255,.3); line-height: 1.8; }
.footer-disc { font-size: .64rem; color: rgba(255,255,255,.2); margin-top: 6px; }

/* ─── FLOATING ───────────────────────────────────────── */
.float-wpp {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--white);
  border-radius: 50px; padding: 13px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.28); z-index: 900;
  transition: transform .2s, box-shadow .2s;
}
.float-wpp:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.wpp-dot { width: 7px; height: 7px; background: #25D366; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }
#scroll-top {
  position: fixed; bottom: 76px; right: 28px;
  width: 38px; height: 38px; background: var(--gold); color: var(--navy);
  border-radius: 8px; border: none; cursor: pointer; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ─── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .test-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-h1       { font-size: 2.2rem; }
  .pos-grid      { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .test-grid     { grid-template-columns: 1fr; }
  .diff-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .cta-split     { grid-template-columns: 1fr; }
  .cta-or        { flex-direction: row; }
  .cta-or-line   { width: 60px; height: 1px; }
  .blog-grid     { grid-template-columns: 1fr; }
  .diag-grid     { grid-template-columns: 1fr; }
  .diag-items    { grid-template-columns: 1fr; }
  .s-title       { font-size: 1.85rem; }
  .nav-links, .header-actions .btn, .header-tel { display: none; }
  .hamburger     { display: flex; }
  .diag-card     { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .wrap          { padding: 0 16px; }
  .numbers-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn{ width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .cta-card      { padding: 28px 20px; }
}
