/* =============================================================
   India Rentalz — Stylesheet
   Palette: white + maroon only. No gradients.
   ============================================================= */

/* Hide scrollbar thumbs globally */
::-webkit-scrollbar-thumb {
  background: transparent !important;
}
* {
  scrollbar-width: none; /* Firefox */
}

/* ---------- Design tokens ---------- */
:root {
  /* Maroon scale */
  --maroon: #7a1228;
  --maroon-dark: #5c0d1e;
  --maroon-deep: #3a0912;
  --maroon-tint: #fbeef0;
  --maroon-tint-2: #f5dbe0;
  --maroon-border: #eccdd3;
  --accent-green: #1f9d4c;
  --accent-green-soft: rgba(31, 157, 76, 0.1);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #faf7f7;
  --ink: #1b1315;
  --body: #5d5559;
  --muted: #8a8186;
  --border: #ece5e6;
  --border-strong: #e0d6d8;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(58, 9, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(58, 9, 18, 0.08);
  --shadow-lg: 0 22px 60px rgba(58, 9, 18, 0.14);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --maxw: 1280px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --nav-h: 72px;
}

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

* { margin: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--maroon);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.12;
}

.text-accent {
  color: var(--maroon);
}

.section-body {
  margin-top: 1.1rem;
  font-size: 1.06rem;
  color: var(--body);
}
.section-body p + p { margin-top: 0.75rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--maroon-tint);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.section-cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--maroon);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.18s ease, background 0.2s ease,  border-color 0.2s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 58%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent);
  opacity: 0;
  z-index: -1;
}
.btn:hover::before { animation: button-shine 0.9s ease forwards; opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--maroon-tint-2); outline-offset: 2px; }

.btn-primary {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.26), transparent 32%),
    linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;

}
.btn-primary:hover {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.32), transparent 34%),
    linear-gradient(135deg, #8b1730, var(--maroon-dark));
 ;
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon-border);
}
.btn-outline:hover { background: var(--maroon-tint); border-color: var(--maroon); }

.btn-light {
  background: var(--maroon-tint);
  color: var(--maroon);
  border-color: var(--maroon-border);
  box-shadow: 0 10px 24px rgba(122, 18, 40, 0.12);
}
.btn-light:hover {
  background: #fff;
  border-color: var(--maroon);
  box-shadow: 0 16px 34px rgba(122, 18, 40, 0.16);
}

.btn-block { width: 100%; }

@keyframes button-shine {
  from { left: -70%; }
  to { left: 130%; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.navbar.is-scrolled {

  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand .brand-mark {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  background: var(--maroon);
  color: #fff;
  border-radius: 9px;
  font-size: 1rem;
}
.brand .brand-logo { height: 36px; width: auto; display: block; }
.brand .brand-accent { color: var(--maroon); }
.brand-light { color: #fff; }
.brand-light .brand-accent { color: var(--maroon-tint-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.1rem);
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.22s ease;
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { padding-block: 0.7rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 19, 21, 0.45);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-overlay.is-visible { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 48%, rgba(255,255,255,0.62) 100%),
    url("../assets/hero-bg.webp"),
    linear-gradient(180deg, #fff 0%, #fff 54%, var(--off-white) 100%);
  background-size: cover, cover, auto;
  background-position: center, center, center;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero-title {
  max-width: 820px;
  font-size: clamp(2.75rem, 4.15vw, 3.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}
.hero-title .title-accent { color: var(--maroon); display: block; }
.hero-subhead {
  margin-top: 1.25rem;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 44ch;
}
.hero-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-usecases li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
  background: var(--maroon-tint);
  border: 1px solid var(--maroon-border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.hero-usecase-note {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}
.hero-valueprops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 1.5rem;
}
.hero-valueprops li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.hero-valueprops li svg {
  width: 18px; height: 18px;
  color: var(--maroon);
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Hero form */
.hero-form-wrap { position: relative; }
.lead-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(236, 205, 211, 0.82);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: clamp(1.5rem, 3vw, 2.1rem);
}
.lead-form-head { margin-bottom: 1.25rem; }
.lead-form-head h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.lead-form-head p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.lead-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.field label .req { color: var(--maroon); }
.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field input::placeholder { color: #b1a8ac; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--maroon);
  background: #fff;
  box-shadow: 0 0 0 3px var(--maroon-tint);
}
.field.has-error input,
.field.has-error select { border-color: #c0392b; }
.field .field-error {
  font-size: 0.74rem;
  color: #c0392b;
  display: none;
}
.field.has-error .field-error { display: block; }

#formSubmit { margin-top: 1.25rem; }
.lead-form > .btn-block { margin-top: 1.25rem; }
.form-status {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2rem;
}
.form-status.success { color: var(--maroon); }
.form-status.error { color: #c0392b; }

/* Trust bar */
.trust-section {
  display: none;
  background: #fff;
  padding-block: 0;
  border-bottom: 1px solid var(--border);
}
.trust-shell { width: 100%; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fff;
  border-block: 1px solid var(--border);
  box-shadow: 0 12px 42px rgba(58, 9, 18, 0.05);
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  text-align: left;
  min-height: 118px;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.trust-item:last-child { border-right: 0; }
.trust-item::after {
  content: "";
  position: absolute;
  inset: auto 16% 0;
  height: 3px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.trust-item:hover::after { transform: scaleX(1); }
.trust-item:hover .trust-icon {
  transform: translateY(-2px) scale(1.04);

}
.trust-item .trust-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--maroon-tint);
  color: var(--maroon);
  border-radius: 11px;
  transition: transform 0.2s ease,
}
.trust-item .trust-icon svg { width: 20px; height: 20px; }
.trust-item .trust-value {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.1;
}
.trust-item .trust-label {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Problem ---------- */
.problem {
  background: #fff;
  padding-top: clamp(4rem, 8vw, 7rem);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.problem-list-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.problem-list-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.cross-list { display: grid; gap: 0.9rem; }
.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--ink);
}
.cross-list li svg {
  width: 20px; height: 20px;
  color: var(--maroon);
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-closing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--maroon);
  background-image: url("../assets/pattern.png");
  background-size: 260px 260px;
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.problem-closing-inner p {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.problem-closing-inner p + p { margin-top: 0.5rem; color: var(--maroon-tint-2); }
.problem-closing .btn-primary { background: #fff; color: var(--maroon); align-self: flex-start; }
.problem-closing .btn-primary:hover { background: var(--maroon-tint); }

/* ---------- Solution ---------- */
.solution { background: var(--off-white); }
.list-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
}
.check-grid li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--ink);
}
.check-grid li svg,
.check-list li svg {
  width: 22px; height: 22px;
  color: var(--maroon);
  flex-shrink: 0;
  margin-top: 1px;
}
.solution-closing {
  margin-top: 2.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 60ch;
  padding-left: 1.1rem;
  border-left: 4px solid var(--maroon);
}

/* ---------- Compare ---------- */
.compare { background: #fff; }
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-col-head {
  padding: 1.1rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.compare-col-head svg { width: 20px; height: 20px; }
.compare-col-head.buy {
  background: var(--off-white);
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.compare-col-head.rent {
  background: var(--maroon);
  color: #fff;
  border-bottom: 1px solid var(--maroon);
}
.compare-cell {
  padding: 0.95rem 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  font-size: 0.97rem;
}
.compare-cell svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.compare-cell.buy { color: var(--body); }
.compare-cell.buy svg { color: var(--muted); }
.compare-cell.rent {
  color: var(--ink);
  font-weight: 600;
  background: var(--maroon-tint);
}
.compare-cell.rent svg { color: var(--maroon); }

.bottom-line {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background-color: var(--maroon-deep);
  background-image: url("../assets/pattern.png");
  background-size: 280px 280px;
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
}
.bottom-line-text h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.3rem; }
.bottom-line-text p { color: var(--maroon-tint-2); max-width: 60ch; }
.bottom-line .btn-light { flex-shrink: 0; }

/* ---------- Cards (products / audiences) ---------- */
.equipment {
  background: var(--off-white);
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.industries { background: #fff; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.industries .card { background: var(--off-white); }
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--maroon-border);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--maroon-tint);
  color: var(--maroon);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon--art {
  width: 96px;
  height: 96px;
  background: transparent;
  border-radius: 0;
  margin-bottom: 1rem;
}
.card-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 24px rgba(58, 9, 18, 0.12));
}
.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  padding: 0.35rem;
}
.card h3 { font-size: 1.18rem; margin-bottom: 0.55rem; }
.card p { font-size: 0.95rem; color: var(--body); }

/* Equipment carousel */
.equipment-carousel {
  position: relative;
}
.carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  outline: none;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport:focus-visible {
  outline: 3px solid var(--maroon-tint-2);
  outline-offset: 8px;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  gap: 1.25rem;
}
.product-slide {
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(0.85rem, 1.8vw, 1.25rem);
}
.product-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}
.product-index {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--maroon);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--maroon-border);
  border-radius: 999px;
  background: #fff;
  color: var(--maroon);

  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--maroon-tint);
  box-shadow: var(--shadow-md);
}
.carousel-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--maroon-border);
  transition: width 0.2s ease, background 0.2s ease;
}
.carousel-dot.is-active {
  width: 30px;
  background: var(--maroon);
}

/* ---------- Features / Why Us ---------- */
.why-us { background: #f8f3f4; }
.why-us .section-head { max-width: 860px; }

/* Metrics strip */
.why-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--maroon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  position: relative;
}
.why-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern.png");
  background-size: 280px 280px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.why-metric {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.22s ease;
}
.why-metric:last-child { border-right: 0; }
.why-metric:hover { background: rgba(255, 255, 255, 0.07); }
.why-metric-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
}
.why-metric-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
  line-height: 1.3;
}

/* Feature grid */
.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.why-feature-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.why-feature-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.why-feature-grid [data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.why-feature-grid [data-reveal]:nth-child(4) { transition-delay: 0.2s; }
.why-feature-grid [data-reveal]:nth-child(5) { transition-delay: 0.25s; }
.why-feature-grid [data-reveal]:nth-child(6) { transition-delay: 0.3s; }
.why-feature-grid [data-reveal]:nth-child(7) { transition-delay: 0.35s; }

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--maroon-border);
}
.feature-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.28), transparent 30%),
    var(--maroon);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(122, 18, 40, 0.18);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-body { flex: 1; min-width: 0; }
.feature-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.feature-title-row h3 {
  font-size: 1.02rem;
  flex: 1;
  line-height: 1.25;
}
.feature-toggle {
  display: none;
  flex-shrink: 0;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  padding: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.feature-toggle svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.feature:not(.is-collapsed) .feature-toggle { color: var(--maroon); border-color: var(--maroon-border); }
.feature:not(.is-collapsed) .feature-toggle svg { transform: rotate(180deg); }
.feature p { font-size: 0.9rem; color: var(--body); line-height: 1.55; }
.feature-line {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.feature:hover .feature-line { transform: scaleX(1); }

/* ---------- Lifecycle / Manage ---------- */
.manage { background: #fff; }
.manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.manage-closing {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}
.manage-list-card {
  background-color: var(--maroon);
  background-image: url("../assets/pattern.png");
  background-size: 260px 260px;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.manage-list-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1.5rem; }
.manage-list-card .check-list li { color: #fff; }
.manage-list-card .check-list li svg { color: var(--maroon-tint-2); }
.check-list { display: grid; gap: 0.85rem; }
.manage-list-card .check-list {
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}
.manage-assets {
  display: grid;
  gap: 1.1rem;
}
.lifecycle-art {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background-color: var(--maroon-tint);

  background-size: 320px 320px;
  color: var(--ink);
}
.final-cta .section-title { color: var(--ink); max-width: 22ch; }
.final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.final-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.final-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.final-points li svg { width: 20px; height: 20px; color: var(--maroon); flex-shrink: 0; }
.final-block { margin-top: 2.25rem; }
.final-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--maroon);
  margin-bottom: 0.9rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  border: 1px solid var(--maroon-border);
  background: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.final-panel {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--maroon-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.4rem);
}
.final-panel h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.final-panel h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--maroon);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.check-list-light li { color: var(--ink); font-weight: 500; }
.check-list-light li svg { color: var(--maroon); }
.final-panel .btn {
  margin-top: 1.6rem;
  min-height: 54px;
  border-width: 1.5px;
}

/* ---------- Quote modal ---------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 19, 21, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.quote-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(92dvh, 760px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(122, 18, 40, 0.12), transparent 36%),
    #fff;
  border: 1px solid rgba(236, 205, 211, 0.9);
  border-radius: 30px;
  box-shadow: 0 40px 110px rgba(27, 19, 21, 0.28);
  padding: clamp(1.15rem, 3vw, 1.7rem);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.24s ease;
}
.quote-modal.is-open .quote-dialog { transform: none; }
.quote-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--maroon);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quote-close:hover {
  transform: rotate(6deg) scale(1.04);
  box-shadow: var(--shadow-md);
}
.quote-close svg { width: 20px; height: 20px; }
.quote-dialog-copy {
  position: relative;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 24px;
  background-color: var(--maroon-deep);
  background-image: url("../assets/pattern.png");
  background-size: 280px 280px;
  color: #fff;
  overflow: hidden;
}
.quote-dialog-copy::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}
.quote-dialog-copy h2 {
  color: #fff;
  margin-top: 1.2rem;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}
.quote-dialog-copy p {
  margin-top: 1rem;
  color: var(--maroon-tint-2);
}
.modal-form {
  box-shadow: none;
  border-radius: 24px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #cfc6c9;

}
.footer-grid {
  padding-bottom: 2.5rem;
}
.footer .brand { margin-bottom: 0; }
.footer-blurb { margin-top: 1rem; font-size: 0.92rem; max-width: 42ch; color: var(--muted); }
.footer-contact { margin-top: 1.25rem; display: flex; gap: 1.5rem; font-size: 0.9rem; }
.footer-contact a { color: var(--body); transition: color 0.18s ease; }
.footer-contact a:hover { color: var(--maroon); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-block: 1.25rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--muted);
}
.back-to-top {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.back-to-top:hover { background: var(--maroon-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (min-width: 981px) {
  .compare .section-title {
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-subhead { max-width: 56ch; }
  .hero-form-wrap { order: 2; }
  .carousel-track { grid-auto-columns: calc((100% - 1.25rem) / 2); }
  .why-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .manage-grid { grid-template-columns: 1fr; }
  .manage-list-card { order: -1; }
  .final-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3n) { border-right: 0; }
  .quote-dialog { grid-template-columns: 1fr; }
  .quote-dialog-copy { min-height: auto; }
}

@media (max-width: 760px) {
  .navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .brand .brand-logo {
    height: 32px;
    max-width: min(62vw, 220px);
    object-fit: contain;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100dvh - var(--nav-h));
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: #fff;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 95;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; width: 100%; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .manage-list-card .check-list { grid-template-columns: 1fr; }
  .why-metrics { grid-template-columns: repeat(2, 1fr); }
  .why-metric:nth-child(2) { border-right: 0; }
  .why-metric:nth-child(1),
  .why-metric:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .why-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form-fields { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .hero-form-wrap { display: none !important; }
  .hero-ctas .btn-outline { display: none !important; }
  .hero-title { font-size: clamp(2.45rem, 7vw, 3.35rem) !important; }
  .trust-section { display: block !important; }

  .compare-cell {
    padding: 0.6rem 0.5rem !important;
    font-size: 0.8rem !important;
    gap: 0.35rem !important;
  }
  .compare-col-head {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.88rem !important;
    gap: 0.35rem !important;
  }
  .compare-cell svg {
    width: 14px !important;
    height: 14px !important;
    margin-top: 1px !important;
  }
  .compare-col-head svg {
    width: 16px !important;
    height: 16px !important;
  }

  .bottom-line { flex-direction: column; align-items: flex-start; }

  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    border-right: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
    min-height: auto !important;
    padding: 0.85rem 0.6rem !important;
    justify-content: flex-start !important;
  }
  .trust-item:nth-child(2n) {
    border-right: 0 !important;
  }
  .trust-item:nth-child(3n) {
    border-right: 1px solid var(--border) !important;
  }
  .trust-item:nth-child(5) {
    grid-column: span 2;
    border-right: 0 !important;
    border-bottom: 0 !important;
    justify-content: center !important;
  }
  .carousel-track { grid-auto-columns: 82%; }
  .feature-grid { grid-template-columns: 1fr; }
  .quote-dialog {
    max-height: 94dvh;
    border-radius: 22px;
    padding: 0.8rem;
  }
  .quote-dialog-copy,
  .modal-form { border-radius: 18px; }
}

@media (max-width: 560px) {
  .section-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .hero {
    padding-top: clamp(2rem, 8vw, 3rem);
  }
  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.2rem) !important;
  }
  .hero-subhead {
    font-size: 1.08rem;
    line-height: 1.62;
  }
  .card-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
  .carousel-track { grid-auto-columns: 92%; }
  .why-metrics { grid-template-columns: repeat(2, 1fr); }
  .why-feature-grid { grid-template-columns: 1fr; }
  .feature-toggle { display: flex; }
  .feature .feature-body p {
    overflow: hidden;
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.32s ease, opacity 0.25s ease;
  }
  .feature.is-collapsed .feature-body p {
    max-height: 0;
    opacity: 0;
  }
  .carousel-controls { justify-content: space-between; }
  .coverage-metrics { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .quote-modal { padding: 0.65rem; align-items: end; }
  .quote-dialog {
    width: 100%;
    max-height: 96dvh;
    border-radius: 22px 22px 0 0;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Floating Bottom Bar ---------- */
.floating-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 100px);
  width: auto;
 
  background: transparent;
  
  z-index: 90;
  pointer-events: none;
}
.floating-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.floating-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.floating-bar-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile responsive for floating bar */
@media (max-width: 760px) {
  body {
    padding-bottom: 72px; /* Ensure footer content is not blocked */
  }
  .floating-bar {
    display: block;
    bottom: 0;
    left: 0;
    transform: translateY(100px);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: #fff;
    border-top: 1px solid var(--maroon-border);
    border-inline: none;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 16px rgba(58, 9, 18, 0.08);
  }
  .floating-bar.is-visible {
    transform: translateY(0);
  }
  .floating-bar-inner {
    gap: 0;
  }
  .floating-bar-text {
    display: none; /* Hide text on mobile to make room for full width CTA button */
  }
  .floating-bar-btn {
    width: 100%;
    text-align: center;
    padding-block: 0.8rem;
    font-size: 1rem;
  }
}

/* ============================================================
   Shared — centered section heads
   ============================================================ */
.section-head-center {
  margin-inline: auto;
  text-align: center;
}
.section-head-center .section-body { margin-inline: auto; }
.section-subhead {
  margin-top: 0.9rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 560px) {
  .section-head-center {
    text-align: left;
    margin-inline: 0;
  }
  .section-head-center .section-body {
    margin-inline: 0;
  }
}

/* ============================================================
   Marquee — infinite, draggable, auto-scrolling rail
   Used by Product Range + Equipment ("Complete IT infrastructure")
   ============================================================ */
.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  outline: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee:focus-visible {
  outline: 3px solid var(--maroon-tint-2);
  outline-offset: 6px;
  border-radius: var(--radius-lg);
}
.marquee.is-dragging { cursor: grabbing; }
.marquee.is-dragging .marquee-track { user-select: none; }
.marquee img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  padding-block: 0.75rem;
}

/* ============================================================
   Product Range — "Explore from a Wide Range of Products"
   ============================================================ */
.product-range { background: var(--off-white); }
.product-range .section-head { max-width: none; }
.product-range .section-body { max-width: 640px; }
@media (min-width: 768px) {
  /* single line on desktop; wraps naturally on mobile */
  .product-range .section-title { white-space: nowrap; }
}

.range-marquee .range-card {
  flex: 0 0 auto;
  width: clamp(150px, 42vw, 190px);
}
.range-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.range-card:hover {
  transform: translateY(-4px);
  border-color: var(--maroon-border);
  box-shadow: var(--shadow-md);
}
.range-card-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--maroon-tint);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  padding: 1rem;
}
.range-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(58, 9, 18, 0.12));
}
.range-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
}

/* Equipment marquee item sizing (reuses .card / .product-slide look) */
.equipment-marquee .product-slide {
  flex: 0 0 auto;
  width: clamp(260px, 82vw, 340px);
  scroll-snap-align: none;
}

/* ============================================================
   Service Packs — "Service Packs Tailored to Your Growth"
   ============================================================ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pack-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pack-card:hover {
  transform: translateY(-5px);
  border-color: var(--maroon-border);
  box-shadow: var(--shadow-lg);
}
.pack-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 1.4rem;
  background: var(--maroon-tint);
}
.pack-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pack-devices {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--maroon);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.pack-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
.pack-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}
.pack-desc {
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: 1.25rem;
}
.pack-more {
  margin-top: auto;
}
.pack-more svg { width: 16px; height: 16px; }

/* Feature checklist — used inside the pack detail modal */
.pack-features {
  display: grid;
  gap: 0.7rem;
}
.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--ink);
}
.pack-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-green);
}

/* ============================================================
   Service Pack — detail modal
   ============================================================ */
.pack-modal {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.pack-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pack-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 19, 21, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pack-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92dvh, 780px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(236, 205, 211, 0.9);
  border-radius: 28px;
  box-shadow: 0 40px 110px rgba(27, 19, 21, 0.28);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.24s ease;
}
.pack-modal.is-open .pack-dialog { transform: none; }
.pack-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--maroon);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pack-close:hover { transform: rotate(6deg) scale(1.04); box-shadow: var(--shadow-md); }
.pack-close svg { width: 20px; height: 20px; }

.pack-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.pack-modal-media {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--maroon-tint);
  border-radius: 28px 0 0 28px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.pack-modal-media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}
.pack-modal-media .pack-devices { top: 1.1rem; left: 1.1rem; }
.pack-modal-info {
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 680px;
  min-height: 0;
}
.pack-modal-info-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: clamp(2.5rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem) 0;
}
.pack-modal-info-footer {
  flex-shrink: 0;
  padding: 1.25rem clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--border);
  background: #fff;
  text-align: center;
}
.pack-modal-info-footer .btn {
  display: inline-block;
  width: auto;
  min-width: 180px;
}
.pack-modal-info .pack-name { display: block; }
.pack-modal-info h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.6rem;
}
.pack-modal-subhead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--ink);
  margin: 1.35rem 0 0.8rem;
}
.pack-modal-subhead svg { width: 18px; height: 18px; color: var(--maroon); }
.pack-modal-cta { margin-top: 1.6rem; }

/* ============================================================
   Product / Service sections — responsive
   ============================================================ */
@media (max-width: 980px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pack-modal-grid { grid-template-columns: 1fr; }
  .pack-dialog {
    overflow-y: auto;
    max-height: 92dvh;
  }
  .pack-modal-media {
    border-radius: 28px 28px 0 0;
    aspect-ratio: 16 / 10;
    padding: clamp(1rem, 3vw, 1.75rem);
  }
  .pack-modal-media img {
    max-height: 200px;
  }
  .pack-modal-info {
    max-height: none;
  }
  .pack-modal-info-scroll {
    overflow-y: visible;
    flex: none;
    padding: 1.5rem 1.25rem 0;
  }
  .pack-modal-info-footer {
    padding: 1rem 1.25rem;
  }
  .pack-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 560px) {
  .equipment-marquee .product-slide {
    width: 74vw;
  }
  .equipment-marquee .card-image {
    max-height: 140px;
    margin-bottom: 0.5rem;
  }
  .equipment-marquee .product-slide h3 {
    font-size: 1rem;
  }
  .equipment-marquee .product-slide p {
    font-size: 0.85rem;
  }
  .equipment-marquee .product-index {
    font-size: 0.72rem;
  }
}
@media (max-width: 620px) {
  .packs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   OTP Verification
   ============================================================ */
.otp-verify-box {
  padding-top: 1rem;
}
.otp-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  text-align: center;
}
.otp-input-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.otp-input {
  width: 140px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  padding: 0.6rem 0.4rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.otp-input:focus {
  border-color: var(--maroon);
}
.otp-verify-btn {
  margin-top: 0;
}
.otp-resend-btn {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--maroon);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.otp-resend-btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
  text-decoration: none;
}
.otp-timer {
  color: var(--muted);
  font-weight: 600;
}
.otp-status {
  margin-top: 0.6rem;
}
