/* ════════════════════════════════════════════════════════
   AGARAM TECH — editorial landing
   Aesthetic: warm off-white + deep navy ink + electric blue accent
   Reference: repose.co — heavy display sans, generous air, monospace labels
   ════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --cream:        #ffffff;
  --cream-2:      #f0f0f0;
  --paper:        #f8f9fa;
  --ink:          #0a1426;     /* logo navy */
  --ink-soft:     #1a2438;
  --ink-mute:     #4a5468;
  --line:         rgba(10,20,38,.14);
  --line-soft:    rgba(10,20,38,.08);
  --blue:         #0c70d3;
  --blue-bright:  #1183e2;
  --blue-deep:    #0553bc;

  /* typography */
  --f-display: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --f-body:    "Inter", "Helvetica Neue", sans-serif;
  --f-mono:    "Inter", "Helvetica Neue", sans-serif;
  --f-serif:   "Inter", "Helvetica Neue", sans-serif;

  /* rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --rad-sm: 14px;
  --rad-md: 22px;
  --rad-lg: 28px;
  --rad-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ol, ul { list-style: none; }

/* ──────────────────────── shared bits ──────────────────────── */
.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow--light { color: rgba(239,236,228,.65); }

.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 14px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 100%;
}
.section-desc--right { text-align: left; margin-left: 0; }

.section-head {
  padding-top: 8px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section-head--row { align-items: flex-start; }
.section-head .section-title { width: 100%; }
.section-head .section-eyebrow { width: 100%; }
.section-head .section-desc { max-width: 100%; }

.cta-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--rad-pill);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .25s ease;
}
.cta-pill:hover { background: var(--blue); transform: translateY(-1px); }
.cta-pill svg {
  background: var(--cream); color: var(--ink);
  width: 26px; height: 26px; padding: 6px;
  border-radius: 50%;
  transition: transform .25s ease;
}
.cta-pill:hover svg { transform: rotate(-45deg); background: #fff; }

.cta-pill--light { background: var(--cream); color: var(--ink); }
.cta-pill--light svg { background: var(--ink); color: var(--cream); }
.cta-pill--light:hover { background: #fff; }
.cta-pill--light:hover svg { background: var(--ink); color: var(--cream); }

.cta-pill--bright { background: var(--blue-bright); color: #fff; }
.cta-pill--bright svg { background: #fff; color: var(--blue-bright); }
.cta-pill--bright:hover { background: var(--blue-deep); }

/* ──────────────────────── nav ──────────────────────── */
.nav {
  padding: 22px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img {
  display: block;
  width: 154px;
  height: 44px;
  background-image: url('assets/logo-tight.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

/* Desktop Horizontal Menu */
.nav__desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__desktop-menu a {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__desktop-menu a:hover {
  color: var(--blue-bright);
}

/* Mobile Dropdown Menu (Hidden on desktop) */
.nav__menu {
  display: none;
}
.menu-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--rad-pill);
  padding: 10px 18px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .25s ease;
}
.menu-pill:hover { background: rgba(10,20,38,.06); }

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav__actions-group {
  display: flex;
  align-items: center;
}

.cta-book {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--rad-pill);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 4px 12px rgba(12, 112, 211, 0.2);
}
.cta-book:hover {
  filter: brightness(1.08);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(12, 112, 211, 0.3);
}

/* Responsive Navbar Toggle */
@media (max-width: 900px) {
  .nav__desktop-menu {
    display: none;
  }
  .nav__menu {
    display: flex;
    justify-content: center;
  }
}

/* ──────────────────────── hero ──────────────────────── */
.hero {
  padding: 32px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 40px;
  row-gap: 24px;
  position: relative;
}
.hero__top-meta {
  grid-column: 2 / 3; grid-row: 1;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  align-self: start;
  padding-top: 12px;
}
.hero__title {
  grid-column: 1 / -1; grid-row: 2;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin-top: 12px;
}
.hero__line { display: block; }
.hero__line:nth-child(2) {
  color: var(--blue);
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding-left: 12vw;
}

.hero__image {
  grid-column: 1 / -1; grid-row: 3;
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 1920 / 780;
  margin-top: 16px;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero__image-tags {
  position: absolute; right: 20px; top: 20px;
  background: rgba(246,243,236,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--rad-md);
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-soft);
}
.hero__image-tags li { display: flex; gap: 12px; align-items: baseline; }
.hero__image-tags span {
  font-weight: 500; color: var(--ink-mute);
  min-width: 18px;
}

.hero__bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-top: 12px;
}
.hero__lead p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.55;
}

/* ──────────────────────── about (dark block) ──────────────────────── */
.about {
  margin: 22px var(--gutter) 22px;
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: var(--cream);
  border-radius: var(--rad-lg);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: ""; position: absolute; inset: auto -100px -100px auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(12,112,211,.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.about__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 20px;
}
.about__body {
  display: flex; flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.about__body .cta-pill--light { align-self: flex-start; }
.about__copy {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(239,236,228,.86);
  max-width: 100%;
}

/* ──────────────────────── brands ──────────────────────── */
.brands {
  padding: 22px var(--gutter) 22px;
}
.brands .section-desc { max-width: 100%; }

.brands__chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: var(--rad-pill);
  padding: 9px 16px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.chip sup {
  font-family: var(--f-mono);
  font-size: 9px;
  margin-left: 4px;
  color: var(--ink-mute);
}
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip.is-active sup { color: rgba(239,236,228,.6); }
.chip:hover:not(.is-active) { background: rgba(10,20,38,.06); }

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 22px;
  display: flex; flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  color: inherit;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -28px rgba(10,20,38,0.25);
}
.brand-card:hover .brand-card__arrow {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: rotate(-12deg) scale(1.08);
}
.brand-card.is-hidden {
  display: none;
}
.brand-card__arrow {
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.brand-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.brand-card__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.brand-card__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 4px;
}
.pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--rad-pill);
  background: rgba(10,20,38,.06);
  color: var(--ink-mute);
}
.brand-card__art {
  flex: 1; margin: 26px 0 0;
  border-radius: var(--rad-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 260px;
}

/* brand-logo: typographic placeholders. Replace markup with official SVGs
   from each brand's distributor / press kit when available. */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: lowercase;
  line-height: 1;
}
.brand-logo__mark { white-space: nowrap; }

.brand-logo--infinix {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 84px);
  letter-spacing: -0.04em;
  color: #0a1426;
}

.brand-logo--moto {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 64px);
  letter-spacing: -0.025em;
  color: var(--cream);
}

.brand-logo--lava {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6.5vw, 88px);
  letter-spacing: -0.03em;
  color: #c8102e;
  text-transform: none;
}

.brand-card__art--infinix {
  background: #000000;
}
.brand-card__art--moto {
  background: #f5f5f7;
  border: 1px solid var(--line-soft);
}
.brand-card__art--lava {
  background: #ffffff;
  border: 1px solid var(--line-soft);
}



.brand-logo-img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(10,20,38,0.06));
}
.brand-logo-img--moto {
  max-width: 38%;
  max-height: 72%;
}
.brand-logo-img--infinix {
  max-width: 74%;
  max-height: 60%;
  filter: none;
}
.round-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.round-btn:hover { transform: scale(1.05); }
.round-btn--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.round-btn--dark:hover { background: var(--blue); border-color: var(--blue); }

.brands__strip {
  margin-top: 56px;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.brands__strip img { width: 100%; display: block; }

/* ──────────────────────── services ──────────────────────── */
.services {
  padding: 22px var(--gutter) 22px;
}
.services__list {
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.service {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease, background .3s ease;
}
.service:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(12,112,211,0.05), transparent 60%);
}
.service__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding-top: 8px;
}
.service__body h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.service__body p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 56ch;
  line-height: 1.55;
}
.service__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  border-radius: var(--rad-pill);
  padding: 6px 12px;
  margin-top: 8px;
  white-space: nowrap;
}

/* ──────────────────────── warranty ──────────────────────── */
.warranty {
  padding: 0 var(--gutter) 100px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.warranty__visual {
  border-radius: var(--rad-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper);
  min-height: 540px;
}
.warranty__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
}
.warranty__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(246,243,236,.94);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: var(--rad-md);
  border: 1px solid var(--line-soft);
}
.warranty__badge-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.warranty__badge-num sup {
  font-size: 14px; font-weight: 500;
  vertical-align: top;
  font-family: var(--f-mono);
  color: var(--ink-mute);
  margin-left: 2px;
}
.warranty__badge-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.5;
}

.warranty__content { padding-top: 24px; }
.warranty__lede {
  margin-top: 24px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.55;
}
.warranty__list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  overflow: hidden;
}
.warranty__list li {
  background: var(--cream);
  padding: 20px 22px;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}
.warranty__list li:hover { background: var(--ink); color: var(--cream); }
.warranty__list li:hover span { color: rgba(239,236,228,.6); }
.warranty__list span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  min-width: 22px;
}

/* ──────────────────────── why ──────────────────────── */
.why {
  padding: 22px var(--gutter) 22px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.why-card {
  background: var(--paper);
  border-radius: var(--rad-md);
  padding: 24px;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 24px rgba(10, 20, 38, 0.08);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 20, 38, 0.14);
}
.why-card__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.why-card h3 {
  margin-top: auto;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.why-card p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.why-card--accent {
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(12, 112, 211, 0.25);
}
.why-card--accent:hover {
  box-shadow: 0 16px 36px rgba(12, 112, 211, 0.35);
}
.why-card--accent .why-card__num {
  color: rgba(255, 255, 255, 0.7);
}
.why-card--accent h3 {
  color: #ffffff;
}
.why-card--accent p {
  color: #ffffff;
}

.why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--rad-md);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 160px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 24px rgba(10, 20, 38, 0.08);
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 20, 38, 0.14);
}
.stat--dark {
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(12, 112, 211, 0.25);
}
.stat--dark:hover {
  box-shadow: 0 16px 36px rgba(12, 112, 211, 0.35);
}
.stat--dark .stat__label {
  color: rgba(255, 255, 255, 0.75);
}
.stat--dark .stat__big sup {
  color: rgba(255, 255, 255, 0.65);
}
.stat__big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.stat__big sup {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--ink-mute);
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  line-height: 1.5;
}

/* ──────────────────────── vision + mission ──────────────────────── */
.vm {
  padding: 40px var(--gutter) 40px;
}
.vm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vm__card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line-soft);
  min-height: 220px;
  display: flex; flex-direction: column; gap: 28px;
}
.vm__card--dark {
  background: linear-gradient(135deg, var(--blue-deep), var(--ink)); color: var(--cream); border-color: transparent;
  position: relative; overflow: hidden;
}
.vm__card--dark::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(12,112,211,.35), transparent 65%);
  filter: blur(10px);
}
.vm__label {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.vm__copy {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: normal;
  margin-top: auto;
  position: relative; z-index: 1;
}

/* ──────────────────────── dealer ──────────────────────── */
.dealer {
  margin: 22px var(--gutter) 22px;
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: var(--cream);
  border-radius: var(--rad-lg) var(--rad-lg) 0 0;
  padding: clamp(36px, 5vw, 72px) clamp(32px, 6vw, 80px) clamp(56px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  border-top: none;
}
.dealer::before {
  content: ""; position: absolute; left: -150px; top: 50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(12,112,211,.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.dealer::after {
  content: "+"; position: absolute; right: 5%; top: 8%;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 280px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.dealer__inner { position: relative; z-index: 1; max-width: 1100px; }
.dealer__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 16px;
  color: #fff;
}
.dealer__lede {
  margin-top: 28px;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  line-height: 1.55;
}

.dealer__benefits {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(239,236,228,.18);
  border: 1px solid rgba(239,236,228,.18);
  border-radius: var(--rad-md);
  overflow: hidden;
}
.benefit {
  background: var(--ink);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 140px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: background .25s ease;
}
.benefit:hover { background: var(--ink-soft); }
.benefit__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(239,236,228,.5);
}

.dealer__cta-row {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.ghost-link {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,236,228,.65);
  transition: color .2s ease;
}
.ghost-link:hover { color: var(--cream); }

/* ──────────────────────── footer ──────────────────────── */
.footer {
  background: var(--paper);
  color: var(--ink);
  padding: 22px var(--gutter) 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--line-soft);
}
.footer__brand { padding-right: 32px; }
.footer__logo {
  display: block;
  width: 188px;
  height: 54px;
  margin-bottom: 24px;
  background-image: url('assets/logo-tight.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.footer__brand p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.footer__heading {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.footer__col a, .footer__col span, .footer__col address {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s ease;
  font-style: normal;
  line-height: 1.6;
}
.footer__col address { color: var(--ink-mute); margin-top: 4px; }
.footer__col a:hover { color: var(--blue-bright); }
.footer__gst {
  font-family: var(--f-mono);
  color: var(--ink-mute);
}

.footer__bar {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ──────────────────────── menu dropdown ──────────────────────── */
.menu-pill { position: relative; }
.menu-pill__icon { transition: transform .25s cubic-bezier(.4,0,.2,1); }
.menu-pill.is-open .menu-pill__icon { transform: rotate(180deg); }
.menu-pill.is-open { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.menu-wrap { position: relative; }

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow:
    0 30px 70px -28px rgba(10, 20, 38, .35),
    0 4px 12px -6px rgba(10, 20, 38, .12);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, transform .25s cubic-bezier(.2,.7,.2,1), visibility 0s linear .2s;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.menu-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.menu-dropdown a:hover {
  background: var(--ink);
  color: var(--cream);
}
.menu-dropdown a:hover .menu-dropdown__num {
  color: rgba(239, 236, 228, .55);
}
.menu-dropdown__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-mute);
  transition: color .15s ease;
  min-width: 18px;
}

/* ──────────────────────── brand-card view button ──────────────────────── */
.brand-card__view-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--rad-pill);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), background-color .25s ease, color .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 12px rgba(10,20,38,0.08);
}

/* All View Products buttons use the theme blue gradient */
.brand-card__view-btn--dark,
.brand-card__view-btn--light {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border: 1px solid transparent;
}

.brand-card__view-btn--dark:hover,
.brand-card__view-btn--light:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12,112,211,0.28);
}

.brand-card__view-btn svg {
  transition: transform .25s ease;
}

.brand-card__view-btn:hover svg {
  transform: translate(1px, -1px);
}


/* ──────────────────────── partner form ──────────────────────── */
.dealer__form {
  margin-top: 48px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: none;
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.dealer__form-head {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dealer__form-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dealer__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field__label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(10, 20, 38, 0.4);
  margin-left: 6px;
}
.field__label .req { color: #c8102e; font-weight: 700; }
.field input,
.field textarea,
.field select {
  background: #ffffff;
  border: 1px solid #000000; /* black borders */
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  color: #000000; /* black text */
  width: 100%;
  resize: vertical;
  transition: border-color .25s ease, background .25s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select:invalid { color: rgba(0, 0, 0, 0.4); }
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(12,112,211,.03);
}
.field input:disabled,
.field textarea:disabled,
.field input:disabled + *,
.dealer__form input:disabled,
.dealer__form textarea:disabled,
.dealer__form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.field__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.check-chip {
  position: relative;
  cursor: pointer;
}
.check-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.check-chip span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #000000; /* black border */
  border-radius: var(--rad-pill);
  font-size: 13px;
  color: #000000; /* black text */
  transition: all .2s ease;
  background: #ffffff;
}
.check-chip:hover span {
  background: rgba(10, 20, 38, 0.05);
  color: #000000;
}
.check-chip input:checked + span {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: #ffffff;
}

.dealer .ghost-link {
  color: var(--ink-soft);
}
.dealer .ghost-link:hover {
  color: var(--ink);
}

.dealer__form-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dealer__form-success {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(12,112,211,.08);
  border: 1px solid rgba(12,112,211,.3);
  border-radius: 14px;
  color: var(--ink);
  font-size: 15px;
}
.dealer__form-success strong {
  color: var(--blue-bright);
  font-weight: 600;
  margin-right: 6px;
}

/* ──────────────────────── reveal animation ──────────────────────── */
.hero__line, .hero__image, .hero__top-meta, .hero__bottom {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
.hero__top-meta  { animation-delay: 0.05s; }
.hero__line:nth-child(1) { animation-delay: 0.12s; }
.hero__line:nth-child(2) { animation-delay: 0.22s; }
.hero__image     { animation-delay: 0.34s; }
.hero__bottom    { animation-delay: 0.48s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────── responsive ──────────────────────── */
@media (max-width: 1100px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .why-card--accent { grid-column: span 1; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; row-gap: 16px; }
  .hero__top-meta { grid-column: 1; text-align: left; padding-top: 0; }
  .hero__line:nth-child(2) { padding-left: 0; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__image { aspect-ratio: 16 / 10; }
  .hero__image-tags { right: 14px; top: 14px; padding: 12px 16px; }

  .section-head { gap: 18px; margin-bottom: 40px; }
  .section-head .section-desc,
  .section-head .section-desc--right { max-width: 100%; text-align: left; margin-left: 0; }

  .about {
    gap: 24px;
    padding: clamp(28px, 6vw, 56px);
  }

  .brands__grid { grid-template-columns: 1fr; }
  .brand-card:last-child { grid-column: auto; }
  .brand-card { min-height: 320px; }

  .service {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 28px 0;
  }
  .service__tag { grid-column: 2; justify-self: start; margin-top: 0; }
  .service:hover { padding-left: 0; }

  .warranty { grid-template-columns: 1fr; gap: 32px; }
  .warranty__visual { min-height: 360px; }
  .warranty__list { grid-template-columns: 1fr; }

  .why__grid { grid-template-columns: 1fr 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }

  .vm__grid { grid-template-columns: 1fr; }

  .dealer { padding: clamp(40px, 8vw, 80px) clamp(24px, 5vw, 56px); }
  .dealer__benefits { grid-template-columns: 1fr 1fr; }
  .dealer::after { font-size: 180px; right: -2%; top: 4%; }

  .footer { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; padding-right: 0; }
  .footer__bar { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }

  .nav {
    padding: 14px var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .nav__actions-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .menu-pill { padding: 8px 12px; font-size: 10px; }
  .cta-book {
    padding: 8px 14px;
    font-size: 12px;
  }
  .menu-dropdown {
    left: auto;
    right: 0;
    transform: translate(0, -6px);
  }
  .menu-dropdown.is-open {
    transform: translate(0, 0);
  }
  .icon-btn { width: 34px; height: 34px; }

  /* Typography / Headings */
  .section-title,
  .about__title,
  .dealer__title {
    font-size: 32px;
  }

  /* Hero Slider Mobile */
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }

  .hero { padding: 22px var(--gutter) 48px; }
  .hero__title { margin-top: 8px; }
  .hero__image { aspect-ratio: 4 / 3; border-radius: 18px; }
  .hero__image-tags { font-size: 9px; gap: 6px; padding: 10px 12px; }
  .hero__bottom .cta-pill { width: 100%; justify-content: space-between; }

  /* Who We Are spacing & body optimization */
  .about {
    margin: 32px var(--gutter) 32px;
    border-radius: 22px;
    padding: 32px 20px;
    gap: 20px;
  }
  .about__copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .brands { padding: 32px var(--gutter) 32px; }
  .brand-card { padding: 18px; min-height: 280px; }
  .brand-card__art { min-height: 180px; margin: 18px 0; }
  .brand-card__view-btn { right: 10px; bottom: 10px; padding: 8px 14px; font-size: 11px; }
  .watermark { font-size: 44px; }

  .services { padding: 32px var(--gutter) 32px; }
  .service__num { font-size: 11px; padding-top: 4px; }
  .service__body h3 { font-size: 26px; }
  .service__body p { font-size: 14px; }
  .service__tag { font-size: 9px; }

  .warranty { padding: 0 var(--gutter) 64px; }
  .warranty__visual { min-height: 280px; border-radius: 22px; }
  .warranty__badge { left: 14px; bottom: 14px; padding: 14px 16px; }
  .warranty__badge-num { font-size: 38px; }
  .warranty__lede { font-size: 15px; }

  .why { padding: 32px var(--gutter) 32px; }
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { min-height: 180px; padding: 20px; }
  .why-card h3 { font-size: 20px; }
  .why__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { min-height: 130px; padding: 18px; }

  .vm { padding: 32px var(--gutter) 32px; }
  .vm__grid { gap: 14px; }
  .vm__card { padding: 28px; min-height: 180px; }
  .vm__copy { font-size: 16px; }

  .dealer {
    margin: 32px var(--gutter);
    border-radius: 22px;
    padding: 40px 20px;
  }
  .dealer::after { font-size: 120px; top: 2%; right: 2%; }
  .dealer__lede { font-size: 15px; margin-top: 20px; }
  .dealer__benefits { grid-template-columns: 1fr; margin-top: 36px; }
  .benefit { min-height: 90px; flex-direction: row; align-items: center; gap: 18px; }
  .benefit__num { min-width: 22px; }
  .dealer__cta-row { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 36px; }
  .dealer__cta-row .cta-pill { justify-content: space-between; }
  .ghost-link { text-align: center; }

  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px var(--gutter) 24px;
  }

  .dealer__form { padding: 20px 16px; }
  .dealer__form-grid { grid-template-columns: 1fr; gap: 14px; }
  .dealer__form-foot { flex-direction: column; align-items: stretch; }
  .dealer__form-foot .cta-pill { justify-content: space-between; }


  .menu-overlay__inner { padding: 96px var(--gutter) 36px; gap: 28px; }
  .menu-overlay__list a { gap: 16px; }
  .menu-overlay__list a::before { font-size: 11px; min-width: 22px; }
  .menu-overlay__foot { gap: 16px; font-size: 11px; }
}

/* ──────────────────────── hero slider ──────────────────────── */
.hero-slider {
  margin: 24px var(--gutter) 22px;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 780;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 32px -12px rgba(10, 20, 38, 0.15);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ── Dots ── */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* ──────────────────────── Thank You Page ──────────────────────── */
.thankyou-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter);
  min-height: 60vh;
  background: var(--paper);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(12, 112, 211, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.thankyou-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.thankyou-text {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-mute);
  max-width: 45ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.thankyou-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ── Mobile hero banner ──
   Placed after the base .slider-container / .hero-banner__img rules so these
   win the cascade (equal specificity → later source order wins). On phones the
   <picture> serves the portrait poster; show it in full, uncropped. */
@media (max-width: 600px) {
  .slider-container { aspect-ratio: 1034 / 1521; }
  .hero-banner__img { object-fit: contain; }
}

/* ── Alternating blue / white ──
   Trust cards: odd = blue (1,3,5).  Stats: even = blue (2,4). */
.why-card:nth-child(odd) {
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(12, 112, 211, 0.25);
}
.why-card:nth-child(odd):hover { box-shadow: 0 16px 36px rgba(12, 112, 211, 0.35); }
.why-card:nth-child(odd) .why-card__num { color: rgba(255, 255, 255, 0.7); }
.why-card:nth-child(odd) h3,
.why-card:nth-child(odd) p { color: #ffffff; }

.stat:nth-child(even) {
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(12, 112, 211, 0.25);
}
.stat:nth-child(even):hover { box-shadow: 0 16px 36px rgba(12, 112, 211, 0.35); }
.stat:nth-child(even) .stat__label { color: rgba(255, 255, 255, 0.75); }
.stat:nth-child(even) .stat__big sup { color: rgba(255, 255, 255, 0.65); }
