/* ==========================================================================
   Clean Time — Landing Page Styles
   Palette sampled directly from the Clean Time logo.

   1. Design tokens        6. Cards & components
   2. Base / reset         7. Sections
   3. Utilities            8. Forms
   4. Buttons              9. Footer & floating UI
   5. Header & nav        10. Motion & responsive
   ========================================================================== */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root {
  /* --- Brand blues (from the logo wordmark) --- */
  --brand-950: #00164A;
  --brand-900: #011F6B;
  --brand-800: #012D8C;   /* logo navy — primary brand colour */
  --brand-700: #0B3EA8;
  --brand-600: #1B5AC8;
  --brand-500: #2E7FE0;
  --brand-400: #4794E4;   /* logo light-blue dot */
  --brand-300: #84B9EC;   /* logo sparkle blue */
  --brand-200: #BEDCF7;
  --brand-100: #E4EEFC;
  --brand-50:  #F4F8FE;

  /* --- Gold (from the logo tagline) --- */
  --gold-600: #D9A800;
  --gold-500: #EFC004;
  --gold-400: #F5D34B;
  --gold-100: #FDF3D4;

  /* --- Neutrals --- */
  --ink-900: #081733;
  --ink-700: #2A3B57;
  --ink-500: #5E7290;
  --ink-300: #9AAAC1;

  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #F6F9FE;
  --surface-tint: #EDF3FD;
  --line: #E4ECF8;
  --line-strong: #D2E0F3;

  --whatsapp: #25D366;
  --whatsapp-dark: #1EB955;

  /* --- Gradients --- */
  --grad-brand: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-600) 52%, var(--brand-400) 100%);
  --grad-deep: linear-gradient(150deg, var(--brand-950) 0%, var(--brand-800) 48%, var(--brand-600) 100%);
  --grad-gold: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  --grad-sky: linear-gradient(180deg, var(--brand-50) 0%, var(--white) 70%);
  --grad-text: linear-gradient(110deg, var(--brand-700) 0%, var(--brand-400) 100%);

  /* Decorative dot grid */
  --dots: radial-gradient(circle at 1px 1px, rgba(1, 45, 140, .14) 1px, transparent 0);

  /* --- Typography --- */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  /* --- Radii --- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-2xl: 44px;
  --r-pill: 999px;

  /* --- Shadows --- */
  --sh-xs: 0 1px 2px rgba(1, 45, 140, .05), 0 2px 8px rgba(1, 45, 140, .04);
  --sh-sm: 0 6px 18px rgba(1, 45, 140, .07);
  --sh-md: 0 16px 40px rgba(1, 45, 140, .10);
  --sh-lg: 0 30px 70px rgba(1, 45, 140, .16);
  --sh-xl: 0 44px 110px rgba(1, 45, 140, .22);
  --sh-brand: 0 16px 38px rgba(11, 62, 168, .34);
  --sh-gold: 0 14px 32px rgba(239, 192, 4, .30);

  /* --- Layout --- */
  --container: 1220px;
  --gutter: 22px;
  --section-y: clamp(72px, 8.5vw, 132px);
  --bar-h: 40px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* 2. BASE ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
  font-size: 93.75%; /* scales every rem-based size (headings, buttons, badges…) down slightly */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.35rem, 4.6vw, 3.85rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3.25rem); }
h3 { font-size: clamp(1.22rem, 1.8vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em; }
p  { margin: 0 0 1rem; }
strong { color: var(--ink-900); font-weight: 700; }

::selection { background: var(--brand-200); color: var(--brand-900); }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 300;
  background: var(--brand-800); color: #fff; padding: 12px 22px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* 3. UTILITIES ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--surface-soft); }
.section--sky { background: var(--grad-sky); }
.section--tight { padding-top: 0; }

/* soft ambient glows used behind sections */
.glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(60px); opacity: .5;
}
.glow--blue { background: radial-gradient(circle, var(--brand-200), transparent 70%); }
.glow--gold { background: radial-gradient(circle, var(--gold-100), transparent 70%); }
.section > .container { position: relative; z-index: 1; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: .76rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brand-700);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 8px 18px 8px 12px; margin-bottom: 20px; box-shadow: var(--sh-xs);
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-gold); box-shadow: 0 0 0 4px rgba(239, 192, 4, .18);
}
.eyebrow--light {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: #fff;
  backdrop-filter: blur(8px); box-shadow: none;
}

.section-head { max-width: 760px; margin: 0 auto clamp(44px, 5vw, 70px); text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; margin: 0; }
.section-head--left { margin-inline: 0; text-align: left; }

.lead { font-size: 1.14rem; color: var(--ink-500); }

/* Gradient + highlighted text */
.grad-text {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.mark {
  position: relative; display: inline-block; white-space: nowrap;
}
.mark::after {
  content: ""; position: absolute; left: -3%; right: -3%; bottom: -.02em; height: .24em;
  background: var(--grad-gold); border-radius: var(--r-pill); z-index: -1; opacity: .55;
  transform: scaleX(0); transform-origin: left;
  animation: swash 1s var(--ease-out) .5s forwards;
}
@keyframes swash { to { transform: scaleX(1); } }

/* 4. BUTTONS ------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  padding: 16px 30px; border-radius: var(--r-pill); border: 1px solid transparent;
  background: var(--brand-700); color: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.btn::after {           /* sheen sweep on hover */
  content: ""; position: absolute; inset: 0 auto 0 -60%; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 120%; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary { background: var(--grad-brand); box-shadow: var(--sh-brand); }
.btn--primary:hover { box-shadow: 0 22px 50px rgba(11, 62, 168, .42); }
.btn--gold { background: var(--grad-gold); color: var(--brand-900); box-shadow: var(--sh-gold); }
.btn--gold:hover { box-shadow: 0 20px 44px rgba(239, 192, 4, .42); }
.btn--wa { background: var(--whatsapp); box-shadow: 0 16px 36px rgba(37, 211, 102, .34); }
.btn--wa:hover { background: var(--whatsapp-dark); }
.btn--ghost { background: #fff; color: var(--brand-800); border-color: var(--line-strong); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--brand-300); color: var(--brand-700); }
.btn--light { background: #fff; color: var(--brand-800); }
.btn--outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); box-shadow: none; backdrop-filter: blur(6px); }
.btn--outline-light:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.btn--sm { padding: 12px 22px; font-size: .9rem; }
.btn--lg { padding: 19px 38px; font-size: 1.04rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Text link with sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  font-family: var(--font-display); font-weight: 700; color: var(--brand-700); font-size: .95rem;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* Icon tiles */
.icon-badge {
  width: 60px; height: 60px; border-radius: 20px;
  display: grid; place-items: center; flex: none;
  background: linear-gradient(150deg, var(--brand-100), #fff);
  color: var(--brand-700); border: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--gold { background: linear-gradient(150deg, var(--gold-100), #fff); color: var(--gold-600); }

/* 5. HEADER -------------------------------------------------------------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: var(--grad-gold); border-radius: 0 3px 3px 0;
  transition: width .1s linear;
}

.topbar {
  position: relative; z-index: 101;
  background: var(--grad-deep); color: rgba(255,255,255,.88);
  font-size: .84rem; height: var(--bar-h); display: flex; align-items: center;
}
.topbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 26px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar a { transition: color .2s var(--ease); }
.topbar a:hover { color: #fff; }
.topbar .topbar__sep { opacity: .35; }

.header {
  position: sticky; top: 0; z-index: 100;
  padding-top: 14px; padding-bottom: 14px;
  transition: padding .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.header__inner {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-pill);
  padding: 9px 9px 9px 22px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.header.is-stuck { padding-top: 8px; padding-bottom: 8px; }
.header.is-stuck .header__inner {
  background: rgba(255,255,255,.94); box-shadow: var(--sh-md); border-color: var(--line);
}

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 40px; width: auto; transition: transform .35s var(--ease); }
.brand:hover img { transform: scale(1.03); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 10px 15px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .94rem; color: var(--ink-700);
  transition: color .22s var(--ease), background-color .22s var(--ease);
}
.nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.nav a.is-active { color: var(--brand-800); background: var(--brand-100); }
.nav a.is-active::before {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 5px; height: 5px;
  transform: translateX(-50%); border-radius: 50%; background: var(--gold-500);
}

.header__cta { display: inline-flex; }
.nav > .btn { display: none; }          /* mobile menu only — see media query */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 50%; padding: 0; place-items: center;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--brand-800); border-radius: 2px; position: relative; transition: background-color .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--brand-800); border-radius: 2px;
  transition: transform .32s var(--ease), top .32s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* 6. HERO ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(30px, 4.5vw, 58px); padding-bottom: clamp(56px, 7vw, 96px);
  background:
    radial-gradient(900px 520px at 88% -6%, rgba(132, 185, 236, .40) 0%, transparent 65%),
    radial-gradient(700px 460px at 4% 8%, rgba(239, 192, 4, .13) 0%, transparent 62%),
    linear-gradient(180deg, var(--brand-50) 0%, #fff 78%);
}
.hero::before {                       /* dot grid texture */
  content: ""; position: absolute; inset: 0;
  background-image: var(--dots); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(700px 420px at 20% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(700px 420px at 20% 30%, #000 0%, transparent 75%);
  opacity: .7; pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(30px, 4.5vw, 68px); align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 > span { display: block; }
.hero__tagline {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; color: var(--brand-800);
  background: linear-gradient(120deg, var(--gold-100), #fff 70%);
  border: 1px solid var(--gold-400); border-radius: var(--r-pill);
  padding: 9px 20px; margin-bottom: 22px; font-size: .92rem;
  box-shadow: var(--sh-xs);
}
.hero__tagline svg { width: 17px; height: 17px; color: var(--gold-600); }
.hero__text { max-width: 560px; font-size: 1.14rem; color: var(--ink-500); margin-bottom: 32px; }
.hero .btn-row { margin-bottom: 34px; }

.trust-list { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.trust-list li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .93rem; color: var(--ink-700);
}
.trust-list svg { width: 21px; height: 21px; color: var(--brand-500); flex: none; }

/* Hero media */
.hero__media { position: relative; }
.hero__frame {
  position: relative; z-index: 1;
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 4 / 3.55;
  background: var(--brand-100);
  border: 8px solid #fff;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1, 45, 140, 0) 58%, rgba(1, 45, 140, .30) 100%);
}
.hero__ring {                     /* gold outline offset behind the photo */
  position: absolute; inset: 26px -22px -26px 22px; z-index: 0;
  border: 2px dashed var(--brand-300); border-radius: var(--r-2xl); opacity: .8;
}
.hero__blob {
  position: absolute; border-radius: 50%; z-index: 0; filter: blur(30px);
}
.hero__blob--1 { width: 300px; height: 300px; top: -70px; right: -60px; background: radial-gradient(circle, rgba(132,185,236,.75), transparent 70%); }
.hero__blob--2 { width: 240px; height: 240px; bottom: -60px; left: -70px; background: radial-gradient(circle, rgba(239,192,4,.35), transparent 70%); }

.hero__chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg); padding: 13px 18px; box-shadow: var(--sh-md);
}
.hero__chip strong { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink-900); line-height: 1.25; }
.hero__chip small { color: var(--ink-500); font-size: .81rem; }
.hero__chip .icon-badge { width: 42px; height: 42px; border-radius: 14px; }
.hero__chip .icon-badge svg { width: 21px; height: 21px; }
.hero__chip--tl { top: 32px; left: -34px; animation: float 7s ease-in-out infinite; }
.hero__chip--br { bottom: 40px; right: -30px; animation: float 7s ease-in-out infinite 1.8s; }
.hero__chip--rating { flex-direction: column; align-items: flex-start; gap: 4px; }
.hero__chip--rating .stars svg { width: 15px; height: 15px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Hero stat strip */
.stat-strip {
  position: relative; z-index: 2;
  margin-top: clamp(38px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--brand-200); }
.stat b {
  display: block; font-family: var(--font-display); font-size: 1.55rem; font-weight: 800;
  color: var(--brand-800); line-height: 1.1;
}
.stat span { font-size: .9rem; color: var(--ink-500); }

/* 7. CARDS & SECTIONS ---------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-xs); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: var(--brand-200); }

/* --- Service cards --- */
.service { display: flex; flex-direction: column; }
.service::before {                 /* gradient top edge reveals on hover */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.service:hover::before { transform: scaleX(1); }
.service__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand-100); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service:hover .service__media img { transform: scale(1.08); }
.service__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,45,140,.04), rgba(1,45,140,.22)); }
.service__icon { position: relative; z-index: 2; margin: -62px 0 16px; background: #fff; box-shadow: var(--sh-sm); }
.service:hover .service__icon { background: var(--grad-brand); color: #fff; transform: translateY(-4px); }
.service__tag {
  position: absolute; z-index: 2; top: 16px; right: 16px;
  font-family: var(--font-display); font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--brand-900); box-shadow: var(--sh-sm);
}
.service__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { margin-bottom: 8px; }
.service__body > p { color: var(--ink-500); font-size: .98rem; }
.service__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px;
  margin: 20px 0 26px; padding-top: 20px; border-top: 1px dashed var(--line-strong);
}
.service__list li { display: flex; gap: 9px; align-items: flex-start; font-size: .91rem; color: var(--ink-700); }
.service__list svg { width: 17px; height: 17px; color: var(--gold-600); flex: none; margin-top: 5px; }
.service .btn { margin-top: auto; }

/* --- Bento "why us" grid --- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento__feature {
  grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-deep); border-radius: var(--r-xl); padding: 38px 34px;
  box-shadow: var(--sh-lg);
}
.bento__feature::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0);
  background-size: 22px 22px; opacity: .6;
}
.bento__feature::after {
  content: ""; position: absolute; width: 320px; height: 320px; top: -120px; right: -120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(239,192,4,.30), transparent 68%);
}
.bento__feature > * { position: relative; z-index: 1; }
.bento__feature h3 { color: #fff; font-size: clamp(1.5rem, 2.1vw, 1.95rem); margin-bottom: 10px; }
.bento__feature p { color: rgba(255,255,255,.82); margin: 0; }
.bento__feature .icon-badge {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); color: #fff;
  margin-bottom: 24px;
}
.bento__sparkles { position: absolute; top: 30px; right: 32px; z-index: 1; width: 92px; opacity: .9; }

.feature { padding: 30px 28px; display: flex; flex-direction: column; }
.feature:hover .icon-badge {
  background: var(--grad-brand); color: #fff; border-color: transparent;
  transform: translateY(-4px) rotate(-5deg); box-shadow: var(--sh-brand);
}
.feature h3 { font-size: 1.14rem; margin: 22px 0 8px; }
.feature p { margin: 0; color: var(--ink-500); font-size: .95rem; }

/* --- Before / After --- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.ba {
  border-radius: var(--r-xl); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--sh-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ba:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.ba__viewer {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: ew-resize;
  user-select: none; touch-action: pan-y; background: var(--surface-tint);
}
.ba__viewer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: #fff; box-shadow: 0 0 14px rgba(1,45,140,.35); transform: translateX(-50%);
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 50px; height: 50px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23012D8C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6 4 12l5 6M15 6l5 6-5 6'/%3E%3C/svg%3E") center/24px no-repeat;
  box-shadow: var(--sh-md);
  transition: transform .3s var(--ease);
}
.ba__viewer:hover .ba__handle::after { transform: translate(-50%, -50%) scale(1.08); }
.ba__tag {
  position: absolute; top: 16px; z-index: 3; font-family: var(--font-display);
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill); backdrop-filter: blur(8px);
}
.ba__tag--before { left: 16px; background: rgba(8,23,51,.62); color: #fff; }
.ba__tag--after { right: 16px; background: var(--grad-gold); color: var(--brand-900); }
.ba__label {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 24px; font-family: var(--font-display); font-weight: 700; color: var(--ink-900);
}
.ba__label span { font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--ink-500); }
.ba-hint {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 30px; font-size: .9rem; color: var(--ink-500);
}
.ba-hint svg { width: 19px; height: 19px; color: var(--brand-400); }

/* --- Steps timeline --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 46px; left: 16.6%; right: 16.6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-200) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 14px; }
.step__num {
  width: 92px; height: 92px; margin: 0 auto 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: #fff;
  background: var(--grad-brand); box-shadow: var(--sh-brand);
  border: 6px solid #fff; position: relative;
  transition: transform .4s var(--ease);
}
.step:hover .step__num { transform: translateY(-6px) scale(1.04); }
.step h3 { margin: 0 0 10px; }
.step p:not(.step__num) { margin: 0; color: var(--ink-500); font-size: .97rem; }

/* --- About --- */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 78px); align-items: center; }
.about__media { position: relative; }
.about__media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.2;
  border-radius: var(--r-2xl); box-shadow: var(--sh-lg); border: 8px solid #fff;
}
.about__media::before {
  content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: 0;
  border-radius: var(--r-2xl); background: var(--grad-gold); opacity: .22;
}
.about__badge {
  position: absolute; right: -14px; bottom: 26px; z-index: 2;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-radius: var(--r-lg); padding: 16px 22px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 13px;
}
.about__badge strong { display: block; font-family: var(--font-display); color: var(--brand-800); font-size: 1rem; }
.about__badge small { color: var(--ink-500); font-size: .84rem; }
.about__points { display: grid; gap: 15px; margin: 28px 0 32px; }
.about__points li { display: flex; gap: 13px; align-items: flex-start; }
.about__points svg { width: 23px; height: 23px; color: var(--brand-500); flex: none; margin-top: 3px; }
.signature {
  font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Service area --- */
.area__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.map-card {
  position: relative; border-radius: var(--r-2xl); padding: 26px; overflow: hidden;
  background: linear-gradient(160deg, #fff, var(--brand-50));
  border: 1px solid var(--line); box-shadow: var(--sh-md); aspect-ratio: 5 / 4;
}
.map-card svg { width: 100%; height: 100%; }
.pin-list { display: grid; gap: 12px; margin: 26px 0 32px; }
.pin-list li {
  display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 15px 20px; font-family: var(--font-display); font-weight: 600;
  color: var(--ink-900); box-shadow: var(--sh-xs);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pin-list li:hover { transform: translateX(6px); border-color: var(--brand-200); box-shadow: var(--sh-sm); }
.pin-list svg { width: 21px; height: 21px; color: var(--brand-500); flex: none; }

/* --- Testimonials --- */
.quote { padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; }
.quote::before {
  content: "”"; position: absolute; top: 6px; right: 26px;
  font-family: var(--font-display); font-size: 6rem; line-height: 1; color: var(--brand-100);
  pointer-events: none;
}
.quote > * { position: relative; }
.stars { display: flex; gap: 3px; color: var(--gold-500); }
.stars svg { width: 19px; height: 19px; }
.quote blockquote {
  margin: 0; font-family: var(--font-display); font-size: 1.14rem; font-weight: 600;
  color: var(--ink-900); line-height: 1.58;
}
.quote figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 6px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-family: var(--font-display); font-weight: 800; flex: none;
  box-shadow: var(--sh-sm);
}
.quote cite { font-style: normal; font-family: var(--font-display); font-weight: 700; color: var(--ink-900); display: block; font-size: .96rem; }
.quote figcaption small { color: var(--ink-500); font-size: .85rem; }

/* Testimonials carousel */
.testi-carousel { position: relative; }
.testi-viewport {
  display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter); padding: 6px var(--gutter) 18px 2px; margin: -6px calc(var(--gutter) * -1) -18px -2px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.testi-viewport::-webkit-scrollbar { display: none; }
.testi-viewport .quote {
  flex: 0 0 min(400px, 82vw); scroll-snap-align: start;
}
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 34px; }
.testi-arrow {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: #fff; border: 1px solid var(--line-strong); color: var(--brand-800); box-shadow: var(--sh-xs);
  transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
}
.testi-arrow svg { width: 20px; height: 20px; }
.testi-arrow--prev svg { transform: rotate(180deg); }
.testi-arrow:hover:not(:disabled) { border-color: var(--brand-300); color: var(--brand-500); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: .35; cursor: default; }
.testi-dots { display: flex; align-items: center; gap: 9px; }
.testi-dots button {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: var(--r-pill);
  background: var(--line-strong); transition: width .3s var(--ease), background .3s var(--ease);
}
.testi-dots button.is-active { width: 26px; background: var(--grad-gold); }

/* --- FAQ --- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 4px 26px; box-shadow: var(--sh-xs);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq details[open] { border-color: var(--brand-200); box-shadow: var(--sh-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23012D8C' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/16px no-repeat;
  transition: transform .35s var(--ease), background-color .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); background-color: var(--brand-100); }
.faq p { margin: 0 0 20px; color: var(--ink-500); font-size: .98rem; padding-right: 44px; }

/* --- CTA band --- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--r-2xl);
  background: var(--grad-deep); padding: clamp(48px, 6.5vw, 86px) clamp(24px, 5vw, 72px);
  box-shadow: var(--sh-xl); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 0);
  background-size: 24px 24px; opacity: .55;
}
.cta-band::after {
  content: ""; position: absolute; width: 520px; height: 520px; top: -220px; right: -140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(239,192,4,.28), transparent 66%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 640px; margin-inline: auto; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; margin-top: 34px; }
.cta-band__note {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.cta-band__note svg { width: 17px; height: 17px; color: var(--gold-400); }

/* 8. CONTACT & FORM ------------------------------------------------------ */
.contact__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(26px, 3.5vw, 46px); align-items: start; }
/* single-card contact section: centre it instead of leaving a half-empty row */
.contact__grid:not(:has(.contact-card + .contact-card)) {
  grid-template-columns: minmax(0, 560px); justify-content: center;
}
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-2xl);
  padding: clamp(28px, 3vw, 42px); box-shadow: var(--sh-sm);
}
.contact-card--dark {
  background: var(--grad-deep); color: rgba(255,255,255,.82); border-color: transparent;
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.contact-card--dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0);
  background-size: 22px 22px; opacity: .5;
}
.contact-card--dark > * { position: relative; z-index: 1; }
.contact-card--dark h3 { color: #fff; }
.contact-card--dark .signature { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact-meta { display: grid; gap: 14px; margin: 24px 0 26px; }
.contact-meta li { display: flex; gap: 13px; align-items: flex-start; font-size: .95rem; }
.contact-meta svg { width: 20px; height: 20px; color: var(--gold-400); flex: none; margin-top: 4px; }
.contact-meta strong { display: block; font-family: var(--font-display); color: #fff; font-size: .95rem; }
.contact-actions { display: grid; gap: 10px; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .87rem; color: var(--ink-900); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: var(--ink-900);
  padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: var(--r-md);
  background: var(--surface-soft); width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%235E7290' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 18px;
  padding-right: 44px;
}
.field textarea { resize: vertical; min-height: 124px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(71, 148, 228, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.form__note { font-size: .85rem; color: var(--ink-500); margin: 0; text-align: center; }
.form__status { font-size: .93rem; font-weight: 600; color: var(--brand-700); min-height: 1.2em; margin: 0; text-align: center; }

/* 9. FOOTER & FLOATING UI ------------------------------------------------ */
.footer {
  position: relative; overflow: hidden;
  background: var(--grad-deep); color: rgba(255,255,255,.68);
  padding-top: clamp(56px, 6vw, 90px);
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
  background-size: 26px 26px; opacity: .6;
}
.footer .container { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; }
.footer__brand img { height: 46px; width: auto; margin-bottom: 20px; }
.footer h4 {
  font-family: var(--font-display); color: #fff; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; margin: 0 0 20px;
}
.footer ul { display: grid; gap: 12px; }
.footer a { transition: color .22s var(--ease), transform .22s var(--ease); display: inline-block; }
.footer a:hover { color: #fff; transform: translateX(4px); }
.footer p { font-size: .95rem; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); color: #fff;
  transition: background-color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.footer__social a:hover { background: var(--brand-500); border-color: transparent; transform: translateY(-4px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .87rem;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: var(--whatsapp); color: #fff; border-radius: var(--r-pill);
  padding: 15px; box-shadow: 0 16px 38px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease), gap .3s var(--ease), padding .3s var(--ease), background-color .25s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; flex: none; }
.wa-float span {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; white-space: nowrap;
  max-width: 0; overflow: hidden; opacity: 0; transition: max-width .38s var(--ease), opacity .25s var(--ease);
}
.wa-float:hover, .wa-float:focus-visible { background: var(--whatsapp-dark); transform: translateY(-4px); gap: 11px; padding-right: 24px; }
.wa-float:hover span, .wa-float:focus-visible span { max-width: 200px; opacity: 1; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); animation: pulse 3s ease-out infinite;
}
@keyframes pulse { 70%, 100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } }

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 89;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); color: var(--brand-800);
  box-shadow: var(--sh-sm); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--brand-500); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* Mobile sticky CTA bar */
.mobile-bar { display: none; }

/* 10. MOTION ------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .mark::after { transform: scaleX(1); }
}

/* RESPONSIVE ------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__feature { grid-row: span 1; grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero__chip--tl { left: -10px; }
  .hero__chip--br { right: -10px; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .topbar .topbar__hide { display: none; }
  .nav-toggle { display: grid; }
  .header__cta { display: none; }
  .header__inner { padding-left: 18px; }
  .nav {
    position: absolute; top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 14px; border: 1px solid var(--line);
    border-radius: var(--r-lg); box-shadow: var(--sh-lg);
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none;
    transform-origin: top center;
    transition: transform .32s var(--ease), opacity .32s var(--ease);
    max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: var(--r-md); }
  .nav a.is-active::before { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 10px; }

  .hero__grid, .about__grid, .area__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__frame { aspect-ratio: 4 / 3.1; }
  .about__media img { aspect-ratio: 4 / 3.1; }
  .about__grid > div:last-child { order: 2; }
  .about__media { order: 1; }
  .hero__chip--tl { top: 16px; left: 8px; }
  .hero__chip--br { bottom: 24px; right: 8px; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15px; padding-bottom: 76px; }
  :root { --gutter: 18px; }
  .grid--3, .grid--2, .bento { grid-template-columns: 1fr; }
  .bento__feature { grid-column: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .service__list { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .btn-row .btn { flex: 1 1 100%; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 18px; }
  .stat b { font-size: 1.3rem; }
  .hero__chip--tl, .hero__chip--br { padding: 11px 14px; }
  .hero__chip small { display: none; }
  .quote::before { font-size: 4.5rem; }

  .mobile-bar {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); box-shadow: 0 -8px 28px rgba(1, 45, 140, .12);
  }
  .mobile-bar .btn { padding: 14px 12px; font-size: .92rem; }
  .wa-float { bottom: 84px; right: 14px; padding: 13px; }
  .wa-float span { display: none; }
  .to-top { bottom: 152px; right: 18px; width: 42px; height: 42px; }
}

@media (max-width: 430px) {
  .brand img { height: 34px; }
  .service__list { grid-template-columns: 1fr; }
  .topbar { font-size: .78rem; }
  .topbar .container { gap: 14px; }
}

@media print {
  .header, .topbar, .wa-float, .mobile-bar, .to-top, .progress, .hero__blob { display: none !important; }
}
