/* ========= JCS Segurança · Site institucional ========= */
:root {
  --blue: #4f79c1;
  --blue-soft: #7595cf;
  --blue-deep: #1f3a77;
  --blue-darker: #122454;
  --ink: #0e1729;
  --ink-soft: #2b364c;
  --mute: #6b7382;
  --line: #d9dde4;
  --paper: #f4f5f8;
  --paper-warm: #f7f5f0;
  --white: #ffffff;
  --shadow-card: 0 1px 0 rgba(14,23,41,0.04), 0 30px 60px -30px rgba(14,23,41,0.12);
  --shadow-soft: 0 1px 2px rgba(14,23,41,0.04);

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);

  --f-display: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-italic: "Instrument Serif", "Times New Roman", serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ========= Editorial typography ========= */
.eyebrow {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.eyebrow .dot { color: var(--blue); margin: 0 6px; }
.eyebrow.on-dark { color: rgba(255,255,255,0.55); }
.eyebrow.on-dark .dot { color: var(--blue-soft); }

.italic { font-family: var(--f-italic); font-style: italic; font-weight: 400; }

/* ========= Top contact bar ========= */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar .left { display: flex; gap: 18px; align-items: center; white-space: nowrap; }
.topbar .right { display: flex; gap: 18px; align-items: center; white-space: nowrap; }
.topbar .sep { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
.topbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.topbar .pill .live { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2s infinite; }
.topbar .social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: rgba(255,255,255,0.7);
  transition: color 160ms ease, transform 160ms ease;
}
.topbar .social-link:hover { color: #ffffff; transform: translateY(-1px); }
.topbar .social-link svg { width: 15px; height: 15px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ========= Nav ========= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,245,248,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand img { height: 38px; width: auto; }
.nav .links {
  display: flex; gap: 4px; align-items: center;
}
.nav .links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}
.nav .links a:hover { background: rgba(14,23,41,0.05); color: var(--ink); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 160ms ease, transform 160ms ease;
}
.nav .cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
.nav .cta svg { width: 14px; height: 14px; }

/* ========= Hero ========= */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 110px) var(--pad-x) clamp(40px, 7vw, 80px);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-row .badge {
  font-family: var(--f-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero-eyebrow-row .eyebrow { white-space: nowrap; }
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero h1 .italic {
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: -0.015em;
  color: var(--blue-deep);
  display: inline;
  padding-right: 0.08em;
  line-height: 1;
}
.hero .sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(31,58,119,0.6); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); }
.btn svg { width: 14px; height: 14px; }
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* hero side card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-darker) 0%, var(--blue-deep) 55%, var(--ink) 100%);
  box-shadow: var(--shadow-card);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: overlay;
}
.hero-visual .lens {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}
.hero-visual .lens-mark {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}
.hero-visual .meta {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: rgba(255,255,255,0.9);
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-visual .meta .live-dot {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-visual .meta .live-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.2; }
}
.hero-visual .corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
}
.hero-visual .corner.tl { top: 18px; left: 18px; border-width: 1px 0 0 1px; }
.hero-visual .corner.tr { top: 18px; right: 18px; border-width: 1px 1px 0 0; }
.hero-visual .corner.bl { bottom: 64px; left: 18px; border-width: 0 0 1px 1px; }
.hero-visual .corner.br { bottom: 64px; right: 18px; border-width: 0 1px 1px 0; }

.hero-visual .ticker {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ========= Stats strip ========= */
.stats {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px) var(--pad-x);
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  padding-right: 20px;
}
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.stat .n {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat .n .italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-deep);
}
.stat .label {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}

/* ========= Section scaffolding ========= */
.section { padding: clamp(80px, 10vw, 140px) var(--pad-x); position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.section-head .index {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.section-head .index .n { color: var(--ink); }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 14px;
  color: var(--ink);
}
.section-head h2 .italic {
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--blue-deep);
}
.section-head .lede {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
}

/* ========= Sobre / About ========= */
.about {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-img {
  aspect-ratio: 5 / 6;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(14,23,41,0.0) 30%, rgba(14,23,41,0.55) 100%),
    linear-gradient(135deg, #2a4480 0%, #4f79c1 100%);
  position: relative;
  overflow: visible;
  align-self: center;
}
.about-img .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-img .about-photo--main {
  border-radius: 16px;
  position: absolute; inset: 0;
  z-index: 0;
}
.about-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,23,41,0) 50%, rgba(14,23,41,0.55) 100%);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}
.about-img > *:not(.about-photo--main):not(.about-photo-overlay) { z-index: 2; }

/* secondary overlay photo */
.about-photo-overlay {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 56%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(14,23,41,0.4), 0 0 0 6px var(--paper-warm);
  z-index: 3;
}
.about-photo-overlay .about-photo--sub {
  object-position: center center;
}
.about-photo-overlay .overlay-caption {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  color: #ffffff;
  display: flex; justify-content: flex-start; align-items: center;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.about-photo-overlay .overlay-caption .line {
  font-weight: 600;
  color: #ffffff;
}
.about-photo-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,23,41,0) 55%, rgba(14,23,41,0.6) 100%);
  pointer-events: none;
}
.about-img .stamp {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: #ffffff;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 4;
}
.about-img .seal {
  position: absolute; top: 24px; right: 24px;
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}
.about-img .seal strong { font-size: 18px; font-weight: 800; letter-spacing: 0.01em; }
.about-img .label-mobile { display: none; }
.about-img .ph-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about-body p strong { color: var(--ink); font-weight: 700; }
.about-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.about-meta .row .k {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); font-weight: 600;
}
.about-meta .row .v {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* ========= Services ========= */
.services { background: var(--paper); }
.svc-list {
  border-top: 1px solid var(--ink);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1.8fr 1fr 24px;
  gap: clamp(16px, 2.5vw, 36px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 200ms ease, background 200ms ease;
  position: relative;
}
.svc-row::before {
  content: "";
  position: absolute; left: -8px; right: -8px; top: 0; bottom: 0;
  background: transparent;
  transition: background 200ms ease;
  z-index: 0;
  border-radius: 4px;
}
.svc-row:hover::before { background: rgba(79,121,193,0.04); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row .num {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.svc-row .title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.svc-row .desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}
.svc-row .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-start;
}
.svc-row .tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
}
.svc-row .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}
.svc-row:hover .arrow {
  background: var(--blue-deep);
  transform: translateX(3px);
}
.svc-row .arrow svg { width: 11px; height: 11px; }

/* ========= Differentiators ========= */
.diff {
  background: var(--ink);
  color: var(--white);
}
.diff .section-head h2 { color: var(--white); }
.diff .section-head h2 .italic { color: var(--blue-soft); }
.diff .section-head .index { color: rgba(255,255,255,0.55); }
.diff .section-head .index .n { color: var(--white); }
.diff .section-head .lede { color: rgba(255,255,255,0.7); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.diff-cell {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative;
  transition: background 200ms ease;
}
.diff-cell:hover { background: rgba(79,121,193,0.08); }
.diff-cell .n {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--blue-soft);
  margin-bottom: 28px;
}
.diff-cell h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.diff-cell p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-top: auto;
  max-width: 280px;
}
.diff-cell .icon {
  position: absolute; top: clamp(28px, 3vw, 40px); right: clamp(28px, 3vw, 40px);
  width: 32px; height: 32px;
  color: rgba(255,255,255,0.3);
  transition: color 200ms ease, transform 200ms ease;
}
.diff-cell:hover .icon { color: var(--blue-soft); transform: rotate(-8deg) scale(1.06); }

/* ========= Process ========= */
.process { background: var(--paper-warm); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 20px;
}
.process-timeline::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 18px;
  height: 1px; background: var(--line);
}
.proc-step {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.proc-step .dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  z-index: 1;
}
.proc-step:nth-child(1) .dot { background: var(--ink); color: var(--white); border-color: var(--ink); }
.proc-step h4 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
}
.proc-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ========= CTA panel ========= */
.cta-section {
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(40px, 6vw, 80px);
  background: var(--paper);
}
.cta-card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-card::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-card::after {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-card .eyebrow.on-dark { color: rgba(255,255,255,0.55); }
.cta-card h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 18px;
  color: var(--white);
}
.cta-card h2 .italic { font-weight: 400; color: var(--blue-soft); letter-spacing: -0.015em; }
.cta-card p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
}
.cta-card .actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cta-card .btn-primary { background: var(--white); color: var(--blue-deep); }
.cta-card .btn-primary:hover { background: var(--paper); transform: translateY(-2px); }
.cta-card .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.cta-side {
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
}
.cta-side .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.cta-side .phone {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 10px;
  color: var(--white);
}
.cta-side .row {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cta-side .row + .row { margin-top: 8px; padding-top: 8px; border-top: 0; }
.cta-side .row strong { color: var(--white); font-weight: 600; }

/* ========= Footer ========= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid .brand-block .logo {
  height: 44px; filter: brightness(1.4) contrast(1.05);
  margin-bottom: 22px;
}
.footer-grid .brand-block p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-social {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-social a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 160ms ease;
  width: fit-content;
}
.footer-social a:hover { color: var(--blue-soft); }
.footer-social a svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-grid h5 {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid li a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color 160ms ease; }
.footer-grid li a:hover { color: var(--blue-soft); }
.footer-grid .addr {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.footer-grid .addr strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 600; font-size: 13px; letter-spacing: 0.04em; }
.footer-grid .addr + .addr { margin-top: 18px; }

.footer-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .marks { display: flex; gap: 18px; }

/* ========= WhatsApp float ========= */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 18px 13px 14px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 40px -12px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { width: 20px; height: 20px; }

/* ========= Responsive ========= */
@media (max-width: 960px) {
  .topbar .left .hide-mob, .topbar .right .hide-mob { display: none; }
  .nav .links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 5/4; order: -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 5/4; max-width: 520px; width: 100%; margin: 0 auto; align-self: stretch; justify-self: center; }
  .about-photo-overlay { right: 12px; bottom: -20px; width: 44%; }
  .about-img .stamp { display: none !important; }
  .about-photo-overlay .overlay-caption { display: none !important; }
  .about-photo-overlay::after { display: none !important; }
  .about-img .seal { width: 64px; height: 64px; top: 16px; right: 16px; font-size: 9px; }
  .about-img .seal strong { font-size: 15px; }
  .svc-row { grid-template-columns: 50px 1fr 24px; gap: 14px; }
  .svc-row .desc, .svc-row .tags { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-timeline::before { display: none; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
}

/* ========= Tweaks: serif headlines variation ========= */
body.var-serif h1,
body.var-serif h2,
body.var-serif .stat .n,
body.var-serif .proc-step h4,
body.var-serif .svc-row .title,
body.var-serif .cta-card h2 {
  font-family: var(--f-italic);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.var-serif h1 .italic,
body.var-serif h2 .italic,
body.var-serif .cta-card h2 .italic { font-style: italic; }

/* ========= Tweaks: density tight ========= */
body.density-tight .section { padding-top: clamp(56px, 7vw, 90px); padding-bottom: clamp(56px, 7vw, 90px); }
body.density-tight .hero { padding-top: clamp(36px, 6vw, 70px); padding-bottom: clamp(30px, 5vw, 56px); }
