/* ==========================================================================
   AIP Sales Academy - Ultra-Optimized Responsive Stylesheet (Mobile & Tablet)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg-deep-void: #050505;
  --bg-dark-card: rgba(18, 16, 12, 0.85);
  
  --gold-primary: #D4AF37;
  --gold-bright: #F5D061;
  --gold-dark: #AA7C11;
  --gold-glow: rgba(212, 175, 55, 0.4);

  /* Color aliases for seamless UI transition */
  --cyan-primary: #D4AF37;
  --cyan-bright: #F5D061;
  --cyan-glow: rgba(212, 175, 55, 0.4);
  
  --text-pure: #FFFFFF;
  --text-muted: #D4D4D4;
  --text-subtle: #A3A3A3;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --max-width: 1280px;
  --header-height: 92px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep-void);
  color: var(--text-pure);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* iOS Form Controls Neutralizer */
input, select, textarea, button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

/* Ambient Backdrop Effects */
.ambient-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@keyframes ambientPulse {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(-30px, 40px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  -webkit-filter: blur(140px);
  will-change: transform;
}

.orb-cyan {
  top: -15%;
  right: -5%;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
  animation: ambientPulse 14s ease-in-out infinite alternate;
}

.orb-blue {
  bottom: 10%;
  left: -10%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(245, 208, 97, 0.16) 0%, rgba(245, 208, 97, 0) 70%);
  animation: ambientPulse 18s ease-in-out infinite alternate-reverse;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 85px 0;
}

/* Primary Pill Button with Dynamic Shimmer (Gold Palette) */
.btn-pill-cyan,
.btn-pill-gold {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 50%, #AA7C11 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 1.2px;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

.btn-pill-cyan::after,
.btn-pill-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.65s ease;
}

.btn-pill-cyan:hover::after,
.btn-pill-gold:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-pill-cyan:hover,
.btn-pill-gold:hover {
  background: linear-gradient(135deg, #FFF0B3 0%, #F5D061 50%, #D4AF37 100%);
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.75), 0 4px 14px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
  color: #000000;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
  padding: 2px 6px;
}

.header-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  padding: 0;
  overflow: visible;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.55));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 28px rgba(245, 208, 97, 0.9));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: #D4D4D4;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #F5D061);
  box-shadow: 0 0 10px #F5D061;
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  touch-action: manipulation;
}

/* ==========================================================================
   SECTION 1 — THE HOOK
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 48px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.cyan-hero-highlight {
  color: #F5D061;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
}

.cyan-title-bar {
  width: 50px;
  height: 3.5px;
  background-color: #D4AF37;
  border-radius: 2px;
  margin: 16px 0 22px 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-subheadline {
  font-size: 1.02rem;
  color: #D4D4D4;
  margin-bottom: 24px;
}

/* 6 Hero Cyan Circles Row (Gold Palette) */
.hero-icons-exact-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.exact-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.exact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18) 0%, rgba(5, 5, 5, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5D061;
  font-size: 1.3rem;
  margin-bottom: 8px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.exact-icon-item:hover .exact-icon-circle {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  color: #000000;
  border-color: #F5D061;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.85), 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px) scale(1.06);
}

.exact-icon-label {
  font-size: 0.73rem;
  color: #A3A3A3;
  line-height: 1.25;
  font-weight: 600;
  transition: color 0.3s ease;
}

.exact-icon-item:hover .exact-icon-label {
  color: #FFFFFF;
}

.hero-lead-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 14px;
}

/* Hero Methodology & Behavioral Narrative Card */
.hero-methodology-card {
  margin-top: 28px;
  max-width: 600px;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-quote-box {
  background: linear-gradient(135deg, rgba(20, 18, 14, 0.9) 0%, rgba(10, 8, 5, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--gold-primary);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 24px;
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-quote-box:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6), 0 0 32px rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.hero-methodology-intro {
  color: #D4D4D4;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-methodology-core {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-narrative-block {
  padding: 0 4px;
}

.hero-slate-text {
  color: #A3A3A3;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hero-beliefs-text {
  color: #E5E5E5;
  font-size: 1.04rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.cyan-bold-tag {
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F5D061;
  padding: 3px 12px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-block;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

/* Connected Behavioral Progression Chain */
.hero-chain-flow {
  background: rgba(18, 16, 12, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-chain-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chain-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-primary);
  transition: transform 0.25s ease;
}

.hero-chain-step:hover .chain-dot {
  transform: scale(1.3);
  background: #F5D061;
  box-shadow: 0 0 18px #F5D061;
}

.chain-text {
  color: #D4D4D4;
  font-size: 0.98rem;
  line-height: 1.4;
}

.chain-text strong {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-chain-connector {
  width: 2px;
  height: 14px;
  background: linear-gradient(to bottom, var(--gold-primary), rgba(212, 175, 55, 0.15));
  margin-left: 11px;
}

.hero-why-cyan-link {
  color: #F5D061;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 2px;
  transition: all 0.25s ease;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero-why-cyan-link:hover {
  color: #FFFFFF;
  border-color: #F5D061;
  transform: translateX(4px);
}

/* Stage & Golden Brain Image */
.hero-brain-stage {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brain-img {
  max-width: 580px;
  max-height: 580px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 5;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 1)) sepia(1) hue-rotate(5deg) saturate(3) brightness(1.2) contrast(1.1);
  animation: floatBrain 5s ease-in-out infinite;
  transition: transform 0.2s ease-out;
}

@keyframes floatBrain {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* ==========================================================================
   SECTION 2 — THE QUESTION EVERY SALES PROFESSIONAL HAS ASKED
   ========================================================================== */
.section-struggle {
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 75px 0;
  position: relative;
}

.section-tag-cyan {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #F5D061;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

.section-header-center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 44px auto;
}

.section-headline-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
}

.struggle-6col-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
  margin: 44px 0;
}

.struggle-col-item {
  position: relative;
}

.struggle-col-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -7px;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  z-index: 5;
}

.struggle-card-inner {
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 32px 14px 26px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 245px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.struggle-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5D061, transparent);
  opacity: 0.4;
  transition: opacity 0.35s ease;
}

.struggle-col-item:hover .struggle-card-inner {
  transform: translateY(-8px);
  border-color: #F5D061;
  background: rgba(24, 20, 14, 0.96);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3), 0 0 25px rgba(212, 175, 55, 0.2);
}

.struggle-col-item:hover .struggle-card-inner::before {
  opacity: 1;
}

.struggle-cyan-icon-pod {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.03) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.struggle-col-item:hover .struggle-cyan-icon-pod {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.85);
  transform: scale(1.1);
}

.struggle-col-item:hover .cyan-svg-icon path,
.struggle-col-item:hover .cyan-svg-icon circle,
.struggle-col-item:hover .cyan-svg-icon polyline,
.struggle-col-item:hover .cyan-svg-icon line,
.struggle-col-item:hover .cyan-svg-icon stroke,
.struggle-col-item:hover .cyan-svg-icon ellipse {
  stroke: #000000 !important;
}

.struggle-col-item:hover .cyan-svg-icon circle[fill] {
  fill: #000000 !important;
}

.cyan-svg-icon {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.struggle-col-text {
  font-size: 0.93rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.45;
  margin-top: auto;
}

.struggle-footer-callout {
  text-align: center;
  margin-top: 48px;
}

.footer-callout-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  padding: 20px 44px;
  border-radius: 60px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
  transition: all 0.35s ease;
}

.footer-callout-pill:hover {
  border-color: #F5D061;
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.struggle-footer-top {
  font-size: 1.12rem;
  color: #D4D4D4;
  margin-bottom: 4px;
  font-weight: 500;
}

.struggle-footer-cyan {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #F5D061;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.7);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION 3 — A DIFFERENT WAY OF THINKING
   ========================================================================== */
.section-different-thinking {
  padding: 85px 0;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thinking-grid-3 {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  gap: 48px;
  align-items: flex-start;
}

.thinking-col-left {
  display: flex;
  flex-direction: column;
}

.thinking-title-left {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.thinking-subtext {
  font-size: 1rem;
  color: #D4D4D4;
  line-height: 1.6;
  margin-bottom: 18px;
}

.thinking-lead-label {
  font-size: 0.94rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 14px;
}

.thinking-check-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thinking-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: #D4D4D4;
  font-weight: 500;
  list-style: none !important;
}

.check-cyan-icon {
  color: #F5D061;
  font-size: 1.25rem;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

.thinking-divider-line {
  width: 1px;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.thinking-col-right {
  display: flex;
  flex-direction: column;
}

.thinking-title-right {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.thinking-cards-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.thinking-card-box {
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: all 0.38s ease;
}

.thinking-card-box:hover {
  transform: translateY(-6px);
  border-color: #F5D061;
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.3);
}

.thinking-icon-pod {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.03) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.3);
  transition: all 0.35s ease;
}

.thinking-card-box:hover .thinking-icon-pod {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.85);
  transform: scale(1.1);
}

.thinking-card-box:hover .thinking-svg-icon path,
.thinking-card-box:hover .thinking-svg-icon line,
.thinking-card-box:hover .thinking-svg-icon circle {
  stroke: #000000 !important;
}

.thinking-card-box:hover .thinking-svg-icon circle[fill] {
  fill: #000000 !important;
}

.thinking-svg-icon {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.thinking-card-text {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.45;
}

.thinking-card-text strong {
  color: #FFFFFF;
}

.thinking-gap-bold {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-top: 6px;
}

/* ==========================================================================
   SECTION 4 — THE BIOLOGY OF SALES™ (1:1 Exact Match: Overlapping Icons + Inner Dotted Connector + Card Enclosure)
   ========================================================================== */
.section-framework {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
  padding: 75px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Top Header Glass Box */
.pipeline-header-card {
  background: rgba(18, 16, 12, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.pipeline-header-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pipeline-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.pipeline-tagline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #F5D061;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Header Card PDF Pill Button */
.header-pdf-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 22px;
  background: rgba(212, 175, 55, 0.12);
  border: 1.5px solid #F5D061;
  border-radius: 30px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.header-pdf-pill-btn:hover {
  background: linear-gradient(135deg, #F5D061, #D4AF37);
  color: #000000;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.85);
  transform: translateY(-2px);
}

.header-pdf-pill-btn .pdf-mat-icon {
  font-size: 20px;
  color: #F5D061;
  transition: color 0.3s ease;
}

.header-pdf-pill-btn:hover .pdf-mat-icon {
  color: #000000;
}

.header-pdf-pill-btn .arrow-mat-icon {
  font-size: 18px;
  color: #F5D061;
  transition: transform 0.3s ease, color 0.3s ease;
}

.header-pdf-pill-btn:hover .arrow-mat-icon {
  color: #000000;
  transform: translateY(2px);
}

/* 6-Step Vertical Pipeline Layout (Icons embedded into card boxes matching Reference Image 1:1) */
.bio-pipeline-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pipeline-step-row {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.pipeline-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #F5D061;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(5, 5, 5, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45), inset 0 0 12px rgba(212, 175, 55, 0.2);
  transition: all 0.35s ease;
  position: relative;
  z-index: 5;
  margin-right: -40px;
}

.pipeline-step-row:hover .pipeline-icon-circle {
  background: #F5D061;
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.9);
  transform: scale(1.06);
}

.pipeline-mat-icon {
  font-size: 44px;
  color: #F5D061;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  user-select: none;
}

.pipeline-step-row:hover .pipeline-mat-icon {
  color: #000000;
  text-shadow: none;
}

.pipeline-card-box {
  flex: 1;
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 20px 24px 20px 56px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.pipeline-step-row:hover .pipeline-card-box {
  border-color: #F5D061;
  background: rgba(24, 20, 14, 0.95);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
  transform: translateX(4px);
}

.pipeline-dotted-connector {
  flex-shrink: 0;
  width: 50px;
  height: 2px;
  border-bottom: 2px dashed rgba(212, 175, 55, 0.5);
  position: relative;
}

.pipeline-card-text-block {
  display: flex;
  flex-direction: column;
}

.pipeline-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #F5D061;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 3px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.card-title-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #A3A3A3;
}

.pipeline-card-sub {
  font-size: 0.95rem;
  color: #D4D4D4;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Arrow Connector Down */
.pipeline-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 28px;
  margin: 6px 0;
}

.pipeline-arrow-icon {
  color: #F5D061;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

/* Bottom Callout Block */
.pipeline-footer-callout {
  max-width: 720px;
  margin: 54px auto 0 auto;
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

.glow-divider-bar {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #F5D061 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  margin: 18px 0;
}

.callout-line-1 {
  font-size: 1.15rem;
  color: #D4D4D4;
  font-weight: 500;
  margin-bottom: 6px;
}

.callout-line-2 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
}

.highlight-cyan-bold {
  color: #F5D061;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* PDF Download Button Styling */
.bio-pdf-download-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(18, 16, 12, 0.95) 100%);
  border: 1.5px solid #F5D061;
  border-radius: 50px;
  padding: 16px 32px;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.btn-pdf-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-pdf-download:hover::before {
  left: 100%;
}

.btn-pdf-download:hover {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  color: #000000;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.pdf-icon-left {
  font-size: 32px;
  color: #F5D061;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.btn-pdf-download:hover .pdf-icon-left {
  color: #000000;
}

.pdf-btn-text-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pdf-btn-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.pdf-btn-subline {
  font-size: 0.78rem;
  color: #D4D4D4;
  font-weight: 500;
  margin-top: 3px;
  transition: color 0.3s ease;
}

.btn-pdf-download:hover .pdf-btn-subline {
  color: rgba(0, 0, 0, 0.85);
}

.pdf-icon-arrow {
  font-size: 26px;
  color: #F5D061;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.btn-pdf-download:hover .pdf-icon-arrow {
  color: #000000;
  transform: translateY(3px);
}

@media (max-width: 640px) {
  .btn-pdf-download {
    padding: 14px 20px;
    border-radius: 16px;
    width: 100%;
    justify-content: space-between;
  }
  .pdf-btn-heading {
    font-size: 0.82rem;
  }
  .pdf-btn-subline {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   SECTION 5 — WHY IT MATTERS
   ========================================================================== */
.section-why-matters {
  background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
  padding: 75px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-matters-container-card {
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.why-matters-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-matters-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.why-matters-para {
  font-size: 0.98rem;
  color: #D4D4D4;
  line-height: 1.55;
  margin-bottom: 12px;
}

.why-matters-sublead {
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 18px;
}

.why-matters-right-card {
  background: rgba(5, 5, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

.why-matters-checklist {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-matters-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: #D4D4D4;
  font-weight: 500;
  list-style: none !important;
}

.check-icon {
  color: #F5D061;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cyan-check {
  color: #F5D061;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

.cyan-text-bold {
  color: #F5D061;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   SECTION 6 — WHO I WORK WITH
   ========================================================================== */
.light-theme-wrapper {
  background-color: #0A0907;
  color: #FFFFFF;
  padding: 75px 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.light-section-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
}

.light-main-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cyan-text-dark {
  color: #F5D061;
}

.light-body-text {
  font-size: 1.1rem;
  color: #D4D4D4;
  margin-bottom: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.light-body-subtext {
  font-size: 0.98rem;
  color: #A3A3A3;
  margin-bottom: 28px;
  line-height: 1.5;
}

.light-callout-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #F5D061;
  line-height: 1.25;
}

.audience-grid-5x3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.aud-tile {
  background: rgba(18, 16, 12, 0.85);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 24px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  min-height: 125px;
}

.aud-tile:nth-child(5n) {
  border-right: none;
}

.aud-tile:nth-child(n+11) {
  border-bottom: none;
}

.aud-tile:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.aud-svg-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.aud-tile:hover .aud-svg-wrap {
  transform: scale(1.1);
}

.aud-svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
  transition: all 0.25s ease;
}

.aud-tile:hover .aud-svg path,
.aud-tile:hover .aud-svg circle,
.aud-tile:hover .aud-svg rect,
.aud-tile:hover .aud-svg polygon,
.aud-tile:hover .aud-svg polyline,
.aud-tile:hover .aud-svg line {
  stroke: #FFFFFF !important;
  filter: drop-shadow(0 0 10px rgba(245, 208, 97, 0.9));
}

.aud-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

/* ==========================================================================
   SECTION 7 — WHO I AM
   ========================================================================== */
.bio-about-single-card {
  max-width: 780px;
  margin: 0 auto;
}

.rich-name {
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* Rich Ayala Credentials Box */
.rich-credentials-box {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3.5px solid #F5D061;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 18px 0 22px 0;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.rich-title-line {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.rich-mission-line {
  font-size: 0.95rem;
  color: #D4D4D4;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.5;
}

.sales-domains-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.domain-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 6px;
}

.domain-tag span {
  font-size: 0.95rem;
  color: #D4AF37;
}

.bio-col-center {
  text-align: center;
  position: relative;
  padding: 26px;
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid #D4AF37;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
}

.cyan-quote-mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #D4AF37;
  line-height: 1;
}

.bio-center-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #F5D061;
  line-height: 1.35;
}

.certifications-card {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 16px 0;
}

.cert-heading {
  font-size: 0.82rem;
  font-weight: 800;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cyan-check-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cyan-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #D4D4D4;
  font-weight: 500;
  list-style: none !important;
}

.cyan-check-list li span.material-symbols-outlined {
  color: #F5D061;
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* ==========================================================================
   SECTION 8 — DIRECT CONTACT FORM & CALL CTA
   ========================================================================== */
.section-cta-bar {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, #050505 80%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.cta-form-card {
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, rgba(18, 16, 12, 0.95) 75%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 48px 52px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.05);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #F5D061 50%, transparent 100%);
  box-shadow: 0 0 15px #F5D061;
}

.cta-form-header {
  text-align: center;
  margin-bottom: 36px;
}

.cta-form-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin: 10px 0 12px 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.cta-form-subtext {
  font-size: 1rem;
  color: #D4D4D4;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.cta-form-subtext strong {
  color: #F5D061;
  font-weight: 700;
}

.inline-cta-form {
  width: 100%;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.form-group-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #F5D061;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.label-icon {
  font-size: 18px;
  color: #F5D061;
}

.input-with-icon-wrapper {
  position: relative;
  width: 100%;
}

.form-group-item input,
.form-group-item select {
  width: 100%;
  background: rgba(5, 5, 5, 0.92);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.96rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-group-item select {
  cursor: pointer;
  appearance: auto;
}

.form-group-item select option {
  background: #0A0805;
  color: #FFFFFF;
  padding: 10px;
}

.form-group-item input:focus,
.form-group-item select:focus {
  border-color: #F5D061;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(18, 16, 12, 0.95);
  transform: translateY(-1px);
}

.form-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Glowing Gold Submit Pill Button */
.btn-pill-cyan-glow,
.btn-pill-gold-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 50%, #AA7C11 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 16px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 420px;
}

.btn-pill-cyan-glow:hover,
.btn-pill-gold-glow:hover {
  background: linear-gradient(135deg, #FFF0B3 0%, #F5D061 50%, #D4AF37 100%);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.9), 0 12px 28px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px) scale(1.02);
  color: #000000;
}

.btn-arrow-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-pill-cyan-glow:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.form-success-message {
  text-align: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #F5D061;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.form-success-message .check-icon {
  font-size: 2.5rem;
  color: #F5D061;
  margin-bottom: 8px;
}

.form-success-message p {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}

/* Divider with Glowing OR Badge */
.cta-divider-glow {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
  margin: 40px 0 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-text-or {
  background: #080E18;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F5D061;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* Call Now Pill Button (Triggers phone call directly) */
.cta-phone-button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-phone-call-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 2px solid #F5D061;
  border-radius: 50px;
  padding: 14px 44px;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-phone-call-glow:hover {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  color: #000000;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.9), 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.03);
}

.phone-call-icon-pod {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5D061;
  transition: all 0.3s ease;
}

.phone-call-icon-pod .material-symbols-outlined {
  font-size: 20px;
}

.btn-phone-call-glow:hover .phone-call-icon-pod {
  background: #000000;
  color: #F5D061;
}

.phone-call-btn-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.phone-call-arrow-icon {
  font-size: 20px;
  color: #F5D061;
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn-phone-call-glow:hover .phone-call-arrow-icon {
  color: #040609;
  transform: translateX(4px);
}

.btn-rect-cyan {
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 50%, #AA7C11 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-rect-cyan:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5D061 100%);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.cta-reassurance-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-check-icon {
  color: #F5D061;
  font-size: 1.05rem;
}

.cta-reassurance-text {
  font-size: 0.8rem;
  color: #D4D4D4;
  font-weight: 500;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: #000000;
  position: relative;
  padding: 60px 0 28px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #F5D061 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: #A3A3A3;
  line-height: 1.55;
  margin: 14px 0 16px 0;
  max-width: 340px;
}

.footer-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-brand-tagline {
  display: block;
  font-size: 0.95rem;
  color: #D4D4D4;
  font-weight: 500;
  line-height: 1.45;
}

.footer-pillars-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #F5D061;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  padding: 0;
  overflow: visible;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #D4D4D4;
}

.contact-icon {
  color: #F5D061;
  font-size: 1.1rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #F5D061;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li {
  list-style: none !important;
}

.footer-nav-list a {
  color: #D4D4D4;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #F5D061;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-action-text {
  font-size: 0.88rem;
  color: #D4D4D4;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #A3A3A3;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-links a {
  color: #A3A3A3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #F5D061;
}

.dot-separator {
  color: #A3A3A3;
  font-size: 0.7rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: rgba(18, 16, 12, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #F5D061;
}

.modal-heading {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.modal-subheading {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 10px 12px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: #F5D061;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.modal-success-box {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.success-check {
  font-size: 3.2rem;
  color: #F5D061;
  margin-bottom: 10px;
}

/* ==========================================================================
   TABLET & MOBILE BREAKPOINTS (FLAWLESS RESPONSIVENESS DOWN TO 320PX)
   ========================================================================== */

@media (max-width: 1280px) {
  .container { padding: 0 28px; }
  .nav-menu { gap: 18px; }
  .nav-link { font-size: 0.74rem; letter-spacing: 1px; }
  .header-logo-img { height: 68px; }
}

@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .nav-menu { gap: 14px; }
  .nav-link { font-size: 0.70rem; letter-spacing: 0.8px; }
  .header-logo-img { height: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-methodology-card { margin: 24px auto 0 auto; text-align: left; }
  .hero-body-paragraph { margin: 0 auto 20px auto; }
  .cyan-title-bar { margin: 16px auto 22px auto; }
  .hero-brain-stage { height: 540px; }
  .hero-brain-img { max-width: 480px; max-height: 480px; }
  .struggle-6col-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .struggle-col-item::after { display: none; }
  .thinking-grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .thinking-divider-line { display: none; }
  .why-matters-content-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-horizontal-bar { flex-direction: column; text-align: center; }
  .cta-action-right { align-items: center; }
  .audience-grid-5x3 { grid-template-columns: repeat(3, 1fr); }
  .bio-three-col-layout { grid-template-columns: 1fr; }
  .light-section-grid { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 991px) {
  .site-header { height: 80px; }
  .header-logo-img { height: 60px; }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    background: rgba(4, 6, 9, 0.96);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.mobile-active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #E2E8F0;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner .btn-pill-cyan {
    display: none;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 50px 0; }
  
  .hero-methodology-card { margin-top: 20px; width: 100%; }
  .hero-quote-box { padding: 16px 18px; border-radius: 12px; margin-bottom: 18px; }
  .hero-methodology-intro { font-size: 0.98rem; }
  .hero-methodology-core { font-size: 1.05rem; }
  .hero-slate-text, .hero-beliefs-text { font-size: 0.95rem; }
  .hero-chain-flow { padding: 16px 18px; border-radius: 12px; gap: 4px; }
  .chain-text { font-size: 0.92rem; }
  
  .hero-icons-exact-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .exact-icon-circle { width: 42px; height: 42px; font-size: 1.15rem; }
  .exact-icon-label { font-size: 0.68rem; }
  
  .hero-brain-stage { height: 420px; }
  .hero-brain-img { max-width: 380px; max-height: 380px; }
  
  .struggle-6col-row { grid-template-columns: repeat(2, 1fr); row-gap: 14px; gap: 10px; }
  .struggle-card-inner { padding: 22px 8px 16px 8px; min-height: 190px; }
  .struggle-cyan-icon-pod { width: 52px; height: 52px; margin-bottom: 12px; }
  .cyan-svg-icon { width: 28px; height: 28px; }
  .struggle-col-text { font-size: 0.82rem; }
  
  .thinking-cards-duo { grid-template-columns: 1fr; gap: 12px; }
  
  .pipeline-header-card { padding: 20px 14px; margin-bottom: 28px; }
  .pipeline-main-heading { font-size: 1.7rem; letter-spacing: 1px; }
  .pipeline-tagline { font-size: 0.95rem; }
  .header-pdf-pill-btn { font-size: 0.82rem; padding: 8px 16px; margin-top: 14px; max-width: 100%; justify-content: center; }
  .rich-credentials-box { padding: 14px 16px; margin: 14px 0 18px 0; }
  .rich-title-line { font-size: 0.96rem; }
  .rich-mission-line { font-size: 0.88rem; }
  
  .pipeline-step-row { flex-direction: row; }
  .pipeline-icon-circle { width: 60px; height: 60px; margin-right: -30px; }
  .pipeline-mat-icon { font-size: 32px; }
  .pipeline-card-box { padding: 14px 14px 14px 40px; gap: 10px; border-radius: 10px; }
  .pipeline-dotted-connector { width: 24px; }
  .pipeline-card-title { font-size: 0.98rem; letter-spacing: 0.8px; }
  .pipeline-card-sub { font-size: 0.82rem; }
  .pipeline-arrow-wrap { padding-left: 18px; margin: 4px 0; }
  
  .pipeline-footer-callout { margin-top: 32px; padding: 16px 8px; }
  .callout-line-1 { font-size: 0.95rem; }
  .callout-line-2 { font-size: 0.98rem; }
  
  .why-matters-container-card { padding: 24px 16px; }
  .why-matters-title { font-size: 1.8rem; }
  .why-matters-right-card { padding: 20px 16px; }
  .why-matters-checklist li { font-size: 0.92rem; }
  
  .audience-grid-5x3 { grid-template-columns: repeat(2, 1fr); }
  .aud-tile { padding: 16px 6px; min-height: 105px; }
  .aud-svg-wrap { width: 32px; height: 32px; margin-bottom: 6px; }
  .aud-svg { width: 28px; height: 28px; }
  .aud-title { font-size: 0.74rem; }
  
  .cta-horizontal-bar { padding: 24px 16px; gap: 16px; }
  .cta-bar-title { font-size: 1.1rem; }
  .cta-bar-subtext { font-size: 0.84rem; }
  .cta-reassurance-text { white-space: normal; font-size: 0.78rem; text-align: center; }
  
  .footer-main-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.85rem; }
  
  .hero-methodology-card { margin-top: 16px; }
  .hero-quote-box { padding: 14px 14px; border-left-width: 3px; border-radius: 10px; margin-bottom: 16px; }
  .hero-methodology-intro { font-size: 0.92rem; line-height: 1.45; }
  .hero-methodology-core { font-size: 0.98rem; line-height: 1.45; }
  .hero-slate-text { font-size: 0.90rem; margin-bottom: 10px; }
  .hero-beliefs-text { font-size: 0.90rem; margin-bottom: 16px; line-height: 1.5; }
  .cyan-bold-tag { font-size: 0.84rem; padding: 1px 7px; }
  .hero-chain-flow { padding: 14px 12px; border-radius: 10px; }
  .hero-chain-step { gap: 10px; }
  .chain-icon-wrap { width: 20px; height: 20px; }
  .chain-dot { width: 8px; height: 8px; }
  .chain-text { font-size: 0.88rem; line-height: 1.35; }
  .hero-chain-connector { height: 10px; margin-left: 9px; }
  .hero-icons-exact-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .exact-icon-circle { width: 36px; height: 36px; font-size: 0.95rem; }
  .exact-icon-label { font-size: 0.65rem; }
  
  .struggle-6col-row { grid-template-columns: 1fr; gap: 12px; }
  .footer-callout-pill { padding: 14px 20px; border-radius: 40px; }
  .struggle-footer-top { font-size: 0.95rem; }
  .struggle-footer-cyan { font-size: 1.5rem; }
  
  .pipeline-step-row { width: 100%; }
  .pipeline-icon-circle { width: 54px; height: 54px; margin-right: -27px; }
  .pipeline-mat-icon { font-size: 28px; }
  .pipeline-card-box { padding: 12px 12px 12px 34px; gap: 8px; }
  .pipeline-dotted-connector { width: 18px; }
  .pipeline-card-title { font-size: 0.88rem; }
  .pipeline-card-sub { font-size: 0.78rem; }
  .pipeline-arrow-wrap { padding-left: 14px; }
  
  .header-pdf-pill-btn { font-size: 0.78rem; padding: 8px 12px; gap: 6px; width: 100%; justify-content: center; }
  .header-pdf-pill-btn .pdf-mat-icon { font-size: 18px; }
  .header-pdf-pill-btn .arrow-mat-icon { font-size: 16px; }
  .rich-credentials-box { padding: 12px 14px; margin: 12px 0 16px 0; border-left-width: 3px; }
  .rich-title-line { font-size: 0.9rem; }
  .rich-mission-line { font-size: 0.82rem; }
  
  .light-main-heading { font-size: 2.1rem; }
  .aud-title { font-size: 0.7rem; }
  .modal-card { padding: 20px 14px; }
}

/* ==========================================================================
   CLEAN & SIMPLE LEGAL PAGES SYSTEM
   ========================================================================== */
.clean-legal-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 16px;
}

.clean-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F5D061;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.clean-back-link:hover {
  color: #FFFFFF;
  transform: translateX(-4px);
}

.clean-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.clean-effective-date {
  font-size: 0.9rem;
  color: #A3A3A3;
  font-weight: 500;
}

.clean-legal-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0 36px 0;
}

.clean-legal-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #D4D4D4;
}

.clean-legal-section {
  margin-bottom: 32px;
}

.clean-legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #F5D061;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  border-left: 3.5px solid #F5D061;
  padding-left: 14px;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
}

.clean-legal-section p {
  margin-bottom: 12px;
}

.clean-legal-section p:last-child {
  margin-bottom: 0;
}

.clean-bullet-list {
  list-style: disc !important;
  padding-left: 24px !important;
  margin: 12px 0 16px 0 !important;
}

.clean-bullet-list li {
  margin-bottom: 8px;
  color: #D4D4D4;
}

.clean-bullet-list li::marker {
  color: #F5D061;
}

.clean-contact-block {
  background: rgba(18, 16, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 40px;
}

.clean-contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #F5D061;
  margin-bottom: 10px;
  border-left: 3.5px solid #F5D061;
  padding-left: 12px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.cyan-text-link {
  color: #F5D061;
  text-decoration: none;
  font-weight: 600;
}

.cyan-text-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

/* Simple Bottom Copyright Box (matching user's screenshot exactly) */
.footer-simple-bottom {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 40px;
}

.copyright-primary-line {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.copyright-sub-line {
  font-size: 0.88rem;
  color: #94A3B8;
  font-weight: 500;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATIONS (Section 8 CTA, Legal Pages & Footer)
   ========================================================================== */
@media (max-width: 992px) {
  .cta-form-card {
    padding: 36px 32px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-cta-bar {
    padding: 45px 0;
  }
  
  .cta-form-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .cta-form-header {
    margin-bottom: 24px;
  }

  .cta-form-headline {
    font-size: 1.55rem;
  }

  .cta-form-subtext {
    font-size: 0.88rem;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .form-group-item input,
  .form-group-item select {
    font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    padding: 12px 14px;
  }

  .btn-pill-cyan-glow {
    max-width: 100%;
    width: 100%;
    padding: 15px 20px;
    font-size: 0.88rem;
  }

  .btn-phone-call-glow {
    width: 100%;
    padding: 14px 20px;
    justify-content: center;
  }

  .phone-call-btn-label {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  /* Clean Legal Pages Mobile Adjustments */
  .clean-legal-wrapper {
    padding: 0 16px;
  }

  .clean-legal-title {
    font-size: 1.85rem;
  }

  .clean-legal-body {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .clean-legal-section {
    margin-bottom: 24px;
  }

  .clean-legal-section h2 {
    font-size: 1.15rem;
  }

  .clean-bullet-list {
    padding-left: 18px !important;
  }

  .clean-contact-block {
    padding: 20px 16px;
    word-break: break-word;
  }

  .footer-simple-bottom {
    padding: 20px 12px;
  }

  .copyright-primary-line {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .copyright-sub-line {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .cta-form-card {
    padding: 22px 14px;
  }

  .clean-legal-title {
    font-size: 1.65rem;
  }

  .clean-back-link {
    font-size: 0.82rem;
  }
}
