/* ==========================================================
   APEX WEB — shared stylesheet
   Tokens live at the top. Change these to re-skin the site.
   ========================================================== */

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

:root {
  --void: #0c0c0d;
  --void-2: #131315;
  --ink: #18181a;
  --ink-2: #1f1f22;
  --paper: #ffffff;
  --cloud: #f6f6f4;
  --orange: #f5720a;
  --ember: #ffb15c;
  --slate: #8a8a92;
  --line: #2a2a2d;
  --line-light: #e7e7e4;
  --ink-text: #201f1c;
  --whatsapp: #25D366;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --max: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3 { margin: 0; }
button { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.only-mobile { display: none; }

/* ---------------- Skip link ---------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #17110a;
  padding: 10px 16px;
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 13, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-mark .apex { color: var(--paper); }
.logo-mark .web { color: var(--orange); }
.logo-cut {
  width: 11px;
  height: 11px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  margin-left: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  color: #d8d8db;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a.current { color: var(--orange); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.25s ease, top 0.25s ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.active span { background: transparent; }
.hamburger.active span::before { top: 0; transform: rotate(45deg); }
.hamburger.active span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--void);
  z-index: 99;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  text-decoration: none;
  color: var(--paper);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.current { color: var(--orange); }
.mobile-menu .nav-cta {
  margin-top: 20px;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), filter 0.2s ease, box-shadow 0.25s ease;
}
.btn:active { transform: scale(0.96); }
.btn:focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a3c);
  color: #17110a;
  box-shadow: 0 10px 24px -10px rgba(245,114,10,0.7);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--orange); }
.btn-outline-light { background: transparent; color: var(--ink-text); border: 1.5px solid var(--line-light); }
.btn-outline-light:hover { border-color: var(--orange); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 28px; font-size: 16.5px; }

/* ---------------- Eyebrow / section heads ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
  display: inline-block;
}
.eyebrow-dark { color: var(--orange); }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: 8px;
}
.section-sub-light { color: #6b6b72; }
.section-head { margin-bottom: 44px; }

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 64px 0 90px;
  background: radial-gradient(1100px 500px at 82% -10%, rgba(245,114,10,0.18), transparent 60%), var(--void);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}
h1.hero-title .accent {
  background: linear-gradient(100deg, var(--orange) 0%, var(--ember) 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: -200% center; } }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #cfcfd2;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
}
.hero-note .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2ae06c;
  box-shadow: 0 0 0 0 rgba(42,224,108,0.6);
  animation: dotPulse 1.8s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(42,224,108,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(42,224,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,224,108,0); }
}

/* ---- Hero deploy terminal (signature element) ---- */
.deploy {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.deploy-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.deploy-dot { width: 9px; height: 9px; border-radius: 50%; }
.deploy-dot:nth-child(1) { background: #ff5f57; }
.deploy-dot:nth-child(2) { background: #febc2e; }
.deploy-dot:nth-child(3) { background: #28c840; }
.deploy-label {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--slate);
}
.deploy-body {
  padding: 18px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
  min-height: 176px;
}
.deploy-line {
  color: #b6b6bc;
  opacity: 0;
  transform: translateY(6px);
  animation: lineIn 0.5s ease forwards;
  white-space: pre-wrap;
}
.deploy-line .ok { color: #2ae06c; font-weight: 600; }
.deploy-line .tag { color: var(--ember); }
.deploy-line:nth-child(1) { animation-delay: 0.3s; }
.deploy-line:nth-child(2) { animation-delay: 1.1s; }
.deploy-line:nth-child(3) { animation-delay: 1.9s; }
.deploy-line:nth-child(4) { animation-delay: 2.7s; }
.deploy-line:nth-child(5) { animation-delay: 3.6s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }
.deploy-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--orange);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite, cursorMove 4.4s ease forwards;
  opacity: 0;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes cursorMove { 0% { opacity: 0; } 3.6s { opacity: 1; } 100% { opacity: 1; } }
.deploy-preview {
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  opacity: 0;
  animation: fadeUp 0.6s ease 4.5s forwards;
}
.deploy-preview-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #2ae06c;
  margin-bottom: 10px;
}
.mini-browser {
  background: #f4f4f5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e4e4e6;
}
.mini-bar { display: flex; gap: 5px; padding: 7px 10px; background: #e9e9eb; }
.mini-dot { width: 6px; height: 6px; border-radius: 50%; background: #cfcfd2; }
.mini-body { padding: 10px; display: grid; gap: 6px; }
.mini-hero { height: 30px; border-radius: 5px; background: linear-gradient(135deg, var(--orange), var(--ember)); }
.mini-line { height: 6px; border-radius: 3px; background: #dcdce0; }
.mini-line.w70 { width: 70%; }
.mini-line.w45 { width: 45%; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) backwards; }
.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.34s; }

/* ---------------- Process ---------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 940px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  padding: 26px 20px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.process-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 14px;
  opacity: 0.9;
}
.process-step h3 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin: 0; }
.process-day {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ember);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ---------------- Style / portfolio cards ---------------- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 940px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .style-grid { grid-template-columns: 1fr; } }

.style-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), border-color 0.3s ease;
}
.style-card:hover { transform: translateY(-6px); border-color: #3a3a3e; }
.style-browser { border-radius: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.style-bar { display: flex; gap: 5px; padding: 8px 10px; background: rgba(255,255,255,0.06); }
.style-bar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.style-body { padding: 14px; display: grid; gap: 7px; }
.s-hero { height: 34px; border-radius: 5px; background: linear-gradient(135deg, var(--s-a), var(--s-b)); }
.s-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.14); }
.s-line.w70 { width: 70%; } .s-line.w40 { width: 40%; }
.s-grid { display: flex; gap: 6px; margin-top: 2px; }
.s-grid div { flex: 1; height: 22px; border-radius: 4px; background: rgba(255,255,255,0.08); }

.style-restaurant { --s-a: #e0512b; --s-b: #ffb15c; }
.style-salon { --s-a: #d1497a; --s-b: #f5a3c7; }
.style-realestate { --s-a: #1c3a5e; --s-b: #d9a441; }
.style-boutique { --s-a: #2c2c2f; --s-b: #f5720a; }
.style-trades { --s-a: #1c5ea8; --s-b: #f5720a; }
.style-brand { --s-a: #4a2c6b; --s-b: #f2c94c; }

.style-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.style-card p { font-size: 13px; color: var(--slate); line-height: 1.55; margin: 0; }

/* ---------------- Trust grid ---------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 780px) { .trust { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  text-align: center;
  padding: 22px 14px;
  background: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.trust-item svg { margin-bottom: 10px; }
.trust-item .t-label { font-size: 13px; font-weight: 600; color: #d8d8db; line-height: 1.4; }

/* ---------------- Light section ---------------- */
.section-light { background: var(--cloud); color: var(--ink-text); }
.section-light .section-sub { color: #6b6b72; }

/* ---------------- Pricing ---------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1.5px solid var(--line-light);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fff7ef, #ffffff);
  box-shadow: 0 20px 44px -26px rgba(245,114,10,0.55);
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 5px 11px;
  border-radius: 999px;
}
.price-plan-name { font-size: 13.5px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.price-value { font-family: var(--font-display); font-size: 34px; color: var(--orange); }
.price-period { font-size: 14px; color: #7a7a82; font-weight: 500; }
.price-strike { text-decoration: line-through; color: #a9a9ae; font-size: 16px; margin-right: 8px; }
.price-note { font-size: 12.5px; color: #9a9aa0; margin-top: 4px; margin-bottom: 18px; }
ul.features { margin: 0 0 22px; }
ul.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: #2a2a2d;
}
ul.features li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ---------------- Spec grid (what's included) ---------------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 940px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-item {
  background: var(--paper);
  border: 1.5px solid var(--line-light);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.spec-item .spec-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fff2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-item .spec-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: #9a9aa0; margin-bottom: 3px; }
.spec-item .spec-value { font-size: 14.5px; font-weight: 700; color: #201f1c; line-height: 1.3; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.25s ease;
  margin-left: 16px;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; font-size: 14.5px; color: #55555c; line-height: 1.65; }

/* ---------------- Policy ---------------- */
.policy-item { display: flex; gap: 18px; margin-bottom: 28px; }
.policy-num { font-family: var(--font-display); font-size: 22px; color: var(--orange); flex-shrink: 0; width: 34px; }
.policy-item h3 { font-size: 16px; margin-bottom: 8px; }
.policy-item p { font-size: 14.5px; line-height: 1.7; color: var(--slate); margin: 0; }
.section-light .policy-item p { color: #55555c; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1c, var(--void));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,114,10,0.28), transparent 70%);
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 14px; }
.cta-banner p { color: #cfcfd2; font-size: 15.5px; max-width: 46ch; margin: 0 auto 26px; }
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------------- Footer ---------------- */
.site-footer { border-top: 1px solid var(--line); padding: 52px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-about p { font-size: 13.5px; color: var(--slate); line-height: 1.65; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--slate); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: #d8d8db; text-decoration: none; margin-bottom: 11px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: #5a5a60;
}
.footer-bottom a { color: #8a8a92; text-decoration: underline; }

/* ---------------- Floating WhatsApp ---------------- */
.fab-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 60; }
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.55);
  text-decoration: none;
  position: relative;
}
.fab-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); animation: ringPulse 2.4s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes ringPulse { 0% { transform: scale(0.9); opacity: 0.55; } 70%,100% { transform: scale(1.7); opacity: 0; } }
.fab svg { position: relative; z-index: 1; }
.fab:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

/* ---------------- Page hero (interior pages) ---------------- */
.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--line); background: radial-gradient(900px 400px at 85% -20%, rgba(245,114,10,0.14), transparent 60%); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 42px); line-height: 1.1; margin-bottom: 14px; }
.page-hero .accent { color: var(--orange); }
.page-hero p { font-size: 16px; color: #cfcfd2; max-width: 52ch; }

.breadcrumb { font-size: 12.5px; color: var(--slate); margin-bottom: 18px; }
.breadcrumb a { color: var(--slate); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

@media (max-width: 860px) {
  .nav-links, .site-header .nav-cta { display: none; }
  .hamburger { display: flex; }
  .only-mobile { display: block; }
}
