/* =============================================================
   India Rentalz — Stylesheet
   Design: Dark Navy + Blue Theme (matching design inspiration)
   ============================================================= */

/* ---------- Scrollbar hidden ---------- */
::-webkit-scrollbar-thumb { background: transparent !important; }
* { scrollbar-width: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Blue */
  --blue:         #1946c8;
  --blue-dark:    #1237a0;
  --blue-light:   #2256e0;
  --blue-pale:    #e8effc;
  --blue-pale-2:  #d0dff8;
  --blue-border:  #b8cff5;

  /* Navy */
  --navy:         #0d1836;
  --navy-2:       #162040;
  --navy-3:       #1e2d52;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f5f7fb;
  --ink:          #1a2340;
  --body:         #4d5a72;
  --muted:        #8492a6;
  --border:       #e2e8f0;
  --border-2:     #d1dce8;

  /* Accent */
  --green:        #22c55e;
  --red:          #ef4444;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(13,24,54,0.06);
  --shadow-sm:    0 2px 12px rgba(13,24,54,0.08);
  --shadow-md:    0 8px 32px rgba(13,24,54,0.12);
  --shadow-lg:    0 20px 60px rgba(13,24,54,0.16);
  --shadow-blue:  0 8px 24px rgba(25,70,200,0.24);

  /* Radius */
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;

  /* Layout */
  --maxw:   1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h:  72px;

  /* Fonts */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
  -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;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  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(4rem, 8vw, 7rem);
}

/* ---------- Eyebrow / Labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: rgba(255,255,255,0.5); }

/* ---------- Section Heads ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head-center {
  margin-inline: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  max-width: 100%;
}
.section-title-light {
  color: var(--white);
}
.text-accent { color: var(--blue); }
.text-accent-light { color: #7eb3ff; }

.section-body {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.7;
}
.section-body-light { color: rgba(255,255,255,0.7); }

.section-body p + p { margin-top: 0.75rem; }

.section-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
}
.section-subhead {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--blue-pale);
}

.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.navbar.is-scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.brand .brand-logo { height: 36px; width: auto; }
.brand .brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-head);
  font-weight: 800;
}
.brand .brand-accent { color: #7eb3ff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
}
.nav-toggle span {
  display: block;
  width: 18px; 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(0,0,0,0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- HERO ---------- */
.hero {
  background:
    linear-gradient(90deg, rgba(13,24,54,0.96) 0%, rgba(13,24,54,0.9) 46%, rgba(13,24,54,0.72) 100%),
    url("../assets/hero-patterns/hero-pattern-option-1.png") center / cover no-repeat,
    var(--navy);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,24,54,0.08), rgba(13,24,54,0.28));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,70,200,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy { color: #fff; }

.hero-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.hero-title .title-accent {
  color: #7eb3ff;
}

.hero-subhead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  line-height: 1.7;
}

.hero-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.hero-usecases li {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7eb3ff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(126,179,255,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.hero-usecase-note {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.hero-valueprops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-top: 1.5rem;
}
.hero-valueprops li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.hero-valueprops li svg {
  width: 17px; height: 17px;
  color: #7eb3ff;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* Hero form */
.hero-form-wrap { position: relative; }
.lead-form {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.lead-form-head { margin-bottom: 1.5rem; }
.lead-form-head h2 {
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lead-form-head p {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--blue); }
.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-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: var(--muted); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-pale);
}
.field.has-error input,
.field.has-error select { border-color: var(--red); }
.field .field-error {
  font-size: 0.72rem;
  color: var(--red);
  display: none;
}
.field.has-error .field-error { display: block; }

.lead-form > .btn-block { margin-top: 1.1rem; }
.form-status {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2rem;
}
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ---------- TRUST BAR ---------- */
.trust-section {
  display: none;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-shell { width: 100%; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  text-align: left;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-right: 0; }
.trust-item .trust-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(25,70,200,0.25);
  color: #7eb3ff;
  border-radius: var(--r-sm);
}
.trust-item .trust-icon svg { width: 20px; height: 20px; }
.trust-item .trust-value {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.1;
}
.trust-item .trust-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- MARQUEE TICKER (between sections) ---------- */
.section-ticker {
  background: var(--blue);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  padding: 0 2rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-item::after {
  content: "●";
  font-size: 0.4rem;
  opacity: 0.5;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- PROBLEM (white) ---------- */
.problem { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}
.problem-list-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.problem-list-card h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.cross-list { display: grid; gap: 1rem; }
.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}
.cross-list li svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-closing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.problem-closing-inner p {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.problem-closing-inner p + p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

/* ---------- SOLUTION (light gray) ---------- */
.solution { background: var(--off-white); }

.list-heading {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}
.check-grid li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}
.check-grid li svg,
.check-list li svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-closing {
  margin-top: 2.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 60ch;
  padding-left: 1.2rem;
  border-left: 3px solid var(--blue);
}

/* ---------- COMPARE (white) ---------- */
.compare { background: var(--white); }
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-col-head {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-col-head svg { width: 18px; height: 18px; }
.compare-col-head.buy {
  background: var(--off-white);
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.compare-col-head.rent {
  background: var(--blue);
  color: #fff;
  border-bottom: 1px solid var(--blue-dark);
}
.compare-cell {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  font-size: 0.93rem;
}
.compare-cell svg { width: 16px; height: 16px; 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(--blue-pale);
}
.compare-cell.rent svg { color: var(--blue); }

.bottom-line {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.bottom-line-text h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.bottom-line-text p { color: rgba(255,255,255,0.65); max-width: 56ch; font-size: 0.95rem; }

/* ---------- EQUIPMENT (light gray) ---------- */
.equipment { background: var(--off-white); padding-block: clamp(2.5rem, 5vw, 4.5rem); }

/* ---------- PRODUCT RANGE (white) ---------- */
.product-range { background: var(--white); }

/* ---------- CARD GRID (Industries) ---------- */
.industries { background: var(--off-white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.industries .card {
  overflow: hidden;
}
.industries .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 46%;
  aspect-ratio: 1;
  pointer-events: none;
}
.card:hover {
  border-color: var(--blue-border);
}
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--blue);
  border-radius: var(--r-sm);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon--art {
  position: relative;
  z-index: 1;
  width: 104px; height: 104px;
  overflow: visible;

  border-radius: 18px;
 
}
.card-icon--art::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 7px;
  height: 12px;
  background: rgba(13,24,54,0.18);
  border-radius: 999px;
  filter: blur(8px);
  z-index: -1;
}
.card-icon-image {
  width: 128%;
  height: 128%;
  max-width: none;
  object-fit: contain;
  transform: translate(4%, -12%);
  filter:
    hue-rotate(205deg)
    saturate(1.35)
    brightness(1.04)
    contrast(1.04)
    drop-shadow(0 12px 18px rgba(13,24,54,0.22));
  transition: transform 0.22s ease, filter 0.22s ease;
}
.card:hover .card-icon-image {
  filter:
    hue-rotate(205deg)
    saturate(1.45)
    brightness(1.08)
    contrast(1.06)
    drop-shadow(0 16px 22px rgba(25,70,200,0.24));
}
.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--off-white);
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--body); line-height: 1.6; }

/* ---------- WHY US (dark navy) ---------- */
.why-us { background: var(--navy); }
.why-us .section-head { max-width: 860px; }
.why-us .section-title { color: #fff; }
.why-us .text-accent { color: #7eb3ff; }
.why-us .section-body { color: rgba(255,255,255,0.65); }

/* Metrics strip */
.why-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.why-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}
.why-metric:last-child { border-right: 0; }
.why-metric:hover { background: rgba(255,255,255,0.04); }
.why-metric-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1;
}
.why-metric-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

/* Feature grid on dark */
.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(126,179,255,0.25);
}
.feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sm);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-body { flex: 1; }
.feature-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.feature-title-row h3 {
  font-size: 0.98rem;
  color: #fff;
  flex: 1;
}
.feature-toggle {
  display: none;
  flex-shrink: 0;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.feature-toggle svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.feature:not(.is-collapsed) .feature-toggle svg { transform: rotate(180deg); }
.feature p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.feature-line { display: none; }

/* ---------- MANAGE (white) ---------- */
.manage { background: var(--white); }
.manage .section-title { color: var(--ink); }
.manage .text-accent { color: var(--blue); }

.manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.manage-closing {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.97rem;
}
.manage-list-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.manage-list-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}
.check-list { display: grid; gap: 1rem; }
.manage-list-card .check-list {
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
}
.manage-list-card .check-list li { color: rgba(255,255,255,0.85); }
.manage-list-card .check-list li svg { color: #7eb3ff; }
.manage-assets { display: grid; gap: 1rem; }

/* ---------- SERVICE PACKS (light gray) ---------- */
.service-packs { background: var(--off-white); }
.service-packs .section-title { color: var(--ink); }
.service-packs .text-accent { color: var(--blue); }

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pack-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}
.pack-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 1.25rem;
  background: var(--blue-pale);
}
.pack-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pack-devices {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}
.pack-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem;
}
.pack-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.pack-desc { font-size: 0.9rem; color: var(--body); margin-bottom: 1.25rem; flex: 1; }
.pack-more { margin-top: auto; }
.pack-more svg { width: 15px; height: 15px; }

.pack-features { display: grid; gap: 0.75rem; }
.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.pack-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green); }

/* ---------- FINAL CTA / QUOTE (navy) ---------- */
.final-cta { background: var(--navy); }
.final-cta .section-title { color: #fff; max-width: 26ch; }
.final-cta .text-accent { color: #7eb3ff; }

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.final-copy { color: rgba(255,255,255,0.85); }

.final-points { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.final-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.final-points li svg { width: 16px; height: 16px; color: #7eb3ff; flex-shrink: 0; }

.final-block { margin-top: 2.5rem; }
.final-block h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7eb3ff;
  border: 1px solid rgba(126,179,255,0.25);
  background: rgba(255,255,255,0.05);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.final-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.final-panel h3 { font-size: 1.25rem; color: #fff; margin-bottom: 1.25rem; }
.final-panel h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.check-list-light li { color: rgba(255,255,255,0.8); font-weight: 500; }
.check-list-light li svg { color: #7eb3ff; }
.final-panel .btn { margin-top: 1.75rem; min-height: 52px; }

/* ---------- MODALS ---------- */
.quote-modal, .pack-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,
.pack-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-backdrop, .pack-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,24,54,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quote-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90dvh, 740px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.24s ease;
}
.quote-modal.is-open .quote-dialog { transform: none; }

.quote-close, .pack-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 0.2s ease;
}
.quote-close:hover, .pack-close:hover { background: rgba(255,255,255,0.18); }
.quote-close svg, .pack-close svg { width: 18px; height: 18px; }

.quote-dialog-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--navy);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  color: #fff;
  min-height: 100%;
  overflow: hidden;
}
.quote-dialog-copy::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(25,70,200,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.quote-dialog-copy h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-top: 2rem;
  position: relative;
}
.quote-dialog-copy p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  position: relative;
}

.modal-form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.modal-form .lead-form-head h2 { font-size: 1.15rem; }

/* Pack modal */
.pack-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(90dvh, 760px);
  overflow: hidden;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.24s ease;
}
.pack-modal.is-open .pack-dialog { transform: none; }
.pack-close {
  border-color: var(--border);
  background: #fff;
  color: var(--body);
}
.pack-close:hover { background: var(--off-white); }

.pack-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.pack-modal-media {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--blue-pale);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  padding: 2.5rem;
}
.pack-modal-media img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}
.pack-modal-media .pack-devices { top: 1rem; left: 1rem; }
.pack-modal-info {
  display: flex;
  flex-direction: column;
  max-height: 660px;
  min-height: 0;
}
.pack-modal-info-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 2.5rem 2rem 0;
}
.pack-modal-info-footer {
  flex-shrink: 0;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  background: #fff;
  text-align: center;
}
.pack-modal-info .pack-name { display: block; }
.pack-modal-info h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 0.5rem; }
.pack-modal-subhead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.75rem;
}
.pack-modal-subhead svg { width: 16px; height: 16px; color: var(--blue); }

/* ---------- MARQUEE ---------- */
.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 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; }
.marquee.is-dragging .marquee-track { user-select: none; }
.marquee img { -webkit-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.5rem;
}

/* Product cards in marquee */
.equipment-marquee .product-slide {
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 300px);
  scroll-snap-align: none;
}

/* Range cards */
.product-range .section-head { max-width: none; }
.range-marquee .range-card {
  flex: 0 0 auto;
  width: clamp(150px, 22vw, 185px);
}
.range-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.range-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}
.range-card-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--blue-pale);
  border-radius: var(--r-sm);
  margin-bottom: 0.85rem;
  padding: 0.85rem;
}
.range-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.range-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--ink); }

.product-slide {
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.4rem);
}
.product-index {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  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;
  font-size: 0.83rem;
}
.back-to-top {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}
.back-to-top:hover { background: var(--blue-light); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- FLOATING BAR ---------- */
.floating-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 90;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.floating-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.floating-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.floating-bar-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  border-radius: 50px;
}

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- OTP ---------- */
.otp-verify-box { padding-top: 1rem; }
.otp-label {
  font-size: 0.88rem;
  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: var(--r-sm);
  outline: none;
  transition: border-color 0.2s;
}
.otp-input:focus { border-color: var(--blue); }
.otp-resend-btn {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  font-size: 0.83rem;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.otp-resend-btn:disabled { color: var(--muted); text-decoration: none; }
.otp-timer { color: var(--muted); font-weight: 600; }
.otp-status { margin-top: 0.6rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-subhead { max-width: 52ch; }
  .hero-form-wrap { order: 2; }
  .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; border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .modal-form { border-radius: 0 0 var(--r-xl) var(--r-xl); }
  .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.08); }
  .manage-grid { grid-template-columns: 1fr; }
  .manage-list-card { order: -1; }
  .final-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .pack-modal-grid { grid-template-columns: 1fr; }
  .pack-dialog { overflow-y: auto; max-height: 92dvh; }
  .pack-modal-media { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .pack-modal-info { max-height: none; }
  .pack-modal-info-scroll { overflow-y: visible; flex: none; padding: 1.5rem 1.25rem 0; }
}

@media (max-width: 760px) {
  .navbar { background: #fff; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: min(300px, 84vw);
    height: calc(100dvh - var(--nav-h));
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    background: var(--navy-2);
    border-left: 1px solid rgba(255,255,255,0.08);
    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: 1rem;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
  }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .lead-form-fields { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .hero-form-wrap { display: none !important; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem) !important; }
  .trust-section { display: block !important; }

  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    padding: 1rem 0.75rem !important;
  }
  .trust-item:nth-child(2n) { border-right: 0 !important; }
  .trust-item:nth-child(5) { grid-column: span 2; border-right: 0 !important; border-bottom: 0 !important; justify-content: center !important; }

  .check-grid { grid-template-columns: 1fr; }
  .manage-list-card .check-list { grid-template-columns: 1fr; }
  .why-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-cell {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
  .compare-col-head { padding: 0.75rem !important; font-size: 0.88rem !important; }

  body { padding-bottom: 72px; }
  .floating-bar {
    display: block;
    bottom: 0;
    left: 0;
    transform: translateY(100px);
    width: 100%;
    border-radius: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1rem;
  }
  .floating-bar.is-visible { transform: translateY(0); }
  .floating-bar-inner { gap: 0; }
  .floating-bar-text { display: none; }
  .floating-bar-btn { width: 100%; text-align: center; padding-block: 0.85rem; }

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

@media (max-width: 620px) {
  .packs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
  }
  .hero-title {
    font-size: clamp(1.3rem, 3.2vw, 2.2rem);
  }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 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; }
  .equipment-marquee .product-slide { width: 72vw; }
  .quote-modal { padding: 0.5rem; align-items: flex-end; }
  .quote-dialog {
    width: 100%;
    max-height: 95dvh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; }
}

@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; }
}
