/* ============================================================
   ALEGRIAWORKS — Victor E. Perazzoli Website
   Brand Colors: Orange #E8641A | Dark #2D2D2D | White #FFFFFF
   ============================================================ */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #E8641A;
  --orange-dark:  #C9530F;
  --orange-light: #F5884A;
  --orange-pale:  #FEF0E8;
  --dark:         #1E1E2E;
  --dark-mid:     #2D2D3D;
  --gray-text:    #4A4A5A;
  --gray-light:   #F5F5F8;
  --gray-border:  #E0E0EC;
  --white:        #FFFFFF;
  --blue-accent:  #3A7BD5;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,100,26,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline--white {
  color: var(--white);
  border-color: var(--white);
}
.btn--outline--white:hover {
  background: var(--white);
  color: var(--orange);
}
.btn--lg { padding: 1rem 2.4rem; font-size: 1.02rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag--light {
  background: rgba(232,100,26,0.2);
  color: var(--orange-light);
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge--green  { background: #E6F9F0; color: #1A8C54; }
.badge--orange { background: #FEF0E8; color: var(--orange); }
.badge--blue   { background: #E8F1FD; color: var(--blue-accent); }


/* ════════════════════════════════════════════════════════
   NAVIGATION  — Premium Redesign
════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 0;
}
.nav.scrolled {
  border-bottom-color: var(--gray-border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}
.nav__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}

/* ── Logo ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 3rem;
}
.nav__logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Links ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Standard link */
.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555568;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  border-radius: 0;
  background: none;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}
.nav__link:hover { color: var(--dark); background: none; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--orange); }
.nav__link.active::after { transform: scaleX(1); }

/* ── Dropdown parent ── */
.nav__item--dropdown {
  position: relative;
}
.nav__item--dropdown > .nav__link .nav__arrow {
  font-size: 0.6rem;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__item--dropdown:hover > .nav__link .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: 100%;           /* flush — no gap between trigger and panel */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 0.6rem 0.5rem 0.5rem; /* extra top padding = invisible hover bridge */
  margin-top: 0;       /* no gap */
  opacity: 0;
  pointer-events: none;
  /* open fast, close with 120ms delay so mouse can travel to items */
  transition: opacity 0.15s ease, transform 0.15s ease;
  transition-delay: 0s;
  list-style: none;
}

/* Invisible pseudo-element bridge covers the space between
   the nav link bottom and the dropdown top edge */
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;        /* covers any sub-pixel gap + safe travel zone */
  background: transparent;
  pointer-events: auto; /* keeps hover active while mouse crosses the gap */
}

.nav__item--dropdown:hover > .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;       /* open immediately */
}
/* Delay closing — mouse can drift without dropdown vanishing */
.nav__item--dropdown:not(:hover) > .nav__dropdown {
  transition-delay: 120ms;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;   /* taller hit area */
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555568;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  min-width: 0;
  width: 100%;               /* full-width click zone */
}
.nav__dropdown a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}
.nav__dropdown a i {
  width: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--orange);
  flex-shrink: 0;
}
.nav__dropdown-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 0.35rem 0.5rem;
}

/* Disabled / coming-soon dropdown item */
.nav__dropdown-disabled {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #bbb;
  cursor: default;
  pointer-events: none;
  white-space: nowrap;
}
.nav__dropdown-disabled i {
  width: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  flex-shrink: 0;
}
.nav__coming-soon {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #f0f0f0;
  color: #aaa;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  margin-left: auto;
}

/* Disabled mobile link */
.mobile-link--disabled {
  color: #bbb !important;
  cursor: default;
  pointer-events: none;
}
.mobile-link--disabled i {
  color: #ccc !important;
}

/* ── Actions (lang + CTA) ── */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 1.5px solid #dde0e8;
  border-radius: 50px;
  padding: 0.32rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: #777;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.lang-toggle span.active { color: var(--orange); }
.lang-toggle__divider { opacity: 0.3; }

/* CTA button tweak */
.nav__actions .btn--sm {
  padding: 0.52rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu (slide-in drawer) ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 1.75rem 1.75rem 2.5rem;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-menu__header img {
  height: 52px;
  width: auto;
}
.mobile-menu__close {
  background: none;
  border: 1.5px solid var(--gray-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-text);
  transition: var(--transition);
}
.mobile-menu__close:hover { border-color: var(--orange); color: var(--orange); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid transparent;
}
.mobile-link i {
  width: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--orange);
  flex-shrink: 0;
}
.mobile-link:hover { background: var(--orange-pale); color: var(--orange); }

/* Mobile section label */
.mobile-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 1rem 0.75rem 0.4rem;
}

.mobile-menu__footer {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-border);
  border-radius: 50px;
  padding: 0.4rem 0.8rem;
  align-self: flex-start;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--orange); }


/* ════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fafafa 0%, #fff8f4 50%, #fafafa 100%);
}
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape--circle {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,100,26,0.08) 0%, transparent 70%);
}
.shape--arc {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(232,100,26,0.04);
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: center;
}
.dot {
  display: none;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.headline--orange { color: var(--orange); }
.tm-mark {
  font-size: 0.35em;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  color: var(--orange);
  letter-spacing: 0;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
}
.hero__sub em { color: var(--orange); font-style: italic; font-weight: 600; }

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  max-width: 480px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-border);
}

/* Hero Image */
.hero__image { display: flex; justify-content: center; align-items: center; }
.hero__image-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.hero__image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero__badge {
  position: absolute;
  bottom: 28px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--orange);
  max-width: 220px;
}
.hero__badge i { color: var(--orange); font-size: 1.3rem; }
.hero__badge strong { display: block; font-size: 0.85rem; font-weight: 700; }
.hero__badge span { font-size: 0.78rem; color: var(--gray-text); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-text);
  font-size: 0.78rem;
  opacity: 0.6;
  transition: var(--transition);
  animation: bounce 2s infinite;
}
.hero__scroll a:hover { opacity: 1; color: var(--orange); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ════════════════════════════════════════════════════════
   TRIFECTA SECTION
════════════════════════════════════════════════════════ */
.trifecta {
  padding: 7rem 0;
  background: var(--white);
}

.trifecta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.trifecta__card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.trifecta__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-border);
  transition: var(--transition);
}
.trifecta__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}
.trifecta__card:hover::before { background: var(--orange); }

.trifecta__card--featured {
  background: var(--white);
  border-color: var(--orange);
  border-width: 2px;
  color: var(--dark);
  box-shadow: 0 12px 40px rgba(232,100,26,0.18);
}
.trifecta__card--featured::before { background: var(--orange); }
.trifecta__card--featured .trifecta__number { color: var(--gray-border); }
.trifecta__card--featured h3 { color: var(--dark); }
.trifecta__card--featured p { color: var(--gray-text); }
.trifecta__card--featured .trifecta__points li { color: var(--gray-text); }
.trifecta__card--featured .trifecta__points li::before { background: var(--orange); }

.trifecta__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.trifecta__icon--strategy { background: rgba(232,100,26,0.12); color: var(--orange); }
.trifecta__icon--execution { background: rgba(232,100,26,0.2); color: var(--orange-light); }
.trifecta__icon--energy { background: rgba(58,123,213,0.12); color: var(--blue-accent); }

.trifecta__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-border);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
}

.trifecta__card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.trifecta__card p {
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.trifecta__points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trifecta__points li {
  font-size: 0.85rem;
  color: var(--gray-text);
  padding-left: 1.25rem;
  position: relative;
}
.trifecta__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Trifecta Diagram */
.trifecta__diagram {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.diagram__ring {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(
    var(--orange) 0deg 120deg,
    var(--dark) 120deg 240deg,
    var(--blue-accent) 240deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.diagram__center {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.diagram__segment {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* Sit at the midpoint radius between inner circle and outer edge */
  top: 50%;
  left: 50%;
  width: 60px;
  margin-left: -30px;
  margin-top: -30px;
  height: 60px;
  justify-content: center;
  transform-origin: center center;
}
.diagram__segment i { font-size: 1.1rem; }
/* Strategy — top segment, center of 0°–120° slice = 60° from top = -30° from 90° */
.diagram__segment--s  { transform: translateY(-88px) rotate(0deg); }
/* Execution — center of 120°–240° slice = 180° */
.diagram__segment--e  { transform: rotate(120deg) translateY(-88px) rotate(-120deg); }
/* Energy — center of 240°–360° slice = 300° */
.diagram__segment--en { transform: rotate(240deg) translateY(-88px) rotate(-240deg); }


/* ════════════════════════════════════════════════════════
   NARRATIVE SECTION
════════════════════════════════════════════════════════ */
.narrative {
  padding: 7rem 0;
  background: var(--gray-light);
}

.narrative__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.narrative__side {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.narrative__side--community {
  background: var(--dark);
  color: var(--white);
}
.narrative__side--community h3,
.narrative__side--community p { color: inherit; }
.narrative__side--community p { color: rgba(255,255,255,0.95); }

.narrative__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.narrative__side h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.narrative__side > p {
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.narrative__side--community > p {
  color: #ffffff;
  font-weight: 500;
}

.impact-cards { display: flex; flex-direction: column; gap: 1rem; }
.impact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
}
.impact-card--community {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}
.impact-card__logo {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.impact-card__content strong { display: block; font-size: 0.9rem; margin-bottom: 0.3rem; }
.impact-card__content p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }
.narrative__side--community .impact-card__content p { color: rgba(255,255,255,0.85); }

/* Architecture Table */
.architecture-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.architecture-table__header {
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.architecture-table__header i { color: var(--orange); }

.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--orange-pale); }
thead th {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-align: left;
}
tbody tr { border-bottom: 1px solid var(--gray-border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--orange-pale); }
tbody td {
  padding: 1.1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-text);
  vertical-align: middle;
}
tbody td strong { color: var(--dark); }


/* ════════════════════════════════════════════════════════
   OFFERS — CLARITY KITS
════════════════════════════════════════════════════════ */
.offers {
  padding: 7rem 0;
  background: var(--white);
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.offer-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.offer-card--featured {
  background: var(--dark);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.offer-card--featured:hover { transform: translateY(-18px); }
.offer-card--featured h3 { color: var(--white); }
.offer-card--featured p { color: #ffffff; font-weight: 500; }
.offer-card--featured .offer-card__features li { color: rgba(255,255,255,0.8); }
.offer-card--featured .offer-card__features i { color: var(--orange); }

.offer-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-text);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.offer-card__badge--featured { background: var(--orange); }

.offer-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
}
.offer-card--featured .offer-card__icon {
  background: rgba(232,100,26,0.2);
}

.offer-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}
.offer-card > p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
}
.offer-card--featured > p {
  color: #ffffff !important;
  font-weight: 500;
}

.offer-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.offer-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-text);
}
.offer-card__features i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

/* Ladder */
.ladder {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--gray-border);
  border-radius: var(--radius);
  padding: 1rem;
}
.offer-card--featured .ladder { background: rgba(255,255,255,0.08); }
.ladder__step {
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
  border-left: 3px solid var(--gray-border);
  transition: var(--transition);
}
.ladder__step.active {
  background: var(--orange-pale);
  color: var(--orange);
  border-left-color: var(--orange);
}
.offer-card--featured .ladder__step { color: rgba(255,255,255,0.6); border-left-color: rgba(255,255,255,0.2); }
.offer-card--featured .ladder__step.active { background: rgba(232,100,26,0.2); color: var(--orange-light); border-left-color: var(--orange); }

/* Scorecard */
.offer-card__scorecard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.scorecard-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.scorecard-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.scorecard-row span:first-child { flex: 0 0 130px; }
.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* Matrix */
.offer-card__matrix {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.offer-card--featured .offer-card__matrix {
  background: rgba(255,255,255,0.06);
}
.matrix-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  margin-bottom: 0.85rem;
}
.offer-card--featured .matrix-title { color: rgba(255,255,255,0.6); }
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.matrix-cell {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
.matrix-cell span { display: block; font-size: 0.65rem; font-weight: 800; margin-top: 0.25rem; letter-spacing: 0.05em; }
.matrix-cell--high  { background: #d4edda; color: #155724; }
.matrix-cell--medium { background: #fff3cd; color: #856404; }
.matrix-cell--low   { background: #cce5ff; color: #004085; }
.matrix-cell--none  { background: #f8d7da; color: #721c24; }


/* ════════════════════════════════════════════════════════
   SOCIAL PROOF
════════════════════════════════════════════════════════ */
.social-proof {
  padding: 7rem 0;
  background: var(--dark);
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.metric-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.metric-card:hover {
  background: rgba(232,100,26,0.08);
  border-color: rgba(232,100,26,0.3);
  transform: translateY(-4px);
}
.metric-card__num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: inline;
}
.metric-card__unit {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  display: inline;
}
.metric-card__num span {
  font-size: 1.8rem;
}
.metric-card__label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Quote Block */
.quote-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.quote-block__content i {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.quote-block__content blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.quote-block__content cite {
  font-size: 0.88rem;
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}
.quote-block__image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--orange);
}


/* ════════════════════════════════════════════════════════
   ASSESSMENT SECTION
════════════════════════════════════════════════════════ */
.assessment {
  padding: 7rem 0;
  background: var(--gray-light);
}

.assessment__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.assessment__info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.assessment__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.assessment__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.assessment__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.assessment__icon--s { background: rgba(232,100,26,0.12); color: var(--orange); }
.assessment__icon--e { background: rgba(30,30,46,0.08); color: var(--dark); }
.assessment__icon--en { background: rgba(58,123,213,0.12); color: var(--blue-accent); }

.assessment__list strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.assessment__list p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.55; }

.resource-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}
.resource-card > i {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
}
.resource-card strong { display: block; font-size: 0.95rem; margin-bottom: 0.35rem; }
.resource-card p { font-size: 0.83rem; color: var(--gray-text); line-height: 1.5; }

/* Form Styles */
.assessment-form, .contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.assessment-form h4, .contact-form h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gray-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,100,26,0.1);
}
.form-group textarea { resize: vertical; }

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.83rem !important;
  font-weight: 500 !important;
  color: var(--gray-text) !important;
}
.checkbox-label input { width: auto !important; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); }

/* Trifecta Sliders */
.trifecta-sliders {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.trifecta-sliders h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  margin-bottom: 1rem;
}
.slider-group {
  margin-bottom: 0.85rem;
}
.slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.slider-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}
.trifecta-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-border);
  border-radius: 3px;
  outline: none;
}
.trifecta-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(232,100,26,0.4);
}
.slider--strategy::-webkit-slider-thumb { background: var(--orange); }
.slider--execution::-webkit-slider-thumb { background: var(--dark); }
.slider--energy::-webkit-slider-thumb { background: var(--blue-accent); }

/* Form Result */
.form-result { margin-top: 1.5rem; }
.result-card {
  background: var(--orange-pale);
  border: 1px solid var(--orange-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.result-card h5 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.result-scores {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.result-score-item { text-align: center; }
.result-score-item .score-val {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.result-score-item .score-label {
  font-size: 0.72rem;
  color: var(--gray-text);
  font-weight: 600;
}
.result-message {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  line-height: 1.55;
}

/* Contact Success */
.contact-success {
  text-align: center;
  padding: 2rem;
  background: #E6F9F0;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.contact-success i { font-size: 2rem; color: #1A8C54; margin-bottom: 0.75rem; display: block; }
.contact-success p { font-size: 0.9rem; color: #155724; line-height: 1.6; }


/* ════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__info .section-tag { margin-bottom: 0.75rem; }
.contact__info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.contact__info > p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__detail i {
  width: 36px;
  height: 36px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact__detail strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.06em; }
.contact__detail span, .contact__detail a {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}
.contact__detail a:hover { color: var(--orange); }

.contact__languages {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.lang-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer { background: var(--dark-mid); color: var(--white); }
.footer__top { padding: 5rem 0 3rem; }
.footer__top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand img { height: 55px; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--orange); color: var(--white); }

.footer__links h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__cta h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.footer__cta > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer__cta-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.footer-lang-btn {
  color: rgba(255,255,255,0.5) !important;
}
.footer-lang-btn:hover { color: var(--orange) !important; }
.footer-lang-btn.active { color: var(--orange) !important; }


/* ════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="300"] { transition-delay: 0.30s; }


/* ════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  /* Nav: hide lang toggle at medium sizes if needed */
  .nav__container { padding: 0 1.5rem; }
  .nav__logo { margin-right: 1.5rem; }
  .nav__link { padding: 0.5rem 0.7rem; }
}

@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 3rem; }
  .hero__image { order: -1; }
  .hero__image-wrapper { max-width: 340px; margin: 0 auto; }
  .hero__badge { left: -10px; }
  .hero__sub { max-width: 100%; }
  
  .trifecta__grid { grid-template-columns: 1fr 1fr; }
  .trifecta__card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }

  .narrative__split { grid-template-columns: 1fr; gap: 2rem; }
  .proof__metrics { grid-template-columns: repeat(2, 1fr); }
  .offers__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .offer-card--featured { transform: none; }
  .offer-card--featured:hover { transform: translateY(-6px); }
  .assessment__container { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__links { display: none; }
  .nav__actions .lang-toggle { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo { margin-right: auto; }
  .nav__logo img { height: 56px; }

  .hero { padding: 150px 0 60px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 1rem; padding: 1rem 1.25rem; }
  .hero__badge { left: 0; max-width: 200px; }

  .trifecta__grid { grid-template-columns: 1fr; }
  .trifecta__card:last-child { grid-column: auto; max-width: 100%; }
  .diagram__ring { width: 260px; height: 260px; }
  .diagram__center { width: 110px; height: 110px; font-size: 0.72rem; }

  .proof__metrics { grid-template-columns: 1fr 1fr; }
  
  .quote-block { grid-template-columns: 1fr; }
  .quote-block__image { display: none; }

  .form-row { grid-template-columns: 1fr; }
  
  .footer__top-grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  table { font-size: 0.78rem; }
  thead th, tbody td { padding: 0.75rem 1rem; }

  .assessment-form, .contact-form { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .stat__divider { width: 80%; height: 1px; }
  .proof__metrics { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2.2rem; }
  .trifecta, .narrative, .offers, .social-proof, .assessment, .contact { padding: 5rem 0; }
}
