/* startsyourbusiness.com — Premium consulting UI */
:root {
  --color-navy: #0b2a4a;
  --color-navy-light: #123a66;
  --color-orange: #ff6b00;
  --color-orange-dark: #e55f00;
  --color-white: #ffffff;
  --color-grey-50: #f6f8fc;
  --color-grey-100: #eef2f9;
  --color-grey-200: #dce3ef;
  --color-grey-500: #64748b;
  --color-grey-700: #334155;
  --color-grey-900: #0f172a;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", var(--font-sans);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 24px rgba(11, 42, 74, 0.08);
  --shadow-card: 0 8px 32px rgba(11, 42, 74, 0.1);
  --shadow-hover: 0 16px 48px rgba(11, 42, 74, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --header-h: 72px;
  --bottom-nav-h: 68px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --color-white: #0f172a;
  --color-grey-50: #1e293b;
  --color-grey-100: #334155;
  --color-grey-200: #475569;
  --color-grey-500: #94a3b8;
  --color-grey-700: #cbd5e1;
  --color-grey-900: #f1f5f9;
  --glass-bg: rgba(30, 41, 59, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-grey-900);
  background: var(--color-grey-50);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--color-grey-900);
}

a {
  color: var(--color-navy-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 3vw, 5.5rem);
}

.section--tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.section-sub {
  color: #000000;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-orange);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-grey-200);
  transition: background var(--transition), border-color var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
  white-space: nowrap;
}

[data-theme="dark"] .logo {
  color: var(--color-grey-900);
}

.logo__mark {
  width: auto;
  height: 66px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.logo__text small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-grey-500);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-grey-700);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--color-orange);
  background: rgba(255, 107, 0, 0.08);
}

.nav-desktop .has-dropdown {
  position: relative;
}

.nav-desktop .has-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: var(--color-grey-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-desktop .has-dropdown:hover > button {
  color: var(--color-orange);
  background: rgba(255, 107, 0, 0.08);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.has-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-panel a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* Mega services menu — two-column layout (no flyout clipping) */
.has-dropdown--mega .dropdown-panel {
  z-index: 1100;
}

.dropdown-panel--mega {
  min-width: min(640px, 92vw);
  max-width: min(720px, 94vw);
  padding: 0.65rem;
  overflow: hidden;
}

.dropdown-panel--split {
  padding-bottom: 0.5rem;
}

.dropdown-panel__all {
  display: block;
  font-weight: 600;
  color: var(--color-navy) !important;
  margin: 0 0 0.5rem;
  padding: 0.45rem 0.75rem;
}

.mega-menu {
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(260px, 58%);
  min-height: 260px;
  max-height: min(68vh, 440px);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.mega-menu__cats {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.45rem;
  border-right: 1px solid var(--color-grey-200);
  background: rgba(255, 107, 0, 0.03);
  overflow-y: auto;
}

.mega-menu__cat {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-grey-800) !important;
  text-decoration: none;
}

.mega-menu__cat:hover,
.mega-menu__cat:focus-visible,
.mega-menu:has([data-mega-cat]:hover) .mega-menu__cat:hover {
  color: var(--color-orange) !important;
  background: rgba(255, 107, 0, 0.12);
}

.mega-menu__panes {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.mega-menu__pane {
  display: none;
  height: 100%;
  padding: 0.55rem 0.65rem;
  overflow-y: auto;
}

.mega-menu__pane.is-default {
  display: block;
}

.mega-menu:has(.mega-menu__cat:hover) .mega-menu__pane {
  display: none;
}

.mega-menu:has([data-mega-cat="startup"]:hover) [data-mega-pane="startup"],
.mega-menu:has([data-mega-pane="startup"]:hover) [data-mega-pane="startup"],
.mega-menu:has([data-mega-cat="licensing"]:hover) [data-mega-pane="licensing"],
.mega-menu:has([data-mega-pane="licensing"]:hover) [data-mega-pane="licensing"],
.mega-menu:has([data-mega-cat="ngo"]:hover) [data-mega-pane="ngo"],
.mega-menu:has([data-mega-pane="ngo"]:hover) [data-mega-pane="ngo"],
.mega-menu:has([data-mega-cat="gst"]:hover) [data-mega-pane="gst"],
.mega-menu:has([data-mega-pane="gst"]:hover) [data-mega-pane="gst"],
.mega-menu:has([data-mega-cat="income-tax"]:hover) [data-mega-pane="income-tax"],
.mega-menu:has([data-mega-pane="income-tax"]:hover) [data-mega-pane="income-tax"],
.mega-menu:has([data-mega-cat="annual"]:hover) [data-mega-pane="annual"],
.mega-menu:has([data-mega-pane="annual"]:hover) [data-mega-pane="annual"],
.mega-menu:has([data-mega-cat="mca"]:hover) [data-mega-pane="mca"],
.mega-menu:has([data-mega-pane="mca"]:hover) [data-mega-pane="mca"],
.mega-menu:has([data-mega-cat="ca"]:hover) [data-mega-pane="ca"],
.mega-menu:has([data-mega-pane="ca"]:hover) [data-mega-pane="ca"],
.mega-menu.is-pane-active [data-mega-pane].is-pane-visible {
  display: block;
}

.mega-menu__pane-title {
  margin: 0 0 0.45rem;
  padding: 0.2rem 0.55rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-grey-500);
}

.mega-menu__pane a {
  display: block;
  padding: 0.48rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--color-grey-700) !important;
}

.mega-menu__pane a:hover {
  color: var(--color-orange) !important;
  background: rgba(255, 107, 0, 0.08);
}

.mega-menu__view-all {
  margin-top: 0.35rem;
  padding-top: 0.55rem !important;
  border-top: 1px solid var(--color-grey-200);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  color: var(--color-orange) !important;
}

@media (min-width: 1024px) {
  .has-dropdown--mega .dropdown-panel {
    left: 0;
    transform: translateX(0) translateY(8px);
  }

  .has-dropdown--mega:hover .dropdown-panel {
    transform: translateX(0) translateY(4px);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  .header-actions .btn--primary {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-grey-200);
}

[data-theme="dark"] .btn--outline {
  color: var(--color-grey-900);
  border-color: var(--color-grey-200);
}

.btn--outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn--ghost {
  background: transparent;
  color: var(--color-grey-700);
  padding: 0.5rem;
}

.btn--ghost:hover {
  color: var(--color-orange);
  background: rgba(255, 107, 0, 0.08);
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-200);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.icon-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

[data-theme="dark"] .icon-btn {
  background: var(--color-grey-100);
  color: var(--color-grey-900);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 42, 74, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--color-white);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mobile-menu nav a,
.mobile-menu nav .mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-grey-200);
  font-weight: 500;
  color: var(--color-grey-900);
  text-align: left;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  font: inherit;
  cursor: pointer;
}

.mobile-menu nav a:hover,
.mobile-menu nav .mobile-nav-trigger:hover {
  color: var(--color-orange);
}

.mobile-nav-stack {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.mobile-nav-screen {
  display: none;
}

.mobile-nav-screen.is-active {
  display: block;
  animation: mobileNavIn 0.22s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-screen__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--color-navy);
}

.mobile-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0;
  border: none;
  background: transparent;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

/* Bottom nav (app style) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--bottom-nav-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-grey-200);
  box-shadow: 0 -4px 24px rgba(11, 42, 74, 0.06);
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-grey-500);
  flex: 1;
  max-width: 80px;
  text-align: center;
}

.bottom-nav a.is-active,
.bottom-nav a:hover {
  color: var(--color-orange);
}

.bottom-nav svg {
  width: 22px;
  height: 22px;
}

body.has-bottom-nav {
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0));
}

@media (min-width: 1024px) {
  body.has-bottom-nav {
    padding-bottom: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(145deg, var(--color-navy) 0%, #0a1f38 50%, var(--color-navy-light) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(100, 180, 255, 0.1) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 8.66v17.32L30 34.64 15 25.98V8.66z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.hero .container,
.hero .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero .container,
  .hero .hero__grid {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
  }
}

.hero__content {
  color: #fff;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  color: #fff;
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

[data-theme="dark"] .hero-card {
  background: rgba(30, 41, 59, 0.92);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  color: var(--color-navy);
}

[data-theme="dark"] .hero-card h2 {
  color: var(--color-grey-900);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-grey-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  font: inherit;
  background: var(--color-white);
  color: var(--color-grey-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.form-success {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 0, 0.25);
}

[data-theme="dark"] .card {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(11, 42, 74, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--color-grey-500);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-orange);
}

/* Trust strip */
.trust-strip {
  background: var(--color-white);
  border-block: 1px solid var(--color-grey-200);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-block: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-navy);
}

[data-theme="dark"] .trust-item strong {
  color: var(--color-grey-900);
}

/* Process steps */
.process {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing cards */
.price-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-orange);
  font-family: var(--font-display);
}

.price-card .meta {
  font-size: 0.85rem;
  color: var(--color-grey-500);
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-placeholder {
  height: 36px;
  min-width: 100px;
  background: var(--color-grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-grey-500);
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-grey-200);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider-dots button.is-active {
  background: var(--color-orange);
  transform: scale(1.25);
}

/* Blog cards */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
}

.blog-card__body {
  padding: 1.25rem;
}

.blog-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.cta-banner p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--color-orange);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-contact-bar {
  background: linear-gradient(90deg, var(--color-navy-light), var(--color-navy));
  color: #fff;
  padding: 0.85rem 0;
  font-size: 0.9rem;
}

.footer-contact-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* FAQ */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-200);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-orange);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-grey-500);
  border-top: 1px solid var(--color-grey-100);
}

/* Tables (compliance calendar) */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-grey-100);
}

.data-table th {
  background: var(--color-grey-50);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
}

[data-theme="dark"] .data-table th {
  background: var(--color-grey-100);
  color: var(--color-grey-900);
}

.data-table tr:hover td {
  background: rgba(255, 107, 0, 0.04);
}

/* Page hero inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.page-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
}

/* Sticky floats */
.sticky-whatsapp {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 1rem + env(safe-area-inset-bottom, 0));
  right: 1rem;
  z-index: 850;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

@media (min-width: 1024px) {
  .sticky-whatsapp {
    bottom: 1.5rem;
  }
}

.sticky-whatsapp:hover {
  transform: scale(1.06);
}

.sticky-cta-row {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 5.5rem + env(safe-area-inset-bottom, 0));
  right: 1rem;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .sticky-cta-row {
    bottom: 6rem;
  }
}

.sticky-cta-row .btn {
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

/* Live chat widget */
.chat-widget {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 5.5rem + env(safe-area-inset-bottom, 0));
  left: 1rem;
  z-index: 860;
}

@media (min-width: 1024px) {
  .chat-widget {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

.chat-bubble {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 260px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-grey-200);
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.chat-widget.is-open .chat-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  width: min(380px, 100%);
  height: min(480px, 70vh);
  background: var(--color-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-hover);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--transition);
}

@media (min-width: 480px) {
  .chat-panel {
    bottom: 1rem;
    right: 1rem;
    height: 420px;
    border-radius: var(--radius-lg);
  }
}

.chat-panel.is-visible {
  transform: translateY(0);
}

.chat-panel__head {
  padding: 1rem 1.25rem;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-panel__body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: var(--color-grey-50);
}

.chat-msg {
  background: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.chat-panel__foot {
  padding: 0.75rem;
  border-top: 1px solid var(--color-grey-200);
  display: flex;
  gap: 0.5rem;
}

.chat-panel__foot input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  font: inherit;
}

/* Calculator */
.calc-result {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
}

.calc-total {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange);
  font-family: var(--font-display);
}

/* Service detail */
.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-detail-meta span {
  background: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-200);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Utilities */
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== Premium refresh (PHP layout + imagery) ========== */
:root {
  --font-size-hero: clamp(2.15rem, 5.5vw, 3.15rem);
  --radius-xl: 20px;
  --shadow-elevated: 0 24px 80px rgba(6, 26, 50, 0.28);
  --accent-line: linear-gradient(90deg, var(--color-orange), #3b82f6);
}

body {
  background-color: var(--color-grey-50);
  background-image: radial-gradient(1200px 500px at 10% -10%, rgba(11, 42, 74, 0.06), transparent),
    radial-gradient(900px 400px at 100% 0%, rgba(255, 107, 0, 0.05), transparent);
}

.site-header {
  box-shadow: 0 1px 0 rgba(11, 42, 74, 0.06);
}

.hero--premium {
  background: linear-gradient(155deg, #051428 0%, var(--color-navy) 45%, #163a68 100%);
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.hero--premium::before {
  background-image: radial-gradient(ellipse 90% 70% at 85% 15%, rgba(255, 107, 0, 0.16), transparent 52%),
    radial-gradient(circle at 8% 85%, rgba(59, 130, 246, 0.12), transparent 42%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 8.66v17.32L30 34.64 15 25.98V8.66z' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E");
}

.hero--premium h1 {
  font-size: var(--font-size-hero);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
}

.hero__figure {
  margin: 2rem 0 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  max-height: 175px;
}

.hero__figure-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero__figure {
    margin-top: 1.5rem;
  }
}

.hero-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated), 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0;
  overflow: hidden;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.5rem;
}

.section--surface {
  background: #f2abd236;
}

[data-theme="dark"] .section--surface {
  background: linear-gradient(180deg, var(--color-grey-50) 0%, #0f172a 100%);
}

.card--premium {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.card--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-line);
  opacity: 0;
  transition: opacity var(--transition);
}

.card--premium:hover::before {
  opacity: 1;
}

.cards-grid--services {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.split-banner {
  background: var(--color-navy);
  color: #fff;
  padding-block: 0;
}

.split-banner__inner {
  display: grid;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 900px) {
  .split-banner__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.split-banner__img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.split-banner__text {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-banner__title {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.split-banner__lead {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  line-height: 1.65;
}

.trust-item--pill {
  background: var(--color-white);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--color-grey-200);
  box-shadow: var(--shadow-soft);
}

.trust-item__label {
  font-size: 0.8rem;
  color: var(--color-grey-500);
}

.trust-item__icon {
  font-size: 1.35rem;
}

.logo-pill {
  height: 44px;
  min-width: 88px;
  padding: 0 1rem;
  background: var(--color-white);
  border-radius: 999px;
  border: 1px solid var(--color-grey-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-grey-500);
  flex-shrink: 0;
}

.testimonial-card__head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-grey-100);
}

.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-grey-500);
}

.blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.blog-card__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-grey-100);
}

.blog-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__photo {
  transform: scale(1.05);
}

.cta-banner--premium {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, #0a1f38 0%, var(--color-navy-light) 55%, #1a5080 100%);
  box-shadow: var(--shadow-elevated);
}

.cta-banner--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.2), transparent 45%);
  pointer-events: none;
}

.cta-banner--premium h2,
.cta-banner--premium p,
.cta-banner--premium .btn {
  position: relative;
  z-index: 1;
}

.page-hero--photo {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
}

.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(6, 26, 50, 0.92) 0%, rgba(11, 42, 74, 0.78) 50%, rgba(11, 42, 74, 0.55) 100%),
    var(--hero-img, none) center / cover no-repeat;
  opacity: 1;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-split__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  max-height: 420px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-pill {
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  min-width: 120px;
  box-shadow: var(--shadow-soft);
}

.stat-pill__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-orange);
}

.stat-pill__lbl {
  font-size: 0.75rem;
  color: var(--color-grey-500);
}

.card__media--sm {
  margin: -0.5rem -0.5rem 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 140px;
}

.card__media--sm img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(11, 42, 74, 0.06), rgba(255, 107, 0, 0.06));
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-grey-200);
}

.service-detail-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-detail-layout {
    grid-template-columns: 340px 1fr;
  }
}

.service-detail-layout__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow-card);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-grey-700);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.contact-grid__thumb {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  object-fit: cover;
  max-height: 200px;
}

.calc-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.calc-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.calc-legend {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.calc-check {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.calc-hr {
  border: none;
  border-top: 1px solid var(--color-grey-200);
  margin: 1.25rem 0;
}

.calc-breakdown {
  font-size: 0.9rem;
  color: var(--color-grey-700);
  line-height: 1.6;
}

.calc-side-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  object-fit: cover;
}

.calendar-intro {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .calendar-intro {
    grid-template-columns: 280px 1fr;
  }
}

.calendar-intro__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 220px;
  box-shadow: var(--shadow-soft);
}

.calendar-intro__text {
  margin: 0;
  color: var(--color-grey-500);
  font-size: 0.95rem;
}

.data-table--premium th {
  background: linear-gradient(180deg, var(--color-grey-50), var(--color-grey-100));
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.process-step__title {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.process-step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-grey-500);
}

/* ========== Home page — app‑slim, premium sections ========== */
.home-page {
  --home-font: "Plus Jakarta Sans", var(--font-sans);
  --home-radius: 18px;
  --home-radius-sm: 14px;
  font-family: var(--home-font);
  letter-spacing: -0.01em;
}

@media (max-width: 549px) {
  .home-page .container {
    width: min(1200px, 100% - 1.1rem);
  }
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .font-display {
  font-family: var(--home-font);
  font-weight: 700;
}

.home-page .section-sub {
  color: var(--color-grey-500);
}

.home-hero__title {
  font-size: clamp(1.65rem, 5.2vw, 2.35rem);
  line-height: 1.18;
}

.home-hero__lead {
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 34rem;
}

.home-hero__pill.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-hero__ctas .btn {
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
  border-radius: 999px;
}

.home-hero__visual.hero__figure {
  max-height: clamp(140px, 28vw, 200px);
  border-radius: var(--home-radius);
  margin-top: 1.25rem;
}

.home-hero-card {
  padding: 1.15rem;
  border-radius: var(--home-radius);
}

.home-hero-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.home-hero-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, var(--color-orange));
  animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.15);
  }
}

.home-hero-card__title {
  font-size: 1.05rem;
  margin: 0;
}

.home-hero-card__field.form-group {
  margin-bottom: 0.65rem;
}

.home-hero-card__field.form-group label {
  font-size: 0.72rem;
}

.home-hero-card__field.form-group input,
.home-hero-card__field.form-group textarea {
  padding: 0.55rem 0.72rem;
  font-size: 0.82rem;
  border-radius: var(--home-radius-sm);
}

.home-hero-card__field.form-group textarea {
  min-height: 72px;
}

.home-hero-card__submit {
  margin-top: 0.35rem;
  border-radius: 999px;
  padding-block: 0.6rem;
}

@media (max-width: 991px) {
  .hero--premium.home-hero {
    padding-block: clamp(1.75rem, 6vw, 2.75rem);
  }

  .home-hero .hero__grid {
    gap: 1.15rem;
  }
}

.home-stats {
  margin-top: -0.5rem;
  padding-block: clamp(0.85rem, 3vw, 1.35rem);
  position: relative;
  z-index: 2;
}

.home-stats__wrap {
  width: min(1100px, 100% - 1rem);
}

.home-stats__strip {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-stats__strip::-webkit-scrollbar {
  display: none;
}

.home-stat {
  flex: 1 1 180px;
  min-width: min(260px, 82vw);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--home-radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 40px rgba(11, 42, 74, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.home-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(11, 42, 74, 0.12);
}

.home-stat--gold {
  background: linear-gradient(135deg, #fff9ef 0%, #fff 50%, #fff5e6 100%);
  border: 1px solid #000000;
}

.home-stat--ocean {
  background: linear-gradient(145deg, #eff6ff 0%, #ffffff 55%, #e0edff 100%);
    border: 1px solid #000000;

}

.home-stat--ember {
  background: linear-gradient(145deg, #fff4ed 0%, #ffffff 50%, #ffe8dc 100%);
    border: 1px solid #000000;

}

.home-stat__glyph {
  font-size: 1.35rem;
  opacity: 0.9;
}

.home-stat__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.home-stat__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

[data-theme="dark"] .home-stat__value {
  color: var(--color-grey-900);
}

.home-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-grey-500);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

[data-theme="dark"] .home-stat {
  border-color: rgba(255, 255, 255, 0.08);
}

.home-section {
  padding-block: clamp(2.35rem, 6vw, 3.65rem);
}

.home-section__head {
  text-align: center;
  margin-bottom: clamp(1.35rem, 4vw, 2rem);
  max-width: 36rem;
  margin-inline: auto;
}

.home-section__head--left {
  text-align: left;
  margin-inline: 0;
}

.home-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.4rem;
}

.home-section__title {
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  margin: 0 0 0.5rem;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}

[data-theme="dark"] .home-section__title {
  color: var(--color-grey-900);
}

.home-section__sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-grey-500);
  line-height: 1.55;
}

.home-tracks {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, var(--color-grey-50) 100%);
  border-block: 1px solid rgba(11, 42, 74, 0.06);
}

[data-theme="dark"] .home-tracks {
  background: linear-gradient(180deg, var(--color-grey-50) 0%, #0f172a 100%);
  border-block-color: rgba(255, 255, 255, 0.06);
}

.home-tracks__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-tracks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-tracks__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-track {
  border-radius: var(--home-radius);
  padding: 1.05rem;
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.home-track--aurora {
  background: radial-gradient(120% 100% at 0% 0%, rgba(99, 102, 241, 0.18), transparent),
    radial-gradient(80% 80% at 100% 20%, rgba(56, 189, 248, 0.2), transparent), var(--color-white);
  border-color: rgba(99, 102, 241, 0.2);
}

.home-track--mint {
  background: linear-gradient(155deg, #ecfdf5 0%, #ffffff 65%);
  border-color: rgba(16, 185, 129, 0.25);
}

.home-track--dusk {
  background: linear-gradient(160deg, #f5f3ff 0%, #ffffff 55%, #ede9fe 100%);
  border-color: rgba(139, 92, 246, 0.2);
}

.home-track--clay {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%, #ffedd5 100%);
  border-color: rgba(249, 115, 22, 0.25);
}

[data-theme="dark"] .home-track--aurora {
  background: radial-gradient(120% 100% at 0% 0%, rgba(99, 102, 241, 0.25), transparent), var(--color-grey-50);
}

[data-theme="dark"] .home-track--mint,
[data-theme="dark"] .home-track--dusk,
[data-theme="dark"] .home-track--clay {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

.home-track__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.home-track__badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-grey-700);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

[data-theme="dark"] .home-track__badge {
  background: rgba(15, 23, 42, 0.5);
  color: var(--color-grey-700);
}

.home-track__icon {
  font-size: 1.35rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.home-track__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.home-track__text {
  margin: 0 0 auto;
  font-size: 0.82rem;
  color: var(--color-grey-500);
  line-height: 1.5;
}

.home-track__link {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-theme="dark"] .home-track__link {
  color: var(--color-grey-900);
}

.home-track__link:hover {
  color: var(--color-orange);
}

.home-story {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.home-story__shell {
  border-radius: calc(var(--home-radius) + 6px);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(6, 26, 50, 0.18);
}

@media (min-width: 900px) {
  .home-story__shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
  }
}

.home-story__media {
  position: relative;
}

.home-story__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .home-story__img {
    height: 100%;
    min-height: 320px;
  }
}

.home-story__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 20, 40, 0.75) 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .home-story__glow {
    background: linear-gradient(90deg, transparent 55%, rgba(5, 20, 40, 0.88) 100%);
  }
}

.home-story__panel {
  background: radial-gradient(circle at 80% -20%, rgba(255, 107, 0, 0.2), transparent 45%), #061428;
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(1.35rem, 4vw, 2.35rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.home-eyebrow--on-dark {
  color: #fdba74;
}

.home-story__heading {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #fff;
  letter-spacing: -0.03em;
}

.home-story__list {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.home-story__list li + li {
  margin-top: 0.4rem;
}

.home-story__btn {
  align-self: flex-start;
  border-radius: 999px;
  margin-top: 0.35rem;
}

.home-pillars__rail {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .home-pillars__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-pillar {
  border-radius: var(--home-radius);
  padding: 1rem 1.05rem;
  position: relative;
  overflow: hidden;
}

.home-pillar__idx {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.4rem;
}

.home-pillar__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.home-pillar__text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-grey-500);
  line-height: 1.5;
}

.home-pillar--slant {
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  box-shadow: var(--shadow-soft);
}

.home-pillar--glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 245, 249, 0.95));
  border: 1px solid rgba(11, 42, 74, 0.08);
  backdrop-filter: blur(10px);
}

.home-pillar--ribbon {
  background: linear-gradient(120deg, #0b2a4a 0%, #153a62 48%, var(--color-orange) 320%);
  color: #fff;
}

.home-pillar--ribbon .home-pillar__idx {
  color: #fed7aa;
}

.home-pillar--ribbon .home-pillar__text {
  color: rgba(255, 255, 255, 0.82);
}

.home-pillar--solid {
  border: none;
  background: repeating-linear-gradient(
      -55deg,
      rgba(255, 107, 0, 0.06),
      rgba(255, 107, 0, 0.06) 8px,
      transparent 8px,
      transparent 16px
    ), var(--color-white);
  border-inline-start: 4px solid var(--color-orange);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .home-pillar--slant,
[data-theme="dark"] .home-pillar--glass,
[data-theme="dark"] .home-pillar--solid {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

.home-flow {
  padding-block: clamp(2.35rem, 6vw, 3.65rem);
  background: radial-gradient(800px 400px at 10% -10%, rgba(255, 107, 0, 0.07), transparent), var(--color-grey-50);
}

[data-theme="dark"] .home-flow {
  background: var(--color-grey-50);
}

.home-flow__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.home-flow__timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-orange), rgba(255, 107, 0, 0.15));
  border-radius: 99px;
}

.home-flow__step {
  position: relative;
  padding: 0.35rem 0 1.35rem 2.85rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.home-flow__dot {
  flex-shrink: 0;
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
}

.home-flow__card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--home-radius-sm);
  padding: 0.72rem 0.95rem;
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .home-flow__card {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

.home-flow__title {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
}

.home-flow__text {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-grey-500);
  line-height: 1.45;
}

@media (min-width: 960px) {
  .home-flow__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding-left: 0;
  }

  .home-flow__timeline::before {
    display: none;
  }

  .home-flow__step {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0.65rem;
  }

  .home-flow__dot {
    position: static;
  }
}

.home-plans__bento {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .home-plans__bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
  }

  .home-plan--wide {
    grid-column: span 2;
  }

  .home-plan--accent {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .home-plans__bento {
    grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .home-plan--wide {
    grid-column: 1;
    grid-row: span 2;
  }

  .home-plan--accent {
    grid-column: 2 / span 2;
  }
}

.home-plan {
  border-radius: var(--home-radius);
  padding: 1.05rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.home-plan--wide {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.home-plan--accent {
  background: linear-gradient(130deg, #0b2a4a 0%, #123a66 52%, var(--color-navy-light) 100%);
  color: rgba(255, 255, 255, 0.92);
  border: none;
}

.home-plan--minimal {
  background: var(--color-white);
  border: 1px dashed rgba(100, 116, 139, 0.45);
}

[data-theme="dark"] .home-plan--wide {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

[data-theme="dark"] .home-plan--minimal {
  background: var(--color-grey-50);
  border-color: var(--color-grey-100);
}

.home-plan__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.home-plan__name {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.home-plan__tag {
  margin: 0;
  font-size: 0.72rem;
  color: var(--color-grey-500);
}

.home-plan--accent .home-plan__tag {
  color: rgba(255, 255, 255, 0.7);
}

.home-plan__price {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: -0.03em;
}

.home-plan--accent .home-plan__price {
  color: #fdba74;
}

.home-plan__price--sm {
  font-size: 1.15rem;
}

.home-plan__meta {
  margin: 0.5rem 0 0;
  font-size: 0.76rem;
  color: var(--color-grey-500);
}

.home-plan--accent .home-plan__meta {
  color: rgba(255, 255, 255, 0.76);
}

.home-plan__btn {
  display: inline-flex;
  margin-top: 0.95rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-navy-light);
  background: rgba(11, 42, 74, 0.08);
}

.home-plan__btn:hover {
  background: var(--color-orange);
  color: #fff;
}

.home-plan__btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-plan__btn--light:hover {
  background: var(--color-orange);
  color: #fff;
}

.home-plan__arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--color-grey-50);
  color: var(--color-navy);
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid var(--color-grey-200);
}

.home-plan__arrow:hover {
  background: var(--color-orange);
  color: #fff;
  border-color: transparent;
}

.home-brands {
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
  border-block: 1px solid rgba(11, 42, 74, 0.06);
  background: var(--color-white);
}

[data-theme="dark"] .home-brands {
  background: var(--color-grey-50);
}

.home-brands__label {
  text-align: center;
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-grey-500);
}

.home-brands .logo-marquee__track {
  gap: 1.25rem;
  animation-duration: 28s;
}

.home-brand-chip {
  height: 40px;
  min-width: 72px;
  padding: 0 1rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--color-grey-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-grey-500);
  flex-shrink: 0;
}

.home-voice-card {
  border-radius: calc(var(--home-radius) + 4px);
  border: 1px solid rgba(11, 42, 74, 0.08);
  box-shadow: 0 20px 56px rgba(11, 42, 74, 0.1);
}

.home-voice-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-cta-wrap {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.home-cta {
  position: relative;
  border-radius: calc(var(--home-radius) + 10px);
  padding: clamp(1.85rem, 5vw, 2.85rem);
  overflow: hidden;
  background: linear-gradient(145deg, #040c18 0%, #0b2a4a 45%, #1c4f82 120%);
  color: rgba(255, 255, 255, 0.93);
  text-align: center;
  isolation: isolate;
  box-shadow: 0 32px 80px rgba(4, 12, 24, 0.45);
}

.home-cta__aurora {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg at 70% 30%, rgba(255, 107, 0, 0.45), transparent 40%, rgba(59, 130, 246, 0.35), transparent 72%);
  animation: home-cta-spin 18s linear infinite;
  opacity: 0.85;
}

@keyframes home-cta-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-cta__content {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin-inline: auto;
}

.home-cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  color: #fff;
}

.home-cta__text {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  opacity: 0.9;
}

.home-cta__btn {
  border-radius: 999px;
}

.home-faq__inner {
  max-width: 720px;
  margin-inline: auto;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-faq__item {
  border-radius: var(--home-radius-sm);
  border: 1px solid var(--color-grey-200);
  background: linear-gradient(180deg, var(--color-white), var(--color-grey-50));
  overflow: hidden;
}

[data-theme="dark"] .home-faq__item {
  border-color: var(--color-grey-100);
  background: var(--color-grey-50);
}

.home-faq__item summary {
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ff6b00' stroke-width='2'%3E%3Cpath d='M4 8h8M8 4v8'/%3E%3C/svg%3E") center /
    14px no-repeat;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.home-faq__body {
  padding: 0 1.1rem 1rem;
  font-size: 0.84rem;
  color: var(--color-grey-500);
  line-height: 1.55;
  border-top: 1px solid var(--color-grey-100);
}

@media (prefers-reduced-motion: reduce) {
  .home-animate-float,
  .home-cta__aurora,
  .home-hero-card__dot {
    animation: none !important;
  }
}

/* ========== Global redesign v2 (all pages) ========== */
:root {
  --color-navy: #071a31;
  --color-navy-light: #123e6d;
  --color-orange: #ff7a1a;
  --color-orange-dark: #ef5e00;
  --color-grey-50: #f3f7fd;
  --color-grey-100: #e7eef8;
  --color-grey-200: #d4dfef;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
  --header-h: 64px;
}

body {
  font-family: var(--font-sans);
  background-image: radial-gradient(1000px 380px at -4% -8%, rgba(18, 62, 109, 0.12), transparent),
    radial-gradient(760px 300px at 100% -8%, rgba(255, 122, 26, 0.11), transparent);
}

.container {
  width: min(1240px, 100% - 1.35rem);
}

@media (min-width: 1024px) {
  .container {
    width: min(1240px, 100% - 2.2rem);
  }
}

.section {
  padding-block: clamp(1.85rem, 3.1vw, 3rem);
}

.section--tight {
  padding-block: clamp(1.2rem, 2.5vw, 2rem);
}

.section-sub {
  margin: 0 0 1.35rem;
  font-size: 0.96rem;
  color: var(--color-grey-500);
}

/* tighter spacing across pages */
.section {
  padding-block: clamp(1.1rem, 2.2vw, 1.9rem);
}

.section-sub {
  margin-bottom: 0.8rem;
}

.cards-grid {
  gap: 0.8rem;
}

.card {
  padding: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1010;
  background: linear-gradient(90deg, #031223, #0b2e53 60%, #154a7f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.topbar__inner a {
  color: #fff;
}

@media (max-width: 820px) {
  .topbar__inner {
    justify-content: center;
    letter-spacing: 0.03em;
    font-size: 0.62rem;
  }

  .topbar__inner a {
    display: none;
  }
}

.site-header {
  top: 34px;
  height: var(--header-h);
  border-bottom: 1px solid rgba(7, 26, 49, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 23, 42, 0.9);
}

.site-header__inner {
  height: var(--header-h);
  gap: 0.8rem;
}

.logo__mark {
  height: 54px;
}

.logo__text strong {
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.logo__text small {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  gap: 0.1rem;
}

.nav-desktop a,
.nav-desktop .has-dropdown > button {
  font-size: 0.82rem;
  padding: 0.42rem 0.7rem;
}

.btn {
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.mobile-menu__panel {
  border-radius: 20px 0 0 20px;
}

.mobile-menu nav a {
  font-size: 0.94rem;
  padding: 0.72rem 0;
}

.page-hero {
  padding-block: clamp(1.85rem, 3.4vw, 2.9rem);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
}

.cards-grid {
  gap: 1rem;
}

.card {
  border-radius: 14px;
  padding: 1.1rem;
}

.card h3 {
  font-size: 1rem;
}

.card p {
  font-size: 0.88rem;
}

.cta-inline {
  gap: 1rem;
  padding: clamp(1rem, 2.8vw, 1.5rem);
}

.footer-contact-bar {
  background: linear-gradient(90deg, #031223, #0e355d);
  padding: 0.62rem 0;
  font-size: 0.8rem;
}

.footer-contact-bar a {
  color: #fff;
}

.site-footer {
  background: linear-gradient(180deg, #071a31 0%, #050f1f 100%);
  padding-block: 2rem 1rem;
}

.footer-brand {
  margin-bottom: 1.1rem;
  max-width: 560px;
}

.footer-brand__title {
  margin: 0 0 0.3rem;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.footer-brand__text {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  gap: 1.2rem;
  margin-bottom: 1.15rem;
}

.site-footer h4 {
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
}

.site-footer li {
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
}

.footer-bar {
  padding-top: 0.9rem;
  font-size: 0.78rem;
}

.sticky-cta-row {
  display: none;
}

.chat-widget {
  left: auto;
  right: 1rem;
  bottom: calc(var(--bottom-nav-h) + 4.7rem + env(safe-area-inset-bottom, 0));
}

@media (min-width: 1024px) {
  body {
    background-color: #eef4fb;
  }

  main#main {
    width: min(1320px, 100% - 2.2rem);
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(7, 26, 49, 0.09);
    overflow: clip;
    background: transparent;
  }

  .hero,
  .page-hero {
    border-radius: 18px 18px 0 0;
  }

  .chat-widget {
    bottom: 1.2rem;
  }
}

@media (max-width: 1023px) {
  .header-actions .btn--primary {
    display: none;
  }

  .bottom-nav {
    height: 62px;
    border-top: 1px solid rgba(7, 26, 49, 0.08);
    box-shadow: 0 -10px 30px rgba(7, 26, 49, 0.1);
  }

  .bottom-nav a {
    font-size: 0.6rem;
    gap: 0.15rem;
  }

  .bottom-nav svg {
    width: 20px;
    height: 20px;
  }

  body.has-bottom-nav {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0));
  }

  .section {
    padding-block: clamp(1.4rem, 5vw, 2rem);
  }

  .hero,
  .page-hero {
    border-radius: 0;
  }

  .site-header {
    top: 34px;
  }
}

/* ========== Requested audit + redesign pass ========== */
.topbar {
  background: linear-gradient(95deg, #03101f 0%, #0b2f56 52%, #164d83 100%);
}

.topbar__inner {
  min-height: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
}

.topbar__left {
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.topbar__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.topbar__marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-width: max-content;
  animation: topbar-loop 22s linear infinite;
}

.topbar__marquee-track span {
  position: relative;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.topbar__marquee-track span::after {
  content: "•";
  position: absolute;
  right: -0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__phone {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.topbar__social {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar__social svg {
  width: 14px;
  height: 14px;
}

@keyframes topbar-loop {
  100% {
    transform: translateX(-50%);
  }
}

.logo {
  gap: 0;
}

.logo__mark {
  height: 58px;
}

.home-hero {
  padding-block: clamp(2.2rem, 5.8vw, 3.8rem);
}

.home-hero .hero__grid {
  gap: 1.25rem;
}

.home-hero__lead {
  margin-bottom: 1.05rem;
}

.home-hero-slider {
  width: min(100%, 820px);
  margin-top: 0.95rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(3, 16, 31, 0.36);
}

.home-hero-slider__track {
  display: flex;
  width: max-content;
  animation: hero-slider 19s linear infinite;
}

.home-hero-slider img {
  width: min(38vw, 830px);
  height: 146px;
  object-fit: cover;
  display: block;
}

@keyframes hero-slider {
  100% {
    transform: translateX(-50%);
  }
}

.home-stats {
  margin-top: 0;
  padding-block: 0.75rem 1rem;
}

.home-section {
  padding-block: clamp(1.55rem, 4vw, 2.45rem);
}

.home-pillars__rail,
.home-tracks__grid,
.home-plans__bento {
  gap: 0.65rem;
}

.home-voice-card p {
  font-size: 0.86rem;
}

.chat-widget {
  left: auto;
  right: 0.9rem;
  bottom: calc(var(--bottom-nav-h) + 0.95rem + env(safe-area-inset-bottom, 0));
}

.chat-toggle--bot {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b2a4a, #123f6f);
  border: 2px solid rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.chat-toggle--bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-panel {
  height: min(560px, 78vh);
}

.chat-panel__head {
  padding: 0.85rem 1rem;
}

.chat-panel__head-sub {
  margin: 0.2rem 0 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
}

.chat-panel__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  padding: 0.75rem 0.75rem 0;
  background: var(--color-white);
}

.chat-panel__quick button {
  border: 1px solid var(--color-grey-200);
  background: var(--color-grey-50);
  color: var(--color-grey-700);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.chat-panel__quick button:hover {
  border-color: rgba(255, 122, 26, 0.5);
  color: var(--color-orange);
}

.chat-msg {
  max-width: 88%;
}

.chat-msg--bot {
  margin-right: auto;
}

.chat-msg--user {
  margin-left: auto;
  background: linear-gradient(135deg, #173e67, #0f2f52);
  color: #fff;
}

@media (max-width: 1023px) {
  .topbar__inner {
    grid-template-columns: 1fr auto;
  }

  .topbar__left {
    display: none;
  }

  .topbar__marquee {
    grid-column: 1 / -1;
    order: 3;
    margin-top: -0.25rem;
    padding-bottom: 0.35rem;
  }

  .topbar__right {
    justify-self: end;
  }

  .topbar__phone {
    font-size: 0.66rem;
  }

  .home-hero .hero__grid {
    text-align: center;
  }

  .home-hero__intro,
  .home-hero__lead {
    margin-inline: auto;
  }

  .home-hero__ctas {
    justify-content: center;
  }

  .home-hero-slider {
    margin-inline: auto;
  }

  .home-hero-slider img {
    width: 180px;
    height: 132px;
  }

  .chat-panel {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    height: min(78vh, 580px);
  }
}

/* ========== Premium header + hero fix pass ========== */
.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar__inner {
  min-height: 40px;
  gap: 0.8rem;
}

.topbar__left {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.topbar__marquee-track span {
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.topbar__phone {
  font-size: 0.74rem;
  font-weight: 900;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(7, 26, 49, 0.08);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 23, 42, 0.94);
}

.site-header__inner {
  gap: 1.2rem;
}

.logo__mark {
  height: 48px;
}

.home-hero {
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
}

.home-hero .hero__grid {
  gap: 1rem;
}

.home-hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.95rem);
  line-height: 1.12;
  /* max-width: 15ch; */
  margin-bottom: 0.7rem;
}

.home-hero__lead {
  font-size: clamp(0.9rem, 1.4vw, 1.06rem);
  max-width: 45ch;
}

.home-hero__aside .home-hero-card {
  height: 100%;
}

.home-hero-card {
  padding: 1rem;
}

.home-hero-card__field.form-group input,
.home-hero-card__field.form-group textarea {
  font-size: 0.8rem;
  padding: 0.52rem 0.66rem;
}

.home-hero-slider {
  width: min(100%, 640px);
  margin-top: 0.75rem;
  border-radius: 16px;
  padding: 0.5rem;
  background: rgba(3, 16, 31, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-hero-slider__track {
  position: relative;
  min-height: clamp(170px, 19vw, 220px);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  border-radius: 12px;
  overflow: hidden;
}

.home-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-slider__actions {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.home-hero-slider__btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.home-hero-slider__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.home-hero-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

.home-hero-slider__dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

@media (min-width: 1024px) {
  .home-hero .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
    align-items: stretch;
  }

  .home-hero__intro {
    padding-right: 0.3rem;
  }
}

@media (max-width: 1023px) {
  .topbar__marquee {
    display: none;
  }

  .topbar__inner {
    grid-template-columns: 1fr;
    min-height: 34px;
    padding-block: 0.2rem;
  }

  .topbar__left,
  .topbar__right {
    justify-self: center;
  }

  .home-hero__title {
    max-width: 18ch;
    margin-inline: auto;
  }

  .home-hero__aside {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ========== User-requested premium corrections ========== */
.topbar {
  position: relative;
  top: auto;
}

.site-header {
  top: 0 !important;
}

main#main {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.container,
.home-page .container {
  width: min(1400px, 100% - 1rem) !important;
}

.hero,
.page-hero,
.home-hero,
.home-hero .hero__grid,
.hero--premium {
  border-radius: 0 !important;
}

.home-hero .hero__grid {
  gap: 0.8rem !important;
}

.home-hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(236, 244, 255, 0.95));
  border: 1px solid rgba(18, 62, 109, 0.22);
  box-shadow: 0 24px 56px rgba(7, 26, 49, 0.2);
  padding: 1.1rem 1.1rem 1rem;
  min-height: 100%;
}

.home-hero-card__title {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.home-hero-card__field.form-group {
  margin-bottom: 0.5rem;
}

.home-hero-card__field.form-group input,
.home-hero-card__field.form-group textarea {
  border: 1px solid rgba(18, 62, 109, 0.18);
  background: #fff;
}

.home-hero-card__submit {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #ff7a1a, #ef5e00);
  box-shadow: 0 10px 24px rgba(239, 94, 0, 0.35);
}

.home-hero-slider {
  padding: 0.4rem;
}

.home-hero-slider__track {
  min-height: clamp(120px, 14vw, 185px);
}

.home-hero-slide {
  position: relative;
  display: none;
  inset: auto;
  opacity: 1;
  transform: none;
  border-radius: 12px;
}

.home-hero-slide.is-active {
  display: block;
}

.home-plan {
  border: 1px solid rgba(18, 62, 109, 0.14);
  box-shadow: 0 14px 36px rgba(7, 26, 49, 0.09);
}

.home-plan--wide {
  background: linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
}

.home-plan__price {
  font-size: 1.9rem;
}

.home-plan__btn {
  font-size: 0.8rem;
}

.home-proof {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(239, 246, 255, 0.75));
}

.home-proof__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .home-proof__grid {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.home-proof__faq {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-grey-200);
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.home-proof__faq .home-faq__list {
  gap: 0.45rem;
}

.home-proof__faq .home-faq__item summary {
  font-size: 0.82rem;
  padding: 0.8rem 0.9rem;
}

.home-proof__faq .home-faq__body {
  font-size: 0.78rem;
  padding: 0 0.9rem 0.8rem;
}

[data-theme="dark"] .home-proof__faq {
  background: var(--color-grey-50);
}

.home-section__title,
.home-plan__name,
.home-track__title,
.home-pillar__title {
  color: #0a2c4c;
}

@media (max-width: 1023px) {
  .topbar__right {
    gap: 0.35rem;
  }

  .home-hero__aside {
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .container,
  .home-page .container {
    width: min(1400px, 100% - 1.8rem) !important;
  }

  .home-hero .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr) !important;
    align-items: stretch;
  }

  .home-hero__aside {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .home-page .container {
    width: min(1400px, 100% - 0.7rem) !important;
  }

  .home-hero-slider__track {
    min-height: 130px;
  }
}

/* ========== Final responsive stabilization ========== */
html,
body {
  overflow-x: hidden;
}

.home-proof {
  padding-bottom: 0.9rem;
}

.home-proof__testimonials .testimonial-slider {
  margin-bottom: 0;
}

.home-proof__testimonials .slider-dots {
  margin-top: 0.7rem;
}

@media (min-width: 960px) {
  .home-proof__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem;
    align-items: stretch;
  }

  .home-proof__faq {
    height: 100%;
  }
}

@media (max-width: 1023px) {
  .home-page {
    overflow-x: clip;
  }

  .home-hero {
    padding-block: 1rem 1.25rem !important;
  }

  .home-hero .hero__grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    text-align: center;
  }

  .home-hero__intro,
  .home-hero__lead,
  .home-hero__aside,
  .home-hero-slider {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .home-hero-card {
    padding: 0.85rem;
  }

  .home-hero-slider {
    margin-top: 0.5rem;
  }

  .home-hero-slider__track {
    min-height: 120px !important;
  }

  .home-hero-slider__actions {
    margin-top: 0.35rem;
  }
}

/* ========== Final lock: hero carousel + 50/50 proof row ========== */
.home-hero-slider {
  width: 673px !important;
  max-width: 100% !important;
}

.home-hero-slider__track {
  position: relative !important;
  height: 200px !important;
  min-height: 200px !important;
  overflow: hidden;
  border-radius: 12px;
}

.home-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  display: none !important;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.home-hero-slide.is-active {
  display: block !important;
}

.home-hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.home-proof__grid {
  display: flex !important;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 960px) {
  .home-proof__grid {
    flex-direction: row !important;
    align-items: stretch;
  }

  .home-proof__testimonials,
  .home-proof__faq {
    flex: 1 1 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 1023px) {
  .home-hero-slider {
    width: 100% !important;
  }

  .home-hero-slider__track {
    height: clamp(130px, 42vw, 190px) !important;
    min-height: clamp(130px, 42vw, 190px) !important;
  }

  .home-proof__testimonials,
  .home-proof__faq {
    max-width: 100% !important;
  }
}

/* ========== Final requested polish (hero/form/pricing/mobile) ========== */
.home-hero-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.45rem;
  row-gap: 0.12rem;
  margin-bottom: 0.35rem;
}

.home-hero-card__title {
  margin: 0;
}

.home-hero-card__sub {
  width: 100%;
  margin: 5px 0 0;
  font-size: 0.75rem;
  color: var(--color-grey-500);
}

.home-hero-slider {
  margin-bottom: 12px;
}

.home-hero__aside {
  margin-top: 10px;
}

.home-plans__bento {
  gap: 1rem !important;
}

.home-plan {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.home-plan::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff7a1a, #22c1ff);
  opacity: 0.9;
}

.home-plan--accent {
  background: linear-gradient(125deg, #0a2340 0%, #113b67 65%, #1d5a93 100%);
}

.home-plan__name {
  font-size: 1.08rem;
}

.home-plan__meta {
  font-size: 0.8rem;
}

@media (max-width: 1023px) {
  .home-hero__title {
    width: 100%;
    max-width: 24ch !important;
  }

  .home-hero-slider {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .home-hero__aside {
    margin-top: 10px;
  }
}

/* ========== Hero copy + form redesign + mobile footer compact ========== */
.home-hero__title {
  max-width: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  font-size: clamp(1.9rem, 4.2vw, 3.15rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.03em;
}

.home-hero__title > span {
  display: block;
  white-space: nowrap;
}

.home-hero__lead {
  max-width: 52ch;
}

.home-hero-card {
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
  border: 1px solid rgba(18, 62, 109, 0.2);
  box-shadow: 0 20px 44px rgba(8, 24, 43, 0.2);
}

.home-hero-card form {
  display: grid;
  gap: 0.5rem;
}

.home-hero-card__head {
  margin-bottom: 0.35rem;
}

.home-hero-card__title {
  font-size: 1.08rem;
}

.home-hero-card__field.form-group {
  margin: 0;
}

.home-hero-card__field.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-grey-500);
}

.home-hero-card__field.form-group input,
.home-hero-card__field.form-group textarea {
  border: 1px solid rgba(18, 62, 109, 0.15);
  border-radius: 11px;
  padding: 0.62rem 0.72rem;
  background: #fff;
  font-size: 0.82rem;
}

.home-hero-card__field.form-group textarea {
  min-height: 84px;
}

.home-hero-card__submit {
  width: 100%;
  margin-top: 0.15rem;
  border-radius: 11px;
  padding-block: 0.68rem;
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-hero__title > span {
    white-space: normal;
  }

  .home-hero__title {
    font-size: clamp(1.9rem, 7.6vw, 2.45rem) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-block: 1.15rem 0.65rem;
  }

  .footer-contact-bar {
    padding: 0.42rem 0;
    font-size: 0.69rem;
  }

  .footer-contact-bar .container {
    gap: 0.35rem;
    line-height: 1.3;
  }

  .footer-brand {
    margin-bottom: 0.55rem;
  }

  .footer-brand__title {
    font-size: 0.92rem;
  }

  .footer-brand__text {
    font-size: 0.74rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.85rem;
    margin-bottom: 0.6rem;
  }

  .site-footer h4 {
    margin-bottom: 0.3rem;
    font-size: 0.66rem;
  }

  .site-footer li {
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .footer-bar {
    padding-top: 0.48rem;
    font-size: 0.66rem;
    gap: 0.35rem;
  }
}

/* ========== HERO HARD OVERRIDE (final) ========== */
.home-page .home-hero {
  padding-block: 1.1rem 1.4rem !important;
}

.home-page .home-hero .hero__grid {
  display: grid !important;
  gap: 0.95rem !important;
}

@media (min-width: 1024px) {
  .home-page .home-hero .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr) !important;
    align-items: start !important;
  }
}

.home-page .home-hero__title {
  width: 100% !important;
  margin: 0 0 0.52rem !important;
  font-size: clamp(2rem, 4.45vw, 3.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}

.home-page .home-hero__title > span {
  display: block;
}

@media (min-width: 1024px) {
  .home-page .home-hero__title > span {
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  .home-page .home-hero .hero__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .home-page .home-hero__title {
    font-size: clamp(2.05rem, 8.6vw, 2.85rem) !important;
    max-width: 100% !important;
  }
}

.home-page .home-hero-slider {
  width: 600px !important;
  max-width: 100% !important;
  margin-top: 0.6rem !important;
  margin-bottom: 14px !important;
}

.home-page .home-hero-slider__track {
  position: relative !important;
  height: 200px !important;
  min-height: 200px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #031327 !important;
}

.home-page .home-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 1 !important;
  margin: 0 !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-page .home-hero-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.home-page .home-hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 1023px) {
  .home-page .home-hero-slider {
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  .home-page .home-hero-slider__track {
    height: clamp(145px, 45vw, 210px) !important;
    min-height: clamp(145px, 45vw, 210px) !important;
  }
}

.home-page .home-hero__aside {
  margin-top: 10px !important;
}

.home-page .home-hero-card {
  border-radius: 20px !important;
  padding: 1.1rem !important;
  background: linear-gradient(160deg, #ffffff 0%, #f1f6ff 100%) !important;
  border: 1px solid rgba(14, 52, 90, 0.16) !important;
  box-shadow: 0 20px 48px rgba(9, 30, 54, 0.18) !important;
}

.home-page .home-hero-card__head {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

.home-page .home-hero-card__title {
  margin: 0 !important;
  font-size: 1.18rem !important;
}

.home-page .home-hero-card__sub {
  width: 100% !important;
  margin: 5px 0 0 !important;
  font-size: 0.78rem !important;
  color: #5f6d81 !important;
}

.home-page .home-hero-card__field.form-group label {
  font-size: 0.67rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.home-page .home-hero-card__field.form-group input,
.home-page .home-hero-card__field.form-group textarea {
  border-radius: 12px !important;
  border: 1px solid rgba(14, 52, 90, 0.16) !important;
  background: #fff !important;
  padding: 0.65rem 0.75rem !important;
}

.home-page .home-hero-card__submit {
  margin-top: 0.35rem !important;
  border-radius: 12px !important;
  padding-block: 0.72rem !important;
}

/* ========== HERO V2 (clean rebuild) ========== */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.6vw, 1.8rem);
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 20, 38, 0.92) 0%, rgba(30, 26, 19, 0.393) -8%, rgba(6, 20, 38, 0.72) 100%),
    url("http://localhost/startsyourbus/assets/images/bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-v2__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
}

@media (min-width: 1024px) {
  .hero-v2__grid {
    grid-template-columns: 65fr 35fr;
    align-items: start;
  }
}

.hero-v2__left {
  color: #fff;
}

.hero-v2__pill {
  display: inline-flex;
  margin: 0 0 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-v2__title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}

.hero-v2__title span {
  /* display: block; */
}

@media (min-width: 1024px) {
  .hero-v2__title span {
    white-space: nowrap;
  }
}

.hero-v2__desc {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.5;
}

.hero-v2__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.78rem;
}

.hero-v2__ctas .btn {
  border-radius: 999px;
  padding: 0.56rem 1.08rem;
  font-size: 0.83rem;
}

.hero-v2__slider {
  width: min(840px, 100%);
  max-width: 100%;
  margin-top: 2.8rem;
}

.hero-v2__track {
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(3, 14, 28, 0.35);
  position: relative;
  padding: 0;
}

.hero-v2__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s ease;
}

.hero-v2__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-v2__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v2__controls {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.hero-v2__nav {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero-v2__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.hero-v2__dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
}

.hero-v2__dots button.is-active {
  width: 18px;
  background: #fff;
}

.hero-v2__form-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f6f7fa;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 58px rgba(3, 14, 28, 0.25);
}

.hero-v2__form-media {
  height: 132px;
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.15), rgba(5, 11, 20, 0.5)),
    url("http://localhost/startsyourbus/assets/images/form.png") center / cover no-repeat;
}

.hero-v2__form-content {
  padding: 0.9rem 0.95rem 1rem;
}

.hero-v2__form-title {
  margin: 0;
  font-size: 1.05rem;
  color: #111827;
}

.hero-v2__form-sub {
  margin: 5px 0 0.65rem;
  font-size: 0.76rem;
  color: #667085;
}

.hero-v2__form-content .form-group {
  margin: 0 0 0.56rem;
}

.hero-v2__form-content .form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6270;
  margin-bottom: 0.3rem;
}

.hero-v2__form-content .form-group input,
.hero-v2__form-content .form-group textarea,
.hero-v2__form-content .form-group select {
  border-radius: 11px;
  border: 1px solid #d9dee8;
  background: #fff;
  padding: 0.68rem 0.76rem;
  font-size: 0.94rem;
}

.hero-v2__submit {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.82rem 1rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #10131a;
  cursor: pointer;
  margin-top: 0.3rem;
}

@media (max-width: 1023px) {
  .hero-v2 {
    padding-inline: 0.75rem;
  }

  .hero-v2__left {
    text-align: center;
    margin-top: 28px;
  }

  .hero-v2__pill {
    margin-inline: auto;
  }

  .hero-v2__title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-v2__title span {
    white-space: normal;
  }

  .hero-v2__ctas {
    justify-content: center;
  }

  .hero-v2__slider {
    margin-inline: auto;
  }

  .hero-v2__track {
    height: clamp(150px, 45vw, 210px);
  }
}

/* Desktop menu visibility boost */
@media (min-width: 1024px) {
  .nav-desktop a,
  .nav-desktop .has-dropdown > button {
    color: #0f172a !important;
    font-size: 0.97rem !important;
    font-weight: 600 !important;
    padding: 0.58rem 0.9rem !important;
  }

  .nav-desktop a:hover,
  .nav-desktop a.is-active,
  .nav-desktop .has-dropdown:hover > button {
    color: #111827 !important;
    background: rgba(255, 122, 26, 0.16) !important;
  }
}

/* ========== absolute final hero reset ========== */
.home-page .home-hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3rem) !important;
  line-height: 1.04 !important;
  max-width: 100% !important;
}

@media (min-width: 1024px) {
  .home-page .home-hero__title > span {
    white-space: nowrap !important;
  }
}

@media (max-width: 1023px) {
  .home-page .home-hero__title > span {
    white-space: normal !important;
  }
}

.home-page .home-hero-slider {
  width: 600px !important;
  max-width: 100% !important;
}

.home-page .home-hero-slider__track {
  height: 200px !important;
  min-height: 200px !important;
}

.home-page .home-hero-slide {
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.home-page .home-hero-slide.is-active {
  display: block !important;
}

.home-page .home-hero-card {
  padding: 0 !important;
  overflow: hidden;
}

.home-page .home-hero-card__media {
  height: 92px;
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.18), rgba(10, 15, 26, 0.5)),
    url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?auto=format&fit=crop&w=900&h=360&q=80")
      center / cover no-repeat;
}

.home-page .home-hero-card__head,
.home-page .home-hero-card form {
  padding-inline: 0.95rem;
}

.home-page .home-hero-card__head {
  padding-top: 0.8rem;
}

.home-page .home-hero-card form {
  padding-bottom: 0.9rem;
}

.home-page .home-hero-card__title {
  font-size: 1.06rem !important;
}

.home-page .home-hero-card__sub {
  margin-top: 5px !important;
}

@media (max-width: 1023px) {
  .home-page .home-hero-slider {
    width: 100% !important;
  }

  .home-page .home-hero-slider__track {
    height: clamp(145px, 45vw, 210px) !important;
    min-height: clamp(145px, 45vw, 210px) !important;
  }
}

/* ========== 2026-06 alignment + mobile app polish ========== */
.hero-v2__title b {
  color: #67e8f9 !important;
}

.hero-v2__title span {
  display: block;
}

.hero-v2__desc {
  max-width: 54ch;
}

.hero-v2__left,
.hero-v2__right {
  align-self: stretch;
}

.section .container {
  align-items: start;
}

.page-hero__inner {
  max-width: 860px;
}

.service-detail-meta {
  align-items: center;
  gap: 0.7rem;
}

.service-detail-meta span {
  margin-left: 0 !important;
}

.home-content-tabs .home-section__head {
  max-width: 760px;
}

.home-guide-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-guide-card {
  grid-column: span 12;
  background: #ffffff;
  border: 1px solid #dae3f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 26, 49, 0.08);
}

.home-guide-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.home-guide-card__body {
  padding: 0.82rem 0.9rem 0.95rem;
}

.home-guide-card__body h3 {
  margin: 0 0 0.32rem;
  font-size: 1rem;
  color: #0a2c4c;
}

.home-guide-card__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #475569;
}

@media (min-width: 860px) {
  .home-guide-card {
    grid-column: span 4;
  }
}

@media (max-width: 1023px) {
  .hero-v2 {
    padding-top: 1.25rem;
  }

  .hero-v2__left {
    text-align: left;
  }

  .hero-v2__pill {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-v2__ctas {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 1.25rem;
  }

  .card,
  .page-insight-card,
  .home-guide-card {
    border-radius: 14px;
  }

  .hero-v2__form-card {
    border-radius: 16px;
  }

  .hero-v2__form-content {
    padding: 0.8rem;
  }

  .hero-v2__title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .home-page .container,
  .container {
    width: min(1300px, 100% - 0.75rem) !important;
  }
}

/* ========== Home guide section redesign (focused) ========== */
.home-content-tabs {
  padding-block: clamp(1.35rem, 3vw, 2rem);
}

.home-content-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.home-content-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-content-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d8e3f1;
  background: #ffffff;
  color: #0f3558;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-content-tabs .content-tab-panel {
  padding: 1.2rem 0 1.35rem;
}

.home-content-tabs .content-tab-panel__inner {
  max-width: 100%;
}

.home-content-tabs .content-prose h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.home-content-tabs .content-prose p {
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0.72rem;
}

.home-guide-grid {
  margin-top: 0.85rem;
  gap: 0.65rem;
}

.home-guide-card {
  border-radius: 14px;
}

.home-guide-card img {
  height: 150px;
}

.home-guide-card__body {
  padding: 0.72rem 0.8rem 0.8rem;
}

.home-guide-card__body h3 {
  font-size: 0.94rem;
}

.home-guide-card__body p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-plans--featured {
  gap: 0.62rem !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-plans--featured .home-plan {
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  min-height: 112px;
}

.home-plans--featured .home-plan__name {
  font-size: 1.06rem;
  margin-bottom: 0.2rem;
}

.home-plans--featured .home-plan__tag {
  font-size: 0.78rem;
}

.home-plans--featured .home-plan__meta {
  font-size: 0.86rem;
  margin-top: 0.38rem;
}

.home-plans--featured .home-plan__btn {
  margin-top: 0.58rem;
  padding: 0.36rem 0.78rem;
  font-size: 0.76rem;
}

.home-plans--featured .home-plan__arrow {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.home-plan--featured-primary {
  background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid #cfe0f5;
}

.home-plan--featured-primary .home-plan__name {
  color: #12395d;
}

.home-plan--featured-llp {
  background: linear-gradient(130deg, #0b2a4a 0%, #205f98 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-plan--featured-llp .home-plan__name,
.home-plan--featured-llp .home-plan__meta {
  color: #ffffff;
}

.home-plan--featured-llp .home-plan__btn--light {
  background: rgba(255, 255, 255, 0.2);
}

.home-plan--featured-fssai {
  background: linear-gradient(145deg, #f1fff8 0%, #ffffff 100%);
  border: 1px solid #cfeedd;
}

.home-plan--featured-fssai .home-plan__name {
  color: #0f5a3f;
}

.home-plan--featured-iec {
  background: linear-gradient(145deg, #fff8ef 0%, #ffffff 100%);
  border: 1px solid #f5ddbf;
}

.home-plan--featured-iec .home-plan__name {
  color: #7a3e0a;
}

@media (max-width: 860px) {
  .home-plans--featured {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(210px, 1fr);
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .home-content-head__meta {
    gap: 0.3rem;
  }

  .home-content-chip {
    font-size: 0.68rem;
  }

  .home-guide-card img {
    height: 140px;
  }
}

/* ========== Home page polish + slim CTA ========== */
.home-page .home-section {
  padding-block: clamp(1.1rem, 2.2vw, 1.75rem);
}

.home-page .home-section__head {
  margin-bottom: 0.85rem;
}

.home-page .home-tracks__grid,
.home-page .home-pillars__rail,
.home-page .home-proof__grid {
  gap: 0.65rem;
}

.home-page .home-track,
.home-page .home-pillar,
.home-page .home-voice-card {
  box-shadow: 0 10px 24px rgba(7, 26, 49, 0.08);
}

.home-page .home-cta-wrap {
  padding-block: 1rem 1.25rem;
}

.home-page .home-cta {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: linear-gradient(145deg, #06203a 0%, #0c3157 62%, #134775 100%);
  box-shadow: 0 14px 34px rgba(4, 12, 24, 0.3);
}

.home-page .home-cta__content {
  max-width: 44rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.home-page .home-cta__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.2;
}

.home-page .home-cta__text {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.92;
}

.home-page .home-cta__meta {
  grid-column: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.home-page .home-cta__meta span {
  display: inline-flex;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  color: #dbeafe;
  border: 1px solid rgba(219, 234, 254, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.home-page .home-cta__btn {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  padding: 0.56rem 0.95rem;
  font-size: 0.78rem;
  border-radius: 10px;
}

.home-page .home-cta__aurora {
  display: none;
}

@media (max-width: 860px) {
  .home-page .home-cta__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.55rem;
  }

  .home-page .home-cta__meta {
    justify-content: center;
  }

  .home-page .home-cta__btn {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: 100%;
    max-width: 260px;
  }
}

/* ========== Mobile visibility + spacing fixes ========== */
@media (max-width: 1023px) {
  .container,
  .home-page .container {
    width: min(1300px, 100% - 1.15rem) !important;
  }

  body {
    font-size: 15.5px;
  }

  p,
  li,
  .section-sub,
  .content-prose p {
    font-size: 0.98rem !important;
    line-height: 1.62;
  }

  h1,
  .hero-v2__title {
    line-height: 1.1;
  }

  h2,
  .section-title,
  .home-section__title,
  .content-prose h2 {
    font-size: clamp(1.34rem, 5.2vw, 1.7rem) !important;
  }

  h3,
  .home-plan__name,
  .home-track__title,
  .content-prose h3 {
    font-size: 1.08rem !important;
  }

  .bottom-nav {
    left: 0.55rem;
    right: 0.55rem;
    bottom: calc(env(safe-area-inset-bottom, 0) + 0.38rem);
    border-radius: 14px;
    height: 60px;
    box-shadow: 0 -2px 18px rgba(7, 26, 49, 0.18);
  }

  body.has-bottom-nav {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0));
  }

  .bottom-nav a {
    font-size: 0.64rem;
    font-weight: 700;
  }

  .mobile-menu__panel {
    width: min(360px, calc(100vw - 1rem));
    border-radius: 16px 0 0 16px;
  }

  .mobile-menu nav a {
    font-size: 1rem;
    color: #1f2937;
  }

  .mobile-menu .btn--primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff7a1a, #ef5e00);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .chat-widget {
    right: 0.9rem;
    bottom: calc(74px + env(safe-area-inset-bottom, 0));
  }
}

/* Contact page redesign (non-tab) */
.contact-redesign .container {
  max-width: 1140px;
}

.contact-hero-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-hero-card .section-sub {
  font-size: 0.9rem;
}

.contact-quick-points p {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
}

.contact-steps {
  margin: 0 0 0.8rem;
  padding-left: 1rem;
  color: var(--color-grey-700);
  line-height: 1.5;
}

.contact-steps li {
  margin-bottom: 0.42rem;
  font-size: 0.9rem;
}

.home-featured-services .home-section__head {
  margin-bottom: 0.7rem;
}
