/* ==========================================================================
   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: 1340px;

  /* 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: 62px;
}

.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 40px;
  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);
}

/* Space between a section-head's text and a button/CTA that follows it */
.section-head .btn {
  margin-top: 26px;
}

/* --------------------------------------------------------------------------
   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: #BF4373;
  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: #BF4373;
  color: #fff;
}

.btn--primary:hover {
  background: #A2335E;
}

.btn--accent {
  background: linear-gradient(135deg, #D85A8B 0%, #BF4373 55%, #A2335E 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(191, 67, 115, .32);
}

.btn--accent:hover {
  box-shadow: 0 14px 30px rgba(191, 67, 115, .45);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: #BF4373;
  color: #BF4373;
  background: rgba(191, 67, 115, .08);
}

.section--blue .btn--ghost,
.cta-band .btn--ghost,
.btn--ghost.btn--on-blue {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.section--blue .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.btn--ghost.btn--on-blue:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: #BF4373;
}

.btn--white:hover {
  background: #fff;
  color: #A2335E;
}

.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: 60px;
}

.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: 58px 50px;
  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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

/* Services row: cards centered as a group (inherits base .svc-grid flex
   centering). Works for any count (4, 5, ...) — fills the row evenly and
   stays centred instead of leaving an empty trailing column. */
.svc-grid--row5 {
  gap: 22px;
}

.svc-card {
  flex: 1 1 240px;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Icon = floating badge overlapping the bottom-left of the photo */
.svc-card__icon {
  position: absolute;
  top: 166px;
  left: 22px;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--grad-blue);
  color: #fff;
  font-size: 26px;
  box-shadow: var(--shadow);
  transition: transform var(--t);
}

.svc-card:hover .svc-card__icon {
  transform: translateY(-5px);
}

.svc-card__title {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  padding: 22px 24px 0;
}

/* clear the floating icon only when the card has one */
.svc-card:has(.svc-card__icon) .svc-card__title {
  padding-top: 40px;
}

.svc-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  padding: 9px 24px 0;
}

.svc-card__text:last-child {
  padding-bottom: 24px;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 16px 24px 24px;
  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);
}

/* Highlight the service the user opened from the Services dropdown (#svc-...) */
.svc-card { scroll-margin-top: 110px; }
.svc-card:target {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 90, 166, .22), var(--shadow-lg);
  animation: modelTargetPulse 1.4s ease 1;
}
.svc-card:target::before {
  content: "Viewing this";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(191, 67, 115, .4);
}

/* --------------------------------------------------------------------------
   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: 54px;
}

.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(auto-fit, minmax(240px, 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);
  display: flex;
  flex-direction: column;
}

.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);
}

/* "Know More" link aligned at the bottom across all feature cards (equal height) */
.feature-card .svc-card__link {
  margin-top: auto;
  padding: 18px 0 0;
}

/* --------------------------------------------------------------------------
   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(auto-fit, minmax(320px, 430px));
  justify-content: center;
  gap: 32px;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  scroll-margin-top: 110px;
}

/* Thin accent rail along the top edge — full-card overlay so the card's own
   border-radius clips the corners cleanly (only the top 4px is coloured). */
.model-card {
  --rail-color: var(--line);
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, var(--rail-color) 4px, transparent 4px);
  pointer-events: none;
  transition: background var(--t);
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
  --rail-color: var(--blue);
}

.model-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  --rail-color: var(--blue);
}

.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: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-blue-soft);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 16px;
}

.model-card--featured .model-card__icon {
  background: var(--blue);
  color: #fff;
}

.model-card__head .eyebrow {
  margin-bottom: 6px;
}

.model-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.model-card__overview {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 14px 0 20px;
}

/* Price block — tinted highlight */
.model-card__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--blue-deep);
  line-height: 1.1;
  background: var(--bg-blue-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.model-card--featured .model-card__price {
  background: var(--blue);
  color: #fff;
}

.model-card__price small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 6px;
}

.model-card--featured .model-card__price small {
  color: rgba(255, 255, 255, .8);
}

/* Returns — clean stat strip */
.model-card__returns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  margin-bottom: 22px;
}

.model-card__returns .model-card__stat {
  text-align: center;
  position: relative;
}

.model-card__returns .model-card__stat + .model-card__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: var(--line);
}

.model-card__stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--blue);
  line-height: 1.2;
  word-break: break-word;
}

.model-card__stat span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Feature checklist */
.model-card__features {
  margin: 0 0 22px;
  display: grid;
  gap: 11px;
}

.model-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
}

.model-card__features li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Investment breakdown — tinted box */
.model-card__breakdown {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.model-card__breakdown h5 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.model-card__breakdown ul {
  display: grid;
  gap: 9px;
}

.model-card__breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  color: var(--body);
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line);
}

.model-card__breakdown li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.model-card__breakdown li strong {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.model-card .btn {
  margin-top: auto;
}

/* When a Partnership dropdown link (#dealership, #franchise, …) is clicked,
   highlight the matching card so the user clearly sees which model they opened */
.model-card:target {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 90, 166, .22), var(--shadow-lg);
  animation: modelTargetPulse 1.4s ease 1;
}
.model-card:target::after {
  content: "Viewing this option";
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(191, 67, 115, .4);
}
@keyframes modelTargetPulse {
  0%   { box-shadow: 0 0 0 8px rgba(191, 67, 115, .35), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 3px rgba(12, 90, 166, .22), var(--shadow-lg); }
}

/* --------------------------------------------------------------------------
   14. STEPS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 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 removed — it broke visually on the wrapped 3x2 grid.
   The numbered badges (01-06) already convey the step sequence. */

/* --------------------------------------------------------------------------
   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: 8px 0 56px !important; /* vertical only (horizontal padding breaks Swiper width); top room for hover-lift */
  overflow: hidden;               /* clip bleed -> flush 3-up, no left peek / right gap */
}

/* Equal-height cards across slides (the key fix) */
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.tcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px 32px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* big decorative quote mark in the top-right corner */
.tcard::before {
  content: "\201D";
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(191, 67, 115, .12);
  pointer-events: none;
}

.tcard__stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.tcard__quote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.tcard__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.tcard__person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(191, 67, 115, .35);
}

.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: linear-gradient(rgba(6, 54, 95, .82), rgba(8, 43, 67, .9)), url('../images/back.png') center / cover no-repeat;
  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: 62px;
  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: 56px 44px;
  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;
}

/* Get in Touch column (5th) */
.footer__col--contact .footer__brand-contact { margin-bottom: 18px; }
.footer__col--contact .btn { margin-top: 4px; }

.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: #BF4373;
  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: #A2335E;
  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;
}

.model-card__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.model-card__note strong {
  color: var(--body);
}

.model-card__note i {
  color: var(--blue);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   25d. SERVICE CARD — optional media image
   -------------------------------------------------------------------------- */
.svc-card__media {
  margin: 0;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.svc-card__media:empty {
  display: none;
}

.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.svc-card:hover .svc-card__media img {
  transform: scale(1.07);
}

/* subtle gradient at the photo base so the floating icon reads cleanly */
.svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 54, 95, .45), rgba(6, 54, 95, 0) 50%);
}

/* --------------------------------------------------------------------------
   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: 44px; }
  .cta-band .container,
  .statband .container { padding-block: 40px; }
  .page-hero { padding-block: 38px; }
  .footer__top { padding-block: 40px 30px; }

  .section-head { margin-bottom: 26px; }

  .hero__slide { padding-block: 32px 38px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .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; gap: 16px; }

  /* keep recognitions as a tidy 2-up on phones rather than one huge column */
  .logos { grid-template-columns: 1fr 1fr; }

  /* Comparison table: the 860px min-width (sized for 5 columns) pushed the
     model columns off-screen. With two models it fits the viewport — drop the
     min-width and tighten cells so all columns are visible without clipping. */
  .compare__table,
  .comparison-table { min-width: 0; }

  .compare__table th,
  .compare__table td,
  .comparison-table th,
  .comparison-table td { padding: 11px 9px; font-size: 12.5px; }

  .compare__table thead th,
  .comparison-table thead th { font-size: 12.5px; }

  .compare__table th:first-child,
  .compare__table td:first-child,
  .comparison-table th:first-child,
  .comparison-table td:first-child { position: static; }

  .statband .container { grid-template-columns: 1fr 1fr; gap: 24px 16px; }

  .split,
  .split--reverse,
  .apply-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 26px; }

  .split + .split { margin-top: 36px; }
  .dashboard-main { gap: 18px; }

  .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; }

  /* tighter vertical rhythm on small phones */
  .section { padding-block: 34px; }
  .cta-band .container,
  .statband .container { padding-block: 32px; }
  .page-hero { padding-block: 30px; }
  .footer__top { padding-block: 32px 24px; }
  .section-head { margin-bottom: 20px; }
  .hero__slide { padding-block: 24px 30px; }
  .hero__grid { gap: 22px; }
  .split, .split--reverse, .apply-layout, .contact-layout { gap: 22px; }
  .split + .split { margin-top: 28px; }

  .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%; }
}

/* ==========================================================================
   DEALER / FRANCHISE PORTAL  (franchise-dashboard / profile / loi / documents)
   ========================================================================== */
.dashboard-section { background: var(--bg-soft); padding-block: 48px; min-height: 60vh; }
.dashboard-grid { display: grid; grid-template-columns: 270px 1fr; gap: 30px; align-items: start; }

/* Sidebar */
.dashboard-sidebar { background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px; position: sticky; top: 100px; }
.sidebar-user { display:flex; flex-direction:column; align-items:center; text-align:center; padding-bottom:18px; border-bottom:1px solid var(--line); margin-bottom:14px; }
.sidebar-avatar { width:64px; height:64px; border-radius:50%; background: var(--grad-blue); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:800; font-size:24px; margin-bottom:10px; }
.sidebar-user h4, .sidebar-user strong { font-family:var(--font-head); font-size:15px; color:var(--ink); margin:0; }
.sidebar-user span, .sidebar-user p { font-size:12.5px; color:var(--muted); margin:2px 0 0; }
.sidebar-label { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin:14px 0 8px; }
.sidebar-menu { display:grid; gap:4px; }
.sidebar-menu a { display:flex; align-items:center; gap:11px; padding:10px 13px; border-radius:10px; color:var(--body); font-weight:600; font-size:14.5px; transition: background var(--t), color var(--t); }
.sidebar-menu a i { font-size:18px; }
.sidebar-menu a:hover { background:var(--bg-blue-soft); color:var(--blue); }
.sidebar-menu a.active { background:var(--blue); color:#fff; }

/* Main column */
.dashboard-main { display:grid; gap:26px; min-width: 0; }

/* Welcome banner */
.welcome-banner { background: var(--grad-blue); color:#fff; border-radius: var(--radius-lg); padding: 30px 32px; }
.welcome-banner h2 { color:#fff; font-size:24px; margin:0 0 8px; }
.welcome-banner p { color: rgba(255,255,255,.85); margin:0 0 18px; max-width:640px; }
.btn-white { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--blue-deep); font-family:var(--font-head); font-weight:700; font-size:14.5px; padding:11px 22px; border-radius: var(--radius-pill); transition: transform var(--t), box-shadow var(--t); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Stats */
.stats-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.stat-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:20px; display:flex; align-items:center; gap:14px; transition: transform var(--t), box-shadow var(--t); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:23px; flex-shrink:0; }
.stat-icon.primary { background: var(--bg-blue-soft); color: var(--blue); }
.stat-icon.success { background: rgba(31,164,99,.13); color: var(--green-dark); }
.stat-icon.info    { background: rgba(12,90,166,.13); color: var(--blue); }
.stat-icon.warning { background: rgba(242,107,33,.13); color: var(--orange-dark); }
.stat-content h3 { font-size:15.5px; margin:0 0 2px; color:var(--ink); }
.stat-content p { font-size:12.5px; color:var(--muted); margin:0; }
.status-badge { display:inline-block; padding:3px 12px; border-radius: var(--radius-pill); font-size:12.5px; font-weight:700; }
.status-badge.success { background: rgba(31,164,99,.16); color: var(--green-dark); }
.status-badge.warning { background: rgba(242,107,33,.16); color: var(--orange-dark); }
.status-badge.danger  { background: rgba(220,53,69,.16); color: #c0392b; }

/* Info cards (portal) — scoped so the contact-page .info-card stays intact */
.info-grid { display:grid; grid-template-columns: 1fr 1fr; gap:26px; }
.dashboard-main .info-card { background:#fff; padding:0; overflow:hidden; }
.info-card-header { display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid var(--line); }
.info-card-header h3 { font-size:16px; color:var(--ink); display:flex; align-items:center; gap:8px; margin:0; }
.info-card-header h3 i { color: var(--blue); }
.info-card-header a { font-size:13.5px; font-weight:700; color: var(--blue); }
.info-card-body { padding:8px 22px 18px; }
.info-item { display:flex; align-items:flex-start; gap:12px; padding:11px 0; }
.info-item + .info-item { border-top:1px solid var(--line); }
.info-item > i { color:var(--blue); font-size:18px; margin-top:3px; flex-shrink:0; }
.info-item-content label { display:block; font-size:12px; color:var(--muted); margin-bottom:2px; }
.info-item-content p { font-size:14.5px; color:var(--ink); font-weight:600; margin:0; }

/* Quick actions */
.quick-actions { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.quick-action-btn { display:flex; flex-direction:column; align-items:center; gap:8px; padding:18px 10px; border:1px solid var(--line); border-radius:12px; color:var(--body); text-align:center; font-weight:600; font-size:13.5px; transition: transform var(--t), border-color var(--t), background var(--t); }
.quick-action-btn i { font-size:24px; color:var(--blue); }
.quick-action-btn:hover { border-color:var(--blue); background:var(--bg-blue-soft); transform: translateY(-3px); }

/* Portal responsive */
@media (max-width: 992px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PORTAL PAGES: profile / loi / documents
   Scoped under .dashboard-main; matches the Clean Corporate portal shell.
   ========================================================================== */

/* --- Shared notice / info bar (LOI + Documents) ------------------------- */
.dashboard-main .notice-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-blue-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
}
.dashboard-main .notice-box > i {
  font-size: 24px;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.dashboard-main .notice-box.warning {
  background: rgba(242, 107, 33, .08);
  border-left-color: var(--orange);
}
.dashboard-main .notice-box.warning > i { color: var(--orange-dark); }
.dashboard-main .notice-content h4 {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
}
.dashboard-main .notice-content p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   PROFILE PAGE
   ========================================================================== */
.dashboard-main .profile-header {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
}
.profile-avatar-lg {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.profile-info h2 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 4px;
}
.profile-info > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}
.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  background: var(--bg-blue-soft);
  color: var(--blue);
}
.profile-badge i { font-size: 14px; line-height: 1; }
.profile-badge.status-success { background: rgba(31, 164, 99, .16); color: var(--green-dark); }
.profile-badge.status-warning { background: rgba(242, 107, 33, .16); color: var(--orange-dark); }
.profile-badge.status-danger  { background: rgba(220, 53, 69, .16); color: #c0392b; }

/* Profile cards grid */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.profile-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.profile-card-header i { color: var(--blue); font-size: 18px; }
.profile-card-header h3 {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}
.profile-card-body { padding: 6px 22px 14px; }
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
}
.detail-row + .detail-row { border-top: 1px solid var(--line); }
.detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  flex-shrink: 0;
}
.detail-label i { color: var(--blue); font-size: 16px; }
.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  word-break: break-word;
}
.detail-value.highlight { color: var(--blue); font-weight: 700; }
.detail-value .not-provided,
.not-provided { color: var(--muted); font-style: italic; font-weight: 400; }

/* ID / KYC document chips */
.id-docs { display: grid; gap: 12px; padding: 6px 0; }
.id-doc-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.id-doc-item > i {
  grid-row: span 2;
  font-size: 22px;
  color: var(--blue);
}
.id-doc-item label {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.id-doc-item p {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: .02em;
}
.id-doc-item p.not-provided { font-weight: 400; }

/* ==========================================================================
   LOI PAGE
   ========================================================================== */
.loi-container {
  display: grid;
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
}
.document-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.document-preview {
  text-align: center;
  padding: 34px 28px 26px;
  background: var(--bg-blue-soft);
  border-bottom: 1px solid var(--line);
}
.document-icon {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--grad-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.document-icon span {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
}
.document-preview h3 {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 4px;
}
.document-preview p { font-size: 14px; color: var(--muted); margin: 0; }
.document-body { padding: 24px 28px 28px; }
.doc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 22px;
}
.doc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.doc-detail-item > i {
  font-size: 19px;
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}
.doc-detail-content label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.doc-detail-content p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* LOI action buttons (markup uses .btn-doc) */
.btn-doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn-doc.primary { background: var(--blue); color: #fff; }
.btn-doc.primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-doc.outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-doc.outline:hover { background: var(--bg-blue-soft); transform: translateY(-2px); }
.btn-doc.disabled {
  background: var(--bg-soft);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}

/* Document contents checklist */
.doc-contents {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px 26px;
}
.doc-contents h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 16px;
}
.doc-contents h3 i { color: var(--blue); }
.contents-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.content-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--body);
  font-weight: 600;
}
.content-item i { color: var(--green); font-size: 18px; flex-shrink: 0; }

/* ==========================================================================
   DOCUMENTS PAGE
   ========================================================================== */
.documents-page { display: grid; gap: 24px; }
.documents-header h2 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 4px;
}
.documents-header p { font-size: 14px; color: var(--muted); margin: 0; }
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform var(--t), box-shadow var(--t);
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.doc-card.locked { background: var(--bg-soft); }
.doc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.doc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: var(--grad-blue);
  flex-shrink: 0;
}
.doc-card-icon.invoice { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.doc-card-icon.certificate { background: var(--grad-orange); }
.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}
.doc-badge i { font-size: 13px; line-height: 1; }
.doc-badge.available,
.doc-badge.success { background: rgba(31, 164, 99, .16); color: var(--green-dark); }
.doc-badge.pending,
.doc-badge.locked,
.doc-badge.warning { background: rgba(242, 107, 33, .16); color: var(--orange-dark); }
.doc-badge.primary,
.doc-badge.loi,
.doc-badge.invoice,
.doc-badge.certificate { background: var(--bg-blue-soft); color: var(--blue); }
.doc-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
}
.doc-card-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0 0 14px;
}
.doc-card-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.doc-card-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.doc-card-meta span i { color: var(--blue); font-size: 15px; }
.doc-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Documents action buttons (markup uses .doc-btn) */
.doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1 1 auto;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.doc-btn.primary { background: var(--blue); color: #fff; }
.doc-btn.primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.doc-btn.outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.doc-btn.outline:hover { background: var(--bg-blue-soft); transform: translateY(-2px); }
.doc-btn.success { background: var(--green); color: #fff; }
.doc-btn.success:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.doc-btn.disabled,
.doc-btn.locked {
  background: var(--bg-soft);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}

/* ==========================================================================
   PORTAL PAGES — RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .profile-grid { grid-template-columns: 1fr; }
  .documents-grid { grid-template-columns: 1fr; }
  .doc-details { grid-template-columns: 1fr; }
  .contents-list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .dashboard-main .profile-header { flex-direction: column; text-align: center; }
  .profile-badges { justify-content: center; }
  .doc-actions { flex-direction: column; }
  .doc-actions .btn-doc { justify-content: center; }
}
