/* ============================================
   ACCENDO LLC — Industrial Teal Theme
   ============================================ */

:root {
  --color-navy: #102A27;
  --color-navy-dark: #081614;
  --color-navy-light: #1E4A44;
  --color-gold: #E07A3D;
  --color-gold-light: #F09A62;
  --color-cream: #F3F5F4;
  --color-cream-dark: #E4EAE8;
  --color-warm: #E8EEEC;
  --color-white: #FFFFFF;
  --color-text: #14201E;
  --color-text-muted: #4A5C58;
  --color-border: #D5DEDB;

  --font-serif: 'Syne', 'Segoe UI', sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 10px rgba(16, 42, 39, 0.07);
  --shadow-md: 0 10px 32px rgba(16, 42, 39, 0.12);
  --shadow-lg: 0 24px 56px rgba(16, 42, 39, 0.16);

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 4px;

  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  --header-height: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

main,
.section,
.footer {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.text-center { text-align: center; }

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(243, 245, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

/* Solid header while the mobile curtain is open — no seam with the dropdown */
.header.menu-open {
  background: rgba(243, 245, 244, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.header.menu-open .nav__logo { color: var(--color-navy); }
.header.menu-open .nav__logo-llc { color: var(--color-gold); }
.header.menu-open .nav__toggle span { background: var(--color-navy); }

body.menu-open {
  overflow: hidden;
}

/* Light nav text over dark hero background */
.header:not(.scrolled) .nav__logo {
  color: var(--color-white);
}

.header:not(.scrolled) .nav__logo-llc {
  color: var(--color-gold-light);
}

.header:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.header:not(.scrolled) .nav__link:hover,
.header:not(.scrolled) .nav__link.active {
  color: var(--color-white);
}

.header:not(.scrolled) .nav__toggle span {
  background: var(--color-white);
}

.header:not(.scrolled) .nav__link--cta {
  background: var(--color-gold);
  color: var(--color-navy-dark) !important;
  text-shadow: none;
}

.header:not(.scrolled) .nav__link--cta:hover {
  background: var(--color-gold-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), letter-spacing var(--transition);
}

.nav__logo:hover {
  transform: translateX(2px);
}

.nav__logo-icon {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__logo:hover .nav__logo-icon {
  transform: rotate(-8deg) scale(1.08);
}

.nav__logo-llc {
  font-weight: 400;
  color: var(--color-gold);
  font-size: 0.85em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition), left var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

.nav__link--cta {
  background: var(--color-navy);
  color: var(--color-white) !important;
  margin-left: 8px;
  border-radius: var(--radius-md);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px) scale(1.03);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) { opacity: 0; }

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(224, 122, 61, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  margin-top: 12px;
}

.btn--navy:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(224, 122, 61, 0.35);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 22, 20, 0.9) 0%,
    rgba(16, 42, 39, 0.62) 48%,
    rgba(8, 22, 20, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  max-width: 800px;
  color: var(--color-white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero__badge:hover {
  transform: translateY(-2px);
  background: rgba(224, 122, 61, 0.18);
  border-color: var(--color-gold);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
  transition: transform var(--transition);
}

.hero__stat:hover {
  transform: translateY(-6px);
}

.hero__stat:hover .hero__stat-number,
.hero__stat:hover .hero__stat-text {
  color: var(--color-gold-light);
}

.hero__stat-number,
.hero__stat-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
  transition: color var(--transition), transform var(--transition);
}

.hero__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section--cream { background: var(--color-cream); }
.section--warm { background: var(--color-warm); }

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section__label--light { color: var(--color-gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.section__title--light { color: var(--color-white); }

.section__title em {
  font-style: normal;
  color: var(--color-gold);
}

.section__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  margin-bottom: 60px;
}

.section__header .section__lead {
  margin: 0 auto;
}

.section__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 32px;
}

.ornament span {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}

.ornament__diamond {
  width: 8px !important;
  height: 8px !important;
  background: var(--color-gold) !important;
  transform: rotate(45deg);
}

/* Prose */
.prose p {
  margin-bottom: 1.2em;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.prose p:last-child { margin-bottom: 0; }

.prose--center p { text-align: center; }

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--reverse .split__content { order: 2; }
.split--reverse .split__media { order: 1; }

/* Image Frames */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition);
}

.image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(16, 42, 39, 0.2);
}

.image-frame:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.image-frame--gold::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.image-frame--offset {
  margin-bottom: -60px;
  margin-right: 60px;
}

.image-frame--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.image-frame--small img {
  height: 200px;
}

.split__media {
  position: relative;
}

/* Floating Card */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  animation: float 4s ease-in-out infinite;
}

.floating-card svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.floating-card--1 {
  bottom: -20px;
  left: -20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Values Strip */
.values-strip {
  margin-top: 80px;
  padding: 60px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  transform: translateY(-8px);
  background: var(--color-cream);
  box-shadow: var(--shadow-md);
}

.value-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-warm);
  border-radius: 4px;
  color: var(--color-navy);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.value-item__icon svg {
  width: 28px;
  height: 28px;
  transition: transform var(--transition);
}

.value-item:hover .value-item__icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--color-gold);
  color: var(--color-white);
}

.value-item:hover .value-item__icon svg {
  transform: scale(1.08);
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Questions Grid */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.question-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.question-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.question-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
  opacity: 0.7;
}

.question-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Pullquote */
.pullquote {
  margin-top: 32px;
  padding: 24px 32px;
  border-left: 3px solid var(--color-gold);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  min-height: 220px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
}

.step-card:hover .step-card__num {
  transform: scale(1.12);
  opacity: 1;
}

.step-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
  opacity: 0.85;
  transition: transform var(--transition), opacity var(--transition);
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 28px;
}

.audience-list li {
  position: relative;
  padding: 10px 14px 10px 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--color-text);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), padding-left var(--transition);
}

.audience-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.audience-list li:hover {
  transform: translateX(6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
  padding-left: 36px;
}

.audience-list li:hover::after {
  transform: scaleY(1);
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: var(--color-gold);
  transform: translateY(-50%);
  transition: transform var(--transition);
}

.audience-list li:hover::before {
  transform: translateY(-50%) rotate(45deg) scale(1.15);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition);
}

.service-card:hover .service-card__image img {
  transform: scale(1.12);
  filter: saturate(1.15);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 20, 0.55), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__body {
  padding: 28px;
  position: relative;
}

.service-card__icon {
  position: absolute;
  top: -24px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.18) rotate(-8deg);
  background: var(--color-navy);
  color: var(--color-gold);
}

.service-card:hover .service-card__icon svg {
  transform: rotate(12deg);
}

.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  padding-right: 40px;
}

.service-card__body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Deliverables */
.deliverables-list {
  margin-top: 32px;
}

.deliverables-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text);
  transition: padding-left var(--transition);
}

.deliverables-list li:hover {
  padding-left: 8px;
}

.deliverables-list__icon {
  width: 28px;
  height: 28px;
  background: var(--color-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.deliverables-list__icon svg {
  width: 14px;
  height: 14px;
}

.deliverables-list li:hover .deliverables-list__icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.deliverables-visual {
  position: relative;
  height: 420px;
}

.deliverables-visual__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.deliverables-visual__card--1 {
  top: 0;
  left: 0;
  width: 75%;
  background: var(--color-white);
  padding: 28px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.deliverables-visual__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.deliverables-visual__dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
}

.deliverables-visual__lines span {
  display: block;
  height: 8px;
  background: var(--color-cream-dark);
  border-radius: 4px;
  margin-bottom: 10px;
  animation: shimmer 2s ease-in-out infinite;
}

.deliverables-visual__lines span:nth-child(2) { animation-delay: 0.2s; }
.deliverables-visual__lines span:nth-child(3) { animation-delay: 0.4s; }
.deliverables-visual__lines span:nth-child(4) { animation-delay: 0.6s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.deliverables-visual__status {
  margin-top: 20px;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  color: #2E7D32;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.deliverables-visual__card--2 {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 250px;
  z-index: 1;
}

.deliverables-visual__card--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Independence Badges */
.independence-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.badge {
  padding: 10px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  transition: all var(--transition);
}

.badge:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

/* Personal Banner */
.personal-banner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.personal-banner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.personal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-navy));
}

.personal-banner__content {
  max-width: 800px;
}

.personal-banner p {
  color: var(--color-text-muted);
  margin-bottom: 1em;
  font-size: 1.05rem;
}

/* Contact */
.section--contact {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.contact-intro .contact-info__lead {
  margin-bottom: 0;
}

.contact-panels,
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-bottom {
  margin-top: 28px;
}

/* Grid items must be allowed to shrink — otherwise long text (e-mail,
   map labels) forces the grid wider than the phone screen */
.contact-panels > *,
.contact-bottom > *,
.contact-details-card,
.contact-map-wrap,
.quote-card {
  min-width: 0;
  max-width: 100%;
}

.contact-details-card,
.contact-map-wrap {
  height: 100%;
}

.contact-details-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
}

.contact-details-card .contact-details {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.contact-details-card .contact-detail {
  margin: 0;
  padding: 10px;
}

.contact-info__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 36px;
}

.map-caption {
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.65;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 12px;
  margin: -12px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}

.contact-detail__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.contact-detail:hover .contact-detail__icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.contact-detail__icon svg {
  width: 24px;
  height: 24px;
}

.contact-detail strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-detail p {
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-detail--socials {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.social-links--footer .social-link {
  width: 40px;
  height: 40px;
}

.contact-map-wrap {
  margin: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 24px 22px 28px;
  backdrop-filter: blur(10px);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 122, 61, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.quote-card--wide {
  margin-top: 40px;
}

.quote-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quote-card__subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  padding: 4px 0 0;
}

.form-group {
  position: relative;
  margin-top: 16px;
  padding-top: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-bottom: 1px solid rgba(224, 122, 61, 0.55);
  border-radius: 6px;
  outline: 0;
  box-shadow: none;
  color: var(--color-white);
  text-align: center;
  padding: 12px 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.3;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

select.form-control {
  text-align-last: center;
  color: var(--color-white);
  line-height: normal;
  height: 44px;
  padding: 0 32px 0 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(45deg, transparent 50%, var(--color-gold) 50%), linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select.form-control option,
select.form-control optgroup {
  color: #14201e;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  text-align: left;
  text-transform: none;
  padding: 0;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.14);
  border-bottom-color: var(--color-gold);
  box-shadow: 0 1px 0 0 var(--color-gold);
}

.form-control + label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(240, 154, 98, 0.85);
  pointer-events: none;
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.form-control:focus + label,
.form-control.has-value + label {
  top: 0;
  transform: translate(-50%, -50%) scale(0.82);
  background: var(--color-navy);
  padding: 0 6px;
  color: var(--color-gold);
}

textarea.form-control {
  min-height: 72px;
  resize: vertical;
}

.quote-form__submit {
  margin-top: auto;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .quote-form__grid,
  .contact-details-card .contact-details {
    grid-template-columns: 1fr;
  }
}



.contact-visual__map {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1;
  min-height: 300px;
  aspect-ratio: 16 / 11;
  background: #102A27;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-visual__map:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 122, 61, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.contact-visual__svg {
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: top;
  animation: mapFadeIn 1.2s ease-out;
}

@keyframes mapFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

/* Marching-ants network routes */
.kmap-route {
  stroke-dasharray: 7 7;
  animation: routeMarch 1.1s linear infinite;
}

@keyframes routeMarch {
  to { stroke-dashoffset: -28; }
}

/* Radar ping on the HQ marker */
.kmap-ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPulse 2.6s ease-out infinite;
}

@keyframes pinPulse {
  0% { opacity: 0.8; transform: scale(0.35); }
  100% { opacity: 0; transform: scale(1.7); }
}

/* Gently twinkling network hubs */
.kmap-twinkle {
  animation: hubTwinkle 3.2s ease-in-out infinite;
}

@keyframes hubTwinkle {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* Footer */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 28px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition);
}

.footer__brand:hover {
  transform: translateX(4px);
}

.footer__brand img {
  transition: transform var(--transition);
}

.footer__brand:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.footer__brand strong {
  color: var(--color-white);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__copy {
  font-size: 0.85rem;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

.reveal-up[data-delay="1"] { transition-delay: 0.1s; }
.reveal-up[data-delay="2"] { transition-delay: 0.2s; }
.reveal-up[data-delay="3"] { transition-delay: 0.3s; }
.reveal-up[data-delay="4"] { transition-delay: 0.4s; }
.reveal-up[data-delay="5"] { transition-delay: 0.5s; }
.reveal-up[data-delay="6"] { transition-delay: 0.6s; }
.reveal-up[data-delay="7"] { transition-delay: 0.7s; }
.reveal-up[data-delay="8"] { transition-delay: 0.8s; }

.reveal-left[data-delay="1"],
.reveal-right[data-delay="1"] { transition-delay: 0.15s; }
.reveal-left[data-delay="2"],
.reveal-right[data-delay="2"] { transition-delay: 0.3s; }
.reveal-left[data-delay="3"],
.reveal-right[data-delay="3"] { transition-delay: 0.45s; }

/* Hero initial animation */
.hero .reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero .reveal-up[data-delay="1"] { animation-delay: 0.2s; }
.hero .reveal-up[data-delay="2"] { animation-delay: 0.4s; }
.hero .reveal-up[data-delay="3"] { animation-delay: 0.6s; }
.hero .reveal-up[data-delay="4"] { animation-delay: 0.8s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .split,
  .contact-grid,
  .contact-panels,
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-visual {
    position: static;
  }

  .split--reverse .split__content,
  .split--reverse .split__media {
    order: unset;
  }

  .questions-grid,
  .steps-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-strip__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .image-frame--offset {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .image-frame--small {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  /* Dropdown curtain: own scroll, airy spacing, no overlap */
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
    border-radius: 0 0 18px 18px;
    transform: translateY(-115%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 899;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header:not(.scrolled) .nav__menu.open .nav__link {
    color: var(--color-text-muted);
    text-shadow: none;
  }

  .header:not(.scrolled) .nav__menu.open .nav__link:hover,
  .header:not(.scrolled) .nav__menu.open .nav__link.active {
    color: var(--color-navy);
  }

  .nav__menu > li {
    width: 100%;
    display: flex;
  }

  .nav__link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    text-align: center;
    padding: 15px 18px;
    font-size: 1rem;
    line-height: 1.4;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
  }

  .nav__link::after { display: none; }

  .nav__link:hover,
  .nav__link.active {
    border-color: var(--color-gold);
    background: #fff;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 6px;
    min-height: 56px;
    border-color: transparent;
  }

  /* Reveal animations must not push the page sideways on phones */
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  /* Decorative offsets that stuck out beyond the viewport */
  .image-frame--gold::before { display: none; }

  .floating-card--1 {
    left: 12px;
    right: 12px;
    bottom: -18px;
  }

  .growth-chart svg { overflow: hidden; }

  /* Hero title must fit narrow phones: smaller size, natural wrapping */
  .hero__title {
    font-size: clamp(1.85rem, 8.4vw, 2.5rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  .hero__title br { display: none; }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 8px 14px;
    text-align: center;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .services-grid,
  .questions-grid,
  .steps-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .section { padding: 70px 0; }

  .personal-banner { padding: 36px; }

  .deliverables-visual {
    height: 350px;
    margin-top: 40px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(1.7rem, 9.2vw, 2.05rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-visual__map {
    min-height: 240px;
  }

  .contact-details-card {
    padding: 20px 14px;
  }

  .floating-card--1 {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 20px;
  }
}

/* Short landscape phones: keep every item reachable by scroll, tighter rhythm */
@media (max-width: 768px) and (max-height: 600px) {
  .nav__menu {
    gap: 8px;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .nav__link {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .nav__link--cta { min-height: 50px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .pillar-card__tier-fill,
  .strategy-line--active,
  .network-link,
  .growth-chart__line,
  .growth-chart__area {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ============================================
   Growth Participation Section
   ============================================ */
.section--growth {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 122, 61, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(30, 74, 68, 0.6), transparent 55%),
    var(--color-navy);
}

.growth-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(224, 122, 61, 0.08) 0%, transparent 7%),
    radial-gradient(circle at 90% 80%, rgba(224, 122, 61, 0.06) 0%, transparent 6%),
    radial-gradient(circle at 70% 15%, rgba(224, 122, 61, 0.05) 0%, transparent 5%);
  opacity: 0.7;
  animation: growthBgFloat 14s ease-in-out infinite alternate;
}

@keyframes growthBgFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20px, -16px); }
}

.growth-banner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 36px 28px;
  margin: 24px auto 56px;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 122, 61, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.growth-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 30%, var(--color-gold) 70%, transparent);
  opacity: 0.5;
}

.growth-banner:hover {
  border-color: rgba(224, 122, 61, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.growth-banner__metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 8px 16px;
}

.growth-banner__metric--primary {
  flex: 1.6;
  gap: 14px;
}

.growth-banner__numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.growth-banner__big-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(224, 122, 61, 0.25);
}

.growth-banner__big-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.growth-banner__big-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.growth-banner__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(224, 122, 61, 0.4), transparent);
}

.growth-chart {
  width: 100%;
  max-width: 260px;
  height: 56px;
  display: block;
}

.growth-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.growth-chart__line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.growth-banner.revealed .growth-chart__line,
.growth-banner .growth-chart__line {
  animation: drawLine 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.growth-chart__area {
  opacity: 0;
}

.growth-banner.revealed .growth-chart__area,
.growth-banner .growth-chart__area {
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.growth-chart__dot {
  fill: var(--color-gold);
  opacity: 0;
}

.growth-banner.revealed .growth-chart__dot,
.growth-banner .growth-chart__dot {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.growth-banner.revealed .growth-chart__dot:nth-child(5),
.growth-banner .growth-chart__dot:nth-child(5) { animation-delay: 0.3s; }
.growth-banner.revealed .growth-chart__dot:nth-child(6),
.growth-banner .growth-chart__dot:nth-child(6) { animation-delay: 0.7s; }
.growth-banner.revealed .growth-chart__dot:nth-child(7),
.growth-banner .growth-chart__dot:nth-child(7) { animation-delay: 1.1s; }
.growth-banner.revealed .growth-chart__dot--pulse,
.growth-banner .growth-chart__dot--pulse {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards,
             goldPulse 2.4s ease-in-out 1.9s infinite;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes dotPop {
  0% { opacity: 0; transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes goldPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(224, 122, 61, 0));
    r: 5;
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(224, 122, 61, 0.8));
    r: 7;
  }
}

.growth-prose {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
}

.growth-prose::before,
.growth-prose::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 28px;
  opacity: 0.5;
}

.growth-prose::after {
  margin: 28px auto 0;
}

.growth-prose p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 1em;
  max-width: 760px;
}

.growth-prose p:last-child { margin-bottom: 0; }

.growth-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pillar-card {
  position: relative;
  padding: 32px 26px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(224, 122, 61, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.85;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: transform var(--transition), opacity var(--transition);
}

.pillar-card:hover .pillar-card__num {
  transform: translateX(4px);
  opacity: 1;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy-dark);
  background: var(--color-gold);
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  animation: badgePulse 2.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 122, 61, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(224, 122, 61, 0); }
}

.pillar-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
  flex: 0 0 auto;
}

.pillar-card__visual {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  position: relative;
  min-height: 100px;
}

/* Tier visualization */
.pillar-card__visual--tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-card__tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.pillar-card__tier-label {
  flex-shrink: 0;
  width: 64px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.pillar-card__tier-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.pillar-card__tier-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(224, 122, 61, 0.4);
}

.pillar-card.revealed .pillar-card__tier-fill {
  animation: tierFill 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pillar-card.revealed .pillar-card__tier-row:nth-child(1) .pillar-card__tier-fill { animation-delay: 0.3s; }
.pillar-card.revealed .pillar-card__tier-row:nth-child(2) .pillar-card__tier-fill { animation-delay: 0.5s; }
.pillar-card.revealed .pillar-card__tier-row:nth-child(3) .pillar-card__tier-fill { animation-delay: 0.7s; }

@keyframes tierFill {
  to { width: var(--w); }
}

/* Strategy diagram */
.pillar-card__visual--strategy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-diagram {
  width: 100%;
  max-width: 220px;
  height: 90px;
}

.strategy-line--active {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}

.pillar-card.revealed .strategy-line--active {
  animation: drawLine 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.strategy-dot {
  fill: var(--color-gold);
  opacity: 0;
  transform-origin: center;
}

.pillar-card.revealed .strategy-dot {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pillar-card.revealed .strategy-dot:nth-of-type(2) { animation-delay: 0.4s; }
.pillar-card.revealed .strategy-dot:nth-of-type(3) { animation-delay: 0.9s; }
.pillar-card.revealed .strategy-dot:nth-of-type(4) { animation-delay: 1.4s; }

.strategy-dot--pulse {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards,
             strategyGlow 2.2s ease-in-out 2s infinite;
}

@keyframes strategyGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(224, 122, 61, 0)); }
  50% { filter: drop-shadow(0 0 10px rgba(224, 122, 61, 0.9)); }
}

/* Network diagram */
.pillar-card__visual--network {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-diagram {
  width: 100%;
  max-width: 200px;
  height: 130px;
}

.network-link {
  stroke: rgba(224, 122, 61, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.pillar-card.revealed .network-link {
  animation: drawLine 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pillar-card.revealed .network-link:nth-of-type(1) { animation-delay: 0.2s; }
.pillar-card.revealed .network-link:nth-of-type(2) { animation-delay: 0.35s; }
.pillar-card.revealed .network-link:nth-of-type(3) { animation-delay: 0.5s; }
.pillar-card.revealed .network-link:nth-of-type(4) { animation-delay: 0.65s; }
.pillar-card.revealed .network-link--faint { animation-delay: 0.8s; }

.network-node {
  fill: var(--color-gold);
  opacity: 0;
  transform-origin: center;
}

.pillar-card.revealed .network-node {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pillar-card.revealed .network-node--hub { animation-delay: 0.1s; }
.pillar-card.revealed .network-node:nth-of-type(2) { animation-delay: 0.3s; }
.pillar-card.revealed .network-node:nth-of-type(3) { animation-delay: 0.45s; }
.pillar-card.revealed .network-node:nth-of-type(4) { animation-delay: 0.6s; }
.pillar-card.revealed .network-node:nth-of-type(5) { animation-delay: 0.75s; }

.network-node--hub-pulse {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2;
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards,
             networkHubPulse 2.4s ease-out 1s infinite;
}

@keyframes networkHubPulse {
  0% { opacity: 0.8; r: 11; }
  100% { opacity: 0; r: 22; }
}

.growth-cta {
  text-align: center;
  padding: 32px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.growth-cta p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 500;
}

.growth-cta .btn {
  box-shadow: 0 12px 30px rgba(224, 122, 61, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .growth-pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pillar-card { min-height: 0; }

  .growth-banner {
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }

  .growth-banner__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 122, 61, 0.4), transparent);
  }
}

@media (max-width: 768px) {
  .section--growth { padding: 70px 0; }

  .growth-banner__big-number { font-size: 2.2rem; }
  .growth-banner__big-text { font-size: 1.6rem; }

  .growth-chart { max-width: 220px; }

  .growth-prose::before,
  .growth-prose::after { width: 40px; }
}

/* ============================================
   Consent Checkbox
   ============================================ */
.form-consent {
  margin: 4px 0 16px;
}

.form-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-consent__label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-consent__label a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color var(--transition), border-color var(--transition);
}

.cookie-banner__btn--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

/* ============================================
   Footer Legal Link
   ============================================ */
.footer__legal {
  font-size: 0.85rem;
}

.footer__legal a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}

.footer__legal a:hover {
  opacity: 1;
  color: var(--color-gold);
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.policy {
  padding-top: calc(var(--header-height) + 60px);
  background: var(--color-cream);
}

.policy__container {
  max-width: 820px;
}

.policy__updated {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.policy__content {
  margin-top: 32px;
}

.policy__content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 36px 0 12px;
}

.policy__content ul {
  margin: 12px 0;
  padding-left: 22px;
}

.policy__content li {
  margin-bottom: 8px;
}

.policy__content a {
  color: var(--color-gold);
  text-decoration: underline;
}
