/* ==========================================================================
   BrandName — stylesheet
   Light theme, green accent, dense "bento" layout on desktop that stacks
   down to a single column on phones. No frameworks, no SVG anywhere.
   Layout breakpoint: 1200px (bento) · 900 · 700 · 560 · 420
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --green:        #22C55E;
  --green-600:    #16A34A;
  --green-700:    #15803D;
  --green-soft:   #F0FDF4;
  --green-line:   #BBF7D0;

  /* Neutrals */
  --dark:         #0F1115;   /* hero, services panel, footer */
  --dark-2:       #1B1F26;   /* "coming soon" cards */
  --ink:          #111827;   /* headings */
  --body:         #6B7280;   /* body copy — 4.8:1 on white */
  --muted:        #9CA3AF;
  --line:         #E5E7EB;
  --line-soft:    #F1F3F5;
  --bg:           #FFFFFF;
  --bg-soft:      #F9FAFB;
  --danger:       #DC2626;

  /* Type */
  --f-head: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --f-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-hand: 'Caveat', ui-serif, cursive;

  /* Mobile-first sizes; tightened for the dense desktop layout further down */
  --fs-xs:    12px;
  --fs-sm:    13px;
  --fs:       15px;
  --fs-h3:    16px;
  --fs-h2:    24px;
  --fs-price: 30px;
  --fs-hero:  34px;

  /* Shape + motion */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;
  --r-pill: 999px;
  --tr: 160ms cubic-bezier(0.4, 0, 0.2, 1);

  --pad:   20px;   /* side padding inside a section */
  --pad-y: 32px;   /* space above and below a section */
  --wrap:  1200px; /* the column everything is centred in */
}

/* Sections stack one under another on a big screen, so the type no longer
   has to squeeze into narrow bento columns — it goes back to a comfortable
   reading size. */
@media (min-width: 900px) {
  :root {
    --fs-xs:    12px;
    --fs-sm:    13.5px;
    --fs:       15px;
    --fs-h3:    17px;
    --fs-h2:    30px;
    --fs-price: 34px;
    --fs-hero:  50px;
    --pad:      32px;
    --pad-y:    56px;
  }
}
@media (min-width: 1200px) {
  :root { --pad-y: 68px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--f-body);
  font-size: var(--fs);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }

[hidden] { display: none !important; }

.txt-green { color: var(--green); }

:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--green-600);
  color: #fff;
  border-radius: var(--r-sm);
  transition: top var(--tr);
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. ROWS / BLOCKS — the bento skeleton
   -------------------------------------------------------------------------- */
.row { display: grid; }
.row + .row { border-top: 1px solid var(--line); }

.block {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--pad-y) var(--pad);
  min-width: 0;
}

/* Sections always stack, so they are separated by a rule above each one
   rather than by vertical rules between columns. */
.block + .block { border-top: 1px solid var(--line); }

.h-sec {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 4px;
}
.p-sec {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-bottom: 12px;
}

.block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background var(--tr), border-color var(--tr),
              color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn:active { transform: translateY(1px); }

.btn--green {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
}
.btn--green:hover { background: var(--green-700); }

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); }

.btn--lg { padding: 11px 20px; font-size: var(--fs); }
.btn--block { display: flex; width: 100%; }

/* White disc behind the WhatsApp glyph, as in the reference */
.btn__ico {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--green-600);
  font-size: 12px;
  flex: none;
}

/* --------------------------------------------------------------------------
   5. ROW 1 — HERO + SERVICES
   -------------------------------------------------------------------------- */
.row--top { background: var(--dark); }



/* ---- Hero ---- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  min-height: 300px;
}
@media (min-width: 900px) { .hero { min-height: 560px; } }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* Dark wash so the copy stays readable over any photo */
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(10, 12, 16, 0.97) 0%,
    rgba(10, 12, 16, 0.92) 30%,
    rgba(10, 12, 16, 0.55) 62%,
    rgba(10, 12, 16, 0.25) 100%);
}
/* If a photo fails to load we still have a solid dark ground */
img.is-broken { display: none; }

.nav {
  position: relative;
  /* Same centred column as the rest of the page, so the logo lines up with
     the hero copy underneath it instead of hugging the window edge. */
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  /* Above the drawer's click-catching scrim (190). The drawer lives inside
     this element, and `position: relative` + z-index makes a stacking context
     here — so anything lower than the scrim would trap the drawer beneath it
     and its links would not be clickable. Stays under the modal (250) and
     the cart (260). */
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
}

/* The wordmark is a transparent PNG, so it sits on any dark surface. Height
   is fixed and the width follows, keeping the logo's proportions. */
.logo__img {
  height: 30px;
  width: auto;
  transition: opacity var(--tr);
}
.logo:hover .logo__img { opacity: 0.85; }
.logo__img--foot { height: 26px; }

@media (min-width: 1200px) { .logo__img { height: 27px; } }

.foot__tagline {
  margin-top: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.nav__links { display: none; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { display: none; }

.nav__toggle { display: grid; gap: 4px; padding: 8px; }
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--tr), opacity var(--tr);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 899px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 200;
    width: min(280px, 82vw);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 64px 20px 24px;
    background: var(--dark);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 320ms;
    overflow-y: auto;
  }
  .nav__links.is-open {
    transform: none;
    visibility: visible;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
  }
  .nav__links a {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__links a:hover { color: #fff; }
  .nav__drawer-cta { margin-top: 16px; }
}

/* Invisible click-catcher behind the drawer: tapping the page still closes
   the menu, but opening it must not tint the page. */
.nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: transparent;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: var(--fs-sm);
    font-weight: 500;
  }
  .nav__links a { color: rgba(255, 255, 255, 0.82); transition: color var(--tr); }
  .nav__links a:hover { color: var(--green); }
  .nav__drawer-cta { display: none; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 8px var(--pad) var(--pad-y);
}
/* The hero box is full width now, so the words are held back on their own */
.hero__title, .hero__sub { max-width: 18ch; }
.hero__sub { max-width: 46ch; }

@media (min-width: 900px) {
  .hero__inner {
    padding-block: 48px var(--pad-y);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 12px;
}

.hero__sub {
  font-size: var(--fs);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}
.br-desk { display: none; }
@media (min-width: 1200px) { .br-desk { display: inline; } }

.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

.trust { display: flex; flex-wrap: wrap; gap: 22px; }
.trust li { display: flex; align-items: center; gap: 9px; }
.trust__ico { color: var(--green); font-size: 16px; }
.trust span { display: flex; flex-direction: column; line-height: 1.25; }
.trust strong {
  font-family: var(--f-head);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: #fff;
}
.trust span { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.65); }

/* Hand-written note over the photo */
.scribble {
  display: none;
  position: absolute;
  top: 42%;
  right: 7%;
  z-index: 2;
  font-family: var(--f-hand);
  font-size: 21px;
  line-height: 1.15;
  color: #fff;
  transform: rotate(-6deg);
}
.scribble__arrow {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  color: var(--green);
  transform: rotate(-35deg) scaleX(-1);
}
@media (min-width: 1100px) { .scribble { display: block; } }

/* ---- Services ---- */
.services {
  position: relative;
  background: #fff;
  color: var(--ink);
}
.services__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--pad-y) var(--pad);
}

.services__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.services__lede {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-bottom: 22px;
}

.svc-grid { display: grid; gap: 12px; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  padding: 24px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.svc:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -18px rgba(16, 24, 40, 0.3),
              0 0 0 1px rgba(34, 197, 94, 0.18);
}
.svc__ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  color: var(--green-700);
  font-size: 21px;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.svc:hover .svc__ico {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.svc h3 { font-size: var(--fs-h3); color: var(--ink); margin-bottom: 8px; }
.svc p { font-size: var(--fs-sm); color: var(--body); margin-bottom: 16px; }
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green-700);
  padding: 0;
  transition: gap var(--tr);
}
.svc__link:hover { gap: 10px; }

/* --------------------------------------------------------------------------
   6. ROW 2 — PACKAGES + BUILDER
   -------------------------------------------------------------------------- */


.pkg-grid { display: grid; gap: 10px; margin-bottom: 12px; }
@media (min-width: 560px)  { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pkg-grid { grid-template-columns: repeat(4, 1fr); align-items: start; } }

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.pkg:hover {
  border-color: var(--green-line);
  box-shadow: 0 6px 20px -10px rgba(16, 24, 40, 0.25);
  transform: translateY(-2px);
}

.pkg--featured {
  border: 2px solid var(--green);
  box-shadow: 0 8px 26px -14px rgba(34, 197, 94, 0.6);
}
@media (min-width: 1200px) {
  /* Room for the badge to sit on the top edge */
  .pkg--featured { margin-top: -10px; }
}

.pkg__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pkg--featured .pkg__name { margin-top: 6px; }

.pkg__name { font-size: var(--fs-h3); font-weight: 600; margin-bottom: 2px; }
.pkg__price {
  font-family: var(--f-head);
  font-size: var(--fs-price);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pkg__list { display: grid; gap: 3px; font-size: var(--fs-sm); flex: 1; margin-bottom: 10px; }
.pkg__list li { display: grid; grid-template-columns: 13px 1fr; gap: 6px; align-items: start; line-height: 1.35; }
.pkg__list i { color: var(--green); font-size: 11px; margin-top: 4px; }

/* ---- Maintenance add-on ---- */
.addon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.addon__ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  flex: none;
}
.addon__copy { flex: 1 1 160px; }
.addon__copy h3 { font-size: var(--fs-h3); margin-bottom: 1px; }
.addon__copy p { font-size: var(--fs-xs); }

.addon__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.addon__opt {
  padding: 7px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.addon__opt:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-700); }

.addon__list { display: grid; gap: 3px; font-size: var(--fs-xs); }
.addon__list li { display: flex; align-items: center; gap: 6px; }
.addon__list i { color: var(--green); font-size: 10px; }

/* ---- Builder ---- */
.bld { display: grid; gap: 12px; align-items: start; }
@media (min-width: 1000px) { .bld { grid-template-columns: 1.3fr 1fr; } }

.bld__form {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
}

.opt-list { display: grid; gap: 2px; margin-bottom: 12px; }
.opt__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--tr);
}
.opt__row:hover { background: var(--bg-soft); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1.5px solid #CBD0D8;
  background: #fff;
  color: transparent;
  font-size: 9px;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.opt input:checked ~ .opt__box {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.opt input:focus-visible ~ .opt__box { outline: 2px solid var(--green-600); outline-offset: 2px; }
.opt__label { font-size: var(--fs-sm); color: var(--ink); font-weight: 500; }
.opt__note { color: var(--muted); font-weight: 400; }
.opt__price { font-size: var(--fs-sm); color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

.bld__fields { display: grid; gap: 12px; }
@media (min-width: 560px) { .bld__fields { grid-template-columns: 1fr 1fr; } }

.fld { min-width: 0; transition: opacity var(--tr); }
/* Set by JS when the related service is not ticked — the labels already say
   "(if Website selected)", this just makes it visible at a glance. */
.fld.is-dim { opacity: 0.45; }
.fld__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.fld__hint { color: var(--muted); font-weight: 400; font-size: var(--fs-xs); }

/* Select with a CSS-drawn chevron (no SVG) */
.sel { position: relative; display: block; }
.sel::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}
.sel select { padding-right: 30px; }

.input, .sel select {
  width: 100%;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: var(--fs-sm);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.sel select { appearance: none; }
.input:focus, .sel select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
}
.input::placeholder { color: var(--muted); }
textarea.input { resize: vertical; min-height: 44px; }

/* Stepper */
.step {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
}
.step__btn {
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 11px;
  transition: background var(--tr), color var(--tr);
}
.step__btn:hover:not(:disabled) { background: var(--green); color: #fff; }
.step__btn:disabled { color: var(--muted); cursor: not-allowed; }
.step__val {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  border-inline: 1px solid var(--line);
  height: 30px;
  line-height: 30px;
  font-variant-numeric: tabular-nums;
}

/* Radios */
.radios { display: flex; flex-wrap: wrap; gap: 10px; }
.rad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  cursor: pointer;
  color: var(--body);
}
.rad input { position: absolute; opacity: 0; width: 0; height: 0; }
.rad__dot {
  width: 14px;
  height: 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.rad input:checked ~ .rad__dot {
  border-color: var(--green);
  box-shadow: inset 0 0 0 3px var(--green);
}
.rad:has(input:checked) { color: var(--ink); font-weight: 500; }
.rad input:focus-visible ~ .rad__dot { outline: 2px solid var(--green-600); outline-offset: 2px; }

/* ---- Estimate card ---- */
.est {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-soft);
}
.est__title { font-size: var(--fs-h3); font-weight: 600; margin-bottom: 10px; }

.est__lines {
  display: grid;
  gap: 5px;
  font-size: var(--fs-sm);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.est__lines li { display: flex; justify-content: space-between; gap: 12px; }
.est__lines li span:last-child {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.est__empty span { color: var(--muted); font-style: italic; }

.est__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-block: 10px 12px;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--ink);
}
.est__amount { display: inline-flex; align-items: baseline; gap: 7px; }
.est__amount s { font-size: var(--fs-sm); font-weight: 400; color: var(--muted); }
.est__amount strong {
  font-family: var(--f-head);
  font-size: var(--fs-price);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.est__fine {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: center;
  margin-top: 7px;
}

.est__tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.4;
}
.est__tip i { margin-top: 2px; }

/* --------------------------------------------------------------------------
   7. ROW 3 — WORK + PROCESS + WHY US
   -------------------------------------------------------------------------- */


.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 5px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--body);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.chip:hover { border-color: var(--green-line); color: var(--ink); }
.chip.is-active { background: var(--green); border-color: var(--green); color: #fff; font-weight: 600; }

.work-grid { display: grid; gap: 10px; margin-top: 10px; }
@media (min-width: 560px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .work-grid { grid-template-columns: repeat(4, 1fr); } }

.work {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.work:hover {
  border-color: var(--green-line);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -12px rgba(16, 24, 40, 0.3);
}

.work__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Sits behind the screenshot; only ever seen if the screenshot fails */
.work__thumb-alt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  font-family: var(--f-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--body);
  background:
    repeating-linear-gradient(-45deg, rgba(17, 24, 39, 0.03) 0 8px, transparent 8px 16px),
    var(--bg-soft);
}
.work__thumb img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.work__body { padding: 9px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.work__body h3 { font-size: var(--fs-sm); font-weight: 600; }
.work__body p { font-size: var(--fs-xs); color: var(--body); }
.work__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 5px;
}
.work__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: gap var(--tr), color var(--tr);
}
.work__link:hover { gap: 9px; color: var(--green-700); }

/* "Coming soon" cards are dark, as in the reference */
.work--soon {
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  background: var(--dark-2);
  border-color: var(--dark-2);
  text-align: center;
}
.work--soon:hover { border-color: rgba(34, 197, 94, 0.5); }
.work__ico { font-size: 18px; color: rgba(255, 255, 255, 0.45); margin-bottom: 2px; }
.work--soon h3 { font-size: var(--fs-sm); color: #fff; font-weight: 600; }
.work--soon p { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.55); }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.tag--dark {
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.work.is-hidden { display: none; }
.work__empty { margin-top: 14px; text-align: center; font-size: var(--fs-sm); }

/* ---- Process ---- */
.proc { display: grid; gap: 16px; margin-top: 4px; }
.proc__step { position: relative; display: flex; gap: 12px; align-items: flex-start; }
.proc__num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-family: var(--f-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  flex: none;
  z-index: 1;
}
.proc__step p { font-size: var(--fs-sm); }

/* Vertical connector while stacked */
.proc__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 26px;
  bottom: -16px;
  width: 2px;
  background: var(--green-line);
}

@media (min-width: 1200px) {
  /* Horizontal rail, numbers on the line, labels underneath */
  .proc {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 10px;
  }
  .proc__step { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .proc__step p { font-size: var(--fs-xs); }
  .proc__step:not(:last-child)::before {
    left: 50%;
    right: -50%;
    top: 12px;
    bottom: auto;
    width: auto;
    height: 2px;
  }
}

/* ---- Why us ---- */
.why-grid { display: grid; gap: 13px; margin-top: 4px; }
@media (min-width: 420px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }

.why { display: flex; gap: 10px; align-items: flex-start; }
.why__ico { font-size: 19px; color: var(--green); margin-top: 2px; flex: none; }
.why h3 { font-size: var(--fs-sm); font-weight: 600; margin-bottom: 3px; }
.why p { font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   8. ROW 4 — FAQ + CONTACT + FORM + SIGN-OFF
   -------------------------------------------------------------------------- */


.faq-cols { display: grid; gap: 6px; }
@media (min-width: 1200px) { .faq-cols { grid-template-columns: 1fr 1fr; align-items: start; } }
.faq-col { display: grid; gap: 6px; align-content: start; }

.acc {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--tr);
}
.acc.is-open { border-color: var(--green-line); }

.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 7px 11px;
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  transition: color var(--tr);
}
.acc__btn:hover { color: var(--green-700); }
.acc__btn i { font-size: 10px; color: var(--muted); transition: transform var(--tr); }
.acc__btn[aria-expanded="true"] i { transform: rotate(180deg); color: var(--green); }

/* 0fr -> 1fr animates height without measuring in JS */
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.acc__panel.is-open { grid-template-rows: 1fr; }
.acc__in { overflow: hidden; }
.acc__in p { padding: 0 11px 10px; font-size: var(--fs-sm); }

/* ---- Reach ---- */
.reach { display: grid; gap: 10px; }
/* Three contact routes read better spread across a full-width section */
@media (min-width: 700px) { .reach { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.reach li { display: flex; gap: 11px; align-items: flex-start; }
.reach__ico {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  flex: none;
}
.reach__ico--alt { background: var(--green-soft); color: var(--green-700); border: 1px solid var(--green-line); }
.reach__body { display: flex; flex-direction: column; line-height: 1.4; min-width: 0; }
.reach__body strong { font-size: var(--fs-xs); color: var(--body); font-weight: 500; }
.reach__body a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
  transition: color var(--tr);
}
.reach__body a:hover { color: var(--green-700); }
.reach__body em { font-size: var(--fs-xs); color: var(--muted); font-style: normal; }

/* ---- Contact form ---- */
/* A form stretched to 1200px is unusable, so it keeps its own width */
.cform { display: grid; gap: 10px; max-width: 760px; }
.cform__grid { display: grid; gap: 8px; }
@media (min-width: 480px) { .cform__grid { grid-template-columns: 1fr 1fr; } }
.cf-row { display: grid; min-width: 0; }
.cf-row--wide { grid-column: 1 / -1; }
.cf-row label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.req { color: var(--danger); }
.opt-lbl { color: var(--muted); font-weight: 400; }
.cf-err { margin-top: 5px; font-size: var(--fs-xs); color: var(--danger); }
.input.is-invalid, .sel select.is-invalid { border-color: var(--danger); }

/* ---- Sign-off ---- */
.block--sign { display: none; }
@media (min-width: 900px) {
  .block--sign {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-top: 0;
    padding-top: 0;
  }
}
.sign {
  font-family: var(--f-hand);
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink);
  transform: rotate(-4deg);
}
.sign__arrow {
  font-size: 20px;
  color: var(--green);
  transform: rotate(-28deg) scaleX(-1);
  margin-left: 40px;
}

/* --------------------------------------------------------------------------
   9. FOOTER
   -------------------------------------------------------------------------- */
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  padding: 14px var(--pad);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
}
.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.foot__brand p { color: rgba(255, 255, 255, 0.6); }

.foot__links { display: flex; flex-wrap: wrap; gap: 16px; }
.foot__links a,
.foot__links button { color: inherit; font: inherit; transition: color var(--tr); }
.foot__links a:hover,
.foot__links button:hover { color: var(--green); }

.foot__social { display: flex; gap: 10px; }
.foot__social a, .foot__social button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.foot__social a:hover, .foot__social button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.foot__area { margin-left: auto; }
@media (max-width: 1199px) { .foot__area { margin-left: 0; } }

/* --------------------------------------------------------------------------
   10. MODAL
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 16px;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.55);
  backdrop-filter: blur(3px);
}

.modal__dialog {
  position: relative;
  width: min(420px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 22px 20px 18px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgba(16, 24, 40, 0.4);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  color: var(--body);
  transition: background var(--tr), color var(--tr);
}
.modal__close:hover { background: var(--bg-soft); color: var(--ink); }

.modal__title { font-size: var(--fs-h2); font-weight: 700; margin-bottom: 4px; }
.modal__desc { font-size: var(--fs-sm); margin-bottom: 16px; }

.modal__booking {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 11px 13px;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  color: var(--green-700);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.modal__picker { margin-bottom: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill span {
  display: inline-block;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: var(--fs-sm);
  color: var(--body);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.pill input:checked ~ span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
}
.pill input:focus-visible ~ span { outline: 2px solid var(--green-600); outline-offset: 2px; }

.modal .cf-row { margin-bottom: 16px; }

/* --------------------------------------------------------------------------
   11. MOTION PREFERENCES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   12. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .nav, .modal, .scribble, .hero__bg { display: none !important; }
  body { background: #fff; color: #000; }
  .row + .row { border-top: 1px solid #ccc; }
}

/* --------------------------------------------------------------------------
   13. CART + UPI CHECKOUT
   -------------------------------------------------------------------------- */

/* Cart button in the nav */
.nav__cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  transition: background var(--tr), border-color var(--tr);
}
.nav__cart:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--green); }

.nav__cart-count,
.cart-fab__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

/* The nav scrolls away with the hero, so the cart also gets a fixed button */
.cart-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  background: var(--green-600);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 26px -8px rgba(22, 163, 74, 0.7);
  transition: transform var(--tr), background var(--tr);
}
.cart-fab:hover { transform: scale(1.06); background: var(--green-700); }
.cart-fab__count { top: -2px; right: -2px; border: 2px solid #fff; height: 20px; line-height: 16px; }

/* ---- Drawer ---- */
.cart { position: fixed; inset: 0; z-index: 260; }
.cart[hidden] { display: none; }

/* Invisible click-catcher, like the menu's: tapping outside closes the cart
   without the page changing colour behind it. */
.cart__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 50px -20px rgba(16, 24, 40, 0.4);
  animation: cart-slide 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cart-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cart-slide { from { transform: translateX(100%); } to { transform: none; } }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.cart__head h2 { font-size: 17px; font-weight: 700; }
.cart__close {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  color: var(--body);
  transition: background var(--tr), color var(--tr);
}
.cart__close:hover { background: var(--bg-soft); color: var(--ink); }

.cart__screen { display: flex; flex-direction: column; min-height: 0; flex: 1; }
.cart__body { flex: 1; overflow-y: auto; padding: 16px; }

.cart__empty { font-size: var(--fs-sm); color: var(--muted); text-align: center; padding: 28px 0; }

.cart__items { display: grid; gap: 10px; }
.cart__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
}
.cart__item-name { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.cart__item-unit { font-size: var(--fs-xs); color: var(--muted); }
.cart__item-price {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.cart__item-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart__qty {
  display: inline-grid;
  grid-template-columns: 26px auto 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cart__qty button {
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--ink);
  transition: background var(--tr), color var(--tr);
}
.cart__qty button:hover:not(:disabled) { background: var(--green); color: #fff; }
.cart__qty button:disabled { color: var(--muted); cursor: not-allowed; }
.cart__qty span {
  min-width: 26px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  border-inline: 1px solid var(--line);
  line-height: 26px;
  font-variant-numeric: tabular-nums;
}
.cart__remove {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
  transition: color var(--tr);
}
.cart__remove:hover { color: var(--danger); }

.cart__tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.4;
}
.cart__tip button {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--green-700);
  text-decoration: underline;
}

/* ---- Checkout ---- */
.cart__foot {
  flex: none;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  max-height: 62vh;
  overflow-y: auto;
}

.cart__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: var(--fs-sm);
  margin-bottom: 12px;
}
.cart__line strong { font-size: var(--fs-h3); color: var(--ink); font-variant-numeric: tabular-nums; }
.cart__line--total {
  padding-top: 12px;
  margin-block: 12px;
  border-top: 1px solid var(--line);
}
.cart__line--total strong {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green-700);
}

/* Pay-now split */
.split { margin-bottom: 12px; }
.split legend {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.split__opt { display: block; cursor: pointer; }
.split__opt + .split__opt { margin-top: 7px; }
.split__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.split__box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 10px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color var(--tr), background var(--tr);
}
.split__box strong { font-size: var(--fs-sm); color: var(--ink); }
.split__box em {
  grid-row: 1 / 3;
  grid-column: 2;
  font-style: normal;
  font-family: var(--f-head);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.split__box small { font-size: var(--fs-xs); color: var(--muted); }
.split__opt input:checked ~ .split__box {
  border-color: var(--green);
  background: var(--green-soft);
}
.split__opt input:checked ~ .split__box em { color: var(--green-700); }
.split__opt input:focus-visible ~ .split__box { outline: 2px solid var(--green-600); outline-offset: 2px; }

.cart__fields { display: grid; gap: 8px; margin-bottom: 12px; }

/* UPI id for desktop */
.upi-manual { margin-top: 12px; }
.upi-manual__lead { font-size: var(--fs-xs); color: var(--body); margin-bottom: 6px; }
.upi-id {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px dashed var(--line);
  border-radius: var(--r-sm);
  background: #fff;
}
.upi-id code {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--fs-sm);
  color: var(--ink);
  word-break: break-all;
}
.upi-id__copy {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.upi-id__copy:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-700); }

/* Warning shown while the UPI id is still the placeholder */
.upi-warn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #991B1B;
  line-height: 1.4;
}

/* ---- Confirmation screen ---- */
.cart__done {
  padding: 24px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  overflow-y: auto;
}
.cart__done-ico { font-size: 40px; color: var(--green); margin-bottom: 12px; }
.cart__done h3 { font-size: 19px; font-weight: 700; margin-bottom: 14px; }

.cart__done-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: var(--r);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.cart__done-meta > div { display: flex; justify-content: space-between; gap: 12px; }
.cart__done-meta dt { font-size: var(--fs-sm); color: var(--body); }
.cart__done-meta dd {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.cart__done-note {
  font-size: var(--fs-sm);
  color: var(--body);
  margin-bottom: 16px;
  text-align: left;
  line-height: 1.5;
}

.btn--plain {
  margin-top: 8px;
  color: var(--body);
  font-weight: 500;
}
.btn--plain:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .cart__panel, .cart__backdrop { animation: none; }
}

/* --------------------------------------------------------------------------
   14. ORDER HISTORY
   -------------------------------------------------------------------------- */
.cart__head-actions { display: flex; align-items: center; gap: 6px; }

.cart__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.cart__tab:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-700); }
.cart__tab-count {
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.orders__body { flex: 1; overflow-y: auto; padding: 16px; }
.orders__empty { font-size: var(--fs-sm); color: var(--muted); text-align: center; padding: 28px 0; }

.orders__list { display: grid; gap: 10px; }
.order {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
}
.order__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}
.order__id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
}
.order__date { font-size: var(--fs-xs); color: var(--muted); }

.order__status {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 9px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
}
.order__status--sent { background: var(--green-soft); color: var(--green-700); border: 1px solid var(--green-line); }
.order__status--pending { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }

.order__items { display: grid; gap: 2px; margin-bottom: 8px; font-size: var(--fs-xs); color: var(--body); }

.order__totals {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-xs);
}
.order__totals div { display: flex; justify-content: space-between; gap: 10px; }
.order__totals strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.order__paid strong { color: var(--green-700); }

.order__resend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 11px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.order__resend:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-700); }

.orders__note {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--body);
  line-height: 1.5;
}

.orders__foot {
  flex: none;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

/* --------------------------------------------------------------------------
   15. QR PAYMENT SCREEN
   -------------------------------------------------------------------------- */
.pay { display: flex; flex-direction: column; min-height: 0; }
.pay__body { flex: 1; overflow-y: auto; padding: 18px 16px; text-align: center; }

.pay__lead { font-size: var(--fs-sm); color: var(--body); }
.pay__amount {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green-700);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.pay__split { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 16px; }

.pay__qr {
  display: grid;
  place-items: center;
  width: min(230px, 68vw);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  padding: 10px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
}
.pay__qr img { width: 100%; height: 100%; object-fit: contain; }

/* Shown until a real QR is configured — never a fake code to scan */
.pay__qr--empty {
  border: 1.5px dashed var(--line);
  background: var(--bg-soft);
  padding: 18px;
}
.pay__qr-missing { font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }
.pay__qr-missing strong { display: block; color: var(--ink); margin-bottom: 4px; }

.pay__or {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.pay .upi-id { margin-bottom: 12px; text-align: left; }

.btn--outline-dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}
.btn--outline-dark:hover { border-color: var(--green); background: var(--green-soft); color: var(--green-700); }

.pay__ref { font-size: var(--fs-xs); color: var(--muted); margin-top: 14px; }
.pay__ref strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink);
}

.pay__note {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  font-size: var(--fs-xs);
  color: #92400E;
  line-height: 1.5;
  text-align: left;
}
.pay__note i { margin-top: 2px; flex: none; }

.pay__foot {
  flex: none;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

/* ---- Pending / verified / rejected ---- */
.cart__done-ico--wait { color: #D97706; }
.cart__done-meta dd.is-pending { color: #92400E; }

.order__status--pending  { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.order__status--verified { background: var(--green-soft); color: var(--green-700); border: 1px solid var(--green-line); }
.order__status--rejected { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* --------------------------------------------------------------------------
   16. POLISH — section rhythm, depth, and reveals
   -------------------------------------------------------------------------- */

/* Alternating bands so stacked sections do not read as one long sheet */
.row--mid, .row--four { background: var(--bg-soft); }
.row--mid .est, .row--mid .bld__form { background: #fff; }

/* ---- Editorial label above each heading ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}


/* ---- Headings get a touch more presence ---- */
.h-sec, .services__title {
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ---- Depth: cards lift towards the reader on hover ---- */
.pkg, .work, .svc, .acc, .adm-order {
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.pkg:hover, .work:hover {
  box-shadow: 0 14px 34px -16px rgba(16, 24, 40, 0.28),
              0 0 0 1px rgba(34, 197, 94, 0.18);
}
.pkg--featured {
  box-shadow: 0 18px 40px -18px rgba(22, 163, 74, 0.45),
              0 0 0 1px rgba(34, 197, 94, 0.25);
}
.pkg--featured:hover {
  box-shadow: 0 22px 48px -18px rgba(22, 163, 74, 0.55),
              0 0 0 1px rgba(34, 197, 94, 0.4);
}

/* ---- Buttons: a little dimension, a little travel ---- */
.btn--green {
  background: linear-gradient(180deg, #22C55E 0%, var(--green-600) 100%);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--green:hover {
  background: linear-gradient(180deg, var(--green-600) 0%, var(--green-700) 100%);
  box-shadow: 0 8px 18px -8px rgba(22, 163, 74, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.btn--green:active { transform: translateY(0); }

/* ---- A soft green wash behind the hero copy ---- */
.hero__veil {
  background:
    radial-gradient(60% 70% at 12% 45%, rgba(34, 197, 94, 0.14), transparent 62%),
    linear-gradient(100deg,
      rgba(10, 12, 16, 0.97) 0%,
      rgba(10, 12, 16, 0.92) 30%,
      rgba(10, 12, 16, 0.55) 62%,
      rgba(10, 12, 16, 0.25) 100%);
}

/* Hairline of brand colour under the dark services band */
.hero { border-bottom: 2px solid var(--green); }

/* ---- Chips and tags sit a little softer ---- */
.chip.is-active {
  box-shadow: 0 4px 12px -4px rgba(22, 163, 74, 0.55);
}

/* ---- Reveal on scroll; `is-in` is added by the observer ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Nothing may stay invisible if the script never runs, or if the visitor
   asked for less movement. */
.no-js [data-reveal],
[data-reveal].is-shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn--green:hover, .pkg:hover, .work:hover { transform: none; }
}

/* The bank's account name, so a customer expecting "WE3" is not surprised */
.pay__account {
  font-size: var(--fs-xs);
  color: var(--body);
  margin-bottom: 10px;
  line-height: 1.5;
}
