/* ==========================================================================
   ADANI TOTAL GAS — "Clean Corporate" Design System
   Light · airy · corporate-blue · structured grid · mega-footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --blue: #0C5AA6;
  --blue-dark: #084B8A;
  --blue-deep: #06365F;
  --green: #1FA463;
  --green-dark: #16834E;
  --orange: #F26B21;
  --orange-dark: #D4551A;

  /* Text */
  --ink: #0F2438;
  --body: #475569;
  --muted: #7A8AA0;

  /* Surfaces & lines */
  --line: #E4EBF2;
  --bg: #FFFFFF;
  --bg-soft: #F4F8FB;
  --bg-blue-soft: #EAF3FB;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 36, 56, .06);
  --shadow: 0 12px 30px rgba(15, 36, 56, .10);
  --shadow-lg: 0 24px 60px rgba(15, 36, 56, .14);

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1200px;

  /* Type */
  --font-head: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Gradients */
  --grad-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --grad-orange: linear-gradient(135deg, #FF8A3D 0%, var(--orange) 55%, var(--orange-dark) 100%);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: .3s var(--ease);

  --header-h: 84px;
}

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

* {
  margin: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 800;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--t);
}

ul, ol {
  list-style: none;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea, button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(12, 90, 166, .4);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 104px;
}

.section--alt {
  background: var(--bg-soft);
}

.section--blue {
  background: var(--blue-deep);
  color: #D7E6F4;
}

.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue h4 {
  color: #fff;
}

.section--blue .section-sub {
  color: rgba(255, 255, 255, .82);
}

/* Section heading group */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section--blue .eyebrow {
  color: #5BD89B;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  color: var(--ink);
}

.section--blue .section-title {
  color: #fff;
}

.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}

.btn i {
  font-size: 1.15em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--accent {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 107, 33, .32);
}

.btn--accent:hover {
  box-shadow: 0 14px 30px rgba(242, 107, 33, .42);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg-blue-soft);
}

.section--blue .btn--ghost,
.btn--ghost.btn--on-blue {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.section--blue .btn--ghost:hover,
.btn--ghost.btn--on-blue:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

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

.btn--white:hover {
  background: var(--bg-blue-soft);
  color: var(--blue-dark);
}

.btn--lg {
  padding: 18px 38px;
  min-height: 56px;
  font-size: 16px;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAV (sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), background var(--t);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

/* Topbar */
.topbar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .82);
  font-size: 13.5px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, .82);
}

.topbar a:hover {
  color: #fff;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__left span,
.topbar__left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__right a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  transition: background var(--t), transform var(--t);
}

.topbar__right a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

/* Nav row */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  transition: min-height var(--t);
}

.site-header.scrolled .nav {
  min-height: 68px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height var(--t);
}

.site-header.scrolled .nav__logo img {
  height: 40px;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--blue-deep);
  letter-spacing: -.01em;
}

/* Text wordmark fallback (when no logo image is set in admin) */
.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-deep);
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand-text i { color: var(--orange); font-size: 1.3em; line-height: 1; }
.brand-text b { font-weight: 800; color: var(--blue); }
.brand-text--light, .brand-text--light b { color: #fff; }

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--blue);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__item--has-dropdown > .nav__link i {
  font-size: 1.1em;
  transition: transform var(--t);
}

.nav__item--has-dropdown:hover > .nav__link i {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 50;
}

.nav__item:hover > .nav__dropdown,
.nav__item.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition: background var(--t), color var(--t), padding-left var(--t);
}

.nav__dropdown a:hover {
  background: var(--bg-blue-soft);
  color: var(--blue);
  padding-left: 18px;
}

/* Nav CTA (orange Apply) */
.nav__cta {
  margin-left: 10px;
  padding: 12px 24px;
  min-height: 46px;
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile overlay backdrop */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 54, 95, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
  z-index: 999;
}

.nav__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   6. HERO (home, light split)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -10%, var(--bg-blue-soft) 0%, rgba(234, 243, 251, 0) 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
}

.hero__slide {
  padding-block: 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(31, 164, 99, .1);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}

.hero__highlight {
  color: var(--blue);
  position: relative;
}

.hero__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: .28em;
  background: rgba(31, 164, 99, .22);
  z-index: -1;
  border-radius: 4px;
}

.hero__text {
  margin-top: 22px;
  font-size: 18px;
  color: var(--body);
  max-width: 520px;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero media */
.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -22px -22px auto auto;
  width: 62%;
  height: 62%;
  background: var(--grad-blue);
  border-radius: var(--radius-lg);
  opacity: .12;
  z-index: 1;
}

.hero__media::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(31, 164, 99, .25) 0%, rgba(31, 164, 99, 0) 70%);
  z-index: 0;
}

/* Hero ministats */
.hero__ministats {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__ministats > * {
  flex: 1 1 0;
  min-width: 120px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero__ministats strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--blue);
  line-height: 1;
}

.hero__ministats span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

/* Hero swiper controls */
.hero .swiper-pagination-bullet {
  background: var(--blue);
  opacity: .3;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* --------------------------------------------------------------------------
   7. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--grad-blue);
  color: #fff;
  padding-block: 84px 72px;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 80% 0%, rgba(31, 164, 99, .22) 0%, rgba(31, 164, 99, 0) 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.page-hero__sub {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  max-width: 680px;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, .45);
}

.breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. TRUST BAR
   -------------------------------------------------------------------------- */
.trustbar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trustbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 30px;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.trustbar__item i {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 22px;
}

/* --------------------------------------------------------------------------
   9. SERVICES
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc-card__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 22px;
  transition: background var(--t), color var(--t);
}

.svc-card:hover .svc-card__icon {
  background: var(--grad-blue);
  color: #fff;
}

.svc-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.svc-card__text {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 18px;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue);
}

.svc-card__link i {
  transition: transform var(--t);
}

.svc-card__link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. STAT BAND
   -------------------------------------------------------------------------- */
.statband {
  background: var(--grad-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.statband::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 15% 120%, rgba(31, 164, 99, .25) 0%, rgba(31, 164, 99, 0) 60%);
}

.statband .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-block: 72px;
}

.statband__item {
  text-align: center;
  padding: 0 10px;
}

.statband__item + .statband__item {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.statband__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  color: #fff;
}

.statband__label {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   11. FEATURE GRID / WHY
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 164, 99, .12);
  color: var(--green-dark);
  font-size: 27px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   12. SPLIT (text + image, alternating)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.split + .split {
  margin-top: 96px;
}

.split--reverse .split__media {
  order: -1;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split__media::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 55%;
  height: 55%;
  background: var(--bg-blue-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.split__body .eyebrow {
  margin-bottom: 12px;
}

.split__body h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 18px;
}

.split__body p {
  font-size: 16.5px;
  color: var(--body);
  margin-bottom: 16px;
}

.split__list {
  margin: 22px 0;
  display: grid;
  gap: 14px;
}

.split__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}

.split__list li i {
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 164, 99, .14);
  color: var(--green-dark);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   13. MODELS GRID (partnership)
   -------------------------------------------------------------------------- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  scroll-margin-top: 110px;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.model-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}

.model-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.model-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(242, 107, 33, .35);
}

.model-card__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 28px;
  margin-bottom: 20px;
}

.model-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.model-card > p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 18px;
}

.model-card__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.model-card__price small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.model-card__features {
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.model-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body);
}

.model-card__features li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

.model-card .btn {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   14. STEPS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: var(--body);
}

/* Connector line on desktop */
.steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--line);
}

/* --------------------------------------------------------------------------
   15. RECOGNITIONS / LOGOS
   -------------------------------------------------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  min-height: 96px;
}

.logos__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.logos__item img {
  max-height: 52px;
  width: auto;
  filter: grayscale(1);
  opacity: .72;
  transition: filter var(--t), opacity var(--t);
}

.logos__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-swiper {
  padding-bottom: 56px !important;
  overflow: visible;
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tcard__stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.tcard__quote {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.7;
  position: relative;
  margin-bottom: 26px;
  flex: 1;
}

.tcard__quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: .6;
  color: rgba(12, 90, 166, .18);
  margin-bottom: 6px;
}

.tcard__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard__person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-blue-soft);
}

.tcard__person strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px;
}

.tcard__person span {
  font-size: 13.5px;
  color: var(--muted);
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--blue);
  opacity: .3;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* --------------------------------------------------------------------------
   17. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}

.faq__item.is-open {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
}

.faq__q i {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--blue);
  transition: transform var(--t);
}

.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq__a-inner {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--body);
}

.faq__item.is-open .faq__a {
  max-height: 600px;
}

/* --------------------------------------------------------------------------
   18. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--grad-blue);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 12% 0%, rgba(31, 164, 99, .25) 0%, rgba(31, 164, 99, 0) 55%),
    radial-gradient(500px 300px at 90% 110%, rgba(242, 107, 33, .2) 0%, rgba(242, 107, 33, 0) 55%);
}

.cta-band .container {
  position: relative;
  z-index: 2;
  padding-block: 84px;
  max-width: 800px;
}

.cta-band__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.cta-band p {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
}

.cta-band__actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   19. MEGA FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.footer__top {
  padding-block: 72px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer__brand img {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer__brand-contact {
  display: grid;
  gap: 12px;
}

.footer__brand-contact a,
.footer__brand-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 14.5px;
}

.footer__brand-contact i {
  color: var(--green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col ul {
  display: grid;
  gap: 12px;
}

.footer__col a {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  transition: color var(--t), padding-left var(--t);
}

.footer__col a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 18px;
  transition: background var(--t), transform var(--t);
}

.footer__social a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.footer__bottom {
  padding-block: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}

.footer__bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(255, 255, 255, .6);
}

.footer__bottom a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   20. FORMS
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-card__sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.form {
  display: grid;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.form__group {
  display: grid;
  gap: 8px;
}

.form__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.form__label .req {
  color: var(--orange);
}

.form__control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.form__control::placeholder {
  color: var(--muted);
}

.form__control:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(12, 90, 166, .14);
}

textarea.form__control {
  min-height: 130px;
  resize: vertical;
}

select.form__control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A8AA0' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

.form__check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.form__check a {
  color: var(--blue);
  font-weight: 600;
}

.form__submit {
  margin-top: 6px;
}

.form__note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.error-message {
  display: block;
  color: #DC2626;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 2px;
}

.form__control.is-invalid,
.form__control.error {
  border-color: #DC2626;
  background: #FEF2F2;
}

/* Layout helpers for apply / contact pages */
.apply-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-list li {
  display: flex;
  gap: 14px;
}

.info-list i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 20px;
}

.info-list strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 15px;
}

.info-list span {
  font-size: 14px;
  color: var(--body);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   21. LEGAL / TYPOGRAPHIC CONTENT
   -------------------------------------------------------------------------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
}

.legal h2 {
  font-size: 24px;
  margin: 38px 0 14px;
}

.legal h3 {
  font-size: 19px;
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal ul li {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   22. LOGIN
   -------------------------------------------------------------------------- */
.login-wrap {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 64px;
  background:
    radial-gradient(700px 400px at 80% -10%, var(--bg-blue-soft) 0%, rgba(234, 243, 251, 0) 60%),
    var(--bg-soft);
}

.login-card {
  width: 100%;
  max-width: 440px;
}

.login-card .form-card {
  text-align: left;
}

/* --------------------------------------------------------------------------
   23. FLOATING BUTTONS
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform var(--t), box-shadow var(--t);
  animation: wa-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 990;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--t), visibility var(--t), transform var(--t), background var(--t);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   24. SCROLL-REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.has-js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

.has-js [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-animate][data-animate-delay="1"] { transition-delay: .1s; }
[data-animate][data-animate-delay="2"] { transition-delay: .2s; }
[data-animate][data-animate-delay="3"] { transition-delay: .3s; }
[data-animate][data-animate-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .has-js [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   25. UTILITIES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --------------------------------------------------------------------------
   25b. STAT BAND — counter suffix (e.g. "50+ GAs", "8 Lakh+")
   -------------------------------------------------------------------------- */
.statband__num {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}

.statband__suffix {
  font-family: var(--font-head);
  font-weight: 700;
  color: inherit;
  font-size: .42em;       /* sits inline, slightly smaller than the big number */
  line-height: 1;
  letter-spacing: -.01em;
  white-space: pre;       /* preserve the natural leading space ("8 Lakh") */
}

/* --------------------------------------------------------------------------
   25c. MODEL CARD — inline profit stats / note / tag (franchise.php)
   -------------------------------------------------------------------------- */
.model-card .eyebrow {        /* "tag" rendered as an eyebrow inside the card */
  display: inline-block;
  margin-bottom: 12px;
}

.statband__inline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-card__stat {
  text-align: center;
}

.model-card__stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
  line-height: 1.1;
}

.model-card__stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.model-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--body);
}

.model-card__note i {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   25d. SERVICE CARD — optional media image
   -------------------------------------------------------------------------- */
.svc-card__media {
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
}

.svc-card__media:empty {
  display: none;
}

.svc-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   25e. RECOGNITIONS — icon + text variant (index.php)
   -------------------------------------------------------------------------- */
.logos__item {
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.logos__item i {
  font-size: 34px;
  color: var(--blue);
  line-height: 1;
}

.logos__item span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   25f. PARTNERSHIP COMPARISON TABLE (franchise.php)
   Supports BOTH class families:
     • .compare / .compare__scroll / .compare__table / th.is-featured
     • .comparison-table-wrapper / .comparison-table / .highlight (current markup)
   -------------------------------------------------------------------------- */
.compare__scroll,
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.compare__table,
.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}

.compare__table th,
.compare__table td,
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--body);
  vertical-align: middle;
}

/* First column = feature labels: left-aligned, emphasised, sticky on scroll */
.compare__table th:first-child,
.compare__table td:first-child,
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--ink);
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}

/* Header row */
.compare__table thead th,
.comparison-table thead th {
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
  border-bottom-color: var(--blue-deep);
}

.compare__table thead th:first-child,
.comparison-table thead th:first-child {
  background: var(--blue-deep);  /* keep sticky label cell on-brand in header */
  color: #fff;
}

/* Zebra striping */
.compare__table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) td {
  background: var(--bg-soft);
}

.compare__table tbody tr:nth-child(even) td:first-child,
.comparison-table tbody tr:nth-child(even) td:first-child {
  background: var(--bg-soft);  /* keep sticky cell matching its row */
}

.compare__table tbody tr:last-child td,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Featured / highlighted column */
.compare__table thead th.is-featured,
.compare__table thead th.highlight,
.comparison-table thead th.is-featured,
.comparison-table thead th.highlight {
  background: var(--blue);
  box-shadow: inset 0 4px 0 0 var(--orange);  /* coloured top label accent */
}

.compare__table td.is-featured,
.compare__table td.highlight,
.comparison-table td.is-featured,
.comparison-table td.highlight {
  background: var(--bg-blue-soft);
  color: var(--ink);
  font-weight: 600;
}

.compare__table tbody tr:nth-child(even) td.is-featured,
.compare__table tbody tr:nth-child(even) td.highlight,
.comparison-table tbody tr:nth-child(even) td.is-featured,
.comparison-table tbody tr:nth-child(even) td.highlight {
  background: #DEEBF8;  /* slightly deeper blue tint on zebra rows */
}

/* Boolean check / cross cells */
.compare__table i.ri-check-line,
.comparison-table i.ri-check-line,
.compare__table .yes,
.comparison-table .yes {
  color: var(--green);
  font-size: 20px;
}

.compare__table i.ri-close-line,
.comparison-table i.ri-close-line,
.compare__table .no,
.comparison-table .no {
  color: var(--muted);
  font-size: 20px;
}

/* ==========================================================================
   26. RESPONSIVE — mobile-first breakpoints
   ========================================================================== */

/* Large tablet / small desktop */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .statband .container { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .statband__item:nth-child(2n) { border-left: none; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
  .hero__grid { gap: 40px; }
  .model-card--featured { transform: none; }
  .model-card--featured:hover { transform: translateY(-6px); }
  .apply-layout { grid-template-columns: 1fr; }
}

/* Tablet — collapse nav to hamburger */
@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
    order: 3;
  }

  .nav__backdrop {
    display: block;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 88px 22px 32px;
    box-shadow: var(--shadow-lg);
    transform: translateX(110%);
    transition: transform var(--t);
    overflow-y: auto;
    z-index: 1001;
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav__link {
    padding: 16px 6px;
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .nav__link::after { display: none; }

  /* Mobile dropdown = inline accordion */
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
  }

  .nav__item.is-open > .nav__dropdown {
    max-height: 460px;
  }

  .nav__dropdown a {
    padding-left: 18px;
    font-size: 15px;
  }

  .nav__cta {
    margin: 18px 0 0;
    width: 100%;
  }
}

/* Phones */
@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .section { padding-block: 60px; }
  .cta-band .container,
  .statband .container { padding-block: 56px; }
  .page-hero { padding-block: 56px; }

  .section-head { margin-bottom: 40px; }

  .hero__slide { padding-block: 48px 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__content { max-width: none; }
  .hero__media { order: -1; }
  .hero__media::before { display: none; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__ministats { margin-top: 30px; }

  .trustbar .container { grid-template-columns: 1fr 1fr; gap: 18px; padding-block: 24px; }

  .svc-grid,
  .feature-grid,
  .models-grid,
  .steps,
  .logos { grid-template-columns: 1fr; }

  /* keep recognitions as a tidy 2-up on phones rather than one huge column */
  .logos { grid-template-columns: 1fr 1fr; }

  .statband .container { grid-template-columns: 1fr 1fr; }

  .split,
  .split--reverse,
  .apply-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }

  .split + .split { margin-top: 56px; }

  .split--reverse .split__media { order: 0; }

  .split__media::before { display: none; }

  .form-card { padding: 26px 22px; }

  .form__row,
  .form__row--3 { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .back-to-top { right: 16px; bottom: 80px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .trustbar .container,
  .statband .container,
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .statband__item + .statband__item { border-left: none; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
}
