/* ==========================================================================
   Dubai Maintenance Crew — styles.css
   A workshop / dispatch vernacular: petrol navy + hi-vis amber + cool neutrals.
   Typography carries personality: Space Grotesk (display) + Inter (body)
   + Space Mono (the ticket / data voice). Signature: the live job ticket.
   Mobile-first. Respects reduced-motion.
   ========================================================================== */

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* ink + brand */
  --ink: #0a1f2c;
  --brand: #0f3547;
  --brand-2: #155a6e;
  --brand-3: #1d7a93;
  --brand-soft: #e8f0f2;

  /* hi-vis accent (worksite amber) */
  --accent: #ff6a1a;
  --accent-2: #ff8a3d;
  --accent-ink: #8a3409;
  --accent-soft: #ffe7d6;

  /* neutrals */
  --bg: #f4f6f7;
  --surface: #ffffff;
  --surface-2: #fbfcfd;
  --line: #e1e6e8;
  --line-strong: #ccd5d9;
  --muted: #5c6e76;
  --muted-2: #85979f;

  /* whatsapp */
  --wa: #25d366;
  --wa-2: #1eb855;
  --wa-ink: #0a5c2c;

  /* type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(10, 31, 44, 0.06), 0 1px 3px rgba(10, 31, 44, 0.05);
  --shadow: 0 6px 18px -6px rgba(10, 31, 44, 0.14), 0 2px 6px rgba(10, 31, 44, 0.06);
  --shadow-lg: 0 28px 60px -22px rgba(10, 31, 44, 0.32), 0 10px 24px -14px rgba(10, 31, 44, 0.18);
  --shadow-accent: 0 10px 26px -8px rgba(255, 106, 26, 0.5);

  /* layout */
  --container: 1180px;
  --container-narrow: 880px;
  --gutter: clamp(1.1rem, 3vw, 2rem);

  /* type scale (fluid) */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.12rem, 1.04rem + 0.4vw, 1.3rem);
  --step-2: clamp(1.3rem, 1.16rem + 0.7vw, 1.6rem);
  --step-3: clamp(1.6rem, 1.36rem + 1.2vw, 2.2rem);
  --step-4: clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-5: clamp(2.5rem, 1.8rem + 3.6vw, 4.4rem);

  --header-h: 74px;
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--brand-2); text-decoration: none; }
a:hover { color: var(--accent); }

ul, ol { padding-left: 1.15rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

p { text-wrap: pretty; }

button { font: inherit; cursor: pointer; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 200; transition: top .2s ease;
  font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout primitives -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: #d7e3e8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--brand { background: var(--brand); color: #cfe2e8; }
.section--brand h1, .section--brand h2, .section--brand h3 { color: #fff; }
.section--soft { background: var(--brand-soft); }
.section--accent-soft { background: var(--accent-soft); }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow, .section--brand .eyebrow { color: var(--accent-2); }
.section-head--center .eyebrow { justify-content: center; }

.section-title { font-size: var(--step-4); }
.section-lead {
  margin-top: 1rem;
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 56ch;
}
.section--dark .section-lead, .section--brand .section-lead { color: #aec4cc; }
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --_bg: var(--brand);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); color: var(--_fg); }

.btn--accent { --_bg: var(--accent); box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--accent-2); }
.btn--wa   { --_bg: var(--wa); }
.btn--wa:hover { background: var(--wa-2); }
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--brand);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --_fg: var(--accent); border-color: var(--accent); background: transparent; }
.section--dark .btn--ghost, .section--brand .btn--ghost {
  --_fg: #fff; border-color: rgba(255,255,255,.3);
}
.section--dark .btn--ghost:hover, .section--brand .btn--ghost:hover {
  --_fg: var(--accent-2); border-color: var(--accent-2);
}
.btn--light { --_bg: #fff; --_fg: var(--ink); }
.btn--light:hover { background: var(--accent-soft); }
.btn--sm { padding: 0.6rem 1rem; font-size: var(--step--1); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600; color: var(--accent);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .2s ease; }
.link-arrow:hover { color: var(--accent-2); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / nav ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 247, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: inherit; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-name b { color: var(--accent); font-weight: 700; }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
}
.nav-links a:hover { color: var(--accent); background: var(--accent-soft); }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  text-decoration: none;
}
.phone-pill:hover { color: var(--accent); border-color: var(--accent); }
.phone-pill svg { width: 1.05em; height: 1.05em; color: var(--accent); }
.phone-pill .local { color: var(--ink); }
.phone-pill .lbl {
  display: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  border-radius: var(--r-sm);
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .15s ease;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.75rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(255, 106, 26, 0.12), transparent 60%),
    radial-gradient(50% 60% at 5% 100%, rgba(21, 90, 110, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 38rem; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2.2s infinite;
}
.hero-title {
  font-size: var(--step-5);
  letter-spacing: -0.035em;
}
.hero-title .accent { color: var(--accent); }
.hero-title .under {
  position: relative;
  white-space: nowrap;
}
.hero-title .under::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.28em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero-lead {
  margin-top: 1.3rem;
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 34rem;
}
.hero-cta { margin-top: 1.9rem; }
.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line-strong);
}
.hero-meta .item { display: flex; flex-direction: column; }
.hero-meta .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  color: var(--brand);
  line-height: 1;
}
.hero-meta .num small { font-size: 0.5em; color: var(--muted); font-weight: 600; margin-left: 2px; }
.hero-meta .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 0.4rem;
}

/* ---------- The signature: live job ticket ------------------------------ */
.ticket-wrap { position: relative; }
.ticket-wrap::before {
  content: "LIVE";
  position: absolute;
  top: -14px; right: -8px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  background: var(--ink);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
}
.ticket {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* perforation notches */
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  left: -10px; right: -10px;
  height: 16px;
  background-image: radial-gradient(circle, var(--bg) 7px, transparent 7.5px);
  background-size: 22px 16px;
  background-repeat: repeat-x;
  background-position: center;
}
.ticket::before { top: 92px; }
.ticket::after { display: none; }

.ticket-head {
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ticket-no {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #9fb3bb;
}
.ticket-no b { color: #fff; font-weight: 700; }
.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.16);
  color: #4ade80;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
}
.ticket-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa);
  animation: pulse 2s infinite;
}

.ticket-body { padding: 1.4rem; }
.ticket-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.ticket-row .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ticket-row .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-align: right;
}
.ticket-row .value .sub { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.74rem; color: var(--muted); }

.ticket-subhead {
  margin: 1.1rem 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ticket-list { list-style: none; padding: 0; margin: 0; }
.ticket-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.ticket-list .code {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  min-width: 46px;
  text-align: center;
}
.ticket-list .check {
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: inline-grid;
  place-items: center;
}
.ticket-list .check svg { width: 12px; height: 12px; }
.ticket-list .pending {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.ticket-foot {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.ticket-foot .eta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}
.ticket-foot .eta b { color: var(--accent); font-weight: 700; }

/* ---------- Grids & cards ----------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }

/* service cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.service-card:hover { color: inherit; }
.service-card:hover::after { transform: scaleY(1); }
.service-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-card .code {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-2);
  background: var(--brand-soft);
  padding: 0.25rem 0.55rem;
  border-radius: var(--r-sm);
}
.service-card .ico {
  width: 46px; height: 46px;
  border-radius: var(--r);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.service-card .ico svg { width: 24px; height: 24px; }
.service-card h3 { font-size: var(--step-1); margin-top: 0.3rem; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card .arrow {
  margin-top: auto;
  padding-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card .arrow svg { width: 1em; height: 1em; transition: transform .2s ease; }
.service-card:hover .arrow svg { transform: translateX(4px); }

/* feature (why choose us) */
.feature { display: flex; flex-direction: column; gap: 0.8rem; }
.feature .ico {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
}
.section--dark .feature .ico { background: var(--accent); color: var(--ink); }
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--muted); }
.section--dark .feature p { color: #aec4cc; }

/* stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-4);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .lbl {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aec4cc;
}

/* ---------- Process steps ----------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem 1.5rem;
}
.step .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step::after {
  content: "";
  position: absolute;
  top: 2.4rem; right: -0.85rem;
  width: 1.4rem; height: 2px;
  background: var(--line-strong);
}
.steps .step:last-child::after { display: none; }

/* ---------- Areas -------------------------------------------------------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.area-chip:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.area-chip svg { width: 1em; height: 1em; color: var(--accent); }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, var(--ink) 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 95% 10%, rgba(255,106,26,0.28), transparent 60%),
    radial-gradient(40% 70% at 0% 100%, rgba(29,122,147,0.4), transparent 60%);
  pointer-events: none;
}
.cta-inner > * { position: relative; }
.cta-inner h2 { font-size: var(--step-3); color: #fff; max-width: 18ch; }
.cta-inner p { color: #cfe0e6; margin-top: 0.5rem; max-width: 40ch; }
.cta-inner .btn-row { flex-direction: column; align-items: stretch; min-width: 260px; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { display: grid; gap: 0.85rem; max-width: 60rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.faq-q .icon::before { width: 12px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q .icon { background: var(--accent); border-color: var(--accent); }
.faq-item.is-open .faq-q .icon::before,
.faq-item.is-open .faq-q .icon::after { background: #fff; }
.faq-item.is-open .faq-q .icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 1.35rem 1.3rem;
  color: var(--muted);
  max-width: 70ch;
}
.faq-a-inner p + p { margin-top: 0.75rem; }

/* ---------- Contact ------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-sm); color: inherit; }
.contact-card .ico {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--r);
  background: var(--brand-soft);
  color: var(--brand-2);
  display: grid; place-items: center;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .ico.wa { background: rgba(37,211,102,0.14); color: var(--wa-ink); }
.contact-card .ico.ph { background: var(--accent-soft); color: var(--accent-ink); }
.contact-card .t { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.contact-card .v { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-top: 2px; }
.contact-card .s { font-size: 0.9rem; color: var(--muted); margin-top: 3px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: var(--step-2); }
.contact-form .lead { color: var(--muted); margin: 0.5rem 0 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.85rem; color: var(--muted-2); margin-top: 0.9rem; }
.form-alt {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}
.form-alt span { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }

/* ---------- Info / two-col content blocks -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.bullets { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.8rem; }
.bullets li { display: flex; gap: 0.8rem; align-items: flex-start; }
.bullets li .b {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin-top: 2px;
}
.bullets li .b svg { width: 14px; height: 14px; }
.bullets li b { font-weight: 600; }

/* simple panel for about / values */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: var(--step-2); margin-bottom: 0.6rem; }
.panel p { color: var(--muted); }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.value-card {
  border-top: 3px solid var(--accent);
  padding-top: 1.1rem;
}
.value-card .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.value-card h3 { font-size: var(--step-1); margin: 0.4rem 0 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* affiliation block */
.affil {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
}
.affil .badge {
  width: 56px; height: 56px;
  border-radius: var(--r);
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.affil .meta { flex: 1; min-width: 220px; }
.affil .meta .t { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.affil .meta .s { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }

/* breadcrumb */
.crumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); margin-bottom: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--muted-2); }
.crumb [aria-current="page"] { color: var(--ink); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #9fb3bb;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #9fb3bb; font-size: 0.94rem; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #9fb3bb; font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: #cfe0e6; }
.footer-contact a { color: #cfe0e6; }
.footer-contact .mono { font-family: var(--font-mono); }
.footer-affil {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
.footer-affil a { color: var(--accent-2); font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  font-size: 0.84rem;
}
.footer-bottom .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: #9fb3bb; }
.footer-bottom a:hover { color: var(--accent-2); }

/* ---------- Reveal animation --------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .ticket-wrap { max-width: 30rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .32s cubic-bezier(.2,.7,.2,1);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .nav-links a { padding: 0.85rem 1rem; border-radius: var(--r-sm); font-size: 1.05rem; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a[aria-current="page"] { background: var(--accent-soft); }
  .nav-cta-mobile { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--line); }
  .header-cta .btn--accent,
  .header-cta .phone-pill { display: none; }

  .grid--3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .cta-inner .btn-row { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.25rem; }
  .phone-pill .lbl { display: inline; }
}

/* ---------- 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;
  }
  .reveal { opacity: 1; transform: none; }
}
