/* =============================================================
   BlueSea — Main Stylesheet
   ============================================================= */

/* --- Brand colours & tokens --------------------------------- */
:root {
  --primary: #03045E;
  --secondary: #0077B6;
  --accent: #00B4D8;
  --warning: #FFB703;
  --tint: #CAF0F8;
  --bg: #ffffff;
  --bg-soft: #F4FBFF;
  --bg-section: #EBF5FF;
  --bg-sec: #EBF5FF;
  --bg-ph: #D6EAF8;
  --border: #B8D6EC;
  --border-soft: #D4EAF8;
  --text: #0D1B2A;
  --text-muted: #4A6278;
  --muted: #4A6278;
  --subtle: #7A9BB5;
  --dark: #03045E;
}

/* --- Base reset --------------------------------------------- */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  min-width: 0;
}

html {
  max-width: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
}

a {
  text-decoration: none;
}

/* --- Typography --------------------------------------------- */
.font-display,
.fd {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.02em;
}

.font-display-tight,
.fdt {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.03em;
}

/* --- Announcement bar --------------------------------------- */
@keyframes announcementGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.announcement-bar {
  background: linear-gradient(270deg,
      #03045E,
      #023E8A,
      #FFB703,
      #F77F00,
      #FFB703,
      #023E8A,
      #03045E);
  background-size: 400% 400%;
  animation: announcementGradient 20s ease infinite;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .3px;
  text-shadow: 3px 3px 12px #000;
}

.announcement-bar strong {
  color: #fff;
}

.announcement-bar a {
  color: var(--warning);
  font-weight: 600;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* --- Scroll reveal ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Nav links (desktop) ------------------------------------ */
.nav-link {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  font-size: .875rem;
  transition: color .15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* --- Mobile burger nav -------------------------------------- */
#menu-btn {
  display: none;
}

@media (max-width: 1023px) {
  #menu-btn {
    display: flex;
  }

  #menu-btn:hover {
    background: var(--bg-section);
  }

  #desktnav {
    display: none !important;
  }
}

#nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(3, 4, 94, .5);
  opacity: 0;
  transition: opacity .3s ease;
}

#nav-backdrop.open {
  display: block;
  opacity: 1;
}

#nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  z-index: 99;
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: -8px 0 32px rgba(3, 4, 94, .15);
  display: flex;
  flex-direction: column;
}

#nav-panel.open {
  transform: translateX(0);
}

/* --- Icon boxes --------------------------------------------- */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-lg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Buttons (homepage) ------------------------------------- */
.btn-primary {
  background: var(--secondary);
  color: white;
  transition: background .2s ease;
}

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

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
  transition: border-color .2s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
}

/* --- Hero (homepage) ---------------------------------------- */
.hero-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary) 0%, #023E8A 45%, var(--secondary) 100%);
}

/* --- Homepage plan cards ------------------------------------ */
.hp-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.hp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(3, 4, 94, .1);
}

.hp-card.dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hp-card-header {
  padding: 1.5rem 1.5rem 0;
}

.hp-card-detail {
  display: none;
  padding: 0 1.5rem 1.5rem;
  animation: hpSlide .22s ease;
}

.hp-card-detail.open {
  display: block;
}

@keyframes hpSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-stab {
  padding: .375rem .875rem;
  border-radius: .5rem;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s;
}

.hp-stab.on {
  background: var(--primary);
  color: #fff;
}

.hp-stab.off {
  background: var(--bg-section);
  color: var(--text);
  border-color: var(--border-soft);
}

.hp-stab.on.dark-card {
  background: #fff;
  color: var(--primary);
}

.hp-stab.off.dark-card {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .15);
}

.hp-price-row {
  display: none;
}

.hp-price-row.on {
  display: grid;
}

.hp-sertab {
  padding: .5rem 1.125rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  transition: all .15s;
}

.hp-sertab.on {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hp-sertab.off {
  background: var(--bg-section);
  color: var(--text);
}

.hp-sertab.off:hover {
  border-color: var(--primary);
}

.hp-chevron {
  transition: transform .2s ease;
}

/* --- Plans page -------------------------------------------- */
.expanded-card {
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.25rem;
  animation: slideDown .22s ease;
  box-shadow: 0 4px 24px rgba(0, 119, 182, .08);
}

@media (max-width: 639px) {
  .expanded-card {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 100%;
  }

  .compact-card {
    overflow: hidden;
    max-width: 100%;
  }

  .series-wrap {
    overflow: hidden;
    max-width: 100%;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compact-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}

.compact-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 119, 182, .1);
}

.stab {
  cursor: pointer;
  border-radius: .75rem;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .15s;
  border: 1px solid transparent;
}

.stab.on {
  background: var(--primary);
  color: #fff;
}

.stab.off {
  background: var(--bg-sec);
  color: var(--text);
  border-color: var(--border-soft);
}

.stab.off:hover {
  border-color: var(--primary);
}

.ppanel {
  display: none;
}

.ppanel.on {
  display: block;
  animation: fadeIn .18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ftab {
  cursor: pointer;
  border-radius: 99px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .15s;
}

.ftab.on {
  background: var(--primary);
  color: #fff;
}

.ftab.off {
  background: var(--bg-sec);
  color: var(--text);
  border: 1px solid var(--border-soft);
}

.ftab.off:hover {
  border-color: var(--primary);
}

.ptog {
  cursor: pointer;
  border-radius: 99px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .15s;
}

.ptog.on {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.ptog.off {
  color: var(--muted);
}

.activebadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.spill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--bg-section);
  border-radius: .625rem;
  padding: .5rem .375rem;
  text-align: center;
  border: 1px solid var(--border-soft);
}

.spill span {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
}

.series-wrap.hidden {
  display: none;
}

.ptable {
  border-radius: .875rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  min-width: 380px;
}

@media (max-width: 639px) {
  .ptable {
    min-width: 280px;
    width: 100%;
    overflow-x: scroll;
  }

  .ptable-head,
  .ptable-row {
    min-width: 440px;
  }
}

.ptable-head {
  display: grid;
  background: var(--primary);
  border-radius: .75rem .75rem 0 0;
}

.ptable-row {
  display: grid;
}

.ptable-cell {
  padding: .75rem 1rem;
  font-size: .8125rem;
}

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

.ptable-row .ptable-cell+.ptable-cell {
  border-left: 1px solid var(--border-soft);
}

.ptable-row:not(:last-child) {
  border-bottom: 1px solid var(--border-soft);
}

.series-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.whats-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  font-size: .8125rem;
  color: var(--text);
}

@media (min-width: 640px) {
  .exp-grid {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

.sib-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
}

@media (min-width: 480px) {
  .sib-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .sib-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
}

.pricing-scroll::-webkit-scrollbar {
  height: 3px;
}

.pricing-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

#filter-bar>div {
  flex-wrap: wrap;
}

@media (max-width: 639px) {
  .ptable-cell {
    white-space: nowrap;
    padding: .5rem .625rem;
    font-size: .75rem;
  }

  #plans-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 2rem !important;
    gap: 2.5rem !important;
  }

  .expanded-card {
    padding: 1.25rem 1rem !important;
  }

  .whats-included-grid {
    grid-template-columns: 1fr;
  }

  .compact-card {
    padding: 1rem;
    gap: .75rem;
  }

  .spill {
    padding: .375rem .25rem;
  }

  .spill span {
    font-size: 8px;
  }
}

/* --- How It Works page ------------------------------------- */
.step-line {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border-soft));
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary .chevron {
  transform: rotate(180deg);
}

.chevron {
  transition: transform .25s ease;
}

details {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s;
}

details[open] {
  border-color: var(--accent);
}

details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}

details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* --- About page -------------------------------------------- */
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
}

.partner-logo {
  height: 60px;
  border-radius: .875rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* --- Contact page ------------------------------------------ */
.dealer-list {
  height: 600px;
  overflow-y: auto;
}

.dealer-list::-webkit-scrollbar {
  width: 4px;
}

.dealer-list::-webkit-scrollbar-track {
  background: var(--bg-section);
}

.dealer-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.dealer-row {
  border-bottom: 1px solid var(--border-soft);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background .15s;
}

.dealer-row:hover {
  background: var(--bg-section);
}

.dealer-row.active {
  border-left: 3px solid var(--secondary);
  background: var(--bg-soft);
  padding-left: calc(1.25rem - 1px);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: #fff;
  outline: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color .2s;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.form-input:focus {
  border-color: rgba(202, 240, 248, .6);
}

/* =============================================================
   CHROME — shared across all pages
   ============================================================= */

/* --- Site header -------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 8px rgba(3, 4, 94, .06);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0 1.25rem;
  }
}

/* --- Logo ---------------------------------------------------- */
.logo-link {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  color: #03045E;
  letter-spacing: -.015em;
}

/* --- Desktop nav -------------------------------------------- */
#desktnav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}

#desktnav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

#desktnav a:hover,
#desktnav a.active {
  color: var(--primary);
  font-weight: 700;
}

/* --- Menu button -------------------------------------------- */
#menu-btn {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

/* --- Mobile nav panel chrome -------------------------------- */
.nav-panel-hdr {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}

.nav-panel-hdr .logo-text {
  font-size: 1rem;
}

.nav-panel-hdr .nav-menu-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary);
}

.nav-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-panel nav {
  flex: 1;
  overflow-y: auto;
  padding: .5rem 0;
}

#nav-panel nav a {
  display: block;
  padding: .875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
}

#nav-panel nav a:last-child {
  border-bottom: none;
}

#nav-panel nav a.active {
  font-weight: 700;
  color: var(--primary);
}

.nav-panel-ftr {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex-shrink: 0;
}

.nav-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  padding: .875rem;
  border-radius: .875rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  color: var(--primary);
  padding: .875rem;
  border-radius: .875rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-soft);
}

/* --- Footer -------------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -.015em;
}

.footer-desc {
  color: rgba(202, 240, 248, .7);
  font-size: .875rem;
  line-height: 1.6;
  max-width: 18rem;
  margin: 0;
}

footer h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, .9);
  margin-top: 0;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

footer ul a {
  color: rgba(202, 240, 248, .7);
  font-size: .875rem;
  text-decoration: none;
  transition: color .15s;
}

footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: rgba(202, 240, 248, .5);
  flex-wrap: wrap;
  gap: .5rem;
}

/* --- WhatsApp FAB ------------------------------------------- */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .2s;
}

.fab:hover {
  transform: scale(1.1);
}

/* =============================================================
   CONTENT COMPONENTS
   ============================================================= */

/* --- Section labels ----------------------------------------- */
.section-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.section-label-accent {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-label-tint {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tint);
  margin-bottom: .75rem;
  opacity: .8;
}

/* --- Hero badge --------------------------------------------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-soft);
  letter-spacing: .01em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* --- Hero stats --------------------------------------------- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: .5rem;
}

.stat-value {
  font-family: 'Roboto', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: .6875rem;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- Hero CTA row ------------------------------------------- */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  padding: .875rem 1.75rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.btn-hero-secondary {
  padding: .875rem 1.75rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

/* --- Price badge (floating) --------------------------------- */
.price-badge {
  position: absolute;
  left: 1rem;
  bottom: 3rem;
  background: white;
  border: 1px solid var(--border-soft);
  padding: .75rem 1.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 28px rgba(3, 4, 94, .12);
  z-index: 10;
}

.price-badge-label {
  font-size: .625rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin-bottom: 2px;
}

.price-badge-value {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-badge-unit {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 400;
}

/* --- Trust strip -------------------------------------------- */
.trust-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
  padding: 1.75rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.trust-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}

.trust-item-desc {
  font-size: .75rem;
  color: var(--muted);
}

/* --- Soft cards --------------------------------------------- */
.card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 1.75rem;
}

.card-soft {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 1.75rem;
}

/* --- Values cards (about page) ------------------------------ */
.values-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: box-shadow .2s;
}

.values-card:hover {
  box-shadow: 0 8px 32px rgba(3, 4, 94, .08);
}

/* --- Review cards ------------------------------------------- */
.review-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 1.75rem;
}

.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.reviewer-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .75rem;
}

.reviewer-avatar-muted {
  background: var(--bg-section);
  color: var(--secondary);
}

.reviewer-avatar-light {
  background: #EBF5FF;
  color: var(--accent);
}

.reviewer-avatar-blue {
  background: #EBF5FF;
  color: var(--primary);
}

.reviewer-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}

.reviewer-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* --- Testimonials header ------------------------------------ */
.testimonials-hdr {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.rating-score {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.rating-count {
  font-size: .75rem;
  color: var(--muted);
}

/* --- Section intro blocks ----------------------------------- */
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-intro-text {
  max-width: 36rem;
}

/* --- Step items (homepage mini how-it-works) ---------------- */
.step-item-mini {
  text-align: center;
}

.mini-step-circle {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 0 0 4px var(--bg-section);
}

.mini-step-circle-primary {
  background: var(--primary);
}

.mini-step-circle-accent {
  background: var(--accent);
}

.mini-step-circle-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--border-soft);
}

.step-title-sm {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 .375rem;
}

.step-desc-sm {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* --- How-it-works full step rows ---------------------------- */
.step-row {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
}

.step-row-last {
  position: relative;
  display: flex;
  gap: 2rem;
}

.step-num-wrap {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 4px;
}

.step-label {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .25rem;
}

.step-label-warning {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--warning);
  margin-bottom: .25rem;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-circle-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .2);
}

.step-circle-outline {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
}

.step-circle-warning {
  background: var(--warning);
  color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, .2);
}

/* --- Doc badges (A-E circles in how-it-works) --------------- */
.doc-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.doc-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-soft);
}

.doc-row-last {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}

.doc-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

.doc-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* --- Pill / status badges ----------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: 99px;
}

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

.pill-ghost {
  background: var(--bg-section);
  color: var(--muted);
  border: 1px solid var(--border-soft);
}

.pill-outline {
  background: var(--bg-section);
  color: var(--primary);
  border: 1px solid var(--border-soft);
}

.pill-warning {
  background: rgba(255, 183, 3, .12);
  color: var(--primary);
  border: 1px solid rgba(255, 183, 3, .3);
}

/* --- Download PDF strip ------------------------------------- */
.pdf-strip {
  margin-top: 3.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pdf-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pdf-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-download {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--primary);
  padding: .625rem 1.25rem;
  border-radius: .875rem;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s;
}

.btn-download:hover {
  border-color: var(--secondary);
}

/* --- How-it-works bottom CTA -------------------------------- */
.hiw-cta {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 1.75rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hiw-cta-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: .08;
  pointer-events: none;
}

.hiw-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn-cta-white {
  background: #fff;
  color: var(--primary);
  padding: .75rem 1.25rem;
  border-radius: .875rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: opacity .15s;
}

.btn-cta-white:hover {
  opacity: .88;
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: .75rem 1.25rem;
  border-radius: .875rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: background .15s;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

/* --- Page intro (gradient hero banner) ---------------------- */
.page-intro {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-intro-inner {
  position: relative;
  z-index: 1;
}

.page-intro-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200%;
  pointer-events: none;
}

.page-intro-wave svg {
  width: 100%;
  height: 60px;
  display: block;
  animation: waveIntroAnim 16s linear infinite;
}

@keyframes waveIntroAnim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Plans page intro (taller) ------------------------------ */
.plans-intro {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-content-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .page-content-inner {
    padding: 0 1.25rem;
  }
}

/* --- Filter bar (plans page) -------------------------------- */
#filter-bar {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 8px rgba(3, 4, 94, .06);
}

.filter-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: .875rem 2.5rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .filter-bar-inner {
    padding: .75rem 1rem;
  }
}

/* --- Plans content container -------------------------------- */
.plans-content-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (max-width: 767px) {
  .plans-content-wrap {
    padding: 2rem 1rem;
    gap: 3rem;
  }
}

/* --- Jump toggle (how-it-works) ----------------------------- */
.jump-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, .12);
  border-radius: 99px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.jump-toggle-active {
  background: #fff;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem 1.5rem;
  border-radius: 99px;
  text-decoration: none;
}

.jump-toggle-idle {
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  font-weight: 600;
  padding: .625rem 1.5rem;
  border-radius: 99px;
  text-decoration: none;
  transition: color .15s;
}

.jump-toggle-idle:hover {
  color: #fff;
}

/* --- Process divider ---------------------------------------- */
.process-divider-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* --- About hero -------------------------------------------- */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual-card {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-visual-note {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: .625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-badge {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(202, 240, 248, .9);
  padding: .375rem .875rem;
}

.about-badge-gold {
  background: rgba(255, 183, 3, .15);
  border: 1px solid rgba(255, 183, 3, .25);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  color: #FFD166;
  padding: .375rem .875rem;
}

.about-badge-tint {
  background: rgba(0, 180, 216, .15);
  border: 1px solid rgba(0, 180, 216, .25);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--tint);
  padding: .375rem .875rem;
}

/* --- About stats -------------------------------------------- */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-stat {
  text-align: center;
}

/* --- Story section ------------------------------------------ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-visual-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .4;
}

.story-visual-deco {
  opacity: .15;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.story-visual-note {
  font-size: .625rem;
  font-weight: 500;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
}

/* --- Mission/Vision grid ------------------------------------ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(3, 4, 94, .04);
}

.vision-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 1.75rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.vision-card-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: .07;
}

/* --- Team section ------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-member {
  text-align: center;
}

.team-member-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--primary);
}

.team-member-role {
  font-size: .75rem;
  color: var(--muted);
}

/* --- Partners section --------------------------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

/* --- About CTA banner --------------------------------------- */
.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.about-cta-deco-1 {
  position: absolute;
  top: -40px;
  right: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.about-cta-deco-2 {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 180, 216, .08);
  pointer-events: none;
}

.btn-cta-primary-lg {
  background: #fff;
  color: var(--primary);
  padding: 1rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  transition: opacity .15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta-primary-lg:hover {
  opacity: .88;
}

.btn-cta-ghost-lg {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 1rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta-ghost-lg:hover {
  background: rgba(255, 255, 255, .18);
}

/* --- Contact page ------------------------------------------ */
.contact-map-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border: 1px solid var(--border-soft);
  border-radius: 1.5rem;
  overflow: hidden;
}

.map-panel {
  position: relative;
  border-right: 1px solid var(--border-soft);
  background: var(--bg-section);
  min-height: 600px;
}

.map-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
}

.map-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.map-placeholder-note {
  font-size: .6875rem;
  color: var(--subtle);
  font-style: italic;
}

.map-area {
  position: relative;
  width: 100%;
  min-height: 556px;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EBF5FF 0%, #D4EAF8 100%);
}

.map-wave-deco {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  opacity: .2;
  pointer-events: none;
}

.map-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .95);
  border-top: 1px solid var(--border-soft);
  padding: .625rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  backdrop-filter: blur(4px);
}

.map-pin-label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-note-text {
  font-size: .6875rem;
  color: var(--muted);
}

.dealer-panel-hdr {
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dealer-note {
  padding: 1rem 1.25rem;
  background: var(--bg-section);
}

.dealer-pin {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 700;
}

.dealer-pin-active {
  background: var(--primary);
  color: #fff;
}

.dealer-pin-idle {
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--primary);
}

.dealer-detail {
  padding-left: 2.5rem;
}

.dealer-info-row {
  display: flex;
  align-items: flex-start;
  gap: .375rem;
  margin-bottom: .375rem;
}

.dealer-info-row-inline {
  display: flex;
  align-items: center;
  gap: .375rem;
  margin-bottom: .375rem;
}

.dealer-info-text {
  font-size: .75rem;
  color: var(--muted);
}

.dealer-actions {
  display: flex;
  gap: .625rem;
  margin-top: 1rem;
}

.btn-dealer-wa {
  flex: 1;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .625rem;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  text-decoration: none;
  transition: opacity .15s;
}

.btn-dealer-wa:hover {
  opacity: .88;
}

.btn-dealer-dir {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .625rem;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  text-decoration: none;
  transition: border-color .15s;
}

.btn-dealer-dir:hover {
  border-color: var(--secondary);
}

/* --- HQ / contact cards ------------------------------------- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(3, 4, 94, .04);
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .875rem;
}

.contact-field-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .375rem;
}

.contact-field-sep {
  border-top: 1px solid var(--border-soft);
  padding-top: 1rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.social-link {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.social-link:hover {
  color: var(--secondary);
}

/* --- Enquiry form card -------------------------------------- */
.enquiry-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 1.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.enquiry-card-deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  z-index: 1;
}

.btn-form-submit {
  width: 100%;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: .875rem;
  border-radius: .875rem;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: opacity .15s;
}

.btn-form-submit:hover {
  opacity: .88;
}

/* --- Quick CTA (contact page) ------------------------------- */
.quick-cta {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.quick-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  flex-shrink: 0;
  justify-content: center;
}

.btn-quick-primary {
  background: var(--secondary);
  color: #fff;
  padding: .875rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: opacity .15s;
}

.btn-quick-primary:hover {
  opacity: .88;
}

.btn-quick-outline {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--primary);
  padding: .875rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: border-color .15s;
}

.btn-quick-outline:hover {
  border-color: var(--secondary);
}

/* --- Inline text link (underline accent) -------------------- */
.text-link-accent {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* --- Announcement bar note ---------------------------------- */
.bar-note {
  opacity: .45;
  font-size: 11px;
  margin-left: 12px;
}

/* --- FAQ section (index page) ------------------------------ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* --- Index FAQ/CTA split grid ------------------------------ */
.faq-cta-dark {
  background: var(--primary);
  color: white;
  border-radius: 1.75rem;
  padding: 2.5rem;
  height: 100%;
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.btn-faq-primary {
  background: var(--accent);
  color: var(--primary);
  padding: .875rem 1.5rem;
  border-radius: 1rem;
  font-size: .9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
}

.btn-faq-secondary {
  background: rgba(255, 255, 255, .1);
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .875rem 1.5rem;
  border-radius: 1rem;
  font-size: .9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
}

.btn-faq-ghost {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: .875rem 1.5rem;
  border-radius: 1rem;
  font-size: .9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
}

/* --- Launch promo banner ----------------------------------- */
.promo-banner {
  border-radius: 2rem;
  background: linear-gradient(135deg, #03045E 0%, #023E8A 50%, #0077B6 100%);
  color: white;
}

.promo-banner-inner {
  padding: 2.5rem 2.5rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  color: white;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
}

.promo-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.btn-promo-primary {
  background: white;
  color: var(--primary);
  padding: .875rem 1.75rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.btn-promo-ghost {
  color: rgba(255, 255, 255, .8);
  padding: .875rem 1rem;
  font-size: .9375rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.promo-phone-strip {
  border-radius: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 1.5px dashed rgba(255, 255, 255, .2);
  width: 100%;
  height: 280px;
  background: rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}

.promo-strip-label {
  position: absolute;
  bottom: .875rem;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .4);
}

/* --- Hero visual orbs --------------------------------------- */
.hero-orb-1 {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 180, 216, .25);
  filter: blur(32px);
}

.hero-orb-2 {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 183, 3, .2);
  filter: blur(24px);
}

.hero-orb-3 {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(202, 240, 248, .15);
  filter: blur(18px);
}

.hero-phone-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-overlay {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .35;
}

.hero-brand-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  color: white;
  letter-spacing: -.01em;
}

/* --- Hero section waves ------------------------------------- */
.hero-wave-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .25;
}

.hero-wave-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .12;
}

/* ============================================================
   HERO — MOBILE LAYOUT
   Image first, centred text, light background, compact spacing
   ============================================================ */
@media (max-width: 1023px) {

  /* White background on mobile — image has white bg so keep it clean */
  .iphone-banner {
    background: #fff;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
  }

  /* Hide orbs on mobile (white bg, they're invisible anyway) */
  .hero-orb {
    display: none;
  }

  /* Strip the grid's horizontal padding on mobile so image can be truly full-width */
  .hero-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0;
  }

  /* Float image ABOVE the text column */
  .hero-img-wrap {
    order: -1;
    width: 100%;
    margin: 0;
    position: relative;
  }

  /* Full image of all 3 phones, no cropping */
  .hero-img-wrap img {
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
    transform: none !important;
    display: block;
  }

  /* Gradient fade: only the very bottom edge dissolves into the white page */
  .hero-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 22%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 255, 255, .75) 65%,
        #ffffff 100%);
    pointer-events: none;
  }

  /* Restore side padding on the text column only */
  .hero-text-col {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Reset text colours for light background */
  .iphone-banner .h1-hero {
    color: var(--primary);
    font-size: clamp(1.75rem, 9vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .iphone-banner .p-body {
    color: var(--muted);
    font-size: .9375rem;
    margin-bottom: 1.25rem;
  }

  .iphone-banner .hero-badge {
    background: var(--bg-section);
    color: var(--primary);
    border-color: var(--border-soft);
    margin-bottom: 1rem;
  }

  .iphone-banner .badge-dot {
    background: var(--accent);
  }

  .iphone-banner .stat-value {
    color: var(--primary);
    font-size: 1.375rem;
  }

  .iphone-banner .stat-label {
    color: var(--muted);
  }

  .iphone-banner .stat-divider {
    background: var(--border);
  }

  /* Reset secondary button for light bg */
  .iphone-banner .btn-hero-secondary {
    background: #fff;
    color: var(--primary);
    border-color: var(--border);
  }

  /* CTAs — each button fills equal half the row */
  .iphone-banner .hero-cta-row {
    width: 100%;
    justify-content: center;
    gap: .625rem;
    margin-bottom: 1.75rem;
  }

  .iphone-banner .btn-hero-primary,
  .iphone-banner .btn-hero-secondary {
    flex: 1;
    justify-content: center;
    padding: .8125rem 1rem;
    font-size: .9rem;
  }

  /* Stats — compact single row, centred */
  .iphone-banner .hero-stats {
    justify-content: center;
    gap: 1.25rem;
    padding-top: 0;
  }

  .iphone-banner .hero-stats .stat-value {
    font-size: 1.25rem;
  }
}

@media (max-width:520px) {
  .hero-grid {
    gap: 1rem !important;
  }

  /* Show the COMPLETE 3-phone image: full width, no zoom, no clipping */
  .hero-img-wrap {
    margin-top: 30px !important;
    overflow: visible;
  }

  .hero-img-wrap img {
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    object-fit: contain !important;
  }
}

/* --- Why BlueSea sticky heading ----------------------------- */
.why-sticky {
  top: 7rem;
}

/* --- Connector line (mini how-it-works) --------------------- */
.connector-line {
  top: 27px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border-soft);
}

.connector-fill {
  height: 100%;
  width: 33%;
  background: var(--accent);
}

/* --- Plan section heading row ------------------------------- */
.plan-hdr-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.see-process-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 1px solid var(--border);
  padding: .75rem 1.5rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* --- About us link (why bluesea section) ------------------- */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* --- Vision card icon box variant -------------------------- */
.icon-box-vision {
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

/* --- Mission label ------------------------------------------ */
.mission-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .5rem;
}

.vision-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(202, 240, 248, .6);
  margin-bottom: .5rem;
}

/* --- Section-level text helpers ---------------------------- */
.text-center-block {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}

.text-center-block-sm {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

/* --- Values grid ------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* --- FAQ view all link ------------------------------------- */
.faq-more-link {
  margin-top: 1.5rem;
}

.faq-more-link a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
}

/* --- Review body text --------------------------------------- */
.review-body {
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

/* --- Section spacers --------------------------------------- */
.section-white {
  padding: 6rem 0 8rem;
  background: white;
}

.section-soft {
  background: var(--bg-section);
  padding: 6rem 0 7rem;
}

.section-trust {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
  padding: 1.75rem 0;
}

.section-reviews {
  padding: 6rem 0 7rem;
  background: var(--bg-section);
}

.section-faq {
  padding: 6rem 0 7rem;
  background: white;
}

.section-promo {
  padding: 0 1.5rem 6rem;
}

/* --- Dealer header info layout ----------------------------- */
.dealer-hdr-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
}

.dealer-hdr-row-simple {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

/* --- About story paragraphs -------------------------------- */
.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: .9375rem;
}

/* --- About brand visual text ------------------------------- */
.about-brand-name {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.about-brand-sub {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(202, 240, 248, .6);
  margin-top: .25rem;
}

/* --- Story visual text ------------------------------------- */
.story-brand-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.015em;
}

.story-brand-sub {
  font-size: .875rem;
  color: var(--muted);
  margin-top: .5rem;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- How-it-works process-section label -------------------- */
.process-section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* --- Lucide icon sizes ------------------------------------- */
.icon-xs {
  width: 12px;
  height: 12px;
}

.icon-sm {
  width: 13px;
  height: 13px;
}

.icon-md {
  width: 14px;
  height: 14px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-18 {
  width: 18px;
  height: 18px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-22 {
  width: 22px;
  height: 22px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-15 {
  width: 15px;
  height: 15px;
}

/* star icon: fill + color together */
.star-icon {
  width: 16px;
  height: 16px;
  color: #FFB703;
  fill: #FFB703;
}

.star-icon-lg {
  width: 20px;
  height: 20px;
  color: #FFB703;
  fill: #FFB703;
}

/* icon that needs specific colour */
.icon-accent {
  color: var(--accent);
}

.icon-muted {
  color: var(--muted);
  flex-shrink: 0;
}

.icon-subtle {
  color: var(--subtle);
}

.icon-secondary {
  color: var(--secondary);
}

.icon-primary {
  color: var(--primary);
}

/* --- FAQ summary span -------------------------------------- */
.faq-question {
  font-weight: 600;
  color: var(--primary);
  font-size: .9375rem;
}

.faq-question-sm {
  font-weight: 600;
  color: var(--primary);
}

/* --- Chevron icon in details ------------------------------- */
.chevron-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}

/* --- Section/component p helpers -------------------------- */
.p-body {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 0 2.25rem;
}

.p-muted {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Card inner headings ----------------------------------- */
.card-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 .5rem;
}

/* --- hp-tabs wrapper --------------------------------------- */
.hp-tabs-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hp-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.hp-tabs-wrap .hp-sertab {
  flex-shrink: 0;
}

/* --- Misc one-off layout helpers --------------------------- */
.mt-3-center {
  margin-top: 3rem;
  text-align: center;
}

.mt-35-center {
  margin-top: 3.5rem;
  text-align: center;
}

/* --- Footer grid margin ------------------------------------ */
.footer-grid-mb {
  margin-bottom: 3rem;
}

/* --- Icon-box-lg colour variant (EBF5FF bg) ---------------- */
.icon-box-lg-blue {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EBF5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

/* --- Dealer card h4 ---------------------------------------- */
.dealer-h4 {
  font-weight: 600;
  color: var(--primary);
  font-size: .875rem;
  line-height: 1.25;
  padding-top: 2px;
  margin: 0;
}

.dealer-h4-simple {
  font-weight: 600;
  color: var(--primary);
  font-size: .875rem;
  line-height: 1.25;
  margin: 0 0 .375rem;
}

/* ============================================================
   HEADING TYPOGRAPHY — clamp-based responsive sizes
   ============================================================ */

/* Hero / page-intro h1 */
.h1-hero {
  font-size: clamp(2.75rem, 6vw, 4.875rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 0 0 1.75rem;
  letter-spacing: -.035em;
}

/* Plans / HIW / contact page-intro h1 (white, on dark bg) */
.h1-intro {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 0 0 1.25rem;
}

/* About page-intro h1 */
.h1-about {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1.5rem;
  color: #fff;
}

/* Large section h2 (primary colour) */
.h2-section {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0;
}

/* Large section h2 with bottom margin */
.h2-section-mb {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0 0 1rem;
}

/* Medium section h2 (primary) */
.h2-md {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0;
}

/* Medium section h2 with bottom margin 1rem */
.h2-md-mb1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0 0 1rem;
}

/* Medium section h2 with bottom margin 1.75rem */
.h2-md-mb175 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0 0 1.75rem;
}

/* Medium section h2 with bottom margin 2.5rem */
.h2-md-mb25 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0 0 2.5rem;
}

/* Medium section h2 with bottom margin 3.5rem */
.h2-md-mb35 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin: 0 0 3.5rem;
}

/* White h2 (on dark gradient bg) */
.h2-white {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
}

/* About hero stats stat-value */
.about-stat-value {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: .25rem;
  line-height: 1;
}

.about-stat-value-accent {
  color: var(--accent);
}

.about-stat-value-sec {
  color: var(--secondary);
}

.about-stat-value-warning {
  color: var(--warning);
}

/* Stat label */
.about-stat-label {
  font-size: .875rem;
  color: var(--muted);
}

/* Step h3 */
.step-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 .625rem;
}

/* Values card h3 */
.values-h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 .625rem;
}

/* Mission/vision card h3 */
.mv-h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.25;
}

/* Vision card h3 (white text) */
.mv-h3-white {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}

/* Contact / enquiry card h3 */
.contact-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.25rem;
}

/* CTA card h3 (quick-subscribe section) */
.cta-h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* Bottom-CTA section h3 (white) */
.cta-h3-white {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Promo/bottom-card h3 */
.promo-h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 .875rem;
}

/* Dealer-locator section h2 */
.dealer-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* Team section h2 */
.team-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0;
}

/* ============================================================
   INLINE ITALIC / LIGHT EM inside headings
   ============================================================ */
.em-light {
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
}

/* Italic span inside heading (opacity .8) */
.span-italic-80 {
  font-style: italic;
  font-weight: 400;
  opacity: .8;
}

/* Italic span inside heading (opacity .75) */
.span-italic-75 {
  font-style: italic;
  font-weight: 400;
  opacity: .75;
}

/* Strong highlight (white, weight 600) */
.strong-white {
  color: #fff;
  font-weight: 600;
}

/* NEW badge inside filter button */
.new-badge {
  background: #FFB703;
  color: #03045E;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 3px;
  letter-spacing: .03em;
}

/* ============================================================
   ICON-BOX VARIANTS
   ============================================================ */

/* icon-box with EBF5FF background (used in feature cards) */
.icon-box-blue {
  background: #EBF5FF;
}

/* icon-box with section-bg + border + bottom-margin (mission/values/contact) */
.icon-box-section {
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  margin-bottom: 1.5rem;
}

/* icon-box with section-bg + border + smaller bottom-margin (values grid) */
.icon-box-section-mb125 {
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  margin-bottom: 1.25rem;
}

/* ============================================================
   SECTION-LEVEL HELPERS
   ============================================================ */

/* Light bg section with border */
.section-soft-bordered {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* Section with 6rem vertical padding */
.section-pad-6 {
  padding: 6rem 0;
}

/* Section with section-bg and 5rem/6rem padding */
.section-section-bg {
  background: var(--bg-section);
  padding: 5rem 0 6rem;
}

/* Partners strip section */
.section-partners {
  padding: 4rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* About final CTA section */
.section-cta-pad {
  padding: 5rem 0 6rem;
}

/* Contact HQ section */
.section-hq {
  padding: 5rem 0 6rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* Contact quick-CTA section */
.section-quick-cta {
  padding: 4rem 0 5rem;
}

/* Divider hr */
.hr-soft {
  border: none;
  border-top: 1px solid var(--border-soft);
}

/* ============================================================
   LAYOUT / FLEX HELPERS
   ============================================================ */

/* Flex column gap .75rem */
.flex-col-75 {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Flex column gap .5rem */
.flex-col-50 {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* Flex wrap gap .625rem (pill row) */
.flex-wrap-625 {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

/* Series-tabs container */
.series-tabs-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.series-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.series-tabs-wrap .ftab {
  flex-shrink: 0;
}

/* Plan toggle (hidden future feature) */
.plan-toggle-hidden {
  display: none;
  background: var(--bg-sec);
  border-radius: 99px;
  padding: 4px;
  border: 1px solid var(--border-soft);
}

/* Hero visual fill */
.hero-visual-fill {
  width: 100%;
  height: 100%;
}

/* Inline-flex helper for WhatsApp link */
.wa-link {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

/* ============================================================
   PARAGRAPH / TEXT HELPERS
   ============================================================ */

/* Intro section p (white bg, tint colour) */
.p-intro {
  font-size: 1.125rem;
  color: rgba(202, 240, 248, .85);
  max-width: 38rem;
  line-height: 1.65;
}

/* Section p without max-width, muted */
.p-section {
  font-size: 1.125rem;
  color: var(--muted);
}

/* p with muted colour, line-height, 2rem margin */
.p-section-mb2 {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 28rem;
  margin: 0 0 2rem;
}

/* HIW step p */
.p-step {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

/* HIW step p (smaller bottom margin) */
.p-step-sm {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

/* p inside mission/vision cards */
.p-mv {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* p white/tint on dark */
.p-tint-80 {
  color: rgba(202, 240, 248, .8);
  line-height: 1.65;
  margin: 0;
}

/* p white/tint slightly smaller */
.p-tint-80-sm {
  color: rgba(202, 240, 248, .8);
  font-size: .875rem;
  margin: 0;
}

/* p white/tint slightly smaller with line-height */
.p-tint-80-sm-lh {
  color: rgba(202, 240, 248, .8);
  font-size: .875rem;
  margin: 0;
  line-height: 1.5;
}

/* FAQ section p */
.p-faq {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

/* Italic doc note */
.p-doc-note {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* p narrow, about hero */
.p-about-hero {
  font-size: 1.125rem;
  color: rgba(202, 240, 248, .85);
  line-height: 1.65;
  max-width: 32rem;
}

/* p about story (no margin) */
.p-story {
  margin: 0;
}

/* p about team caption */
.p-team-caption {
  text-align: center;
  font-size: .8125rem;
  color: var(--subtle);
  margin-top: 2rem;
  font-style: italic;
}

/* p large intro on dark gradient */
.p-cta-intro {
  font-size: 1.0625rem;
  color: rgba(202, 240, 248, .8);
  max-width: 36rem;
  line-height: 1.6;
  margin: 0;
}

/* Dealer locator subtext */
.p-dealer-sub {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
}

/* p contact card text (black) */
.p-contact-text {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* p contact card text inline */
.p-contact-text-plain {
  color: var(--text);
  margin: 0;
}

/* p contact card phone sub */
.p-contact-sub {
  font-size: .75rem;
  color: var(--muted);
  margin: .25rem 0 0;
}

/* Contact enquiry card p */
.p-enquiry {
  color: rgba(202, 240, 248, .75);
  font-size: .8125rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Dealer placeholder note */
.p-dealer-note {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* p quick subscribe */
.p-quick {
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   MISC STRUCTURAL HELPERS
   ============================================================ */

/* Text-center div (section partner label) */
.partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* About team hdr row */
.team-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Team avatar */
.team-avatar-ceo {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  margin-bottom: 1rem;
}

.team-avatar-ops {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  margin-bottom: 1rem;
}

.team-avatar-crd {
  background: linear-gradient(135deg, #0077B6, #023E8A);
  color: #fff;
  margin-bottom: 1rem;
}

.team-avatar-ptn {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  margin-bottom: 1rem;
}

.team-avatar-cx {
  background: linear-gradient(135deg, #90E0EF, #00B4D8);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* About CTA gradient box */
.about-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 2rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

/* About CTA inner (z-index) */
.about-cta-inner {
  position: relative;
  z-index: 1;
}

/* About CTA actions column */
.about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* SVG opacity .9 in about hero */
.svg-opacity-90 {
  opacity: .9;
}

/* Text-center wrapper (about hero) */
.text-center-wrap {
  text-align: center;
}

/* Badges row */
.badges-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
}

/* Story visual deco text */
.story-deco-center {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* PDF strip text divs */
.pdf-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}

.pdf-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* HIW doc card header */
.doc-hdr {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

/* HIW doc icon wrap (28×28) */
.doc-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Doc required-label span */
.doc-req-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}

/* Doc note top-border area */
.doc-note-area {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

/* HIW FAQ CTA column */
.hiw-faq-cta-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* Contact page map container overflow */
.map-svg-responsive {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Dealer info margin-bottom */
.dealer-info-mb {
  margin-bottom: 1rem;
}

/* Icon with margin-top 2px (map pin icon alignment) */
.icon-mt2 {
  margin-top: 2px;
}

/* form-input no-resize */
.form-input-noresize {
  resize: none;
}

/* Select option text */
option {
  color: #000;
}

/* Contact follow-us label mb */
.follow-label-mb {
  margin-bottom: .625rem;
}

/* text-center-block mb override */
.text-center-block-mb {
  margin-bottom: 3.5rem;
}

/* Page intro max-width wrapper */
.page-intro-inner-narrow {
  max-width: 40rem;
}

/* Enquiry h3 pos */
.enquiry-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
  position: relative;
  z-index: 1;
}

/* icon with margin-bottom 1.5rem */
.icon-mb15 {
  margin-bottom: 1.5rem;
}

/* icon-22 with accent tint colour (vision icon) */
.icon-22-tint {
  color: rgba(202, 240, 248, .9);
}

/* Promo/bottom section promo phone SVGs */
.promo-svg-left {
  position: absolute;
  left: 25%;
  transform: translateX(-50%) rotate(-8deg);
  top: 10%;
}

.promo-svg-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5%;
}

.promo-svg-right {
  position: absolute;
  right: 25%;
  transform: translateX(50%) rotate(8deg);
  top: 10%;
}

/* strong with primary colour */
.strong-primary {
  color: var(--primary);
}

/* ============================================================
   EXTRACTED FROM INLINE STYLES
   ============================================================ */

/* h2-section margin variants */
.h2-section-mb15 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.h2-section-mb125 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #FFB703;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

/* Testimonials section h2 (slightly smaller clamp top) */
.h2-testimonials {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
  margin: 0;
}

/* p-intro override for promo/dark-bg section */
.p-intro-promo {
  color: rgba(255, 255, 255, .7);
  max-width: 30rem;
  margin: 0 0 2rem;
}

/* p-mv on dark/gradient background */
.p-mv-dark {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0 0 2rem;
}

/* p-mv smaller font size (values cards) */
.p-mv-sm {
  font-size: .875rem;
}

/* p-mv team sub text */
.p-mv-team {
  max-width: 26rem;
  font-size: .9375rem;
}

/* margin-bottom utilities */
.mb-35 {
  margin-bottom: 3.5rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

/* Warning icon colour (#C28D00 = dark amber) */
.icon-warning {
  color: #C28D00;
}

/* Story deco SVG (about page) */
.story-deco-svg {
  display: block;
  margin: 0 auto 1rem;
}

/* Map wave decorative SVG (contact page) */
.map-wave-deco-svg {
  width: 100%;
  height: 40px;
}

/* ============================================================
   RESPONSIVENESS FOR ABOUT PAGE GRIDS
   ============================================================ */
@media (max-width: 1023px) {

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 767px) {

  .about-hero-grid,
  .story-grid,
  .mv-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact page mobile fixes ------------------------------ */
@media (max-width: 767px) {

  /* Map + dealer list: stack vertically */
  .contact-map-wrap {
    grid-template-columns: 1fr;
  }

  /* Map shorter on mobile, no right border */
  .map-panel {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .map-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* HQ / Support / Form: single column */
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Dealer list full width, reasonable max height */
  .dealer-list {
    max-height: 420px;
  }
}

.dealer-row .icon-mt2 {
  margin-top: 6px;
}

.dealer-list {
  padding: 0px 10px;
}

#state-tabs,
#dealer-view-count {
  padding: 10px 10px;
}

/* ================================================================
   LANGUAGE SWITCHER  (markup generated by js/i18n.js)
   Desktop = flag + label dropdown · Mobile = full-width flag row
   ================================================================ */
.lang-mount {
  position: relative;
}

/* Shared flag chip */
.lang-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(3, 4, 94, .08);
  flex: 0 0 auto;
}

/* --- Desktop dropdown ------------------------------------------- */
.lang-mount[data-variant="desktop"] {
  display: inline-block;
}

.lang-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* match the "Find a Dealer" button: px-5 py-2.5 rounded-full text-sm */
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  color: var(--primary);
  cursor: pointer;
  transition: border-color .2s ease;
}

.lang-dd-toggle:hover {
  border-color: var(--primary);
}

.lang-dd-chev {
  opacity: .55;
  transition: transform .2s;
}

.lang-mount.open .lang-dd-chev {
  transform: rotate(180deg);
}

.lang-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 172px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 14px 34px -10px rgba(3, 4, 94, .28);
  padding: 6px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}

.lang-mount.open .lang-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}

.lang-dd-item:hover {
  background: var(--bg-section);
}

.lang-dd-item.on {
  background: var(--bg-section);
  color: var(--primary);
  font-weight: 700;
}

/* Desktop switcher hidden on mobile (burger menu takes over) */
@media (max-width: 1023px) {
  .lang-switch-desktop {
    display: none !important;
  }
}

/* --- Mobile slide-out: full-width row of three flag pills ------- */
.nav-panel .lang-mount {
  display: flex;
  width: 100%;
  gap: 6px;
  margin-top: .75rem;
}

.nav-panel .lang-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}

.nav-panel .lang-opt.on {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ================================================================
   CHINESE (CJK) FONT SUPPORT
   Roboto / DM Sans don't cover Chinese glyphs, so when the active
   language is zh we prepend Noto Sans SC to the relevant stacks.
   ================================================================ */
html[data-lang="zh"] body {
  font-family: 'Noto Sans SC', 'DM Sans', system-ui, sans-serif;
}

html[data-lang="zh"] .font-display,
html[data-lang="zh"] .fd,
html[data-lang="zh"] .font-display-tight,
html[data-lang="zh"] .fdt,
html[data-lang="zh"] h1,
html[data-lang="zh"] h2,
html[data-lang="zh"] h3,
html[data-lang="zh"] h4 {
  font-family: 'Noto Sans SC', 'Roboto', sans-serif;
}