/* =============================================================
   Roser Cleaning — styles.css
   Archetype: Glassmorphism Modern (adapted: fresh / clean / coastal)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Palette — fresh, clean, coastal */
  --bg:        #eef4f4;   /* soft cool white */
  --bg-2:      #e3edec;
  --paper:     #ffffff;
  --ink:       #123331;   /* deep teal-charcoal */
  --ink-soft:  #2f524f;
  --ink-mute:  #607a77;
  --accent:    #12a3a0;   /* fresh teal */
  --accent-deep:#0c7d7b;
  --accent-2:  #7bb28c;   /* sage green (sustainability) */
  --gold:      #cfae74;   /* warm subtle premium accent */
  --line:      rgba(18, 51, 49, 0.12);
  --line-2:    rgba(18, 51, 49, 0.07);

  /* Glass */
  --glass:     rgba(255, 255, 255, 0.55);
  --glass-2:   rgba(255, 255, 255, 0.38);
  --glass-brd: rgba(255, 255, 255, 0.75);

  /* Mesh stops (soft) */
  --mesh-1:    #b6e6e2;
  --mesh-2:    #cfe8d6;
  --mesh-3:    #d9ecf5;
  --mesh-4:    #eaf5f2;

  /* Shadows */
  --sh-sm: 0 2px 10px rgba(18,51,49,0.06);
  --sh-md: 0 14px 40px rgba(18,51,49,0.10);
  --sh-lg: 0 30px 70px rgba(18,51,49,0.16);
  --sh-glass: 0 10px 40px rgba(18,51,49,0.10), inset 0 1px 0 rgba(255,255,255,0.6);

  /* Type */
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --maxw: 1200px;
  --radius: 22px;
  --radius-lg: 30px;
  --nav-h: 74px;

  /* Easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1400px; }
.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;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: #fff;
  border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent); border-radius: 2px;
  opacity: .8;
}
.eyebrow.is-center::before { display: none; }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  margin-top: .7rem; letter-spacing: -0.03em;
}
.section-sub {
  margin-top: 1rem; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 60ch;
}
.section-head.is-center .section-sub { margin-inline: auto; }
.text-accent { color: var(--accent-deep); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: -0.01em;
  line-height: 1; white-space: nowrap;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .3s var(--ease-out), color .3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff; box-shadow: 0 10px 26px rgba(12,125,123,0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(12,125,123,0.42); }
.btn-ghost {
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--ink);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.8); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: #0c2624; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =============================================================
   5. Ambient mesh background
   ============================================================= */
.mesh-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(42% 42% at 12% 18%, var(--mesh-1) 0%, transparent 60%),
    radial-gradient(46% 46% at 88% 12%, var(--mesh-3) 0%, transparent 62%),
    radial-gradient(50% 50% at 78% 88%, var(--mesh-2) 0%, transparent 60%),
    radial-gradient(45% 45% at 20% 92%, var(--mesh-4) 0%, transparent 60%),
    var(--bg);
  filter: blur(60px) saturate(115%);
  animation: meshDrift 34s ease-in-out infinite;
  transform-origin: center;
}
.mesh-bg::after {
  /* subtle grain for premium texture */
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(8deg); }
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-2), 0 10px 30px rgba(18,51,49,0.06);
}
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 800;
  font-size: 1.12rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(12,125,123,0.34);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand small { display: block; font-family: var(--sans); font-weight: 500; font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.7rem); }
.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: .35rem 0; transition: color .25s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .7rem; border-radius: 100px; font-weight: 600; font-size: .85rem;
  color: var(--ink-soft); border: 1px solid var(--line);
  background: var(--glass); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s, color .25s, border-color .25s;
}
.lang-btn:hover { color: var(--ink); border-color: var(--accent); }
.lang-btn svg { width: 15px; height: 15px; opacity: .8; }
.lang-current { text-transform: uppercase; letter-spacing: .04em; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 172px;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-brd); border-radius: 16px; padding: .4rem;
  box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
  z-index: 120;
}
.lang.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .55rem .7rem; border-radius: 11px; font-size: .92rem; color: var(--ink-soft);
  text-align: left; transition: background .2s, color .2s;
}
.lang-opt:hover { background: rgba(18,163,160,0.10); color: var(--ink); }
.lang-opt.is-active { background: rgba(18,163,160,0.14); color: var(--accent-deep); font-weight: 600; }
.lang-opt .flag { font-size: 1.05rem; line-height: 1; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative;
  background: var(--glass); border: 1px solid var(--line); }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-copy { max-width: 640px; }
.hero-title {
  font-size: clamp(2.4rem, 6.2vw, 4.35rem); letter-spacing: -0.035em; line-height: 1.02;
  margin-top: 1.1rem;
}
.hero-title em { font-style: normal; color: var(--accent-deep);
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--ink-soft);
  max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust .stat-num { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1; }
.hero-trust .stat-lbl { font-size: .82rem; color: var(--ink-mute); margin-top: .25rem; }

.hero-visual { position: relative; }
.hero-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 3 / 2.25;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  /* soft glow behind image */
  content: ""; position: absolute; inset: -12% -8% -8% -12%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(18,163,160,0.35), transparent 70%);
  filter: blur(60px);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px;
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1.05rem; border-radius: 16px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-brd); box-shadow: var(--sh-md);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(123,178,140,0.28); }
.hero-badge b { font-weight: 700; font-size: .9rem; }
.hero-badge span { display: block; font-size: .74rem; color: var(--ink-mute); }

/* =============================================================
   8. Glass cards / grids
   ============================================================= */
.glass {
  background: var(--glass); /* fallback when no backdrop support */
  border: 1px solid var(--glass-brd); border-radius: var(--radius);
  box-shadow: var(--sh-glass);
}
@supports (backdrop-filter: blur(10px)) {
  .glass { background: var(--glass-2); backdrop-filter: blur(16px) saturate(155%);
    -webkit-backdrop-filter: blur(16px) saturate(155%); }
}

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

/* Service card */
.service-card { overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(18,163,160,0.12); color: var(--accent-deep); margin-bottom: .9rem; margin-top: -2.9rem;
  position: relative; z-index: 2; box-shadow: var(--sh-sm);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.service-icon svg { width: 23px; height: 23px; }
.service-card h3 { font-size: 1.28rem; letter-spacing: -0.02em; }
.service-card p { margin-top: .55rem; color: var(--ink-soft); font-size: .98rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag { font-size: .76rem; font-weight: 500; color: var(--accent-deep);
  background: rgba(18,163,160,0.10); padding: .3rem .65rem; border-radius: 100px; }

/* Value card (philosophy) */
.value-card { padding: 1.5rem 1.4rem; height: 100%;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.value-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(18,163,160,0.16), rgba(123,178,140,0.16));
  color: var(--accent-deep); margin-bottom: 1rem; }
.value-ic svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.12rem; }
.value-card p { margin-top: .45rem; color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }

/* Feature / split rows */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3.5rem); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split.is-reverse .split-media { order: -1; }

/* Steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 1rem; counter-reset: step; }
.step { display: flex; gap: 1.1rem; padding: 1.3rem 1.4rem; align-items: flex-start; }
.step-num { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 16px rgba(12,125,123,0.3); }
.step h3 { font-size: 1.08rem; }
.step p { margin-top: .3rem; color: var(--ink-soft); font-size: .94rem; }

/* Checklist */
.checklist { display: grid; gap: .7rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent);
  margin-top: 1px; }

/* =============================================================
   9. CTA band
   ============================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4rem); text-align: center;
  background: linear-gradient(135deg, #0f8f8c 0%, #0c7d7b 55%, #12a3a0 100%);
  color: #fff; box-shadow: var(--sh-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(40% 60% at 15% 20%, rgba(255,255,255,0.28), transparent 60%),
              radial-gradient(40% 60% at 85% 90%, rgba(123,178,140,0.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.7rem); }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: .9rem; max-width: 54ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35);
  color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.26); }
.cta-band .btn-primary { background: #fff; color: var(--accent-deep);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* Coast banner */
.coast-band { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: grid; place-items: center; text-align: center; box-shadow: var(--sh-lg); }
.coast-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.coast-band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,45,43,0.15) 0%, rgba(10,45,43,0.55) 100%); }
.coast-inner { position: relative; color: #fff; padding: 2.5rem 1.5rem; max-width: 640px; }
.coast-inner .eyebrow { color: #dff3f0; }
.coast-inner .eyebrow::before { background: #fff; }
.coast-inner h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.5rem); margin-top: .6rem; }

/* =============================================================
   10. Page hero (inner pages)
   ============================================================= */
.page-hero { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .84rem; color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb span { opacity: .5; }

/* =============================================================
   11. Forms
   ============================================================= */
.form-wrap { padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 13px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  color: var(--ink); font-size: .97rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #94a8a5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(18,163,160,0.14);
}
.chip-group { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .9rem;
  border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.6);
  font-size: .88rem; color: var(--ink-soft); transition: all .2s var(--ease-out); }
.chip input:checked + span { background: rgba(18,163,160,0.14); border-color: var(--accent);
  color: var(--accent-deep); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; display: flex; gap: .5rem;
  align-items: flex-start; }
.form-note svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; color: var(--accent); }
.form-actions { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .7rem; }

/* =============================================================
   12. Contact / info
   ============================================================= */
.info-card { padding: 1.5rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; height: 100%; }
.info-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(18,163,160,0.12); color: var(--accent-deep); }
.info-ic svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 1.02rem; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: .95rem; margin-top: .2rem; word-break: break-word; }
.info-card a:hover { color: var(--accent-deep); }
.hours-list { display: grid; gap: .3rem; margin-top: .3rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft);
  font-size: .93rem; }
.hours-list b { color: var(--ink); font-weight: 600; }
.badge-open { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600;
  color: var(--accent-2); margin-top: .5rem; }
.badge-open .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(123,178,140,0.25); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-md);
  border: 1px solid var(--glass-brd); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(1.05); }

/* =============================================================
   13. Footer
   ============================================================= */
.footer { margin-top: clamp(3rem, 8vw, 6rem); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
  background: linear-gradient(180deg, transparent, rgba(18,51,49,0.03));
  border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand p { color: var(--ink-soft); margin-top: 1rem; max-width: 34ch; font-size: .95rem; }
.footer-slogan { font-family: var(--display); font-weight: 600; color: var(--accent-deep) !important;
  font-size: 1.05rem !important; letter-spacing: -0.01em; margin-top: 1rem !important; max-width: 30ch; }
.footer h4 { font-family: var(--display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: var(--ink-soft); font-size: .95rem; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent-deep); }
.social { display: flex; gap: .5rem; }
.social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--line); color: var(--ink-soft); transition: all .25s; }
.social a:hover { color: var(--accent-deep); border-color: var(--accent); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* =============================================================
   14. Floating WhatsApp
   ============================================================= */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45); transition: transform .4s var(--ease-out); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 27px; height: 27px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5); animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* =============================================================
   15. Reveal animations
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
/* Defensive: never let a split element stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* Attention bounce for key CTAs (always on — intentional urgency) */
@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  28%      { transform: translateY(-10px); }
  46%      { transform: translateY(0); }
  60%      { transform: translateY(-5px); }
  74%      { transform: translateY(0); }
}
.btn-bounce { animation: btnBounce 1.9s var(--ease-soft) infinite; will-change: transform; }
.btn-bounce.btn-bounce--delay { animation-delay: .32s; }
.btn-bounce:hover, .btn-bounce:focus-visible { animation: none; }

/* Lighter "breathing" highlight for the primary hero CTA */
@keyframes btnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 26px rgba(12,125,123,0.32); }
  50%      { transform: scale(1.04); box-shadow: 0 16px 40px rgba(12,125,123,0.55); }
}
.btn-pulse { animation: btnPulse 2.3s var(--ease-soft) infinite; will-change: transform; }
.btn-pulse:hover, .btn-pulse:focus-visible { animation: none; }

/* Phone field with country prefix */
.phone-row { display: flex; gap: .5rem; }
.phone-row .prefix-select { flex: 0 0 auto; width: auto; max-width: 55%; }
.phone-row input { flex: 1 1 auto; min-width: 0; }

/* View transitions (page-to-page) */
@view-transition { navigation: auto; }

/* =============================================================
   16. Responsive
   ============================================================= */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .map-frame iframe { min-height: 420px; }
}

/* Mobile nav */
@media (max-width: 899px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 1rem var(--gutter) 1.5rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  body.nav-open .nav-links { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav-link { padding: .95rem .2rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-2); }
  .nav-link::after { display: none; }
  .nav-links .btn { margin-top: 1rem; }
  .hide-mobile-cta { display: none; }
}
@media (min-width: 900px) {
  .nav-links .nav-cta-mobile { display: none; }
}

/* =============================================================
   17. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mesh-bg { animation: none; }
  .wa-float::after { animation: none; }
  /* keep: hovers, reveals (they just fade), lifts, underlines */
}
