/* =========================================================
   Sumrise Accounting — styles
   ========================================================= */

:root {
  --teal-900: #0a3b37;
  --teal-800: #0e4f4a;
  --teal-600: #137a6f;
  --teal-100: #dcebe6;
  --apricot: #f2a65a;
  --apricot-600: #e08a36;
  --cream: #f7f4ee;
  --sand: #efe8dc;
  --white: #ffffff;
  --ink: #16292b;
  --muted: #5a6b6c;
  --line: rgba(22, 41, 43, 0.1);

  --radius-lg: 28px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(10, 59, 55, 0.06);
  --shadow: 0 18px 50px -18px rgba(10, 59, 55, 0.28);
  --shadow-lg: 0 30px 80px -24px rgba(10, 59, 55, 0.4);

  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --container: 1200px;
  --header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Type helpers ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-600);
}
h2 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--apricot);
}
.hero .eyebrow::before { display: none; }
.eyebrow-light { color: var(--apricot); }

.lead { font-size: 1.2rem; color: var(--muted); max-width: 34rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn span { transition: transform 0.2s ease; }
.btn:hover span { transform: translateX(3px); }

.btn-primary {
  background: var(--teal-800);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(14, 79, 74, 0.7);
}
.btn-primary:hover { background: var(--teal-900); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { border-color: var(--teal-800); }

.btn-accent { background: var(--apricot); color: var(--teal-900); }
.btn-accent:hover { background: #f6b877; }

.btn-whatsapp { background: #25d366; color: #06301a; margin-top: 0.5rem; }
.btn-whatsapp:hover { background: #3be07a; }

.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}

/* ---------- Icons ---------- */
svg { flex-shrink: 0; }
.icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal-100);
  color: var(--teal-800);
}
.icon svg,
.hero-points svg,
.float-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm { width: 44px; height: 44px; border-radius: 13px; }
.icon-sm svg { width: 22px; height: 22px; }
.icon-light { background: rgba(247, 244, 238, 0.1); color: var(--apricot); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.brand-tag {
  margin-top: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 0.25rem; margin-left: auto; }
.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav a:hover { color: var(--ink); background: rgba(14, 79, 74, 0.07); }
.nav .nav-cta { display: none; }

/* Mobile menu: a visually hidden checkbox (still keyboard focusable) drives the burger. */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border-radius: 12px;
  background: rgba(14, 79, 74, 0.08);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle:checked + .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible + .nav-burger { outline: 3px solid var(--apricot); outline-offset: 2px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(40rem 30rem at 95% 10%, rgba(242, 166, 90, 0.22), transparent 70%),
    radial-gradient(38rem 30rem at -10% 90%, rgba(19, 122, 111, 0.14), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero h1 {
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4.6rem);
  margin-bottom: 1.4rem;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-600);
}
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal-600);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(3); opacity: 0; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-block: 2rem 2.2rem; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-points li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-points svg { width: 18px; height: 18px; stroke-width: 2.6; color: var(--teal-600); }

.hero-visual { position: relative; }
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.2;
  background: var(--teal-100);
  transform: rotate(1.2deg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.98rem; }
.float-card span { color: var(--muted); font-size: 0.82rem; }

.card-a { left: -28px; bottom: 12%; }
.float-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--cream);
}
.float-icon svg { width: 20px; height: 20px; stroke-width: 2.6; }

.card-b {
  right: -18px;
  top: 9%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 190px;
  animation-delay: -3s;
}
.float-label {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-b strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-800); }
.meter {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 0.3rem;
  border-radius: 6px;
  background: var(--teal-100);
  overflow: hidden;
}
.meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--apricot));
  transform-origin: left;
  animation: fill 2.2s cubic-bezier(.2, .8, .2, 1) both 0.4s;
}
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   Marquee strip
   ========================================================= */
.strip {
  overflow: hidden;
  padding-block: 1.1rem;
  background: var(--teal-800);
  color: var(--cream);
}
.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.strip-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  white-space: nowrap;
}
.strip-track span::after {
  content: "✦";
  margin-inline: 2rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--apricot);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Sections
   ========================================================= */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sand { background: var(--sand); }
.section-dark {
  background:
    radial-gradient(36rem 26rem at 100% 0%, rgba(242, 166, 90, 0.16), transparent 70%),
    var(--teal-900);
  color: var(--cream);
}
.section-dark h2 em { color: var(--apricot); }
.section-dark p { color: rgba(247, 244, 238, 0.78); }

.section-head {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head > p:last-child { color: var(--muted); font-size: 1.1rem; }
.section-head-left { margin: 0; text-align: left; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--teal-600), var(--apricot));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .icon { background: var(--teal-800); color: var(--cream); }
.service-card .icon { margin-bottom: 1.25rem; transition: background-color 0.3s, color 0.3s; }
.service-card h3 { margin-bottom: 0.55rem; }
.service-card p { font-size: 0.95rem; color: var(--muted); flex-grow: 1; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}
.tags li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-800);
}

/* ---------- We come to you ---------- */
.visit-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(30rem 20rem at 100% 0%, rgba(242, 166, 90, 0.22), transparent 70%),
    var(--teal-900);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
}
.visit-pin {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background: var(--apricot);
  color: var(--teal-900);
}
.visit-pin svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visit-copy h2 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); margin-bottom: 0.8rem; }
.visit-copy h2 em { color: var(--apricot); }
.visit-copy p:last-child { margin: 0; color: rgba(247, 244, 238, 0.8); }
.visit-side { display: grid; justify-items: start; gap: 1.3rem; }
.visit-list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.visit-list li { position: relative; padding-left: 1.9rem; font-weight: 600; white-space: nowrap; }
.visit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3b37' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat,
    var(--apricot);
}

@media (max-width: 1080px) {
  .visit-card { grid-template-columns: auto minmax(0, 1fr); }
  .visit-side { grid-column: 2; }
}

@media (max-width: 600px) {
  .visit-card { grid-template-columns: 1fr; }
  .visit-side { grid-column: auto; justify-items: stretch; }
  .visit-pin { width: 64px; height: 64px; border-radius: 20px; }
  .visit-pin svg { width: 30px; height: 30px; }
}

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.split-reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
}
.section-dark .split-media img { background: var(--teal-800); }

.media-badge {
  position: absolute;
  right: -16px;
  bottom: -22px;
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  background: var(--apricot);
  color: var(--teal-900);
  box-shadow: var(--shadow);
}
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.media-badge span { font-size: 0.85rem; font-weight: 600; }

.checklist {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 2.2rem;
  padding: 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 2.2rem;
  color: rgba(247, 244, 238, 0.92);
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3b37' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat,
    var(--apricot);
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 1.8rem;
  margin-top: 2rem;
}
.benefit { display: flex; gap: 1rem; align-items: flex-start; }
.benefit h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.benefit p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.05rem;
  right: -1.25rem;
  width: 1.25rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-600) 0 4px, transparent 4px 8px);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.step:last-child .step-num { background: var(--apricot); color: var(--teal-900); }
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- Who we help ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.who-feature {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
}
.who-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-feature figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 4rem 1.8rem 1.6rem;
  background: linear-gradient(transparent, rgba(10, 59, 55, 0.92));
  color: var(--cream);
}
.who-feature figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}
.who-feature figcaption span { font-size: 0.95rem; opacity: 0.85; }

.who-list { display: grid; gap: 1rem; }
.who-item {
  padding: 1.4rem 1.5rem 1.4rem 1.7rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--apricot);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.who-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.who-item h3 { margin-bottom: 0.3rem; }
.who-item p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- About ---------- */
#about .split-copy > p:not(.eyebrow):not(.signature) { color: var(--muted); }
.signature {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--teal-800);
  line-height: 1.1;
}
.signature span {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq-wrap .section-head a { color: var(--teal-600); font-weight: 600; }
.faq-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  margin-top: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faq { display: grid; gap: 0.8rem; }
.faq details {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  font-size: 1.2rem;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.faq details[open] summary::after {
  content: "–";
  background: var(--teal-800);
  color: var(--cream);
}
.faq details p { padding: 0 1.5rem 1.4rem; margin: 0; color: var(--muted); }

/* ---------- Quote request ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}
.quote-points {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.quote-points li {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem 1.3rem 1.2rem 3.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.quote-points li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.25rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f4ee' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 58% no-repeat,
    var(--teal-600);
}
.quote-points strong { font-size: 1rem; }
.quote-points span { font-size: 0.93rem; color: var(--muted); }

.quote-form {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-step {
  display: grid;
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.quote-step + .quote-step { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.quote-step legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.quote-step legend span {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.quote-form .field input,
.quote-form .field select,
.quote-form .field textarea { background: var(--cream); }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.93rem;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.chip span::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid rgba(22, 41, 43, 0.3);
  border-radius: 50%;
  transition: background-color 0.2s, border-color 0.2s;
}
.chip:hover span { border-color: var(--teal-600); }
.chip input:checked + span { border-color: var(--teal-800); background: var(--teal-800); color: var(--cream); }
.chip input:checked + span::before {
  border-color: var(--apricot);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3b37' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat,
    var(--apricot);
}
.chip input:focus-visible + span { outline: 3px solid var(--apricot); outline-offset: 2px; }

.quote-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.quote-submit .form-note { text-align: left; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-points { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .quote-points { grid-template-columns: 1fr; }
  .quote-submit .btn { width: 100%; }
}

/* ---------- Contact ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 36px;
  background:
    radial-gradient(30rem 22rem at 0% 100%, rgba(242, 166, 90, 0.18), transparent 70%),
    var(--teal-900);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  max-width: calc(var(--container) - 48px);
}
.contact-info h2 em { color: var(--apricot); }
.contact-info > p { color: rgba(247, 244, 238, 0.78); }

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-list div span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.6);
}
.contact-list a,
.contact-list strong { font-weight: 600; font-size: 1.05rem; text-decoration: none; }
.contact-list a:hover { color: var(--apricot); }
.contact-list strong { display: block; }

.contact-form {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field span { font-size: 0.85rem; font-weight: 600; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(19, 122, 111, 0.15);
}
.form-note { margin: 0; font-size: 0.85rem; color: var(--muted); text-align: center; }
.hp { display: none; }

/* ---------- Thank-you page ---------- */
.thanks {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-block: 4rem;
  background:
    radial-gradient(40rem 30rem at 95% 10%, rgba(242, 166, 90, 0.22), transparent 70%),
    radial-gradient(38rem 30rem at -10% 90%, rgba(19, 122, 111, 0.14), transparent 70%);
}
.thanks-card {
  max-width: 560px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.thanks-card .float-icon { width: 64px; height: 64px; margin: 0 auto 1.4rem; }
.thanks-card .float-icon svg { width: 30px; height: 30px; }
.thanks-card h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); margin-bottom: 1rem; }
.thanks-card p { color: var(--muted); }
.thanks-card .hero-actions { justify-content: center; margin-block: 1.8rem 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding-block: 4rem 2rem;
  background: var(--ink);
  color: rgba(247, 244, 238, 0.7);
}
.site-footer .brand-name { color: var(--cream); }
.site-footer .brand-tag { color: rgba(247, 244, 238, 0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer-brand p { margin-top: 1.1rem; max-width: 20rem; font-size: 0.95rem; }
.card-download {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
  padding: 0.6rem 1.05rem;
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}
.card-download svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--apricot);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-download:hover { background: rgba(247, 244, 238, 0.08); border-color: var(--apricot); }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; }
.footer-col h4 {
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
}
.footer-col a,
.footer-bottom a { text-decoration: none; transition: color 0.2s; }
.footer-col a:hover,
.footer-bottom a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  font-size: 0.88rem;
}

/* ---------- Clickable service cards ---------- */
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-600);
}
.card-link span { transition: transform 0.25s ease; }
.service-card:hover .card-link span { transform: translateX(4px); }
.service-card:has(a:focus-visible) { outline: 3px solid var(--apricot); outline-offset: 3px; }
.service-card h3 a:focus-visible { outline: none; }

/* =========================================================
   Service detail pages
   ========================================================= */
.page-hero {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) 0;
  background:
    radial-gradient(40rem 30rem at 95% 0%, rgba(242, 166, 90, 0.2), transparent 70%),
    radial-gradient(38rem 30rem at -10% 100%, rgba(19, 122, 111, 0.12), transparent 70%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.page-hero h1 {
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.7rem);
  margin-bottom: 1.2rem;
}
.page-hero .hero-actions { margin-block: 1.8rem 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--teal-600); font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
}

.facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 -2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.facts div { padding: 1.3rem 1.6rem; }
.facts div + div { border-left: 1px solid var(--line); }
.facts dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.facts dd { margin: 0.2rem 0 0; font-size: 1.02rem; font-weight: 600; }

.page-body { padding-top: clamp(6rem, 10vw, 8.5rem); }
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.page-main h2 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); }
.page-block { margin-top: clamp(3rem, 6vw, 4.5rem); }
.muted { color: var(--muted); }

.explain {
  display: flex;
  gap: 1.3rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-left: 5px solid var(--teal-600);
  border-radius: var(--radius-lg);
  background: var(--teal-100);
}
.explain .icon { background: var(--teal-800); color: var(--apricot); }
.page-main .explain h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.explain p { margin: 0; font-size: 1.08rem; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.included {
  position: relative;
  padding: 1.3rem 1.4rem 1.3rem 3.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.included::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 1.35rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f4ee' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 58% no-repeat,
    var(--teal-600);
}
.included h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.included p { margin: 0; font-size: 0.93rem; color: var(--muted); }

.signs {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.signs li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 500;
}
.signs li::before {
  content: "→";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(242, 166, 90, 0.2);
  color: var(--apricot-600);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.mini-steps {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.mini-steps li {
  position: relative;
  padding: 0 0 1.8rem 4.2rem;
  counter-increment: step;
}
.mini-steps li:last-child { padding-bottom: 0; }
.mini-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
}
.mini-steps li:last-child::before { background: var(--apricot); color: var(--teal-900); }
.mini-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.4rem - 1px);
  top: 3.2rem;
  bottom: 0.4rem;
  width: 2px;
  background: repeating-linear-gradient(var(--teal-600) 0 4px, transparent 4px 8px);
}
.mini-steps h3 { padding-top: 0.55rem; margin-bottom: 0.3rem; }
.mini-steps p { margin: 0; font-size: 0.95rem; color: var(--muted); }

.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 1.6rem;
  border: 1px dashed rgba(19, 122, 111, 0.35);
  border-radius: var(--radius);
  background: var(--white);
  list-style: none;
}
.docs li { position: relative; padding-left: 2rem; font-weight: 500; }
.docs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--teal-600);
  border-radius: 5px;
}

.page-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: grid;
  gap: 1.25rem;
}
.aside-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.aside-card h3 { margin-bottom: 0.9rem; }
.aside-nav { display: grid; gap: 0.15rem; }
.aside-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.aside-nav a::after { content: "→"; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.aside-nav a:hover { background: var(--cream); color: var(--ink); }
.aside-nav a:hover::after { opacity: 1; transform: translateX(2px); }
.aside-nav a[aria-current="page"] { background: var(--teal-800); color: var(--cream); }

.aside-cta {
  border-color: transparent;
  background:
    radial-gradient(18rem 14rem at 100% 0%, rgba(242, 166, 90, 0.2), transparent 70%),
    var(--teal-900);
  color: var(--cream);
}
.aside-cta p { font-size: 0.95rem; color: rgba(247, 244, 238, 0.75); }
.aside-contact {
  display: grid;
  gap: 0.35rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: rgba(247, 244, 238, 0.8);
}
.aside-contact a { text-decoration: none; }
.aside-contact a:hover { color: var(--apricot); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1080px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-aside { position: static; grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { max-width: 560px; width: 100%; margin-inline: auto; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .facts { grid-template-columns: 1fr; }
  .facts div { padding: 1rem 1.3rem; }
  .facts div + div { border-left: 0; border-top: 1px solid var(--line); }
  .included-grid,
  .docs,
  .page-aside { grid-template-columns: 1fr; }
  .explain { flex-direction: column; }
}

/* =========================================================
   Entrance animation (CSS only)
   ========================================================= */
.hero-copy > * { animation: rise 0.8s cubic-bezier(.2, .8, .2, 1) both; }
.hero-copy > :nth-child(2) { animation-delay: 0.08s; }
.hero-copy > :nth-child(3) { animation-delay: 0.16s; }
.hero-copy > :nth-child(4) { animation-delay: 0.24s; }
.hero-copy > :nth-child(5) { animation-delay: 0.32s; }
.hero-visual { animation: rise 1s cubic-bezier(.2, .8, .2, 1) both 0.2s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .header-inner { gap: 0.75rem; }
  .header-cta { margin-left: auto; }
  .nav-burger { display: flex; order: 5; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.5rem 24px 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 24px 40px -20px rgba(10, 59, 55, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav-toggle:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
  }
  .nav a {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
  }
  .nav a:hover { background: transparent; color: var(--teal-600); }
  .nav a.nav-cta {
    display: flex;
    margin-top: 1.2rem;
    padding: 0.95rem 1.6rem;
    border-bottom: 0;
    border-radius: 999px;
    color: var(--cream);
  }
  .nav a.nav-cta:hover { background: var(--teal-900); color: var(--cream); }

  .hero-grid,
  .split,
  .who-grid,
  .faq-wrap,
  .contact-card { grid-template-columns: 1fr; }

  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-img { aspect-ratio: 4 / 3; }
  .card-a { left: -8px; }
  .card-b { right: -8px; }

  .split-reverse .split-media { order: 0; }
  .media-badge { right: 16px; }
  .faq-wrap .section-head { position: static; }
  .who-feature { min-height: 340px; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .container { padding-inline: 18px; }
  .nav { padding-inline: 18px; }
  .header-cta { display: none; }
  .nav-burger { margin-left: auto; }
  .brand-tag { display: none; }
  .brand-name { font-size: 1.25rem; }
  .brand-mark { width: 34px; height: 34px; }

  .hero-actions .btn { width: 100%; }
  .float-card { font-size: 0.8rem; padding: 0.7rem 0.9rem; }
  .card-a { left: 8px; bottom: -18px; }
  .card-b { right: 8px; top: -18px; min-width: 160px; }
  .card-b strong { font-size: 1.2rem; }

  .services-grid,
  .steps,
  .benefits,
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card { border-radius: 26px; padding: 1.5rem; }
  .strip-track span { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
