/* =========================================================
 * Aquozy public site styles — chunk 2
 * Brand: primary #244572, accent #5FA9C9, soft bg #F5F7FA, text #2B2B2B
 * Mobile-first.
 * ========================================================= */

:root {
  --primary: #244572;
  --primary-dark: #1a3559;
  --accent: #5FA9C9;
  --accent-soft: #cbe5f0;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --text: #2B2B2B;
  --muted: #6b7585;
  --line: #e6ecf2;
  --success: #2f8f53;
  --danger: #c93838;
  --warning: #b48008;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(20,42,71,.06);
  --shadow: 0 8px 28px rgba(20,42,71,.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -.01em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 18px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; color: var(--primary); }
.logo-img { height: 30px; width: auto; display: block; }
@media (min-width: 720px) { .logo-img { height: 34px; } }
/* legacy text-mark fallback (kept for any callers not yet migrated) */
.logo-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--primary); color: #fff;
  font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 700;
}
.logo-word { font-family: 'Fraunces', Georgia, serif; font-size: 22px; letter-spacing: -.01em; margin-left: 10px; }
.nav { display: none; gap: 6px; margin-left: auto; }
.nav a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: var(--text); font-weight: 500; font-size: .95rem;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--bg-soft); color: var(--primary); }
.nav a.active { background: #fff; color: var(--primary); border: 1.5px solid var(--accent); }
.header-cta { display: none; }
.nav-toggle {
  display: grid; gap: 5px; width: 38px; height: 38px;
  margin-left: auto; padding: 10px 8px; background: transparent; border: 0;
  cursor: pointer; align-content: center;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--primary); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 820px) {
  .nav { display: flex; margin-left: auto; }
  .header-cta { display: block; }
  .nav-toggle { display: none; }
}
@media (max-width: 819px) {
  body.nav-open .nav {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; padding: 16px 22px 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    overflow-y: auto; max-height: calc(100dvh - 68px);
  }
  body.nav-open .nav a { padding: 12px 14px; font-size: 1rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .98rem; cursor: pointer; border: 0;
  transition: transform .1s, background .15s, color .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #0b1a2e; }
.btn-accent:hover { background: #4d97b9; color: #0b1a2e; }
.btn-ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1fb957; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #0b1a2e 0%, #1a3559 60%, #244572 100%);
  color: #fff;
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: auto -10% -40% -10%;
  height: 60%; background: radial-gradient(ellipse at center top, rgba(95,169,201,.35), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(95,169,201,.18); border: 1px solid rgba(95,169,201,.4);
  color: #a8d8ea; font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 2.1rem; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 26px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (min-width: 720px) {
  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.15rem; }
}
@media (min-width: 1000px) { .hero h1 { font-size: 3.4rem; } }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.section-head .eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: 1.8rem; color: var(--primary); line-height: 1.2; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }
@media (min-width: 720px) { .section-head h2 { font-size: 2.2rem; } }

/* ---------- Service cards ---------- */
.service-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--bg-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.18rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; flex: 1; }
.service-card .price { font-size: .85rem; color: var(--text); font-weight: 600; }
.service-card .price em { color: var(--muted); font-style: normal; font-weight: 500; }
.service-card .cta { margin-top: 18px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: left; box-shadow: var(--shadow-sm);
}
.why-card .num {
  font-family: 'Fraunces', serif; font-size: 1.8rem; color: var(--accent);
  font-weight: 700; line-height: 1; margin-bottom: 10px;
}
.why-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.why-card p { font-size: .92rem; color: var(--muted); }

/* ---------- Why Aquozy — horizontal stats row ---------- */
.we-stats-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}
.we-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (min-width: 720px) {
  .we-stats-row { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}
.we-stat-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.we-stat-box .we-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}
.we-stat-box .we-stat-sup {
  font-size: .95rem;
  font-weight: 700;
  vertical-align: super;
}
.we-stat-box .we-stat-label {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3559 100%);
  color: #fff; padding: 40px 0; text-align: center;
}
.cta-strip h2 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.6rem;
  margin-bottom: 8px; letter-spacing: -.01em;
}
.cta-strip p { color: rgba(255,255,255,.78); margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
@media (min-width: 720px) { .cta-strip { padding: 56px 0; } .cta-strip h2 { font-size: 2rem; } }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .form-card { padding: 36px 38px; } }
.form-grid { display: grid; gap: 16px 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-row { grid-column: 1 / -1; }
.field label {
  display: block; font-size: .82rem; font-weight: 600; color: var(--muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em;
}
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .98rem;
  background: #fff; color: var(--text);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(95,169,201,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .err { color: var(--danger); font-size: .85rem; margin-top: 5px; font-weight: 600; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-size: .95rem; font-weight: 500; border: 1px solid; line-height: 1.5;
}
.alert.error   { background: #fbe9e9; color: var(--danger);  border-color: #f0c8c8; }
.alert.success { background: #e6f6ec; color: var(--success); border-color: #c8e8d2; }
.alert.warn    { background: #fff5e0; color: var(--warning); border-color: #f4dca0; }

/* ---------- Confirmation page ---------- */
.confirm {
  text-align: center; max-width: 640px; margin: 0 auto;
  background: #fff; padding: 44px 28px; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.confirm .checkmark {
  width: 72px; height: 72px; border-radius: 50%; background: #e6f6ec;
  display: grid; place-items: center; margin: 0 auto 20px; color: var(--success);
}
.confirm h1 {
  font-family: 'Fraunces', serif; font-weight: 700; color: var(--primary);
  font-size: 1.7rem; margin-bottom: 10px;
}
.confirm .ref-block {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px; margin: 22px 0;
}
.confirm .ref-label { font-size: .78rem; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.confirm .ref-id { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: .01em; font-family: 'Manrope', sans-serif; }
.confirm .next-list { text-align: left; max-width: 420px; margin: 22px auto; padding-left: 22px; color: var(--text); }
.confirm .next-list li { margin-bottom: 8px; font-size: .95rem; }
.confirm .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 18px; font-weight: 700; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic {
  width: 38px; height: 38px; border-radius: var(--radius-sm); flex: 0 0 38px;
  display: grid; place-items: center; background: var(--bg-soft); color: var(--primary);
}
.contact-row .ic svg { width: 18px; height: 18px; }
.contact-row .lbl { font-size: .82rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.contact-row .val { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-row .val a { color: var(--text); }
.contact-row .val a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: #0b1a2e; color: #d3d8df; padding: 48px 0 18px; margin-top: 0; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.6fr .8fr 1fr 1fr; } }
.footer-logo .logo-mark { background: var(--accent); color: #0b1a2e; }
.footer-logo .logo-word { color: #fff; }
.footer-logo .logo-img { height: 36px; }
.footer-tagline { color: rgba(255,255,255,.65); font-size: .92rem; margin-top: 12px; max-width: 360px; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; font-weight: 700; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(255,255,255,.7); font-size: .94rem; }
.site-footer ul a:hover { color: var(--accent); }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.muted-link { color: rgba(255,255,255,.4); }
.muted-link:hover { color: var(--accent); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .15s, box-shadow .15s;
}
.wa-float:hover { transform: scale(1.06); color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,.55); }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.tagline { display: inline-block; padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--bg-soft); color: var(--primary); font-size: .82rem; font-weight: 600; }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 760px; margin: 0 auto; background: #fff; padding: 48px 56px;
  border-radius: 12px; box-shadow: 0 2px 12px rgba(36,69,114,.06); border: 1px solid var(--line); }
.legal-head { padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal-head h1 { font-family: 'Fraunces', Georgia, serif; font-size: 2rem; color: var(--primary);
  font-weight: 700; letter-spacing: -.01em; margin: 0 0 8px; }
.legal-meta { color: var(--muted); font-size: .9rem; margin: 0; }
.legal-page .legal-intro { font-size: 1.06rem; line-height: 1.7; color: var(--text); margin-bottom: 28px; }
.legal-page h2 { font-family: 'Fraunces', Georgia, serif; font-size: 1.32rem; color: var(--primary);
  font-weight: 700; margin-top: 36px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.06rem; color: var(--text); font-weight: 700; margin-top: 22px; margin-bottom: 8px; }
.legal-page p { font-size: .97rem; line-height: 1.7; margin-bottom: 14px; }
.legal-page ul, .legal-page ol { margin: 0 0 18px 22px; }
.legal-page li { font-size: .97rem; line-height: 1.7; margin-bottom: 8px; }
.legal-page a { color: var(--primary); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(36,69,114,.3); }
.legal-page a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.legal-page strong { color: var(--text); font-weight: 700; }
.legal-page em { color: var(--text); font-style: italic; }
.legal-divider { border: 0; border-top: 1px solid var(--line); margin: 36px 0 24px; }
.legal-foot { font-size: .9rem; color: var(--muted); }
.legal-contact-block { background: var(--bg-soft); padding: 18px 22px; border-radius: 8px;
  border-left: 3px solid var(--primary); font-size: .94rem; line-height: 1.7; }
@media (max-width: 700px) {
  .legal-page { padding: 32px 22px; border-radius: 8px; }
  .legal-head h1 { font-size: 1.6rem; }
}

/* ---------- Solutions page: pillar links ---------- */
.solutions-pillars { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 920px; margin: 0 auto; }
@media (min-width: 720px) { .solutions-pillars { grid-template-columns: 1fr 1fr; } }
.pillar-link { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; text-decoration: none; color: var(--text); transition: transform .15s, box-shadow .15s, border-color .15s; }
.pillar-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); color: var(--text); }
.pillar-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--bg-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 16px; }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-link h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.32rem; color: var(--primary);
  font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.pillar-link p { color: var(--muted); font-size: .96rem; margin-bottom: 14px; line-height: 1.55; }
.pillar-cta { color: var(--accent); font-weight: 700; font-size: .9rem; }

/* ---------- Process timeline (Maintenance + New Setup flows) ---------- */
.process-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 22px; top: 22px; bottom: 22px;
  width: 2px; background: linear-gradient(180deg, var(--accent-soft), var(--line) 40%, var(--accent-soft)); }
.process-step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 14px 0;
  position: relative; align-items: flex-start; }
.process-num { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--primary);
  border: 2px solid var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  font-family: 'Fraunces', Georgia, serif; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(95,169,201,.08); }
.process-content { background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; box-shadow: 0 1px 4px rgba(20,42,71,.04); }
.process-content h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.12rem;
  color: var(--primary); font-weight: 700; margin: 4px 0 6px; }
.process-content p { color: var(--text); font-size: .96rem; line-height: 1.65; margin: 0; }
.process-pill { display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.pill-aquozy { background: rgba(36,69,114,.10); color: var(--primary); }
.pill-action { background: rgba(95,169,201,.18); color: #2c7d99; }
.pill-pay { background: rgba(47,143,83,.13); color: var(--success); }

.process-step.is-milestone .process-num {
  background: var(--success); color: #fff; border-color: var(--success);
  box-shadow: 0 0 0 4px rgba(47,143,83,.12);
}
.process-step.is-milestone .process-content {
  background: linear-gradient(180deg, #fff, #f4faf6);
  border-color: rgba(47,143,83,.30);
}

.process-callout { max-width: 760px; margin: 32px auto 0; background: var(--bg-soft);
  border-left: 4px solid var(--accent); padding: 18px 22px; border-radius: 8px; }
.process-callout h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem;
  color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.process-callout p { font-size: .94rem; color: var(--text); line-height: 1.65; margin: 0; }
.process-cta { text-align: center; margin-top: 30px; }

@media (max-width: 520px) {
  .process-timeline::before { left: 18px; }
  .process-step { grid-template-columns: 38px 1fr; gap: 14px; }
  .process-num { width: 38px; height: 38px; font-size: .92rem; }
  .process-content { padding: 14px 16px; }
  .process-content h3 { font-size: 1.02rem; }
}

/* ---------- Warranty cards (3-up grid) ---------- */
.warranty-cards { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 1000px; margin: 0 auto; }
@media (min-width: 720px) { .warranty-cards { grid-template-columns: repeat(3, 1fr); } }
.warranty-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: left; box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s; }
.warranty-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.warranty-num { font-family: 'Fraunces', Georgia, serif; color: var(--accent);
  font-size: 3.2rem; font-weight: 700; line-height: 1; letter-spacing: -.02em; margin-bottom: 10px; }
.warranty-num span { font-size: 1.05rem; font-weight: 600; color: var(--muted);
  letter-spacing: .04em; margin-left: 4px; text-transform: lowercase; }
.warranty-card h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.16rem;
  color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.warranty-card p { color: var(--text); font-size: .94rem; line-height: 1.6; margin-bottom: 8px; }
.warranty-detail { color: var(--muted); font-size: .85rem; font-style: italic; margin-top: 6px; }
.warranty-foot { text-align: center; max-width: 720px; margin: 28px auto 0;
  color: var(--muted); font-size: .92rem; }

/* ---------- CTA strip extras ---------- */
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.btn-on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-on-dark:hover { color: var(--accent); border-color: var(--accent); }

/* ====================================================================
 *  HERO: Aquarium feel — bubbles, light caustic, wave divider
 * ==================================================================== */
.hero-aquarium {
  /* deeper, more saturated underwater gradient */
  background:
    radial-gradient(ellipse at 30% 0%, rgba(95,169,201,.28), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(95,169,201,.18), transparent 50%),
    linear-gradient(180deg, #061427 0%, #0e2545 35%, #1a3559 65%, #244572 100%);
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .hero-aquarium { padding: 96px 0 130px; } }

/* Light caustic — animated radial glow drifting slowly across the top */
.hero-caustic {
  position: absolute; inset: -10% 0 30% 0;
  background:
    radial-gradient(ellipse 35% 55% at 30% 25%, rgba(168,216,234,.18), transparent 70%),
    radial-gradient(ellipse 28% 45% at 70% 35%, rgba(95,169,201,.12), transparent 70%);
  filter: blur(8px);
  animation: causticDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes causticDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 12px) scale(1.05); }
}

/* Bubbles container */
.hero-bubbles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute; bottom: -40px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), rgba(168,216,234,.18) 60%, transparent 70%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  opacity: 0;
  animation: bubbleRise linear infinite;
  box-shadow: inset -2px -3px 6px rgba(255,255,255,.1);
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .8; }
  50%  { transform: translateY(-50vh) translateX(8px); opacity: .65; }
  90%  { opacity: .35; }
  100% { transform: translateY(-110vh) translateX(-6px); opacity: 0; }
}
.bubble.b1 { left:  8%; width: 14px; height: 14px; animation-duration: 14s; animation-delay: 0s; }
.bubble.b2 { left: 18%; width:  8px; height:  8px; animation-duration: 11s; animation-delay: 2s; }
.bubble.b3 { left: 32%; width: 22px; height: 22px; animation-duration: 18s; animation-delay: 4s; }
.bubble.b4 { left: 48%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: 1s; }
.bubble.b5 { left: 60%; width:  6px; height:  6px; animation-duration: 10s; animation-delay: 6s; }
.bubble.b6 { left: 72%; width: 18px; height: 18px; animation-duration: 16s; animation-delay: 3s; }
.bubble.b7 { left: 84%; width: 12px; height: 12px; animation-duration: 12s; animation-delay: 7s; }
.bubble.b8 { left: 92%; width:  8px; height:  8px; animation-duration: 15s; animation-delay: 5s; }

/* Wave divider — sits at bottom of hero, blends to white below */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 60px;
  display: block;
  z-index: 2;
}
@media (min-width: 720px) { .hero-wave { height: 80px; } }

/* Tighten hero spacing */
.hero-aquarium .hero-inner { position: relative; z-index: 3; }
.hero-aquarium h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 2.1rem; line-height: 1.12; margin-bottom: 18px;
  letter-spacing: -.02em; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-aquarium h1 br { display: none; }
@media (min-width: 720px) {
  .hero-aquarium h1 { font-size: 3rem; }
  .hero-aquarium h1 br { display: inline; }
}
@media (min-width: 1000px) { .hero-aquarium h1 { font-size: 3.5rem; } }

.hero-aquarium p { color: rgba(255,255,255,.86); font-size: 1.05rem; max-width: 620px; margin: 0 auto 26px; }
@media (min-width: 720px) { .hero-aquarium p { font-size: 1.15rem; } }

/* Trust micro-line under CTAs */
.hero-trust {
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-top: 26px; color: rgba(255,255,255,.7); font-size: .9rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust strong { color: #a8d8ea; font-weight: 700; }
.hero-trust span + span::before {
  content: '·'; margin-right: 22px; color: rgba(255,255,255,.3);
}
@media (max-width: 520px) {
  .hero-trust { gap: 10px; flex-direction: column; }
  .hero-trust span + span::before { content: ''; margin: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-caustic, .bubble { animation: none; }
  .bubble { opacity: 0; }
}

/* ====================================================================
 *  HERO CAROUSEL: 3 rotating slides with cross-fade
 * ==================================================================== */
.hero-carousel {
  position: relative;
  /* Fixed minimum height to prevent jumping when slides change */
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 720px) { .hero-carousel { min-height: 620px; } }

/* Each slide stacks absolutely; only the active one shows */
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Background image per slide — covered, centered, slowly drifting */
.hero-bg {
  position: absolute;
  top: -2px; bottom: -2px; left: -2px; right: -2px; /* bleed 2 px past edges — eliminates hairline bars near curves */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (min-width: 720px) {
  .hero-bg { background-position: center; }
}
/* Dark overlay so text remains readable over photos */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,39,.70) 0%, rgba(14,37,69,.60) 50%, rgba(36,69,114,.50) 100%);
  z-index: 1;
}

/* Inner content sits above background and overlay */
.hero-slide .hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}

/* Subtle entrance animation when slide becomes active */
.hero-slide .hero-inner > * { opacity: 0; transform: translateY(8px); }
.hero-slide.is-active .hero-inner > * {
  opacity: 1; transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}
.hero-slide.is-active .hero-inner > *:nth-child(1) { transition-delay: 100ms; }
.hero-slide.is-active .hero-inner > *:nth-child(2) { transition-delay: 200ms; }
.hero-slide.is-active .hero-inner > *:nth-child(3) { transition-delay: 300ms; }
.hero-slide.is-active .hero-inner > *:nth-child(4) { transition-delay: 400ms; }
.hero-slide.is-active .hero-inner > *:nth-child(5) { transition-delay: 500ms; }

/* Bubbles/caustic should sit above background but below text content */
.hero-carousel .hero-caustic,
.hero-carousel .hero-bubbles { z-index: 3; pointer-events: none; }
.hero-carousel .hero-inner    { z-index: 4; }

/* Dots navigation — sits clearly above wave divider */
.hero-dots {
  position: absolute;
  bottom: 110px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px;
  z-index: 7;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.30);
  border: 2px solid rgba(255,255,255,.55);
  padding: 0; cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s, width .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.hero-dot:hover {
  background: rgba(255,255,255,.55);
  transform: scale(1.15);
}
.hero-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  width: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(95,169,201,.45);
}
@media (max-width: 720px) { .hero-dots { bottom: 90px; } }
@media (max-width: 520px) { .hero-dots { bottom: 78px; gap: 10px; } }

/* Prev/Next arrows — vertically centred on left/right */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.32);
  border: 1.5px solid rgba(255,255,255,.32);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  z-index: 7;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow:hover {
  background: rgba(0,0,0,.55);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.06);
}
.hero-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }
@media (min-width: 1100px) {
  .hero-arrow { width: 54px; height: 54px; }
  .hero-arrow-prev { left: 28px; }
  .hero-arrow-next { right: 28px; }
}
@media (max-width: 720px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow svg { width: 18px; height: 18px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
}

/* Slide counter — top-right corner of carousel */
.hero-counter {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 7;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
  background: rgba(0,0,0,.28);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-counter-cur { color: #fff; }
.hero-counter-sep { margin: 0 4px; opacity: .5; }
.hero-counter-total { opacity: .6; }
@media (max-width: 520px) {
  .hero-counter { top: 16px; right: 16px; font-size: .75rem; padding: 5px 10px; }
}

/* Auto-advance progress bar — thin line at the very top of the hero */
.hero-progress {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: auto;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 8;
  pointer-events: none;
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.7));
  transition: width 6000ms linear;
}
/* No longer needed — bar is at top on all screen sizes */

/* Wave divider — must NOT cover the dots/arrows/counter */
.hero-carousel .hero-wave { z-index: 6; }

/* Reduced-motion: instant transitions, no entrance animation */
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .hero-inner > * { transition: none !important; }
}

/* =========================================================
 * SOLUTIONS MEGA DROPDOWN — 3-PANEL
 * ========================================================= */
.aq-sdrop-wrap { position: relative; }
.aq-sdrop-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: transparent; border: 0; cursor: pointer;
  color: var(--text); font-weight: 500; font-size: .95rem;
  font-family: inherit; transition: background .15s, color .15s;
}
.aq-sdrop-btn:hover,
.aq-sdrop-wrap:hover .aq-sdrop-btn { background: var(--bg-soft); color: var(--primary); }
.aq-sdrop-chevron {
  width: 14px; height: 14px; stroke: currentColor;
  flex-shrink: 0; transition: transform .2s;
}
.aq-sdrop-wrap:hover .aq-sdrop-chevron,
.aq-sdrop-open .aq-sdrop-chevron { transform: rotate(180deg); }

/* The 3-panel mega panel */
.aq-mega {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: min(920px, 96vw);
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(20,42,71,.13);
  z-index: 9999;
  flex-direction: row;
  overflow: hidden;
}
/* Invisible bridge so cursor doesn't leave wrap when crossing gap */
.aq-mega::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.aq-sdrop-wrap:hover .aq-mega,
.aq-mega.open { display: flex; }

/* Left intro panel */
.aq-mega-intro {
  width: 220px; min-width: 220px; flex-shrink: 0;
  background: #F5F7FA; border-right: 1px solid #e6ecf2;
  padding: 1.875rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.aq-mega-intro .eyebrow { font-size: .68rem; margin-bottom: .5rem; }
.aq-mega-intro h3 {
  font-size: 1rem; font-weight: 700; color: #244572;
  line-height: 1.35; margin: 0 0 .75rem;
}
.aq-mega-intro p { font-size: .78rem; color: #6b7585; line-height: 1.65; margin-bottom: 1.25rem; }
.aq-mega-viewall {
  font-size: .78rem; font-weight: 700; color: #5FA9C9;
  text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
  transition: color .15s;
}
.aq-mega-viewall:hover { color: #244572; }

/* Service columns */
.aq-mega-col {
  flex: 1; padding: 1.25rem 1rem;
  border-right: 1px solid #e6ecf2;
}
.aq-mega-col:last-child { border-right: 0; }

.aq-mega-col-head {
  display: flex; align-items: center; gap: .5rem;
  padding-bottom: .75rem; margin-bottom: .625rem;
  border-bottom: 1px solid #e6ecf2;
}
.aq-mega-col-head-icon {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aq-mega-col-head-icon svg { width: 14px; height: 14px; }
.aq-mega-col-head-icon--res { background: #EFF6FB; color: #0284C7; }
.aq-mega-col-head-icon--biz { background: #EEF2FF; color: #4F46E5; }
.aq-mega-col-head span {
  font-size: .68rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: #244572;
}

/* Items */
.aq-mega-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem .625rem; border-radius: 9px;
  text-decoration: none; transition: background .12s;
  margin-bottom: .25rem;
}
.aq-mega-item:last-child { margin-bottom: 0; }
.aq-mega-item:hover { background: #F5F7FA; }

.aq-mega-item-ic {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.aq-mega-item-ic--res { background: #cbe5f0; }
.aq-mega-item-ic--biz { background: #dde4ff; }
.aq-mega-item-ic svg { width: 17px; height: 17px; color: #244572; }

.aq-mega-item-text strong {
  display: block; font-size: .84rem; font-weight: 700; color: #244572; line-height: 1.3;
}
.aq-mega-item-text span {
  display: block; font-size: .75rem; color: #6b7585; line-height: 1.4;
}

/* Mobile: show mega columns (no intro panel) instead of accordion */
@media (max-width: 819px) {
  .aq-sdrop-btn { width: 100%; justify-content: space-between; padding: 12px 14px; font-size: 1rem; }
  /* Reflow mega panel inline — no absolute positioning */
  .aq-mega {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--line);
    flex-direction: column;
    margin-top: 2px;
  }
  .aq-mega::before { display: none; } /* no hover bridge needed on mobile */
  .aq-mega.open { display: flex; }
  .aq-mega-intro { display: none !important; } /* hide left writeup */
  .aq-mega-col {
    border-right: none;
    border-bottom: 1px solid #e6ecf2;
    padding: 12px 8px;
  }
  .aq-mega-col:last-child { border-bottom: none; }
  /* Hide old accordion — mega is used instead */
  .aq-mega-mobile { display: none !important; }
}
@media (min-width: 820px) {
  .aq-mega-mobile { display: none !important; }
}

/* =========================================================
 * INDUSTRY GRID — commercial pages
 * ========================================================= */
.industry-section-head { margin-bottom: 1rem; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
@media (max-width: 700px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.375rem 1.25rem; border-radius: 14px;
  border: 1px solid #e6ecf2; background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.industry-card:hover { box-shadow: 0 6px 24px rgba(20,42,71,.08); transform: translateY(-2px); }

.industry-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.industry-icon svg { width: 25px; height: 25px; }

/* Per-industry colour tokens */
.ii--corporate  { background: #EEF2FF; color: #4F46E5; }
.ii--hotel      { background: #FFF7ED; color: #EA580C; }
.ii--restaurant { background: #FFF1F2; color: #E11D48; }
.ii--healthcare { background: #F0FDF4; color: #16A34A; }
.ii--education  { background: #FAF5FF; color: #9333EA; }
.ii--retail     { background: #FFFBEB; color: #D97706; }
.ii--villa      { background: #F0F9FF; color: #0284C7; }
.ii--housing    { background: #F1F5F9; color: #475569; }
.ii--public     { background: #FDF4FF; color: #C026D3; }

.industry-card h4 { font-size: .95rem; font-weight: 700; color: #244572; margin: 0; line-height: 1.3; }
.industry-card p  { font-size: .82rem; color: #6b7585; line-height: 1.6; margin: 0; }

/* =========================================================
 * SERVICE PAGE — SHARED STYLES
 * ========================================================= */

/* Service hero — light/professional design */
.svc-hero {
  background: #fff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e6ecf2;
}
.svc-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #244572 0%, #5FA9C9 60%, #7ecde3 100%);
}
.svc-hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,169,201,.06) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
/* Type badge — "Residential" or "Business" label above eyebrow */
.svc-type-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  background: #EFF6FB; color: #244572;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .875rem;
  border-radius: 999px; border: 1px solid #cbe5f0;
  margin-bottom: .75rem;
}
.svc-type-badge--biz { background: #EEF2FF; border-color: #c7d2fe; color: #3730A3; }
.svc-type-badge svg { width: 12px; height: 12px; }
.svc-hero-eyebrow { color: #5FA9C9; opacity: 1; }
.svc-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700; color: #244572; line-height: 1.15;
  margin: .625rem 0 1rem; letter-spacing: -.02em;
}
.svc-hero h1 em { font-style: normal; color: #5FA9C9; }
.svc-hero-lead { font-size: 1rem; color: #6b7585; line-height: 1.75; margin-bottom: 2rem; max-width: 490px; }
.svc-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Image placeholder (hero side + body) */
.img-placeholder {
  border-radius: 16px;
  background: #F5F7FA;
  border: 1.5px dashed #d1d9e6;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  color: #aab2c0;
  position: relative; overflow: hidden;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: .5; }
.img-placeholder span { font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
/* When a real image is placed inside, it fills the placeholder */
.img-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
}

.img-placeholder-light {
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--line);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  color: var(--muted);
}
.img-placeholder-light svg { width: 40px; height: 40px; opacity: .4; }
.img-placeholder-light span { font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft);
  border: 1.5px solid rgba(95,169,201,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.feature-card h4 { font-size: .9375rem; font-weight: 700; color: var(--primary); margin-bottom: .375rem; }
.feature-card p  { font-size: .825rem; color: var(--muted); line-height: 1.6; }

/* ── PROCESS TIMELINE ──────────────────────────────────────── */
.process-section { padding: 4rem 0 1.5rem; background: #fff; }
.process-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 2.5rem;
  padding-bottom: .5rem;
  gap: 0;
  flex-wrap: wrap;
}

/* Horizontal connector line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% / var(--steps, 6));
  right: calc(50% / var(--steps, 6));
  height: 1px;
  background: #e8ecf2;
  z-index: 0;
}

.process-step {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 6px 1.5rem;
}

.step-num {
  font-size: .6rem; font-weight: 800;
  color: var(--accent); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 5px;
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e8ecf2;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.step-icon svg { width: 22px; height: 22px; color: var(--primary); }
.process-step:hover .step-icon {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.process-step:hover .step-icon svg { color: var(--primary-dark); }

.step-body {
  text-align: center;
  margin-top: .875rem;
  padding: 0 4px;
}
.step-body strong {
  display: block;
  font-size: .82rem; font-weight: 700;
  color: var(--primary); margin-bottom: .25rem;
  line-height: 1.3;
}
.step-body p {
  font-size: .75rem; color: var(--muted);
  line-height: 1.5;
}

/* Bordered variant — outer border + column dividers, no row borders.
   Desktop & tablet only (min-width: 701px); mobile stacking below is untouched. */
@media (min-width: 701px) {
  .process-timeline.is-bordered {
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: stretch;
  }
  .process-timeline.is-bordered::before { display: none; }
  .process-timeline.is-bordered .process-step {
    padding: 1.75rem 1.25rem 1.5rem;
    border-right: 1px solid var(--line);
  }
  .process-timeline.is-bordered .process-step:last-child {
    border-right: none;
  }
}

/* Mobile: stack vertically */
@media (max-width: 700px) {
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .process-timeline::before {
    top: 26px; bottom: 26px;
    left: 25px; right: auto;
    width: 1px; height: auto;
    background: var(--line);
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%; min-width: 0;
    gap: 1rem; padding: 0 0 1.5rem;
  }
  .step-num { display: none; }
  .step-icon { flex-shrink: 0; width: 44px; height: 44px; }
  .step-icon svg { width: 20px; height: 20px; }
  .step-body { text-align: left; margin-top: 0; padding: 0; }
  .step-body strong { font-size: .9rem; }
  .step-body p { font-size: .82rem; }
}

/* ── INCLUDED CHECKLIST ────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .625rem;
  margin-top: 2rem;
}
@media (max-width: 580px) { .included-grid { grid-template-columns: 1fr; } }

.included-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
}
.included-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(47,143,83,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.included-check svg { width: 13px; height: 13px; color: var(--success); }
.included-item span { font-size: .875rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ── SERVICE CTA BANNER ────────────────────────────────────── */
.svc-cta {
  background: var(--primary); padding: 4rem 0; text-align: center;
}
.svc-cta .eyebrow { color: var(--accent-soft); opacity: .8; }
.svc-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff; margin: .75rem 0 1rem;
}
.svc-cta p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.svc-cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── SERVICE NAV (breadcrumb) ──────────────────────────────── */
.svc-breadcrumb {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: .625rem 0;
}
.svc-breadcrumb-inner {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--muted);
}
.svc-breadcrumb-inner a { color: var(--muted); }
.svc-breadcrumb-inner a:hover { color: var(--primary); }
.svc-breadcrumb-inner svg { width: 12px; height: 12px; opacity: .5; }

/* ── SOLUTIONS OVERVIEW PAGE ───────────────────────────────── */
.solutions-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.solutions-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: inherit; }
.solutions-card-img { aspect-ratio: 16/7; position: relative; background: var(--primary); }
.solutions-card-body { padding: 1.75rem; flex: 1; }
.solutions-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft); border: 1.5px solid rgba(95,169,201,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.solutions-card-icon svg { width: 26px; height: 26px; color: var(--primary); }
.solutions-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.solutions-card p   { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.solutions-card-footer {
  padding: 1.125rem 1.75rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.solutions-card-footer span { font-size: .875rem; font-weight: 700; color: var(--accent); }
.solutions-card-footer svg { width: 16px; height: 16px; color: var(--accent); transition: transform .15s; }
.solutions-card:hover .solutions-card-footer svg { transform: translateX(4px); }

@media (min-width: 820px) {
  .svc-hero-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 819px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero { padding: 3.5rem 0 2.5rem; }
}
