/* =========================================================
   Clean Site Stylesheet
   Modernized shared CSS for long-term maintenance.
   Legacy selectors removed in favor of a single naming system.
   ========================================================= */

:root {
  --color-bg: #111111;
  --color-bg-elevated: #1a1a1a;
  --color-bg-surface: #222222;
  --color-bg-nav: rgba(17, 17, 17, 0.96);

  --color-text: #ffffff;
  --color-text-soft: #d6d6d6;
  --color-text-muted: #aaaaaa;
  --color-text-dark: #111111;

  --color-accent: #f57f17;
  --color-accent-hover: #ff932e;

  --color-border: rgba(255, 255, 255, 0.12);
  --color-overlay: rgba(0, 0, 0, 0.58);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.65);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --max-width: 1280px;
  --content-width: 1200px;
  --nav-height: 76px;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 2.5rem;
  --space-7: 3rem;
  --space-8: 5rem;

  --font-body: "Montserrat", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;

  --transition-fast: 0.22s ease;
  --transition-base: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  color: var(--color-text);
  background: linear-gradient(180deg, #111111 0%, #191919 45%, #232323 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-heading);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--color-accent-hover);
}

button,
input,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* =========================
   Header / Navigation
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  background: var(--color-bg-nav);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--nav-height);
  padding: 0.85rem 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.8rem 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
  color: var(--color-text);
  background: linear-gradient(180deg, #222222 0%, #191919 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary:hover,
.nav-menu summary:focus-visible,
.nav-menu[open] summary {
  color: var(--color-accent);
  border-color: rgba(245, 127, 23, 0.6);
}

.menu-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  min-width: 270px;
  margin: 0;
  padding: 0.6rem;
  list-style: none;
  background: linear-gradient(180deg, #222222 0%, #161616 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.nav-dropdown li + li {
  margin-top: 0.25rem;
}

.nav-dropdown a {
  display: block;
  padding: 0.85rem 0.95rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--color-accent);
  background: rgba(245, 127, 23, 0.12);
}

/* =========================
   Hero
   ========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(var(--color-overlay), var(--color-overlay)),
    var(--hero-image, url("homeImage.jpg")) center / cover no-repeat;
}

.hero--compact {
  min-height: 65vh;
  background:
    linear-gradient(rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 920px);
  padding: 1.25rem;
  animation: fade-in-up 1.1s ease-out;
}

.hero-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  line-height: 1.05;
  color: var(--color-accent);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

.hero-subtitle {
  margin-bottom: 2.5rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-accent);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.button-primary {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255, 122, 0, 0.12);
  border: 3px solid var(--color-accent);
  backdrop-filter: blur(5px);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--color-text);
  background: var(--color-accent);
}

/* =========================
   Sections / Cards
   ========================= */

main {
  min-height: 60vh;
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--space-8) 3.125rem;
  text-align: center;
  color: var(--color-text-soft);
  background: var(--color-bg-elevated);
}

.section h2 {
  color: var(--color-accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: var(--content-width);
  margin-inline: auto;
}

.card {
  padding: var(--space-6);
  background: var(--color-bg-surface);
  border: 1px solid transparent;
  border-bottom: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 0.9375rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* =========================
   Search
   ========================= */

.search-form {
  max-width: 600px;
  margin-inline: auto;
}

.search-form input {
  width: 100%;
  padding: 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-accent);
}

.search-form button {
  width: 100%;
  margin-top: 1rem;
}

/* =========================
   Q&A
   ========================= */

.qa-list {
  max-width: 800px;
  margin-inline: auto;
  text-align: left;
}

.qa-item + .qa-item {
  margin-top: 1.25rem;
}

.qa-question {
  margin-bottom: 0.625rem;
  font-weight: 700;
  color: var(--color-accent);
  cursor: pointer;
  transition: color var(--transition-base);
}

.qa-question:hover {
  color: var(--color-text);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  line-height: 1.6;
  color: var(--color-accent);
  transition:
    opacity var(--transition-base),
    max-height var(--transition-base);
}

.qa-item:hover .qa-answer,
.qa-item.is-open .qa-answer {
  max-height: 1000px;
  opacity: 1;
}

.qa-answer img {
  margin: 0.625rem auto 0;
}

/* =========================
   Loading State
   ========================= */

.loading-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  color: var(--color-accent);
}

.loading-indicator.is-visible {
  display: flex;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: pulse 1.5s ease-in-out infinite;
}

/* =========================
   Media / Landing
   ========================= */

.map-frame {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  border-radius: 8px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.data-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  border-collapse: collapse;
  background: var(--color-bg-surface);
}

.data-table td {
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #333333;
}

.data-table td:first-child {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
}

.data-table img {
  max-width: 60px;
  margin-inline: auto;
}

.data-table a {
  font-weight: 600;
  text-transform: uppercase;
}

.cta-row {
  margin-top: 2.5rem;
  text-align: center;
}

.step-section {
  padding: 100px 50px 80px;
  text-align: center;
  background: var(--color-bg-elevated);
}

.step-section h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--color-accent);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #dddddd;
}

.ripple-step {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 50px auto;
  opacity: 0;
  border: 6px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(50px);
  transition: all 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ripple-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  width: 100%;
  margin-top: 3rem;
  background: transparent;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background: #ffffff;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  line-height: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.footer-pill:hover,
.footer-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.footer-pill img {
  width: auto;
  max-width: 140px;
  max-height: 24px;
  object-fit: contain;
}

.footer-links {
  padding: 1rem;
  text-align: left;
  color: var(--color-text-dark);
  background: #cfcfcf;
}

.footer-links a {
  font-weight: 600;
  color: var(--color-text-dark);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #b65300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--color-text);
  background: #333333;
}

.footer-bottom img {
  width: auto;
  height: 30px;
}

.footer-bottom p {
  margin: 0;
  text-align: right;
  font-size: 0.82rem;
  color: #efefef;
}

/* =========================
   Motion
   ========================= */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .site-nav {
    padding: 0.7rem 1rem;
  }

  .site-brand img {
    height: 32px;
  }

  .nav-dropdown {
    width: min(88vw, 320px);
  }

  .section,
  .step-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3rem);
  }

  .map-frame iframe {
    height: 300px;
  }

  .data-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .data-table img {
    max-width: 40px;
  }

  .footer-pill {
    padding: 5px 12px;
  }

  .footer-pill img {
    max-width: 120px;
    max-height: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .site-nav {
    gap: 0.6rem;
    padding-inline: 0.5rem;
  }

  .nav-menu summary {
    padding: 0.72rem 0.85rem;
  }

  .nav-dropdown {
    width: min(92vw, 320px);
  }

  .nav-dropdown a {
    padding: 0.8rem 0.85rem;
  }

  .footer-logos,
  .footer-links,
  .footer-bottom {
    padding-inline: 0.85rem;
  }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header {
    background: #111111;
  }
}

/* Improved Q&A hover behavior */
.qa-item {
  position: relative;
}

.qa-answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.4s ease;
  transition-delay: 0.05s;
}

.qa-item:hover .qa-answer {
  opacity: 1;
  max-height: 1200px;
  transform: translateY(0);
  transition-delay: 0.12s;
}

/* Improve ripple image sizing so they fit within viewport */
.ripple-step {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* pricing.html updates */
/* =========================
   Pricing Page
   ========================= */

.pricing-page .section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.pricing-hero-section {
  background:
    radial-gradient(circle at top left, rgba(245, 127, 23, 0.08), transparent 35%),
    linear-gradient(180deg, #181818 0%, #222222 100%);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-6);
  align-items: stretch;
  text-align: left;
}

.pricing-copy {
  align-self: center;
}

.pricing-eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.pricing-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  line-height: 1.08;
  color: var(--color-text);
  text-wrap: balance;
}

.pricing-intro p,
.pricing-model-panel p,
.pricing-talk-card p,
.pricing-section-heading p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.pricing-intro p + p,
.pricing-model-panel p + p,
.pricing-talk-card p + p {
  margin-top: 1rem;
}

.pricing-hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: #111111;
}

.pricing-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.pricing-image-overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  z-index: 1;
}

.pricing-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.pricing-models-section {
  background: var(--color-bg-elevated);
}

.pricing-models-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.pricing-section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.pricing-section-heading h2,
.pricing-talk-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-accent);
}

.pricing-model-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-model-trigger {
  min-width: 220px;
  padding: 1rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: linear-gradient(180deg, #262626 0%, #1b1b1b 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.pricing-model-trigger:hover,
.pricing-model-trigger:focus-visible,
.pricing-model-trigger.is-active {
  color: var(--color-accent);
  border-color: rgba(245, 127, 23, 0.6);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-model-panels {
  max-width: 860px;
  margin: 0 auto;
}

.pricing-model-panel {
  text-align: left;
  padding: 2rem;
  background: linear-gradient(180deg, #242424 0%, #181818 100%);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: fade-in-up 0.35s ease;
}

.pricing-model-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  color: var(--color-text);
}

.pricing-example-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  background: rgba(245, 127, 23, 0.1);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
  box-shadow: inset 0 0 0 1px rgba(245, 127, 23, 0.12);
}

.pricing-example-label {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.pricing-talk-section {
  background: linear-gradient(180deg, #1b1b1b 0%, #232323 100%);
}

.pricing-talk-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.25rem;
  text-align: center;
  background: linear-gradient(180deg, #252525 0%, #181818 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-copy,
  .pricing-section-heading,
  .pricing-model-panel,
  .pricing-talk-card {
    text-align: left;
  }

  .pricing-talk-card .cta-row {
    text-align: left;
  }

  .pricing-hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .pricing-page .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .pricing-model-trigger {
    width: 100%;
  }

  .pricing-model-panel,
  .pricing-talk-card {
    padding: 1.5rem;
  }

  .pricing-image-overlay {
    inset: auto 1rem 1rem 1rem;
  }
}
/* =========================
   Google Fonts — DM Serif Display + DM Sans
   (linked in <head> of index.html)
   ========================= */

/* =========================
   Value / Expertise Section
   (icons require Font Awesome 6 — link in <head>)
   ========================= */

.value-section {
  padding: var(--space-8) 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.value-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.value-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
}

.value-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0;
}

.value-stat-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.value-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}

.value-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  max-width: 120px;
}

.value-stat-arrow {
  font-size: 2rem;
  color: var(--color-border);
  flex-shrink: 0;
  padding-top: 0.3rem;
}

.value-stat-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 260px;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.value-card {
  text-align: left;
}

.value-card-icon {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

@media (max-width: 900px) {
  .value-inner {
    grid-template-columns: 1fr;
  }

  .value-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .value-stat-row {
    flex-direction: column;
    gap: var(--space-3);
  }

  .value-stat-arrow {
    display: none;
  }

  .value-stat-desc {
    max-width: 100%;
  }
}

/* =========================
   Utility: Label / Eyebrow
   ========================= */

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* =========================
   Closing CTA Section
   ========================= */

.closing-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245, 127, 23, 0.07), transparent),
    var(--color-bg);
  text-align: center;
}

.closing-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem auto 1.25rem;
  max-width: 720px;
  color: var(--color-text);
}

.closing-section h2 em {
  font-style: italic;
  color: var(--color-accent);
}

.closing-section p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.closing-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   Buttons: btn-primary / btn-ghost
   ========================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #111111;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #111111;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-text);
}

@media (max-width: 600px) {
  .closing-section {
    padding: 72px 0;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   Land Value Hero Section
   ========================= */

.land-hero-section {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  background:
    linear-gradient(rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.82)),
    url("https://staging.teardowns.com/images/infillREBG.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--color-border);
}

.land-hero-container {
  position: relative;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
}

.land-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
}

.land-hero-copy {
  max-width: 720px;
}

.land-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.land-hero-badge-dot,
.land-hero-badge-dot::before {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}

.land-hero-badge-dot {
  position: relative;
  background: #10b981;
  flex-shrink: 0;
}

.land-hero-badge-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 185, 129, 0.45);
  animation: land-hero-pulse 1.8s ease-out infinite;
}

.land-hero-title {
  margin: 0 0 1rem;
  font-family: "DM Serif Display", var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.land-hero-subtitle {
  max-width: 36rem;
  margin: 0 0 2rem;
  font-size: clamp(1.1rem, 2.3vw, 1.75rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.land-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.land-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
}

.land-hero-button-primary {
  color: #111111;
  background: #ffffff;
}

.land-hero-button-primary:hover,
.land-hero-button-primary:focus-visible {
  color: #111111;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.land-hero-button-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.land-hero-button-secondary:hover,
.land-hero-button-secondary:focus-visible {
  color: #111111;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.land-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.land-hero-audience {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.land-hero-audience i {
  font-size: 1.85rem;
  color: #34d399;
  flex-shrink: 0;
}

.land-hero-divider {
  width: 1px;
  min-height: 3rem;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.land-hero-note {
  max-width: 21rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.land-hero-visual-wrap {
  display: block;
}

.land-hero-visual {
  position: relative;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.land-hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.land-hero-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(92%, 330px);
  padding: 1rem 1.15rem;
  color: #111111;
  background: #ffffff;
  border-radius: 1.1rem;
  box-shadow: var(--shadow-lg);
}

.land-hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 0.9rem;
  flex-shrink: 0;
}

.land-hero-card-title {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
}

.land-hero-card-text {
  font-size: 0.88rem;
  color: #475569;
}

.land-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.land-hero-scroll i {
  font-size: 0.95rem;
  animation: land-hero-bounce 1.8s ease-in-out infinite;
}

@keyframes land-hero-pulse {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes land-hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0.35rem);
  }
  60% {
    transform: translateY(0.2rem);
  }
}

@media (max-width: 980px) {
  .land-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .land-hero-copy {
    max-width: 100%;
  }

  .land-hero-visual-wrap {
    order: 2;
  }

  .land-hero-scroll {
    margin-top: 2.5rem;
  }
}

@media (max-width: 768px) {
  .land-hero-container {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .land-hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .land-hero-subtitle {
    font-size: 1.1rem;
  }

  .land-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .land-hero-divider {
    display: none;
  }

  .land-hero-visual img {
    min-height: 300px;
  }

  .land-hero-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
  }

  .land-hero-scroll {
    display: none;
  }
}

@media (max-width: 560px) {
  .land-hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .land-hero-actions {
    flex-direction: column;
  }

  .land-hero-button {
    width: 100%;
    border-radius: 1rem;
  }

  .land-hero-audience {
    align-items: flex-start;
  }

  .land-hero-visual {
    padding: 0.45rem;
    border-radius: 1.25rem;
  }

  .land-hero-visual img {
    border-radius: 1rem;
    min-height: 240px;
  }
}



/* =========================
   Why This Matters Section
   ========================= */

.why-matters-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #f2f2f2;
  color: #1f2937;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.why-matters-container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.why-matters-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.why-matters-intro {
  max-width: 24rem;
}

.why-matters-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #059669;
}

.why-matters-title {
  margin: 0;
  font-family: "DM Serif Display", var(--font-heading);
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111827;
  text-wrap: balance;
}

.why-matters-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
}

.why-matters-lead {
  max-width: 42rem;
  margin: 0 0 2rem;
}

.why-matters-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.why-matters-point {
  min-width: 0;
  padding-left: 1.25rem;
  border-left: 4px solid #10b981;
}

.why-matters-point h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #111827;
  font-family: var(--font-body);
  font-weight: 700;
}

.why-matters-point p {
  margin: 0;
  color: #4b5563;
}

.why-matters-quote {
  margin: 0;
  font-style: italic;
  color: #6b7280;
}

@media (max-width: 900px) {
  .why-matters-grid {
    grid-template-columns: 1fr;
  }

  .why-matters-intro {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .why-matters-section {
    padding: 3.5rem 0;
  }

  .why-matters-points {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-matters-content {
    font-size: 1rem;
  }
}


/* =========================
   How It Works Slideshow
   Scoped merge from HIW.html + styles.css
   ========================= */

.hiw-section {
  position: relative;
  background: #111111;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.hiw-section .hiw-stage {
  position: relative;
  width: 100%;
  min-height: min(100svh, 920px);
  height: min(100svh, 920px);
  font-family: "Source Sans 3", var(--font-body);
  outline: none;
}

.hiw-section .slide-nav {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hiw-section .slide1-bg {
  background-image: url("images/slide1_Frame.jpg");
  background-size: cover;
  background-position: center;
}

.hiw-section .slide2-right {
  background-image: url("images/Slide2_blurryPeople.png");
}

.hiw-section .slide-3 .slide3-body,
.hiw-section .slide-4 .slide3-body {
  background-image: url("images/Slide4_fadedHomes.png");
}

.hiw-section .slide7-right {
  background-image: url("images/slide7_marketing.jpg");
}

.hiw-section .slide10-right {
  background-image: url("images/slide10_Signature.jpg");
}

.hiw-section .slide3-gear-img {
  display: block;
}

.hiw-section .key-hint {
  bottom: 14px;
}

@media (max-width: 900px) {
  .hiw-section .hiw-stage {
    min-height: auto;
    height: auto;
  }

  .hiw-section .slides-wrapper {
    min-height: max(1100px, 100svh);
    height: 100svh;
  }
}

@media (max-width: 768px) {
  .hiw-section .slide-nav {
    right: 10px;
  }

  .hiw-section .slide1-content,
  .hiw-section .slide3-body,
  .hiw-section .slide8-blocks,
  .hiw-section .slide9-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .hiw-section .slide1-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hiw-section .slide2-left,
  .hiw-section .slide7-left,
  .hiw-section .slide10-left,
  .hiw-section .slide5-top,
  .hiw-section .slide6-title,
  .hiw-section .slide8-title,
  .hiw-section .slide8-subtitle {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ============================================================
   styles.css — infillRE Slide Presentation
   Reference: staging.teardowns.com
   ============================================================ */
/* ---- Google Fonts: Playfair Display + Source Sans 3 ---- */
/* Imported via <link> in HTML */
/* ---- CSS Custom Properties ---- */
.hiw-section {--color-primary:    #1a3a5c;   /* deep navy – teardowns brand blue */
  --color-accent:     #e07020;   /* warm orange for data callouts */
  --color-white:      #ffffff;
  --color-light-gray: #f0f0f0;
  --color-mid-gray:   #d4d4d4;
  --color-dark-text:  #222222;
  --color-link:       #2060a0;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Source Sans 3", Arial, sans-serif;

  --slide-h: 100%;
  --footer-h: 70px;
  --header-h: 70px;
  --transition: 0.55s cubic-bezier(0.77, 0, 0.175, 1);}
/* ---- Reset & Base ---- */
.hiw-section *, .hiw-section *::before, .hiw-section *::after {box-sizing: border-box; margin: 0; padding: 0;}
.hiw-section .hiw-stage {width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--color-dark-text);
  background: #111;}
.hiw-section img {max-width: 100%; display: block;}
.hiw-section a {color: var(--color-link);
  text-decoration: underline;}
.hiw-section a:hover {color: var(--color-accent);}
/* ============================================================
   SLIDE LAYOUT ENGINE
   ============================================================ */
.hiw-section .slides-wrapper {position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;}
.hiw-section .slide {position: absolute;
  inset: 0;
  width: 100%;
  height: var(--slide-h);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity var(--transition), transform var(--transition);
  background: var(--color-white);
  display: flex;
  flex-direction: column;}
.hiw-section .slide.active {opacity: 1;
  pointer-events: all;
  transform: translateY(0);}
/* ============================================================
   NAVIGATION DOTS
   ============================================================ */
.hiw-section .slide-nav {position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;}
.hiw-section .nav-dot {width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  padding: 0;
  outline: none;}
.hiw-section .nav-dot:hover {transform: scale(1.3);
  background: rgba(255,255,255,0.5);}
.hiw-section .nav-dot.active {background: var(--color-white);
  border-color: var(--color-white);}
/* Dark background slides use contrasting dots */
.hiw-section .slide-1 ~ * .slide-nav .nav-dot, .hiw-section .slide.dark-bg .slide-nav .nav-dot {border-color: var(--color-primary);}
/* Dots adapt to current slide via JS class on body */
.hiw-section.is-light-slide .nav-dot {border-color: var(--color-primary);
  background: transparent;}
.hiw-section.is-light-slide .nav-dot.active {background: var(--color-primary);
  border-color: var(--color-primary);}
/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
.hiw-section .slide-title {font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;}
.hiw-section .slide-title.dark {color: var(--color-primary);}
.hiw-section .slide-footer-bar {display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: var(--footer-h);
  background: var(--color-white);
  padding: 8px 24px;
  border-top: 2px solid var(--color-mid-gray);
  flex-shrink: 0;}
.hiw-section .slide-footer-bar img {height: 38px;
  width: auto;
  object-fit: contain;}
/* ============================================================
   SLIDE 1 — Full-screen background, header/footer logos
   ============================================================ */
.hiw-section .slide-1 {background: #000;}
.hiw-section .slide1-bg {width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;}
.hiw-section .slide1-header {display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 16px 40px;
  background: rgba(0,0,0,0.35);}
.hiw-section .slide1-header img {height: 44px;
  width: auto;
  object-fit: contain;}
.hiw-section .slide1-content {flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 60px;}
.hiw-section .slide1-textbox {color: var(--color-white);
  text-align: center;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.7);}
.hiw-section .slide1-tb1 p {font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;}
.hiw-section .slide1-tb2 p {font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-style: italic;
  background: rgba(26,58,92,0.55);
  padding: 12px 28px;
  border-radius: 4px;
  line-height: 1.6;}
.hiw-section .slide1-footer {display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 14px 40px;
  background: rgba(0,0,0,0.4);}
.hiw-section .slide1-footer img {height: 36px;
  width: auto;
  object-fit: contain;}
/* ============================================================
   SLIDE 2 — Two-column split
   ============================================================ */
.hiw-section .slide-2 {flex-direction: row;}
.hiw-section .slide2-left {flex: 1;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px 0 40px;}
.hiw-section .slide2-left .slide-title {color: var(--color-primary);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 10px;}
.hiw-section .slide2-body {font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: #333;
  flex: 1;}
.hiw-section .slide2-left-footer {display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: var(--footer-h);
  border-top: 2px solid var(--color-mid-gray);
  padding: 8px 0;
  margin-top: 20px;}
.hiw-section .slide2-left-footer img {height: 32px;
  width: auto;
  object-fit: contain;}
.hiw-section .slide2-right {flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;}
.hiw-section .slide2-right-overlay {flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,58,92,0.45);
  padding: 40px 32px;}
.hiw-section .slide2-right-text {font-family: var(--font-display);
  color: var(--color-white);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 2px 10px rgba(0,0,0,0.6);}
.hiw-section .slide2-right-footer {display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--footer-h);
  padding: 8px 20px;
  background: rgba(0,0,0,0.4);}
.hiw-section .slide2-right-footer img {height: 36px;
  width: auto;
  object-fit: contain;}
/* ============================================================
   SLIDES 3 & 4 — White slide, gear icon, bullets, faded bg
   ============================================================ */
.hiw-section .slide-3, .hiw-section .slide-4 {background: var(--color-white);}
.hiw-section .slide3-header-row {padding: 20px 40px 10px 40px;
  background: var(--color-white);
  flex-shrink: 0;}
.hiw-section .slide3-title-block {display: flex;
  align-items: center;
  gap: 16px;}
.hiw-section .slide3-gear-img {height: 54px;
  width: auto;
  flex-shrink: 0;}
.hiw-section .slide3-title-block .slide-title {font-size: clamp(1.2rem, 2vw, 1.7rem);}
.hiw-section .slide3-body {flex: 1;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
  padding: 20px 48px;
  position: relative;}
.hiw-section .slide3-body::before {content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);}
.hiw-section .slide3-bullets {position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;}
.hiw-section .slide3-bullets li {font-size: clamp(0.8rem, 1.2vw, 1rem);
  line-height: 1.65;
  padding-left: 22px;
  color: var(--color-dark-text);
  border-left: 3px solid var(--color-accent);
  padding: 6px 10px 6px 18px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;}
.hiw-section .slide3-bullets li a {color: var(--color-link);
  font-weight: 600;}
/* ============================================================
   SLIDE 5 — Three horizontal sections, 8 icons
   ============================================================ */
.hiw-section .slide-5 {flex-direction: column;}
.hiw-section .slide5-top {background: var(--color-white);
  padding: 20px 40px 12px 40px;
  flex-shrink: 0;}
.hiw-section .slide5-top .slide-title {font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 8px;
  display: inline-block;}
.hiw-section .slide5-middle {flex: 1;
  background: var(--color-light-gray);
  padding: 16px 24px;
  overflow: hidden;}
.hiw-section .slide5-icons-row {display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  height: 100%;
  align-items: start;}
.hiw-section .slide5-icon-item {display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;}
.hiw-section .slide5-icon-item img {height: 52px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;}
.hiw-section .slide5-icon-item p {font-size: clamp(0.6rem, 0.85vw, 0.78rem);
  line-height: 1.45;
  color: #333;}
.hiw-section .slide5-bottom {background: var(--color-white);
  flex-shrink: 0;}
/* ============================================================
   SLIDE 6 — White bg, title, three-col image + text
   ============================================================ */
.hiw-section .slide-6 {flex-direction: column;}
.hiw-section .slide6-title {padding: 20px 40px 10px 40px;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  border-bottom: 3px solid var(--color-accent);
  flex-shrink: 0;}
.hiw-section .slide6-three-col {flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  overflow: hidden;}
.hiw-section .slide6-col {display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-right: 1px solid var(--color-mid-gray);
  overflow-y: auto;}
.hiw-section .slide6-col:last-child {border-right: none;}
.hiw-section .slide6-col img {width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;}
.hiw-section .slide6-col h3 {font-family: var(--font-display);
  color: var(--color-primary);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  margin-bottom: 8px;
  font-weight: 700;}
.hiw-section .slide6-col p {font-size: clamp(0.72rem, 1vw, 0.88rem);
  line-height: 1.6;
  color: #444;}
/* ============================================================
   SLIDE 7 — Two-column: text+bullets left, image+callouts right
   ============================================================ */
.hiw-section .slide-7 {flex-direction: row;}
.hiw-section .slide7-left {flex: 1;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 36px 0 36px;
  overflow-y: auto;}
.hiw-section .slide7-left .slide-title {font-size: clamp(1.3rem, 2vw, 1.9rem);
  margin-bottom: 14px;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 8px;}
.hiw-section .slide7-text {font-size: clamp(0.8rem, 1.15vw, 0.97rem);
  line-height: 1.65;
  color: #333;
  margin-bottom: 10px;}
.hiw-section .slide7-bullets {list-style: none;
  margin: 4px 0 12px 0;}
.hiw-section .slide7-bullets li {font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  padding: 5px 10px 5px 18px;
  border-left: 3px solid var(--color-accent);
  margin-bottom: 6px;
  background: var(--color-light-gray);
  border-radius: 2px;
  line-height: 1.5;}
.hiw-section .slide7-left-footer {display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: var(--footer-h);
  border-top: 2px solid var(--color-mid-gray);
  padding: 8px 0;
  flex-shrink: 0;}
.hiw-section .slide7-left-footer img {height: 30px;
  width: auto;
  object-fit: contain;}
.hiw-section .slide7-right {flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;}
.hiw-section .slide7-right-inner {flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px 28px;
  background: rgba(26,58,92,0.5);}
.hiw-section .slide7-callout {background: rgba(255,255,255,0.92);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  font-weight: 600;
  text-align: center;
  padding: 14px 20px;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  line-height: 1.45;}
.hiw-section .slide7-right-footer {display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--footer-h);
  padding: 8px 20px;
  background: rgba(0,0,0,0.45);}
.hiw-section .slide7-right-footer img {height: 36px;
  width: auto;
  object-fit: contain;}
/* ============================================================
   SLIDE 8 — White bg, title, subtitle, three images
   ============================================================ */
.hiw-section .slide-8 {flex-direction: column;}
.hiw-section .slide8-title {padding: 20px 40px 8px 40px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  flex-shrink: 0;}
.hiw-section .slide8-subtitle {padding: 0 40px 16px 40px;
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  line-height: 1.65;
  color: #444;
  border-bottom: 1px solid var(--color-mid-gray);
  flex-shrink: 0;}
.hiw-section .slide8-blocks {flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 40px;
  overflow: hidden;}
.hiw-section .slide8-blocks img {width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;}
/* ============================================================
   SLIDE 9 — White bg, 4x4 data grid
   ============================================================ */
.hiw-section .slide-9 {flex-direction: column;}
.hiw-section .slide9-inner {flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  background: var(--color-light-gray);}
.hiw-section .slide9-grid {display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1100px;}
.hiw-section .slide9-cell {padding: 18px 20px;
  text-align: center;
  border: none;}
.hiw-section .slide9-cell.number {font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;}
.hiw-section .slide9-cell.label {font-size: clamp(0.7rem, 1.05vw, 0.88rem);
  color: var(--color-dark-text);
  line-height: 1.5;
  padding-bottom: 28px;}
/* ============================================================
   SLIDE 10 — Two-column: left text+bullets, right bg image
   ============================================================ */
.hiw-section .slide-10 {flex-direction: row;}
.hiw-section .slide10-left {flex: 1;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 36px 0 36px;
  overflow-y: auto;}
.hiw-section .slide10-left .slide-title {font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 8px;}
.hiw-section .slide10-text {font-size: clamp(0.8rem, 1.15vw, 0.97rem);
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;}
.hiw-section .slide10-cta {background: var(--color-light-gray);
  padding: 14px 18px;
  border-left: 4px solid var(--color-accent);
  border-radius: 2px;
  font-style: italic;}
.hiw-section .slide10-cta strong {font-size: 1.1em;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  font-style: normal;}
.hiw-section .slide10-left-footer {display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: var(--footer-h);
  border-top: 2px solid var(--color-mid-gray);
  padding: 8px 0;
  flex-shrink: 0;}
.hiw-section .slide10-left-footer img {height: 30px;
  width: auto;
  object-fit: contain;}
.hiw-section .slide10-right {flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;}
.hiw-section .slide10-right-footer {display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--footer-h);
  padding: 8px 20px;
  background: rgba(0,0,0,0.45);}
.hiw-section .slide10-right-footer img {height: 36px;
  width: auto;
  object-fit: contain;}
/* ============================================================
   KEYBOARD HINT
   ============================================================ */
.hiw-section .key-hint {position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  pointer-events: none;
  z-index: 500;
  text-align: center;
  font-family: var(--font-body);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);}
/* ============================================================
   RESPONSIVE — Tablet / small screens
   ============================================================ */
@media (max-width: 900px) {

.hiw-section .slide-2, .hiw-section .slide-7, .hiw-section .slide-10 {flex-direction: column;}

.hiw-section .slide2-right, .hiw-section .slide7-right, .hiw-section .slide10-right {min-height: 220px;
    flex: none;}

.hiw-section .slide5-icons-row {grid-template-columns: repeat(4, 1fr);}

.hiw-section .slide6-three-col {grid-template-columns: 1fr;
    overflow-y: auto;}

.hiw-section .slide8-blocks {grid-template-columns: 1fr;}

.hiw-section .slide9-cell.number {font-size: 1.4rem;}

}
@media (max-width: 600px) {

.hiw-section {--footer-h: 52px; --header-h: 52px;}

.hiw-section .slide1-header img, .hiw-section .slide1-footer img {height: 26px;}

.hiw-section .slide5-icons-row {grid-template-columns: repeat(2, 1fr);}

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

.hiw-section .slide-nav {right: 10px;}

.hiw-section .nav-dot {width: 9px; height: 9px;}

}


/* =========================================================
   HOW IT WORKS VISIBILITY FIX
   Use a reliable show/hide slideshow instead of translating the full track
   ========================================================= */

.hiw-section .slides-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: min(78vh, 860px);
  min-height: 620px;
  overflow: hidden;
  transform: none !important;
}

.hiw-section .slide {
  position: absolute !important;
  inset: 0 !important;
  display: none !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  transform: none !important;
}

.hiw-section .slide.active {
  display: flex !important;
  pointer-events: auto !important;
  z-index: 2;
}

.hiw-section .slide:not(.active) {
  z-index: 1;
}

.hiw-section .hiw-progress-bar {
  transform-origin: left center;
}

@media (max-width: 1100px) {
  .hiw-section .slides-wrapper {
    height: min(82vh, 900px);
    min-height: 680px;
  }
}

@media (max-width: 900px) {
  .hiw-section .slides-wrapper {
    height: auto;
    min-height: 820px;
  }

  .hiw-section .slide {
    min-height: 820px !important;
  }
}

@media (max-width: 600px) {
  .hiw-section .slides-wrapper {
    min-height: 900px;
  }

  .hiw-section .slide {
    min-height: 900px !important;
  }
}


/* =========================================================
   HIW SLIDESHOW – LUXURY NAV ARROWS
   Larger, branded, subtle fade, auto-hide when idle
   ========================================================= */

.hiw-section .hiw-stage {
  position: relative;
  cursor: default;
}

.hiw-section .hiw-arrow {
  position: absolute;
  top: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: rgba(245, 127, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0.18;
  transform: translateY(-4px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.hiw-section .hiw-arrow-prev {
  left: 18px;
}

.hiw-section .hiw-arrow-next {
  right: 18px;
}

.hiw-section .hiw-stage:hover .hiw-arrow,
.hiw-section .hiw-stage:focus-within .hiw-arrow,
.hiw-section.is-ui-active .hiw-arrow {
  opacity: 0.92;
  transform: translateY(0) scale(1);
}

.hiw-section .hiw-arrow:hover,
.hiw-section .hiw-arrow:focus-visible {
  color: #ffffff;
  background: rgba(255, 147, 46, 0.92);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(0) scale(1.06);
}

.hiw-section .hiw-arrow:active {
  transform: scale(0.97);
}

.hiw-section .hiw-toolbar {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.hiw-section.is-light-slide .hiw-arrow {
  background: rgba(245, 127, 23, 0.72);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@media (max-width: 600px) {
  .hiw-section .hiw-arrow {
    top: 12px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .hiw-section .hiw-arrow-prev {
    left: 12px;
  }

  .hiw-section .hiw-arrow-next {
    right: 12px;
  }
}


/* =========================================================
   HIW SLIDESHOW – ARROW VISIBILITY FIX
   Anchors arrows to the stage instead of the toolbar
   ========================================================= */

.hiw-section .hiw-stage {
  position: relative;
}

.hiw-section .hiw-toolbar {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  pointer-events: none;
}

.hiw-section .hiw-progress,
.hiw-section .hiw-counter {
  pointer-events: none;
}

.hiw-section .hiw-arrow {
  position: absolute;
  top: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  background: rgba(245, 127, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.72;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.hiw-section .hiw-arrow i {
  pointer-events: none;
}

.hiw-section .hiw-arrow-prev {
  left: 1rem;
}

.hiw-section .hiw-arrow-next {
  right: 1rem;
}

.hiw-section .hiw-stage:hover .hiw-arrow,
.hiw-section .hiw-stage:focus-within .hiw-arrow,
.hiw-section.is-ui-active .hiw-arrow {
  opacity: 0.96;
  transform: scale(1);
}

.hiw-section .hiw-arrow:hover,
.hiw-section .hiw-arrow:focus-visible {
  color: #ffffff;
  background: rgba(255, 147, 46, 0.96);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
}

.hiw-section .hiw-arrow:active {
  transform: scale(0.97);
}

@media (max-width: 600px) {
  .hiw-section .hiw-arrow {
    top: 0.75rem;
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .hiw-section .hiw-arrow-prev {
    left: 0.75rem;
  }

  .hiw-section .hiw-arrow-next {
    right: 0.75rem;
  }
}


/* ============================================================
   HIW Slide 2 content update
   ============================================================ */

.hiw-section .slide2-details {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding-right: 0.5rem;
}

.hiw-section .slide2-detail-group h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.2;
  color: var(--color-primary);
}

.hiw-section .slide2-detail-group p {
  margin: 0;
}

.hiw-section .slide2-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.2rem;
}

.hiw-section .slide2-detail-list li {
  color: #333;
}

.hiw-section .slide2-detail-group a {
  font-weight: 700;
}

@media (max-width: 900px) {
  .hiw-section .slide2-details {
    gap: 0.8rem;
  }
}


/* =========================
   HIW SLIDES — TEXT SCALE / DENSITY IMPROVEMENTS
   Slides 3, 4, 5, 6, 7, and 10
   ========================= */

.hiw-section .slide-3 .slide3-header-row,
.hiw-section .slide-4 .slide3-header-row {
  padding: 1.35rem 2rem 0.9rem;
}

.hiw-section .slide-3 .slide3-title-block .slide-title,
.hiw-section .slide-4 .slide3-title-block .slide-title {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.18;
}

.hiw-section .slide-3 .slide3-body,
.hiw-section .slide-4 .slide3-body {
  padding: 1.25rem 2rem 1.5rem;
}

.hiw-section .slide-3 .slide3-bullets,
.hiw-section .slide-4 .slide3-bullets {
  gap: 0.9rem;
}

.hiw-section .slide-3 .slide3-bullets li,
.hiw-section .slide-4 .slide3-bullets li {
  font-size: clamp(1rem, 1.28vw, 1.15rem);
  line-height: 1.58;
  padding: 0.95rem 1rem 0.95rem 1.2rem;
  border-left-width: 4px;
}

.hiw-section .slide-5 .slide5-top {
  padding: 1.35rem 2rem 1rem;
}

.hiw-section .slide-5 .slide5-top .slide-title {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.hiw-section .slide-5 .slide5-middle {
  padding: 1.5rem 1.5rem 1.25rem;
}

.hiw-section .slide-5 .slide5-icons-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.35rem 1.1rem;
  align-items: stretch;
  align-content: stretch;
  height: 100%;
}

.hiw-section .slide-5 .slide5-icon-item {
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 0.75rem 0.6rem;
}

.hiw-section .slide-5 .slide5-icon-item img {
  height: 64px;
}

.hiw-section .slide-5 .slide5-icon-item p {
  max-width: 17ch;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.5;
}

.hiw-section .slide-6 .slide6-title {
  padding: 1.35rem 2rem 1rem;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.3;
}

.hiw-section .slide-6 .slide6-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.hiw-section .slide-6 .slide6-col {
  padding: 1.15rem 1.25rem 1.25rem;
}

.hiw-section .slide-6 .slide6-col img {
  height: 180px;
  margin-bottom: 0.95rem;
}

.hiw-section .slide-6 .slide6-col h3 {
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  margin-bottom: 0.7rem;
}

.hiw-section .slide-6 .slide6-col p {
  font-size: clamp(0.92rem, 1.04vw, 1rem);
  line-height: 1.6;
}

.hiw-section .slide-7 .slide7-left,
.hiw-section .slide-10 .slide10-left {
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 1.8rem 2rem 0;
}

.hiw-section .slide-7 .slide7-left .slide-title,
.hiw-section .slide-10 .slide10-left .slide-title {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.hiw-section .slide-7 .slide7-text,
.hiw-section .slide-10 .slide10-text {
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.62;
  margin-bottom: 0.4rem;
}

.hiw-section .slide-7 .slide7-bullets {
  margin: 0.15rem 0 0.35rem;
}

.hiw-section .slide-7 .slide7-bullets li {
  font-size: clamp(0.98rem, 1.08vw, 1.04rem);
  line-height: 1.52;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  margin-bottom: 0.5rem;
  border-left-width: 4px;
}

.hiw-section .slide-7 .slide7-right-inner {
  gap: 1.1rem;
  padding: 1.85rem;
}

.hiw-section .slide-7 .slide7-callout {
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.5;
  padding: 1rem 1.1rem;
}

.hiw-section .slide-10 .slide10-cta {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem;
}

.hiw-section .slide-10 .slide10-cta strong {
  font-size: 1.12em;
}

@media (max-width: 1100px) {
  .hiw-section .slide-5 .slide5-icons-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hiw-section .slide-5 .slide5-icon-item p {
    max-width: 100%;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .hiw-section .slide-3 .slide3-header-row,
  .hiw-section .slide-4 .slide3-header-row,
  .hiw-section .slide-5 .slide5-top,
  .hiw-section .slide-6 .slide6-title,
  .hiw-section .slide-7 .slide7-left,
  .hiw-section .slide-10 .slide10-left {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .hiw-section .slide-3 .slide3-body,
  .hiw-section .slide-4 .slide3-body {
    padding: 1rem 1.4rem 1.25rem;
  }

  .hiw-section .slide-5 .slide5-middle {
    padding: 1.1rem 1rem;
  }

  .hiw-section .slide-5 .slide5-icons-row {
    gap: 1rem 0.8rem;
  }

  .hiw-section .slide-6 .slide6-three-col {
    grid-template-columns: 1fr;
  }

  .hiw-section .slide-6 .slide6-col img {
    height: 220px;
  }

  .hiw-section .slide-7 .slide7-right-inner {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hiw-section .slide-3 .slide3-title-block .slide-title,
  .hiw-section .slide-4 .slide3-title-block .slide-title,
  .hiw-section .slide-5 .slide5-top .slide-title,
  .hiw-section .slide-7 .slide7-left .slide-title,
  .hiw-section .slide-10 .slide10-left .slide-title {
    font-size: 1.45rem;
  }

  .hiw-section .slide-3 .slide3-bullets li,
  .hiw-section .slide-4 .slide3-bullets li,
  .hiw-section .slide-7 .slide7-text,
  .hiw-section .slide-7 .slide7-bullets li,
  .hiw-section .slide-10 .slide10-text,
  .hiw-section .slide-5 .slide5-icon-item p,
  .hiw-section .slide-6 .slide6-col p {
    font-size: 0.96rem;
  }

  .hiw-section .slide-5 .slide5-icons-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hiw-section .slide-5 .slide5-icon-item img {
    height: 56px;
  }

  .hiw-section .slide-6 .slide6-col img {
    height: 180px;
  }
}

/* =========================
   The Big Picture Section
   ========================= */

.why-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #f2f2f2;
  color: #1f2937;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  align-self: start;
}

.why-section .label {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.why-heading {
  margin: 0 0 1.25rem;
  font-family: "DM Serif Display", var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111827;
}

.why-intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.why-quote {
  margin: 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.78);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.why-source {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #6b7280;
}

.why-action {
  margin-top: 2rem;
}

.why-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-fact {
  min-width: 0;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.07);
}

.why-fact-label {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.why-fact h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

.why-fact p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .why-section {
    padding: 3.5rem 0;
  }

  .why-facts {
    grid-template-columns: 1fr;
  }

  .why-fact {
    padding: 1.25rem;
  }

  .why-quote {
    padding: 1rem 1rem 1rem 1.2rem;
  }
}

