/* ==========================================================================
   Shree Sai Innovation — Static Site Stylesheet
   Premium black & gold B2B design system (plain CSS3, no framework).

   HOW TO EDIT
   1. Colours, radius, shadows ......... :root section below
   2. Typography ....................... "Base typography"
   3. Buttons .......................... "Buttons"
   4. Sections / cards / grids ......... "Layout primitives"
   5. Header / footer / mobile nav ..... "Site header" / "Site footer"
   6. Lead form ........................ "Lead form"
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --radius: 0.5rem;

  /* Light surfaces */
  --background: oklch(0.995 0.002 90);
  --foreground: oklch(0.18 0.008 80);
  --card: oklch(1 0 0);
  --muted: oklch(0.965 0.005 90);
  --muted-foreground: oklch(0.5 0.012 80);
  --accent: oklch(0.955 0.02 92);
  --border: oklch(0.9 0.008 88);
  --input: oklch(0.89 0.008 88);
  --ring: oklch(0.74 0.12 84);
  --destructive: oklch(0.55 0.2 27);

  /* Brand — ink (black) + gold */
  --ink: oklch(0.16 0.006 80);
  --ink-elevated: oklch(0.215 0.008 80);
  --ink-foreground: oklch(0.97 0.005 90);
  --ink-muted: oklch(0.72 0.012 88);
  --ink-border: oklch(0.32 0.012 85);
  --gold: oklch(0.78 0.125 84);
  --gold-soft: oklch(0.88 0.075 88);
  --gold-deep: oklch(0.62 0.11 76);

  --gradient-gold: linear-gradient(
    120deg,
    var(--gold-deep) 0%,
    var(--gold) 45%,
    var(--gold-soft) 70%,
    var(--gold) 100%
  );
  --gradient-ink: linear-gradient(160deg, oklch(0.19 0.008 80) 0%, oklch(0.12 0.006 80) 100%);
  --shadow-elegant: 0 18px 45px -24px oklch(0.16 0.006 80 / 0.45);
  --shadow-gold: 0 16px 40px -20px oklch(0.78 0.125 84 / 0.55);

  --container: 72rem; /* max content width */
}

/* --------------------------------------------------------------------------
   2. Reset & base typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 3.5rem; /* space for the mobile sticky CTA bar */
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 60;
  background: var(--ink);
  color: var(--ink-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives (sections, container, grids)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4rem 1.25rem;
}

.section--muted {
  background-color: var(--muted);
}

.section--ink,
.surface-ink {
  background-image: var(--gradient-ink);
  color: var(--ink-foreground);
}

.section-heading {
  max-width: 48rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}

.section--ink .eyebrow {
  color: var(--gold);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
}

.section--ink .section-title,
.section--ink h2,
.section--ink h3 {
  color: var(--ink-foreground);
}

.section-intro {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.section--ink .section-intro,
.section--ink p {
  color: var(--ink-muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.grid--gap-lg {
  gap: 2.5rem;
}

.stack-8 {
  margin-top: 2rem;
}

.stack-10 {
  margin-top: 2.5rem;
}

.text-gold {
  color: var(--gold-deep);
}

.text-gold-gradient {
  background-image: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hairline-gold {
  background-image: var(--gradient-gold);
}

/* --------------------------------------------------------------------------
   4. Cards
   -------------------------------------------------------------------------- */
.card {
  height: 100%;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-elegant);
}

.card--lift:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--gold) 50%, transparent);
}

.card__title {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.card__body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--accent);
  color: var(--gold-deep);
}

.card--step {
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-elegant);
}

.card--step .step-no {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}

.card--ink {
  height: 100%;
  border: 1px solid var(--ink-border);
  background-color: var(--ink-elevated);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: var(--ink-foreground);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card--ink svg {
  flex: none;
  color: var(--gold);
}

.list-check {
  display: grid;
  gap: 0.75rem;
}

.list-check li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.list-check svg {
  flex: none;
  color: var(--gold-deep);
}

.stat {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.stat dt,
.stat__label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stat dd,
.stat__value {
  margin: 0.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.625rem 1.125rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
}

.btn--xl {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn--gold {
  background-image: var(--gradient-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

.btn--ink {
  background-image: var(--gradient-ink);
  color: var(--ink-foreground);
}

.btn--outline-gold {
  border-color: color-mix(in oklch, var(--gold) 55%, transparent);
  color: var(--gold-deep);
  background-color: transparent;
}

.btn--outline-gold:hover {
  background-color: var(--accent);
}

.btn--outline-ink {
  border-color: var(--ink-border);
  color: var(--ink-foreground);
  background-color: transparent;
}

.btn--outline-ink:hover {
  background-color: var(--ink-elevated);
}

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

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.btn-row--center {
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Site header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklch, var(--background) 90%, transparent);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  min-height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
  border-radius: var(--radius);
}


.primary-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.primary-nav a {
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 0.5rem 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--foreground);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1rem 1.25rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a.mobile-nav__link {
  display: block;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. Hero + trust strip
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
  background-image: var(--gradient-ink);
  color: var(--ink-foreground);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--ink) 25%, transparent 95%);
}

.hero__content {
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--ink-border);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.hero h1 {
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero__lead {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.hero__sub {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--ink-muted);
}

.page-hero {
  background-image: var(--gradient-ink);
  color: var(--ink-foreground);
  padding: 3.5rem 1.25rem;
}

.trust-strip {
  border-block: 1px solid var(--border);
  background-color: var(--muted);
  padding: 1.25rem;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  text-align: center;
}

.trust-strip li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   8. Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs [aria-current="page"] {
  font-weight: 500;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   9. FAQ (native <details> accordion)
   -------------------------------------------------------------------------- */
.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  height: 100%;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.faq-item[open] {
  box-shadow: var(--shadow-elegant);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 600;
}

.faq-item__sign {
  margin-top: 0.25rem;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__sign {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   10. Lead form
   -------------------------------------------------------------------------- */
.lead-form {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}

.lead-form__grid {
  display: grid;
  gap: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--card);
  padding: 0.625rem 0.875rem;
  font: inherit;
  font-size: 1rem;
  color: var(--foreground);
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring) 40%, transparent);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field__error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--destructive);
}

.field--full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.form-success {
  border: 1px solid color-mix(in oklch, var(--gold) 40%, transparent);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.form-success svg {
  margin-inline: auto;
  color: var(--gold-deep);
}

.form-success h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.form-success p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   11. Prose (privacy / terms pages)
   -------------------------------------------------------------------------- */
.prose h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.prose p,
.prose li {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
}

/* --------------------------------------------------------------------------
   12. Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-image: var(--gradient-ink);
  color: var(--ink-foreground);
  padding: 4rem 1.25rem 2.5rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

.site-footer h2 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.site-footer p {
  color: var(--ink-muted);
}

.footer-brand__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-foreground);
}

.footer-brand__tag {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 0.625rem;
}

.footer-contact svg {
  flex: none;
  margin-top: 0.15rem;
  color: var(--gold);
}

.footer-contact address {
  font-style: normal;
  line-height: 1.7;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  border-top: 1px solid var(--ink-border);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.site-footer__bottom .links {
  display: flex;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   13. Floating WhatsApp + mobile sticky CTA
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background-image: var(--gradient-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink-border);
  background-color: var(--ink);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-foreground);
}

.sticky-cta a svg {
  color: var(--gold);
}

.sticky-cta a.is-gold {
  background-image: var(--gradient-gold);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   14. Reveal-on-scroll animation (progressive enhancement via JS)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   15. Responsive breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .section,
  .hero,
  .page-hero,
  .site-footer,
  .trust-strip {
    padding-inline: 2rem;
  }

  .site-header__inner {
    padding-inline: 2rem;
  }

  .mobile-nav {
    padding-inline: 2rem;
  }

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

  .lead-form {
    padding: 2rem;
  }

  .lead-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-row {
    flex-direction: row;
  }

  .list-check {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .section,
  .hero {
    padding-block: 6rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-intro {
    font-size: 1.125rem;
  }

  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0; /* sticky CTA is mobile-only */
  }

  .primary-nav,
  .header-actions {
    display: flex;
  }

  .nav-toggle,
  .sticky-cta {
    display: none;
  }

  .whatsapp-float {
    bottom: 1.5rem;
  }

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

  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   16. Reduced motion
   -------------------------------------------------------------------------- */
@media (max-width: 639px) {
  .site-header__inner {
    min-height: 4.25rem;
    padding: 0.55rem 1rem;
  }

  .logo img {
    width: 3.1rem;
    height: 3.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Hero image slider
   -------------------------------------------------------------------------- */
.hero--slider {
  padding: 0;
  min-height: 650px;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slider__track {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 650px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .65s ease, transform .9s ease, visibility .65s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide .hero__image {
  opacity: .52;
}

.hero-slide .hero__scrim {
  background: linear-gradient(100deg, rgba(5,5,5,.98) 12%, rgba(5,5,5,.86) 38%, rgba(5,5,5,.28) 100%);
}

.hero-slide .hero__content {
  z-index: 2;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-slide h2 {
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-slider__control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  color: #fff;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-slider__control:hover {
  background: rgba(0,0,0,.65);
  border-color: var(--gold);
}

.hero-slider__control:focus-visible,
.hero-slider__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero-slider__control--prev { left: 1.25rem; }
.hero-slider__control--next { right: 1.25rem; }

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 5;
  display: flex;
  gap: .55rem;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, border-color .25s ease;
}

.hero-slider__dot.is-active {
  width: 28px;
  border-color: var(--gold);
  background: var(--gold);
}

@media (min-width: 768px) {
  .hero--slider,
  .hero-slider,
  .hero-slider__track,
  .hero-slide,
  .hero-slide .hero__content {
    min-height: 720px;
  }

  .hero-slide h2 {
    font-size: 3.5rem;
  }

  .hero-slider__control--prev { left: 2rem; }
  .hero-slider__control--next { right: 2rem; }
}

@media (max-width: 767px) {
  .hero--slider,
  .hero-slider,
  .hero-slider__track,
  .hero-slide,
  .hero-slide .hero__content {
    min-height: 680px;
  }

  .hero-slide .hero__image {
    opacity: .36;
  }

  .hero-slide .hero__scrim {
    background: linear-gradient(180deg, rgba(5,5,5,.8) 0%, rgba(5,5,5,.94) 75%, rgba(5,5,5,.98) 100%);
  }

  .hero-slider__control {
    top: auto;
    bottom: 1.2rem;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .hero-slider__control--prev { left: 1.25rem; }
  .hero-slider__control--next { right: 1.25rem; }
  .hero-slider__dots { bottom: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slider__dot {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Homepage About Us refresh
   -------------------------------------------------------------------------- */
.section--about-home {
  background: var(--card);
}

.about-home {
  gap: 2.5rem;
}

.about-home__media {
  min-width: 0;
}

.about-home__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
}

.about-home__content {
  min-width: 0;
}

.about-home__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}

.about-home__stat {
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: .75rem;
  padding: 1rem;
}

.about-home__stat strong {
  display: block;
  color: var(--gold-deep);
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-home__stat span {
  display: block;
  margin-top: .3rem;
  color: var(--muted-foreground);
  font-size: .78rem;
  line-height: 1.4;
}

@media (max-width: 639px) {
  .about-home__stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-home__stat {
    padding: .85rem;
  }
}

@media (min-width: 768px) {
  .about-home__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card__icon svg {
  display: block;
}

@media (max-width: 767px) {
  .section--about-home .section-title {
    font-size: 1.8rem;
  }

  .section--about-home .section-intro {
    font-size: .98rem;
  }
}


/* ==========================================================================
   FINAL MOBILE HERO SLIDER FIX
   Architecture: the active slide and the navigation row are normal-flow
   siblings inside .hero-slider__track. No absolute-positioned navigation
   overlays the slide content on mobile.
   ========================================================================== */
@media (max-width: 767px) {
  .hero--slider,
  .hero-slider,
  .hero-slider__track {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero-slider {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
  }

  .hero-slider__track {
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Do not stack absolutely positioned slides on mobile.
     Only the active slide participates in layout. */
  .hero-slider__track .hero-slide,
  .hero-slider__track .hero-slide.is-active {
    position: relative !important;
    inset: auto !important;
    display: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .hero-slider__track .hero-slide.is-active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
  }

  /* The background media remains absolute, but stretches to the actual
     content-driven height of the active slide. */
  .hero-slide .hero__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: .36 !important;
    z-index: 0 !important;
  }

  .hero-slide .hero__scrim {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  .hero-slide .hero__content,
  .hero-slide .container.hero__content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 2.75rem 1rem 2.25rem !important;
    margin: 0 !important;
  }

  .hero-slide .hero__badge {
    margin-bottom: 1rem !important;
  }

  .hero-slide h1,
  .hero-slide h2 {
    margin: 0 0 1rem !important;
    max-width: none !important;
    font-size: clamp(1.9rem, 7.6vw, 2.35rem) !important;
    line-height: 1.1 !important;
  }

  .hero-slide .hero__lead {
    margin: 0 0 1rem !important;
    max-width: none !important;
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
  }

  .hero-slide .hero__sub {
    margin: 0 !important;
    max-width: none !important;
    font-size: .98rem !important;
    line-height: 1.55 !important;
  }

  /* CTA region gets its own explicit vertical spacing. */
  .hero-slide .btn-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: .7rem !important;
    margin: 1.25rem 0 0 !important;
  }

  .hero-slide .btn-row .btn {
    width: 100% !important;
    min-height: 3.25rem !important;
    margin: 0 !important;
  }

  /* Dedicated navigation zone: a true block after the active slide. */
  .hero-slider__navigation {
    position: relative !important;
    z-index: 10 !important;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 86px !important;
    height: 86px !important;
    box-sizing: border-box !important;
    padding: .7rem 1rem !important;
    margin: 0 !important;
    background: #080808 !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
  }

  .hero-slider__navigation .hero-slider__control {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 auto !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .hero-slider__navigation .hero-slider__control--prev {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .hero-slider__navigation .hero-slider__dots {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .55rem !important;
    min-height: 24px !important;
    margin: 0 !important;
  }

  .hero-slider__navigation .hero-slider__control--next {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }
}
