/* ============================================================
   PETER CROFT EOS — Design System
   EOS Implementer Consulting Website CSS
   Mobile-first, CSS Custom Properties throughout
   ============================================================ */


/* ============================================================
   SECTION 1: Design Tokens (CSS Custom Properties)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  /* Colors - Dark */
  --color-dark-bg: #1A1A2E;
  --color-dark-surface: #16213E;
  --color-dark-border: #2A3558;
  --color-dark-footer: #111126;

  /* Colors - Primary (Orange) */
  --color-primary: #FF7900;
  --color-primary-light: #FF9A3C;
  --color-primary-dark: #CC6100;
  --color-primary-glow: rgba(255, 121, 0, 0.15);

  /* Colors - Secondary (Blue) */
  --color-secondary: #0D7BB4;
  --color-secondary-light: #1A9BD7;
  --color-secondary-dark: #0A6291;
  --color-secondary-glow: rgba(13, 123, 180, 0.15);

  /* Colors - Light */
  --color-light-bg: #F5F5F5;
  --color-white: #FFFFFF;

  /* Colors - Accent */
  --color-success: #12B76A;

  /* Colors - Text */
  --color-text-dark: #333333;
  --color-text-secondary: #45577A;
  --color-text-light: #FFFFFF;
  --color-text-muted: #9CA8C4;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', Verdana, sans-serif;

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-orange-glow: 0 8px 32px rgba(255, 121, 0, 0.2);
  --shadow-blue-glow: 0 8px 32px rgba(13, 123, 180, 0.2);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1400px;
  --header-height: 72px;
}


/* ============================================================
   SECTION 2: Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary-light);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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


/* ============================================================
   SECTION 3: Typography
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.125rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   SECTION 4: Layout & Sections
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-20) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-24) 0;
  }
}

/* --- Dark Section --- */
.section--dark {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-light);
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 121, 0, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(13, 123, 180, 0.03) 0%, transparent 50%);
  animation: bg-drift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bg-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, -2%) scale(1.1); }
}

/* --- Dark Textured Section (with noise) --- */
.section--dark-textured {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.section--dark-textured h1,
.section--dark-textured h2,
.section--dark-textured h3,
.section--dark-textured h4 {
  color: var(--color-text-light);
}

.section--dark-textured::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.section--dark-textured::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 121, 0, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(13, 123, 180, 0.03) 0%, transparent 50%);
  animation: bg-drift 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.section--dark-textured > * {
  position: relative;
  z-index: 1;
}

/* --- Light Section --- */
.section--light {
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
}

/* --- Light Textured Section --- */
.section--light.section--textured {
  position: relative;
  overflow: hidden;
}

.section--light.section--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

/* --- Gradient Section --- */
.section--gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section--gradient h1,
.section--gradient h2,
.section--gradient h3,
.section--gradient h4 {
  color: var(--color-white);
}

/* Diagonal accent line on gradient sections */
.section--gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 120%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.06) 46%,
    transparent 46%,
    transparent 48%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(255, 255, 255, 0.04) 48.5%,
    transparent 48.5%
  );
  pointer-events: none;
}

/* --- Section Labels, Titles, Subtitles --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-3);
}

.section--dark .section-label,
.section--dark-textured .section-label {
  color: var(--color-primary-light);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.section--dark .section-subtitle,
.section--dark-textured .section-subtitle {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .section--dark::before,
  .section--dark-textured::after {
    animation: none;
  }
}


/* ============================================================
   SECTION 5: Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background-color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
}

.btn--primary:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-orange-glow);
  color: var(--color-white);
}

.btn--dark {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
}

.btn--dark:hover {
  background-color: var(--color-dark-surface);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
}

.btn--secondary:hover {
  background-color: var(--color-secondary-light);
  box-shadow: var(--shadow-blue-glow);
  color: var(--color-white);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn--nav {
  padding: var(--space-2) var(--space-5);
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}


/* ============================================================
   SECTION 6: Header & Navigation
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transform: translateY(0);
  transition: background-color 250ms ease,
              box-shadow 250ms ease,
              height 250ms ease,
              transform 250ms ease;
}

.header--scrolled {
  background-color: var(--color-dark-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 64px;
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-white);
}

.header__logo:hover {
  color: var(--color-white);
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  font-family: var(--font-body);
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav a {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header__nav a:hover {
  color: var(--color-primary-light);
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__phone {
  display: none;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-family: var(--font-body);
}

@media (min-width: 1024px) {
  .header__phone {
    display: block;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base),
              opacity var(--transition-base);
}

.hamburger.active span:first-child {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg) translateY(-7px);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--color-primary);
}


/* ============================================================
   SECTION 7: Hero
   ============================================================ */

@keyframes hero-drift {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.05) translate(-1%, -1%);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark-bg);
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-12)) var(--space-5) var(--space-12);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(13, 123, 180, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(255, 121, 0, 0.07) 0%, transparent 50%);
  animation: hero-drift 30s ease-in-out infinite alternate;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Hero Title */
.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 12px rgba(15, 22, 38, 0.85);
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.25rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(15, 22, 38, 0.8);
}

/* Hero Bullets */
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
  max-width: 480px;
  margin-bottom: var(--space-8);
}

.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero__bullet::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}

/* Hero CTA */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    align-items: center;
  }
}

.hero__proof {
  margin-top: var(--space-6);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: left;
}

/* Hero Visual (floating image/card) */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__visual img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero__visual--float {
  animation: float-card 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
  }
  .hero__visual--float {
    animation: none;
  }
}


/* ============================================================
   SECTION 8: Logo Bar
   ============================================================ */

.logo-bar {
  background-color: var(--color-dark-surface);
  padding: var(--space-8) 0;
  text-align: center;
  overflow: hidden;
}

.logo-bar__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  display: block;
}

.logo-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10);
  opacity: 0.5;
}

.logo-bar__logos img {
  height: 28px;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-base);
}

.logo-bar__logos img:hover {
  opacity: 0.8;
}


/* ============================================================
   SECTION 9: Problem / Frustrations (Dark Textured)
   ============================================================ */

.frustrations {
  max-width: 800px;
  margin: 0 auto;
}

.frustrations__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.frustrations__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.frustrations__item::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  background: rgba(255, 121, 0, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

/* Checked state */
.frustrations__item.checked::before {
  background: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.frustrations__item strong {
  color: var(--color-text-light);
  font-weight: 600;
}


/* ============================================================
   SECTION 10: VTH Three-Pillar Cards (Vision/Traction/Healthy)
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pillar-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.75rem;
}

.pillar-card__icon--vision {
  background: rgba(255, 121, 0, 0.1);
  color: var(--color-primary);
}

.pillar-card__icon--traction {
  background: rgba(13, 123, 180, 0.1);
  color: var(--color-secondary);
}

.pillar-card__icon--healthy {
  background: rgba(18, 183, 106, 0.1);
  color: var(--color-success);
}

.pillar-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.pillar-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ── Frustration Cards Grid (actual HTML class names) ── */

.frustrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .frustrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .frustrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.frustration-card {
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.frustration-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.frustration-card:hover::before {
  opacity: 0.22;
}

.frustration-card--control::before { background-image: url('../images/bg-frust-control.webp'); }
.frustration-card--profit::before  { background-image: url('../images/bg-frust-profit.webp'); }
.frustration-card--people::before  { background-image: url('../images/bg-frust-people.webp'); }
.frustration-card--ceiling::before { background-image: url('../images/bg-frust-ceiling.webp'); }
.frustration-card--nothing::before { background-image: url('../images/bg-frust-nothing.webp'); }

.frustration-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(255, 121, 0, 0.08);
}

.frustration-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.frustration-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.frustrations-cta-text {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.frustrations-cta-text strong {
  color: var(--color-primary);
}

/* ── VTH Cards Grid (actual HTML class names) ── */

.vth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .vth-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vth-card {
  background-color: #0f1626;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

/* Full-bleed copper engraving icon as card background, with dark navy gradient overlay for text contrast */
.vth-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(15, 22, 38, 0.55) 0%, rgba(15, 22, 38, 0.82) 100%),
    url('../images/icon-vision-v2.png');
}
.vth-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(15, 22, 38, 0.55) 0%, rgba(15, 22, 38, 0.82) 100%),
    url('../images/icon-traction-v2.png');
}
.vth-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(15, 22, 38, 0.55) 0%, rgba(15, 22, 38, 0.82) 100%),
    url('../images/icon-healthy-v2.png');
}

.vth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 98, 16, 0.4);
}

/* Numbered indicator */
.vth-card::after {
  content: attr(data-number);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 98, 16, 0.85);
  font-weight: 700;
  z-index: 2;
}

/* Suppress the old 48px top-left icon placeholder — the icon is now the full card background */
.vth-card::before {
  display: none;
}

.vth-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.vth-card__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}


/* ============================================================
   SECTION 11: Results / Metrics Bar
   ============================================================ */

.results-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  background: rgba(22, 33, 62, 0.7);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  margin-top: var(--space-10);
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.results-bar__stat {
  text-align: center;
}

.results-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.results-bar__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.results-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--color-dark-border);
}

@media (max-width: 767px) {
  .results-bar {
    gap: var(--space-5);
    padding: var(--space-6);
  }
  .results-bar__divider {
    display: none;
  }
  .results-bar__stat {
    flex: 1 1 40%;
  }
}


/* ============================================================
   SECTION 12: System Sections (Alternating Left-Right)
   ============================================================ */

.system-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .system-section {
    grid-template-columns: 1fr 1fr;
  }

  .system-section--reversed {
    direction: rtl;
  }

  .system-section--reversed > * {
    direction: ltr;
  }
}

.system-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.system-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .system-section__title {
    font-size: 2.5rem;
  }
}

.system-section__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.system-section__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.system-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.system-section__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.system-section__list li::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* System Visual Card */
.system-visual-card {
  background: rgba(22, 33, 62, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 121, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  overflow: hidden;
  position: relative;
  animation: float-card 6s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 121, 0, 0.05);
}

.system-section--reversed .system-visual-card {
  border-color: rgba(13, 123, 180, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(13, 123, 180, 0.05);
}

.system-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 121, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.system-section--reversed .system-visual-card::before {
  background: radial-gradient(circle at 70% 30%, rgba(13, 123, 180, 0.06) 0%, transparent 60%);
}

.system-visual-card img {
  width: 100%;
  border-radius: var(--radius-md);
}

@media (prefers-reduced-motion: reduce) {
  .system-visual-card {
    animation: none;
  }
}


/* ============================================================
   SECTION 13: Mid-Page CTA Banner
   ============================================================ */

.cta-banner {
  text-align: center;
  padding: var(--space-16) var(--space-5);
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .cta-banner__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner__title {
    font-size: 2.75rem;
  }
}

.cta-banner__text {
  font-size: 1.125rem;
  margin-bottom: var(--space-8);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.cta-banner__phone {
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__phone a {
  text-decoration: underline;
  color: var(--color-white);
}


/* ============================================================
   SECTION 14: Story / About Section
   ============================================================ */

.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 768px) {
  .story {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
  }
}

.story__sidebar {
  position: relative;
}

@media (min-width: 768px) {
  .story__sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
  }
}

.story__pullquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-primary);
  padding-left: var(--space-6);
  border-left: 4px solid var(--color-primary);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .story__pullquote {
    font-size: 1.75rem;
  }
}

.story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.story__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.story__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.story__content p {
  margin-bottom: var(--space-5);
}

.story__content strong {
  color: var(--color-text-dark);
  font-weight: 600;
}


/* ============================================================
   SECTION 15: Testimonials Grid
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   SECTION 16: Industries / Niches Grid
   ============================================================ */

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.industry-card:hover .industry-card__bg {
  transform: scale(1.05);
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.6) 40%,
    rgba(26, 26, 46, 0.2) 100%
  );
}

.industry-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-6);
  width: 100%;
}

.industry-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.industry-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.industry-card__arrow {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 121, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-base),
              transform var(--transition-base);
}

.industry-card:hover .industry-card__arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   SECTION 17: FAQ Accordion
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 121, 0, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: var(--radius-full);
  background-color: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  transition: transform var(--transition-base),
              background-color var(--transition-base);
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow),
              padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Dark variant */
.section--dark .faq-item,
.section--dark-textured .faq-item {
  background-color: var(--color-dark-surface);
  border-color: var(--color-dark-border);
}

.section--dark .faq-question,
.section--dark-textured .faq-question {
  color: var(--color-text-light);
}

.section--dark .faq-question__icon,
.section--dark-textured .faq-question__icon {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
}

.section--dark .faq-answer__inner,
.section--dark-textured .faq-answer__inner {
  color: var(--color-text-muted);
}


/* ============================================================
   SECTION 18: Final CTA / "Imagine" Section
   ============================================================ */

.final-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  color: var(--color-text-light);
}

.final-cta__title em {
  font-style: italic;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .final-cta__title {
    font-size: 3.25rem;
  }
}

.final-cta__text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: var(--space-4);
  display: block;
}


/* ============================================================
   SECTION 19: Footer
   ============================================================ */

.footer {
  background-color: var(--color-dark-footer);
  color: var(--color-text-muted);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
  display: block;
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--color-text-light);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-primary-light);
}

.footer__bottom {
  border-top: 1px solid var(--color-dark-border);
  padding-top: var(--space-6);
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 0.8125rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--color-primary-light);
}


/* ============================================================
   SECTION 20: Scroll Reveal Animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   SECTION 21: How It Works (Steps)
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(255, 121, 0, 0.25);
}

.step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Connector line between steps on desktop */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), transparent);
  }
}

/* Dark variant */
.section--dark .step__text,
.section--dark-textured .step__text {
  color: var(--color-text-muted);
}


/* ============================================================
   SECTION 22: Contact Form
   ============================================================ */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px var(--color-secondary-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Dark variant */
.section--dark .form-label,
.section--dark-textured .form-label {
  color: var(--color-text-light);
}

.section--dark .form-input,
.section--dark .form-textarea,
.section--dark .form-select,
.section--dark-textured .form-input,
.section--dark-textured .form-textarea,
.section--dark-textured .form-select {
  background-color: var(--color-dark-surface);
  border-color: var(--color-dark-border);
  color: var(--color-text-light);
}


/* ============================================================
   SECTION 23: Utility Classes
   ============================================================ */

/* Spacing helpers */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

/* Max-width helpers */
.max-w-narrow { max-width: 600px; }
.max-w-medium { max-width: 800px; }
.max-w-wide { max-width: 1000px; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Text color overrides */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }

/* Highlight (em in headings) */
em.highlight,
.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

/* Accent border */
.accent-border-left {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-5);
}

/* Orange glow button effect */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--color-primary);
  opacity: 0;
  z-index: -1;
  filter: blur(16px);
  transition: opacity var(--transition-base);
}

.glow-effect:hover::after {
  opacity: 0.3;
}


/* ============================================================
   SECTION 24: Misc Components
   ============================================================ */

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Badge / Tag */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(255, 121, 0, 0.1);
  color: var(--color-primary);
}

/* Icon circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.icon-circle--primary {
  background: rgba(255, 121, 0, 0.1);
  color: var(--color-primary);
}

.icon-circle--secondary {
  background: rgba(13, 123, 180, 0.1);
  color: var(--color-secondary);
}

.icon-circle--success {
  background: rgba(18, 183, 106, 0.1);
  color: var(--color-success);
}

/* Card base */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Dark card variant */
.card--dark {
  background-color: var(--color-dark-surface);
  border-color: var(--color-dark-border);
}

.card--dark:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Feature list (used in various sections) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.feature-list__text {
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list__text strong {
  font-weight: 600;
  color: var(--color-text-dark);
  display: block;
  margin-bottom: 2px;
}

.section--dark .feature-list__text strong,
.section--dark-textured .feature-list__text strong {
  color: var(--color-text-light);
}


/* ============================================================
   FIXES: Story Section, FAQ (actual HTML classes), Imagine, CTA Banner extras
   ============================================================ */

/* ── Story Section ── */
.story-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .story-section {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
  }
}

.story-section__sidebar {
  position: relative;
}

@media (min-width: 768px) {
  .story-section__sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

.story-section__pull-quote {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-dark);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-5);
}

.section--dark-textured .story-section__pull-quote {
  color: var(--color-text-light);
}

.story-section__content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.story-section__content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.section--dark-textured .story-section__content p {
  color: var(--color-text-muted);
}

.section--dark-textured .story-section__content h3 {
  color: var(--color-text-light);
}

/* ── FAQ (actual HTML class names: faq__item, faq__question, faq__answer, faq__icon) ── */
.faq {
  max-width: 800px;
  margin: var(--space-10) auto 0;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding-bottom: var(--space-5);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ── Imagine Section ── */
.imagine-section {
  padding: var(--space-24) 0;
}

.imagine-section__large {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

@media (min-width: 768px) {
  .imagine-section__large {
    font-size: 2.5rem;
  }
}

.imagine-section__medium {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-8);
}

.imagine-section__small {
  font-size: 1.125rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-8);
}

.imagine-section__footnote {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* ── CTA Banner extras ── */
.cta-banner__quote {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .cta-banner__quote {
    font-size: 3rem;
  }
}

.cta-banner__attribution {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

/* ── Hero visual image (Peter editorial scene) ── */
.hero__visual-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45),
              0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
}

.hero__visual-img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 121, 0, 0.15);
}

/* ── Hero background photograph + gradient ── */
/* Hero bg-image: single full-width copper engraving, blurred and ghosted as atmospheric backdrop.
   - background-size: 100% auto fills the hero width (cover left side-padding on wide viewports)
   - filter: blur softens the cartoonish engraving lines
   - opacity + brightness ghosts the artwork into atmosphere
   z-index: 0 (NOT -2 — section paints its own dark-navy bg at z=0, negative would hide). */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-color: #0f1626;
  background-image: url('../images/icon-vision-v2.png');
  background-size: 100% auto;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.22;
  filter: blur(6px) brightness(1.2);
  animation: hero-bg-flyover 90s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-bg-flyover {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.15); }
}

/* Light dark-navy wash on top — keeps body text readable without crushing the artwork */
.hero__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 22, 38, 0.45) 0%, rgba(15, 22, 38, 0.25) 60%, rgba(15, 22, 38, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Hero "100% Remote" vertical ribbon tag ── */
.hero__visual { position: relative; }
.hero__remote-tag {
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 32px;
  height: 130px;
  background: linear-gradient(180deg, #FF6210 0%, #E55510 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 98, 16, 0.35);
  z-index: 2;
}
.hero__remote-tag::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.hero__remote-tag-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 1rem;
}

/* ── System section images ── */
.system-section__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── About section photo ── */
.story-section__photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  margin-bottom: var(--space-6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ── Industry card name/desc/link ── */
.industry-card__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.industry-card__desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.industry-card__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.industry-card:hover .industry-card__link {
  color: var(--color-primary-light);
}

.industry-card--featured {
  border-color: rgba(255, 121, 0, 0.3);
}

.industry-card--other .industry-card__overlay {
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.95) 0%,
    rgba(26, 26, 46, 0.75) 40%,
    rgba(26, 26, 46, 0.5) 100%
  );
}

/* ── Footer grid fix ── */
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer__nav {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--space-2);
}

.footer__trademark {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* ── Contact form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form__field select {
  cursor: pointer;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.section--dark .feature-list__text,
.section--dark-textured .feature-list__text {
  color: var(--color-text-muted);
}


/* ============================================================
   v2 REDESIGN — Header brand tagline, Hero badge, Hero sticker,
   EOS outbound link, About list, Testimonial marquee, Logo marquee,
   Footer brand tagline
   ============================================================ */

/* ── Header brand tagline (under PETER CROFT) ── */
.header__logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  opacity: 0.7;
  line-height: 1;
}

@media (max-width: 480px) {
  .header__logo-tagline {
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
  }
}

/* ── Hero badge (above niche selector) ── */
.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255, 154, 60, 0.25);
  border-radius: var(--radius-full);
  background-color: rgba(255, 154, 60, 0.05);
}

@media (max-width: 600px) {
  .hero__badge {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
  }
}

/* ── Hero sub-headline (under H1) ── */
.hero__sub-headline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-primary-light);
  line-height: 1.3;
  margin-bottom: var(--space-5);
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(15, 22, 38, 0.85);
}

@media (max-width: 600px) {
  .hero__sub-headline {
    font-size: 1.25rem;
  }
}

/* ── EOS Approach outbound link ── */
.eos-outbound {
  margin-top: var(--space-10);
  text-align: center;
}

.eos-outbound__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  padding: var(--space-3) var(--space-6);
  border: 1px solid rgba(13, 123, 180, 0.35);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: color var(--transition-base),
              border-color var(--transition-base),
              background-color var(--transition-base);
}

.eos-outbound__link:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* ── About section list (Over the years I've learned) ── */
.story-section__list-intro {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2) !important;
  margin-top: var(--space-2);
}

.story-section__list {
  margin: 0 0 var(--space-5) var(--space-5);
  padding-left: var(--space-4);
  list-style: disc;
}

.story-section__list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  list-style: disc;
}

/* ── Testimonial marquee (editorial pull-quote cards) ── */
.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-8) 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testimonial-scroll 60s linear infinite;
  will-change: transform;
  padding: 1rem 0;
}

.testimonial-marquee:hover .testimonial-marquee__track {
  animation-play-state: paused;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem 2rem;
  width: 380px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 20px 50px -15px rgba(15, 22, 38, 0.15);
  border: 1px solid rgba(15, 22, 38, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -15px rgba(15, 22, 38, 0.25);
}
.testimonial-card__mark {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: #FF6210;
  opacity: 0.3;
  font-weight: 700;
}
.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #1a2238;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 1;
}
.testimonial-card__divider {
  width: 40px;
  height: 2px;
  background: #FF6210;
  margin-bottom: 1.25rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2238 0%, #0f1626 100%);
  color: #FF6210;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #1a2238;
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}
.testimonial-card__company {
  font-size: 0.8125rem;
  color: #FF6210;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 320px;
    padding: 2.5rem 2rem 1.75rem;
  }
}

/* ── Logo marquee (real logos, grayscale by default) ── */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--space-4);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-marquee__track {
  display: flex;
  gap: var(--space-12);
  align-items: center;
  width: max-content;
  animation: logo-scroll 40s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.6;
  transition: filter 200ms ease, opacity 200ms ease;
}

.logo-marquee__logo:hover {
  filter: none;
  opacity: 1;
}

/* ── Footer brand tagline ── */
.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  opacity: 0.7;
  margin: var(--space-1) 0 var(--space-3);
  line-height: 1.4;
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee__track,
  .logo-marquee__track {
    animation: none;
  }
}


/* ============================================================
   GHL Form Embed Container
   The form_embed.js script auto-resizes the iframe via postMessage once
   the form loads. Until then, we lock the container to 745px (form
   data-height) so the layout doesn't collapse during paint.
   ============================================================ */

.ghl-form-container {
  max-width: 640px;
  margin: var(--space-8) auto var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.35);
  height: 745px;
  min-height: 745px;
}

.ghl-form-container iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 745px;
  border: none !important;
  background: #ffffff;
}

@media (max-width: 640px) {
  .ghl-form-container {
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
    height: 820px;
    min-height: 820px;
  }
  .ghl-form-container iframe {
    min-height: 820px;
  }
}
