/* ===================================================================
   Day's Cleaning Service — "PRISTINE" Design System
   Cleaning as serene luxury · Refined blue + pink on warm cream
   Display: Fraunces (editorial serif) · Body: Plus Jakarta Sans
   =================================================================== */

/* ---------- Metric-adjusted fallback fonts (kill font-swap CLS) ---------- */
@font-face {
  font-family: 'Fraunces Fallback';
  src: local('Georgia');
  size-adjust: 104%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%;
}
@font-face {
  font-family: 'Jakarta Fallback';
  src: local('Arial');
  size-adjust: 100%; ascent-override: 96%; descent-override: 24%; line-gap-override: 0%;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand — refined */
  --blue: #2BA8E0;
  --blue-600: #1583BC;
  --blue-700: #0E5E88;
  --blue-ink: #0A3C58;
  --pink: #EC4899;
  --pink-600: #D6307F;
  --pink-700: #B11463;

  /* Warm neutral base (the premium feel) */
  --cream: #FBF8F3;
  --cream-2: #F4EEE5;
  --sand: #EFE7DA;
  --paper: #FFFFFF;

  /* Soft tints */
  --blue-tint: #EAF6FD;
  --pink-tint: #FDEDF5;

  /* Ink */
  --ink: #15212B;
  --ink-2: #41535F;
  --ink-3: #74858F;
  --line: #E9E2D6;
  --line-2: #EFEAE0;

  /* Gradients */
  --grad: linear-gradient(115deg, var(--blue) 0%, var(--pink) 100%);
  --grad-ink: linear-gradient(115deg, var(--blue-700), var(--pink-600));
  --grad-soft: linear-gradient(140deg, var(--blue-tint), var(--pink-tint));

  /* Shadows — layered, soft */
  --sh-xs: 0 1px 2px rgba(21,33,43,.05);
  --sh-sm: 0 4px 16px rgba(21,33,43,.06);
  --sh: 0 16px 40px -12px rgba(21,33,43,.16);
  --sh-lg: 0 40px 80px -24px rgba(21,33,43,.28);
  --sh-blue: 0 18px 40px -12px rgba(43,168,224,.45);
  --sh-pink: 0 18px 40px -12px rgba(236,72,153,.42);

  /* Geometry */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  --maxw: 1220px;
  --section-y: clamp(4rem, 10vw, 9rem);

  --display: 'Fraunces', 'Fraunces Fallback', 'Georgia', serif;
  --body: 'Plus Jakarta Sans', 'Jakarta Fallback', system-ui, -apple-system, sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -.02em; color: var(--ink); font-optical-sizing: auto; }
h4, h5 { font-family: var(--body); font-weight: 700; }

::selection { background: var(--pink); color: #fff; }

/* Grain/atmosphere overlay */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 2.4rem); }
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #D7E0E6; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-size: .76rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow--blue { color: var(--blue-700); }
.eyebrow--center { justify-content: center; }
.section--ink .eyebrow { color: #F3A8CE; }

.section-head { max-width: 720px; margin-bottom: clamp(2.6rem, 6vw, 4.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); margin-block: 1.1rem .9rem; }
.section-head p { color: var(--ink-2); font-size: 1.1rem; max-width: 60ch; }
.section-head--center p { margin-inline: auto; }

.lead { font-size: 1.18rem; color: var(--ink-2); }

.serif-accent { font-family: var(--display); font-style: italic; font-weight: 400; }
.text-grad { background: var(--grad-ink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--body); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 1rem 1.8rem; border-radius: var(--r-pill); line-height: 1; cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .3s, color .3s;
  overflow: hidden; isolation: isolate;
}
.btn svg { width: 1.15em; height: 1.15em; transition: transform .4s var(--ease-out); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--sh-pink); background-size: 160% 160%; background-position: 0% 50%; }
.btn--primary:hover { transform: translateY(-3px); background-position: 100% 50%; box-shadow: 0 24px 50px -12px rgba(236,72,153,.55); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--sh); }
.btn--dark:hover { transform: translateY(-3px); background: var(--blue-ink); }
.btn--ghost { background: rgba(255,255,255,.6); color: var(--ink); border: 1.5px solid var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue-700); background: #fff; }
.btn--light { background: #fff; color: var(--blue-ink); box-shadow: var(--sh); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 18px 40px -12px rgba(37,211,102,.5); }
.btn--wa:hover { transform: translateY(-3px); background: #1ebe5a; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.04rem; }
.btn--block { width: 100%; }

/* Text link with animated underline */
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--blue-700); position: relative; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.link-arrow::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--grad); transition: width .35s var(--ease-out); }
.link-arrow:hover::after { width: 100%; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251,248,243,.78); backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: var(--sh-sm); border-color: var(--line-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 88px; transition: height .4s var(--ease); }
.site-header.scrolled .nav { height: 72px; }
.nav__logo img { height: 50px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .nav__logo img { height: 42px; }
.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__links a {
  position: relative; font-weight: 600; font-size: .96rem; color: var(--ink-2);
  padding: .55rem .95rem; border-radius: var(--r-pill); transition: color .25s;
}
.nav__links a::after { content: ""; position: absolute; left: 50%; bottom: .25rem; transform: translateX(-50%); width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width .3s var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 18px; }
.nav__links a.active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: .6rem; border-radius: 10px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .35s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 88px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 1.2rem 1.4rem 2rem; gap: .2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .35s var(--ease);
  }
  .nav__links.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .9rem 1rem; font-size: 1.1rem; }
  .nav__links a::after { display: none; }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding-top: clamp(8rem, 16vw, 11rem); padding-bottom: clamp(4rem, 9vw, 7rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--cream); }
.hero__bg::before { content: ""; position: absolute; width: 60vw; height: 60vw; top: -20vw; right: -10vw; background: radial-gradient(circle, rgba(43,168,224,.18), transparent 65%); filter: blur(20px); }
.hero__bg::after { content: ""; position: absolute; width: 50vw; height: 50vw; bottom: -25vw; left: -15vw; background: radial-gradient(circle, rgba(236,72,153,.14), transparent 65%); filter: blur(20px); }

.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__content h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin-block: 1.4rem 1.5rem; }
.hero__content h1 em { font-style: italic; font-weight: 400; }
.hero__content .lead { max-width: 48ch; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; }
.hero__trust li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.hero__trust svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

/* Hero visual — stacked, organic */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 80px; overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/4.5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,60,88,.25)); }

.hero__chip {
  position: absolute; background: rgba(255,255,255,.72); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r); box-shadow: var(--sh);
  padding: .9rem 1.15rem; display: flex; align-items: center; gap: .8rem;
}
.hero__chip--tl { top: 8%; left: -6%; animation: floatY 6s ease-in-out infinite; }
.hero__chip--br { bottom: 9%; right: -5%; animation: floatY 7s ease-in-out infinite .8s; }
.hero__chip .ico { width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--grad-soft); }
.hero__chip .ico svg { width: 22px; height: 22px; color: var(--blue-700); }
.hero__chip .ico--pink svg { color: var(--pink-600); }
.hero__chip .num { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1; }
.hero__chip .lbl { font-size: .76rem; color: var(--ink-3); font-weight: 600; }
.hero__chip .stars { color: #FFB400; font-size: .85rem; letter-spacing: 1px; }

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

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero__chip--tl { left: 0; } .hero__chip--br { right: 0; }
}

/* ===================================================================
   MARQUEE (trust strip)
   =================================================================== */
.marquee { background: var(--ink); color: #fff; padding-block: 1.2rem; overflow: hidden; }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-size: 1.25rem; font-weight: 500; white-space: nowrap; opacity: .92; }
.marquee__item svg { width: 18px; height: 18px; color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   FEATURE / PILLAR CARDS
   =================================================================== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 2.3rem 2rem; box-shadow: var(--sh-xs); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}
.card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .5s; z-index: 0; }
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-10px); box-shadow: var(--sh); border-color: transparent; }
.card:hover::before { opacity: .5; }
.card__num { font-family: var(--display); font-size: 1rem; color: var(--pink-600); font-weight: 600; }
.card__icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-soft); margin-bottom: 1.3rem; transition: transform .5s var(--ease-out); }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon img { width: 36px; height: 36px; object-fit: contain; }
.card h3 { font-size: 1.4rem; margin-bottom: .6rem; font-weight: 600; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card .link-arrow { margin-top: 1.1rem; }

/* Service card with photo */
.scards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.scard {
  position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink);
  box-shadow: var(--sh-sm); min-height: 380px; display: flex; align-items: flex-end;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.scard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.scard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,33,43,0) 30%, rgba(10,33,43,.86) 100%); transition: background .5s; }
.scard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.scard:hover img { transform: scale(1.08); }
.scard__body { position: relative; z-index: 2; padding: 1.9rem; color: #fff; }
.scard__body h3 { color: #fff; font-size: 1.5rem; margin-bottom: .4rem; font-weight: 600; }
.scard__body p { color: rgba(255,255,255,.82); font-size: .94rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease-out), opacity .5s, margin .5s; }
.scard:hover .scard__body p { max-height: 120px; opacity: 1; margin-top: .5rem; }
.scard__tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); padding: .35rem .8rem; border-radius: var(--r-pill); margin-bottom: .9rem; }

/* ===================================================================
   STATS
   =================================================================== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2.8rem, 7vw, 4.4rem); font-weight: 500; line-height: 1; background: var(--grad-ink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--ink .stat__num { background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.stat__num .suffix { -webkit-text-fill-color: var(--pink-600); }
.section--ink .stat__num .suffix { -webkit-text-fill-color: var(--pink); }
.stat__lbl { font-size: .95rem; color: var(--ink-2); margin-top: .6rem; font-weight: 600; letter-spacing: .02em; }
.section--ink .stat__lbl { color: rgba(255,255,255,.7); }

/* ===================================================================
   SPLIT (image + text) — editorial
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh); object-fit: cover; }
.split__media .frame { position: absolute; inset: 14px; border: 1.5px solid rgba(255,255,255,.5); border-radius: calc(var(--r-lg) - 14px); pointer-events: none; }
.split__badge {
  position: absolute; bottom: -24px; right: -10px; background: var(--paper); border-radius: var(--r);
  box-shadow: var(--sh); padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: .9rem;
}
.split__badge .big { font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1; color: var(--blue-700); }
.split__badge .small { font-size: .8rem; color: var(--ink-3); font-weight: 600; }
.split__body h2 { font-size: clamp(2rem, 4.8vw, 3.3rem); margin-block: 1rem 1.2rem; }
.split__body p { color: var(--ink-2); margin-bottom: 1.1rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__badge { right: 12px; }
}

/* feature list */
.feature-list { display: grid; gap: .85rem; margin-top: .4rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 600; color: var(--ink-2); }
.feature-list svg { width: 24px; height: 24px; flex: none; color: var(--pink); margin-top: 1px; }

/* ===================================================================
   GALLERY (masonry + lightbox)
   =================================================================== */
.gallery { columns: 3 240px; column-gap: 1.1rem; }
.gallery__item { break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--sh-xs); transition: transform .5s var(--ease-out), box-shadow .5s; }
.gallery__item img { width: 100%; transition: transform .7s var(--ease-out); }
.gallery__item::after {
  content: "↗"; position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px); color: var(--ink); font-size: 1.2rem;
  display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: .4s var(--ease-out);
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; transform: scale(1); }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,20,28,.92); backdrop-filter: blur(8px); display: none; place-items: center; padding: 4vw; }
.lightbox.open { display: grid; animation: fadeIn .3s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--sh-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; border-radius: 50%; transition: background .25s, transform .25s; }
.lightbox__close { top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; font-size: 1.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 1.9rem; }
.lightbox__prev { left: 1.4rem; } .lightbox__next { right: 1.4rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===================================================================
   PROMO
   =================================================================== */
.promo { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-ink); color: #fff; box-shadow: var(--sh-lg); }
.promo::before { content: ""; position: absolute; right: -8%; top: -40%; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.1); }
.promo::after { content: ""; position: absolute; left: -6%; bottom: -50%; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.08); }
.promo__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.4rem, 6vw, 4rem); }
.promo__inner h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); max-width: 18ch; }
.promo__inner h2 em { font-style: italic; }
.promo__off { font-family: var(--display); font-size: clamp(3.5rem, 11vw, 6rem); font-weight: 600; line-height: .9; display: block; }
.promo__inner p { opacity: .9; margin-top: .6rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.testi {
  position: relative; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 2.4rem 2rem 2rem; box-shadow: var(--sh-xs); display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.testi:hover { transform: translateY(-8px); box-shadow: var(--sh); }
.testi__quote { position: absolute; top: 1.2rem; right: 1.6rem; font-family: var(--display); font-size: 4rem; line-height: 1; color: var(--blue-tint); }
.testi__stars { color: #FFB400; letter-spacing: 2px; }
.testi__text { color: var(--ink); font-size: 1.04rem; flex: 1; position: relative; z-index: 1; }
.testi__author { display: flex; align-items: center; gap: .9rem; padding-top: 1rem; border-top: 1px solid var(--line-2); }
.testi__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); flex: none; }
.testi__name { font-weight: 700; }
.testi__role { font-size: .84rem; color: var(--ink-3); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 1rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: box-shadow .4s, border-color .4s; }
.faq__item.open { box-shadow: var(--sh-sm); border-color: var(--blue-tint); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.35rem 1.6rem; font-weight: 700; font-size: 1.08rem; }
.faq__q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-tint); color: var(--blue-700); display: grid; place-items: center; font-size: 1.3rem; transition: transform .4s var(--ease-out), background .4s, color .4s; }
.faq__item.open .plus { transform: rotate(135deg); background: var(--grad); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 1.6rem 1.5rem; color: var(--ink-2); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1.1rem; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r); padding: 1.3rem 1.4rem; box-shadow: var(--sh-xs); transition: transform .35s var(--ease-out), box-shadow .35s; }
.contact-card:hover { transform: translateX(6px); box-shadow: var(--sh-sm); }
.contact-card__ico { width: 52px; height: 52px; border-radius: 15px; flex: none; display: grid; place-items: center; background: var(--grad-soft); }
.contact-card__ico svg { width: 24px; height: 24px; color: var(--blue-700); }
.contact-card .lbl { font-size: .78rem; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.contact-card .val { font-weight: 700; }

.form { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--sh); }
.form h3 { font-size: 1.7rem; margin-bottom: 1.4rem; font-weight: 600; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.05rem; }
.field label { font-weight: 600; font-size: .88rem; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); padding: .85rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-tint); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .85rem; color: var(--ink-3); margin-top: .9rem; text-align: center; }
.form__status { margin-top: 1rem; padding: .95rem 1.15rem; border-radius: var(--r-sm); font-weight: 600; display: none; }
.form__status.ok { display: block; background: #E7F8EF; color: #1A8A4F; }
.form__status.err { display: block; background: #FCE7E7; color: #C0392B; }

/* ===================================================================
   PAGE HERO (inner)
   =================================================================== */
.page-hero { position: relative; padding-top: clamp(9rem, 16vw, 12rem); padding-bottom: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background: var(--cream-2); }
.page-hero__bg::before { content: ""; position: absolute; width: 50vw; height: 50vw; top: -25vw; right: -10vw; background: radial-gradient(circle, rgba(43,168,224,.16), transparent 65%); filter: blur(10px); }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); margin-block: 1rem 1rem; max-width: 16ch; }
.page-hero h1 em { font-style: italic; font-weight: 400; }
.page-hero p { color: var(--ink-2); font-size: 1.15rem; max-width: 56ch; }
.page-hero--center { text-align: center; }
.page-hero--center h1, .page-hero--center p { margin-inline: auto; }
.crumbs { font-size: .86rem; color: var(--ink-2); font-weight: 600; letter-spacing: .04em; }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--blue-700); }
.crumbs span { color: var(--pink-700); }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-band__box { position: relative; background: var(--ink); border-radius: var(--r-xl); padding: clamp(3rem, 8vw, 5.5rem) clamp(2rem,6vw,4rem); text-align: center; overflow: hidden; }
.cta-band__box::before { content: ""; position: absolute; width: 50vw; height: 50vw; top: -30%; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(43,168,224,.3), transparent 60%); }
.cta-band__box > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.cta-band h2 em { font-style: italic; font-weight: 400; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 50ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: #B8C6D0; padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand img { height: 54px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: .95rem; opacity: .72; max-width: 36ch; }
.footer h3 { color: #fff; font-family: var(--body); font-size: 1.05rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a { font-size: .95rem; opacity: .76; transition: opacity .25s, color .25s, transform .25s; display: inline-block; }
.footer__links a:hover { opacity: 1; color: #fff; transform: translateX(4px); }
.footer__contact li { display: flex; align-items: center; gap: .65rem; font-size: .94rem; margin-bottom: .8rem; opacity: .8; }
.footer__contact svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__social a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: transform .3s var(--ease-out), background .3s; }
.footer__social a:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); }
.footer__social img { width: 22px; height: 22px; object-fit: contain; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.7rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .87rem; opacity: .65; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FLOATING WHATSAPP
   =================================================================== */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 62px; height: 62px; border-radius: 50%; background: #25D366; box-shadow: 0 14px 34px rgba(37,211,102,.5); display: grid; place-items: center; transition: transform .3s var(--ease-out); animation: wa-pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wa-pulse { 0% { box-shadow: 0 14px 34px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 14px 34px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 14px 34px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ===================================================================
   SCROLL REVEAL (cinematic: fade + lift + soft blur)
   =================================================================== */
.reveal { opacity: 0; transform: translateY(40px) scale(.985); filter: blur(6px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: .09s; } .reveal-d2 { transition-delay: .18s; } .reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; } .reveal-d5 { transition-delay: .45s; }

/* directional variants */
.reveal-left { opacity: 0; transform: translateX(-46px); filter: blur(5px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(46px); filter: blur(5px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; filter: none; }

/* scale-in (for cards/chips) */
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Clip reveal for big media + slow zoom settle */
.reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-out); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }
.reveal-clip img { transform: scale(1.12); transition: transform 1.6s var(--ease-out); }
.reveal-clip.in img { transform: scale(1); }

/* ===================================================================
   PAGE-LOAD ORCHESTRATION (hero entrance, no scroll needed)
   =================================================================== */
.preload * { animation-play-state: paused !important; }
@keyframes rise { from { opacity: 0; transform: translateY(38px); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes riseClip { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: scale(1.06); } to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); } }
@keyframes chipPop { 0% { opacity: 0; transform: translateY(16px) scale(.8); } 60% { transform: translateY(0) scale(1.04); } 100% { opacity: 1; transform: none; } }

.hero__content > * { opacity: 0; animation: rise .9s var(--ease-out) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .1s; }
.hero__content > *:nth-child(2) { animation-delay: .22s; }
.hero__content > *:nth-child(3) { animation-delay: .34s; }
.hero__content > *:nth-child(4) { animation-delay: .46s; }
.hero__content > *:nth-child(5) { animation-delay: .58s; }
.hero__photo { opacity: 0; animation: riseClip 1.3s var(--ease-out) .25s forwards; }
.hero__chip--tl { opacity: 0; animation: chipPop .7s var(--ease-out) 1s forwards, floatY 6s ease-in-out 1.7s infinite; }
.hero__chip--br { opacity: 0; animation: chipPop .7s var(--ease-out) 1.2s forwards, floatY 7s ease-in-out 1.9s infinite; }

/* Word-by-word headline reveal (JS wraps words in .word>span) */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span { display: inline-block; transform: translateY(110%); animation: wordUp .8s var(--ease-out) forwards; }
@keyframes wordUp { to { transform: none; } }

/* Header slides down on load */
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: none; } }
.site-header { animation: headerDrop .7s var(--ease-out); }

/* Magnetic button wrapper */
.btn { will-change: transform; }

/* Underline sweep for section headings on reveal */
.section-head h2 { position: relative; }

/* Card shimmer accent line grows on reveal */
.card.in::after, .testi.in::after { }

/* Marquee subtle */
.marquee__item { transition: opacity .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-clip, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; clip-path: none; filter: none; transition: none; }
  .reveal-clip img { transform: none; }
  .hero__content > *, .hero__photo, .hero__chip--tl, .hero__chip--br, .site-header { animation: none; opacity: 1; }
  .word > span { transform: none; animation: none; }
  html { scroll-behavior: auto; }
  .wa-float, .hero__chip, .marquee__track { animation: none; }
}

/* ---------- Utilities ---------- */
.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; }
.center { text-align: center; }
.mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: 3.4rem; }
