/* ===========================================
   Cell Tech Belém — hi-fi styles
   Paleta: laranja #FF6A13 + preto + off-white
   Tipo: Space Grotesk + JetBrains Mono + Inter
   =========================================== */

:root {
  /* Colors */
  --bg: #FAFAF7;
  --bg-2: #F2F1EC;
  --bg-3: #E8E6DF;
  --ink: #0F0F10;
  --ink-2: #2A2A2C;
  --muted: #6B6B6F;
  --muted-2: #A5A5A8;
  --line: #E0DED6;
  --line-2: #1A1A1C;
  --accent: #FF6A13;
  --accent-2: #E85C07;
  --accent-soft: #FFE8D6;
  --success: #1F7A4A;
  --ok-soft: #E4F3EA;

  /* Type */
  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(15, 15, 16, 0.04), 0 2px 6px rgba(15, 15, 16, 0.05);
  --shadow-2: 0 4px 14px rgba(15, 15, 16, 0.08);
  --shadow-3: 0 12px 40px rgba(15, 15, 16, 0.12);
}

[data-theme="dark"] {
  --bg: #0F0F10;
  --bg-2: #17171A;
  --bg-3: #1F1F22;
  --ink: #F5F4EF;
  --ink-2: #D6D5D0;
  --muted: #9B9B9E;
  --muted-2: #5E5E62;
  --line: #2A2A2E;
  --line-2: #F5F4EF;
  --accent: #FF7A2B;
  --accent-2: #FF8B44;
  --accent-soft: #3A1F0E;
  --success: #3DB574;
  --ok-soft: #133325;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--accent) 60%, transparent);
  outline-offset: 4px;
}

/* ================ TYPE ================ */

.font-display { font-family: var(--ff-display); letter-spacing: -0.02em; }
.font-mono { font-family: var(--ff-mono); }

.mono-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}

.h-hero {
  font-size: clamp(44px, 6vw, 84px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 600;
}
.h-section {
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-card {
  font-size: 22px;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 56ch;
}

/* ================ LAYOUT ================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section.pad-lg { padding: 120px 0; }
.section.pad-sm { padding: 48px 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }

.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-5 { grid-column: span 5; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-12 { grid-template-columns: repeat(6, 1fr); }
  .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: span 6; }
  .section { padding: 64px 0; }
  .container, .container-wide { padding: 0 20px; }
}

/* ================ TOP NAV ================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo .sq {
  width: 14px;
  height: 14px;
  background: var(--accent);
  display: inline-block;
  margin-right: 8px;
  transform: translateY(1px);
  border-radius: 2px;
}
.logo .dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
  .nav-cta { display: none; }
}

/* ================ BUTTONS ================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn.sm { padding: 9px 16px; font-size: 13.5px; }
.btn.lg { padding: 17px 30px; font-size: 17px; }
.btn.xl { padding: 21px 36px; font-size: 18px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 8px 24px rgba(255, 106, 19, 0.28); }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); }

.btn-link {
  color: var(--ink);
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.btn .ico {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

/* Whatsapp icon SVG — reusable */
.wa-ico {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
  overflow: visible;
  color: currentColor;
}
.btn.sm .wa-ico {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}
.btn.lg .wa-ico {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

/* ================ CHIPS / PILLS / TAGS ================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.pill.accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}
.pill.dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--success) 18%, transparent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-2);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
}

/* ================ PLACEHOLDER (stripes) ================ */

.ph {
  position: relative;
  background: var(--bg-2);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 10px,
    color-mix(in oklab, var(--muted) 10%, transparent) 10px,
    color-mix(in oklab, var(--muted) 10%, transparent) 11px
  );
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 200px;
}
.ph .ph-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ph .ph-desc {
  margin: 0;
  padding: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ================ CARDS ================ */

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.card.hover:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-2);
}

/* ================ HERO ================ */

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-centered,
.hero-centered *,
.hero-centered h1,
.hero-centered h2,
.hero-centered p,
.hero-centered span,
.hero-centered div {
  text-align: center !important;
}
.hero-centered {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered h1 { text-wrap: balance; width: 100%; }
.hero-centered .eyebrow { justify-content: center; }
.hero-centered .lead { margin-left: auto; margin-right: auto; }
.hero-centered .hero-ctas { justify-content: center; align-items: center; }
.hero-stats-centered {
  justify-content: center;
  margin: 48px auto 0;
  grid-template-columns: repeat(3, auto);
}

.hero-left .eyebrow { margin-bottom: 28px; }

.hero h1 {
  margin: 0 0 24px;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 10px;
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  z-index: -1;
  border-radius: 2px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-stats .stat-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-stats .stat-label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero image block */
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-media .ph { height: 100%; border-radius: var(--r-lg); }
.hero-media .badge {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-2);
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-media .badge-garantia {
  bottom: 24px;
  left: 24px;
}
.hero-media .badge-reviews {
  top: 24px;
  right: 24px;
  padding: 12px 16px;
}
.hero-media .badge .num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-media .badge small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* === Diagonal marquee below hero === */
.tickband {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg);
}
.tick {
  display: flex;
  gap: 48px;
  animation: tickmove 38s linear infinite;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.tick span.sep { color: var(--accent); }
@keyframes tickmove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================ SERVICES GRID ================ */

.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .services-head { grid-template-columns: 1fr; }
}

.services-head h2 { max-width: 16ch; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--bg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  position: relative;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.svc:hover {
  background: var(--ink);
  color: var(--bg);
}
.svc:hover h3 { color: var(--bg); }
.svc:hover .svc-num,
.svc:hover .svc-desc { color: var(--muted-2); }
.svc:hover .svc-arrow { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateX(2px); }
.svc:hover .svc-icon svg * { stroke: var(--accent); }

.svc-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.svc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.svc-icon svg {
  width: 100%; height: 100%;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc:hover .svc-icon svg { stroke: var(--accent); }

.svc h3 {
  font-size: 20px;
  letter-spacing: -0.015em;
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.svc-arrow {
  align-self: flex-start;
  margin-top: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  transition: all 0.15s;
}

.svc.wide {
  grid-column: span 2;
  background: var(--accent);
  color: #fff;
}
.svc.wide:hover { background: var(--accent-2); color: #fff; }
.svc.wide .svc-num,
.svc.wide .svc-desc { color: rgba(255, 255, 255, 0.75); }
.svc.wide h3 { color: #fff; }
.svc.wide .svc-arrow { border-color: rgba(255,255,255,0.4); color: #fff; }
.svc.wide:hover .svc-arrow { background: #fff; color: var(--accent); border-color: #fff; }

/* ================ "COMO FUNCIONA" STEPS ================ */

.steps-section {
  background: var(--ink);
  color: var(--bg);
}
.steps-section h2 { color: var(--bg); }
.steps-section .lead { color: var(--muted-2); }
.steps-section .eyebrow { color: var(--accent); }
.steps-section .eyebrow::before { background: var(--accent); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--muted-2) 0, var(--muted-2) 4px, transparent 4px, transparent 10px);
  opacity: 0.4;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

.step {
  padding: 0 24px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 {
  color: var(--bg);
  font-size: 22px;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ================ TRUST BAND ================ */

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 800px) { .trust-band { grid-template-columns: 1fr; } }

.trust-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 800px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
}
.trust-item .ico {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.trust-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ================ REVIEWS ================ */

.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .reviews-head { grid-template-columns: 1fr; } }

.rev-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rev-rating .score {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rev-rating .stars {
  display: flex;
  gap: 2px;
}
.rev-rating .stars svg {
  width: 16px; height: 16px;
  fill: var(--accent);
}
.rev-rating small {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

.rev-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
}
.rev-card .stars {
  display: flex;
  gap: 2px;
}
.rev-card .stars svg {
  width: 14px; height: 14px;
  fill: var(--accent);
}
.rev-card blockquote {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.rev-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}
.rev-card .author-meta {
  display: flex;
  flex-direction: column;
}
.rev-card .author-meta b {
  font-weight: 600;
  font-size: 14px;
}
.rev-card .author-meta small {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2px;
}

/* ================ CTA BAND ================ */

.cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .eyebrow { color: rgba(255,255,255,0.85); }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.85); }
.cta-band h2 {
  color: #fff;
  max-width: 18ch;
  margin: 16px 0 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 0 36px;
}
.cta-band .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-band .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cta-band .btn-primary:hover { background: #000; }
.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.cta-band .phone-big {
  margin-left: auto;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 800px) {
  .cta-band { padding: 48px 28px; }
  .cta-band .phone-big { margin-left: 0; margin-top: 14px; }
}

/* ================ BLOG ================ */

.blog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .blog-head { grid-template-columns: 1fr; } }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.post {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post .ph {
  aspect-ratio: 4/3;
  min-height: auto;
}
.post .meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 12px;
}
.post h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.post p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ================ FOOTER ================ */

.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    padding: 0 20px;
  }

  .hero {
    padding: 44px 0 28px;
  }

  .hero-centered {
    width: 100%;
    max-width: 350px;
    padding: 34px 0 24px;
  }

  .hero-centered h1,
  .hero-centered .lead,
  .hero-centered .hero-ctas {
    max-width: 100%;
  }

  .h-hero {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.05;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 14px;
  }

  .hero h1 .accent {
    display: inline;
  }

  .hero h1 .accent::after {
    display: none;
  }

  .lead,
  .cta-band p {
    font-size: 16px;
  }

  .hero-ctas {
    width: 100%;
    max-width: min(350px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas .btn,
  .cta-band .cta-row .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero-stats,
  .hero-stats-centered {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-head,
  .blog-head,
  .reviews-head {
    gap: 18px;
    margin-bottom: 32px;
  }

  .svc {
    min-height: auto;
    padding: 24px 22px;
  }

  .steps {
    gap: 28px;
    margin-top: 44px;
  }

  .step,
  .step:first-child,
  .step:last-child {
    padding: 0;
  }

  .trust-item {
    padding: 30px 24px;
  }

  .rev-card {
    padding: 24px;
  }

  .cta-band {
    border-radius: var(--r-lg);
    padding: 40px 24px;
  }

  .cta-band .phone-big {
    width: 100%;
    justify-content: center;
    font-size: 20px;
  }

  .post-cover {
    padding: 18px;
  }

  .post-cover .pc-big {
    font-size: 42px;
  }

  .footer {
    padding: 56px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 12px;
  }

  .fab-wa {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .fab-wa .wa-ico {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }
}

.footer .logo { color: var(--bg); }
.footer .logo .sq { background: var(--accent); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 20px 0 24px;
  max-width: 36ch;
}
.footer-brand .socials {
  display: flex;
  gap: 10px;
}
.footer-brand .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.footer-brand .socials a:hover { background: var(--accent); border-color: var(--accent); }
.footer-brand .socials svg { width: 16px; height: 16px; fill: var(--bg); }

.footer-heading {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer ul li {
  font-size: 14.5px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
}
.footer ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

/* ================ FAB WHATSAPP ================ */

.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: var(--accent);
  color: #fff;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0;
  box-shadow: 0 10px 30px rgba(255, 106, 19, 0.35), 0 4px 10px rgba(15, 15, 16, 0.12);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.fab-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 106, 19, 0.45);
}
.fab-wa .wa-ico {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

/* ================ SVG ICON BASE ================ */
.icn {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================ MISC ================ */

.divider {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* hide scrollbar for tickband inner */
.tickband .tick::-webkit-scrollbar { display: none; }

/* selection */
::selection { background: var(--accent); color: #fff; }

/* ================ HERO PANEL (no-photo) ================ */

.hero-panel {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: 32px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-panel > * { position: relative; }

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-panel-head .mono-label { color: rgba(255,255,255,0.5); }
.hero-panel-head .pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--bg);
}

.hero-panel-metric {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hpm-big {
  font-family: var(--ff-display);
  font-size: 88px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--bg);
  display: flex;
  align-items: flex-start;
}
.hpm-star {
  color: var(--accent);
  font-size: 36px;
  margin-left: 6px;
  line-height: 1;
  margin-top: 8px;
}
.hpm-meta div {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--bg);
  font-weight: 500;
}
.hpm-meta small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.hpl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hpl-row:last-child { border-bottom: none; }
.hpl-row b {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.hero-panel-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #fff;
}
.hero-panel-foot b {
  display: block;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
}
.hero-panel-foot small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

@media (max-width: 1000px) {
  .hero-panel { aspect-ratio: auto; padding: 28px; }
}

/* ================ ABOUT BLOCK (no-photo) ================ */

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; gap: 32px; }
}
.about-year {
  font-family: var(--ff-display);
  font-size: clamp(72px, 10vw, 156px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
  margin: 24px 0;
}
.about-year-small {
  font-size: 0.32em;
  color: var(--muted);
  letter-spacing: -0.01em;
  display: block;
  margin-top: 8px;
}
.about-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

/* ================ BLOG POST COVERS (no-photo) ================ */

.post-cover {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  font-family: var(--ff-display);
}
.post-cover .pc-tag {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-cover .pc-big {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  align-self: flex-start;
  margin-top: auto;
}
.post-cover .pc-vs {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: inline-block;
  margin: 0 6px;
}
.post-cover .pc-small {
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.post-cover .pc-small-inline {
  font-size: 0.6em;
  margin-left: 6px;
  color: var(--accent);
}
.post-cover .pc-sub {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.post-cover-01 {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.post-cover-01 .pc-tag { color: var(--muted); }

.post-cover-02 {
  background: var(--ink);
  color: var(--bg);
}
.post-cover-02 .pc-tag { color: rgba(255,255,255,0.5); }
.post-cover-02 .pc-big { color: var(--accent); }
.post-cover-02 .pc-sub { color: rgba(255,255,255,0.5); }

.post-cover-03 {
  background: var(--accent);
  color: #fff;
}
.post-cover-03 .pc-tag { color: rgba(255,255,255,0.75); }
.post-cover-03 .pc-sub { color: rgba(255,255,255,0.85); }
.post-cover-03 .pc-small-inline { color: #fff; }
