/* ============================================
   Broken View Marketing — Global Styles
   ============================================ */

:root {
  --bv-black: #1a2030;
  --bv-off-white: #F8F8F8;
  --bv-cyan: #01b8e0;
  --bv-cyan-hover: #00a0c8;
  --bv-dark-gray: #3A3A3A;
  --bv-mint: #f0f4f8;
  --bv-muted-light: #6B7280;
  --bv-muted-dark: #9CA3AF;
  --bv-border-dark: #1F1F1F;
  --bv-border-light: #E5E7EB;

  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  --container: 1280px;
  --section-y: clamp(4rem, 7vw, 7rem);
  --card-radius: 16px;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --card-shadow-hover: 0 16px 48px rgba(0,0,0,0.12);
}


.section-dark,
.page-header,
.cta-section {
  position: relative;
  overflow: hidden;
}

/* CTA radial glow */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(1, 184, 224, 0.2), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-dark > *,
.page-header > *,
.cta-section > * {
  position: relative;
  z-index: 1;
}

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

.page-header > * {
  position: relative;
  z-index: 1;
}

/* Cards sit above topo - solid backgrounds so lines don't bleed through */
.section-dark .service-card,
.section-dark .value-card,
.section-dark .process-step,
.section-dark .platform-card,
.section-dark .testimonial-card,
.section-dark .email-flow-card,
.section-dark .stat-block,
.section-dark .addon-card {
  isolation: isolate;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bv-black);
  background: var(--bv-off-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bv-cyan);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-dark {
  background: var(--bv-black);
  color: var(--bv-off-white);
}

.section-light {
  background: var(--bv-off-white);
  color: var(--bv-black);
}

.section-mint {
  background: var(--bv-mint);
  color: var(--bv-black);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.3s ease;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: var(--bv-black);
}

.logo-mark {
  height: 34px;
  width: 34px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--bv-black);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--bv-black);
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.hero .logo-sub,
.page-header .logo-sub,
.section-dark .logo-sub,
.footer .logo-sub {
  color: var(--bv-black) !important;
}

.nav .logo-sub {
  color: var(--bv-black);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--bv-black);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bv-cyan);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bv-cyan);
}

.nav-cta {
  background: var(--bv-cyan);
  color: var(--bv-black) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--bv-cyan-hover);
  transform: translateY(-1px);
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--bv-black);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--bv-cyan);
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #1a2030;
  border: 1px solid var(--bv-border-dark);
  border-radius: 6px;
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 101;
}

/* Invisible bridge so hovering the gap between trigger and menu doesn't close it */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1.5rem;
  display: none;
}

.nav-dropdown:hover::after {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--bv-off-white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(1, 184, 224, 0.1);
  color: var(--bv-cyan);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bv-black);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--bv-cyan);
  color: var(--bv-black);
}

.btn-primary:hover {
  background: var(--bv-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 184, 224, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--bv-off-white);
  border: 1px solid var(--bv-off-white);
}

.btn-secondary:hover {
  background: var(--bv-off-white);
  color: var(--bv-black);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--bv-black);
  border: 1px solid var(--bv-black);
}

.btn-secondary-dark:hover {
  background: var(--bv-black);
  color: var(--bv-off-white);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

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

.hero {
  padding: 10rem 0 6rem;
  background: var(--bv-black);
  color: var(--bv-off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(1, 184, 224, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  /* no pattern */
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--bv-cyan);
  font-style: italic;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  color: #b8c4d0;
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  background: var(--bv-black);
  color: var(--bv-off-white);
  padding: 3rem 0;
  border-top: 1px solid var(--bv-border-dark);
  border-bottom: 1px solid var(--bv-border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--bv-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8c4d0;
}

/* ============================================
   Services
   ============================================ */

.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--bv-muted-light);
  margin-top: 1rem;
  max-width: 760px;
}

.section-dark .section-header p {
  color: #c8d8e8;
  color: #b8c4d0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bv-off-white);
  border: 1px solid var(--bv-border-light);
  padding: 2.75rem 2.25rem;
  border-radius: var(--card-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.section-dark .service-card {
  background: #222c3e;
  border-color: rgba(1, 184, 224, 0.15);
  color: var(--bv-off-white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--bv-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.section-dark .service-card:hover {
  box-shadow: 0 20px 48px rgba(1, 184, 224, 0.15);
  border-color: rgba(1,184,224,0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--bv-cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--bv-muted-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-dark .service-card p {
  color: #b8c4d0;
}

.service-features {
  list-style: none;
  font-size: 0.9rem;
}

.service-features li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '→';
  color: var(--bv-cyan);
  font-weight: 700;
}

/* ============================================
   Process
   ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  padding: 2.25rem 2rem;
  border: 1px solid var(--bv-border-light);
  border-top: 3px solid var(--bv-cyan);
  border-radius: var(--card-radius);
  transition: all 0.2s ease;
  box-shadow: var(--card-shadow);
}

.section-dark .process-step {
  background: #222c3e;
  border: 1px solid rgba(1, 184, 224, 0.15);
  border-top: 3px solid var(--bv-cyan);
  border-radius: var(--card-radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.process-step.active {
  border-top-color: var(--bv-cyan);
}

.process-step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--bv-cyan);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--bv-muted-light);
  font-size: 0.95rem;
}

.section-dark .process-step p {
  color: #b8c4d0;
}

/* ============================================
   Work / Portfolio
   ============================================ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.work-card {
  background: var(--bv-black);
  color: var(--bv-off-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bv-cyan), #008770);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-black);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}

.work-thumb.variant-2 {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: var(--bv-cyan);
}

.work-thumb.variant-3 {
  background: linear-gradient(135deg, var(--bv-mint) 0%, var(--bv-cyan) 100%);
}

.work-thumb.variant-4 {
  background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
  color: var(--bv-off-white);
}

.work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(0, 0, 0, 0.03) 20px, rgba(0, 0, 0, 0.03) 21px);
}

.work-info {
  padding: 1.5rem;
}

.work-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-cyan);
  margin-bottom: 0.75rem;
}

.work-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.work-desc {
  font-size: 0.9rem;
  color: #b8c4d0;
}

.work-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bv-border-dark);
}

.work-stat {
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.work-stat-value {
  color: var(--bv-cyan);
  font-weight: 700;
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.work-stat-label {
  color: #b8c4d0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.testimonial-quote::before {
  content: '"';
  color: var(--bv-cyan);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.2em;
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--bv-muted-light);
  text-transform: uppercase;
}

.section-dark .testimonial-author {
  color: #b8c4d0;
}

.testimonial-author strong {
  color: var(--bv-cyan);
  font-weight: 700;
}

/* Multi-testimonial grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--bv-border-light);
  padding: 2.75rem 2.25rem;
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--card-shadow);
}

.section-dark .testimonial-card {
  background: #1a2030;
  border-color: var(--bv-border-dark);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(1,184,224,0.35);
}

.testimonial-card-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--bv-cyan);
  height: 1rem;
}

.testimonial-card-quote {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bv-black);
}

.section-dark .testimonial-card-quote {
  color: var(--bv-off-white);
}

.testimonial-card-author {
  padding-top: 1.25rem;
  border-top: 1px solid var(--bv-border-light);
}

.section-dark .testimonial-card-author {
  border-top-color: var(--bv-border-dark);
}

.testimonial-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bv-black);
  margin-bottom: 0.15rem;
}

.section-dark .testimonial-card-name {
  color: var(--bv-off-white);
}

.testimonial-card-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--bv-muted-light);
  text-transform: uppercase;
}

.section-dark .testimonial-card-role {
  color: #b8c4d0;
}

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

.cta-section {
  background: var(--bv-black);
  color: var(--bv-off-white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
}

.cta-section h2 .accent {
  color: var(--bv-cyan);
  font-style: italic;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}

.cta-section p {
  font-size: 1.15rem;
  color: #b8c4d0;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .cta-section p {
    white-space: normal;
    max-width: 600px;
  }
}

/* ============================================
   Forms
   ============================================ */

.contact-form {
  display: grid;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bv-black);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bv-cyan);
  background: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2301b8e0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: #f8fafc;
  padding-right: 2.5rem;
}

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

.footer {
  background: #ffffff;
  color: var(--bv-black);
  padding: 4rem 0 2rem;
  border-top: 1px solid #e5e7eb;
}

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

.footer-brand .logo {
  margin-bottom: 1.5rem;
  color: var(--bv-black);
}

.footer-brand p {
  color: #4b5563;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-cyan);
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  color: #4b5563;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--bv-cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  font-family: var(--font-mono);
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */

.page-header {
  background: var(--bv-black);
  color: var(--bv-off-white);
  min-height: 240px;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 184, 224, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-header .container {
  padding-top: 5rem;
  padding-bottom: 4rem;
  width: 100%;
}

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

.page-header h1 {
  margin-bottom: 1.5rem;
}

.page-header h1 .accent {
  color: var(--bv-cyan);
  font-style: italic;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}

.page-header p {
  font-size: 1.2rem;
  color: #b8c4d0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   About Page
   ============================================ */

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--bv-muted-light);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.section-dark .about-text p {
  color: #b8c4d0;
}

.about-visual {
  aspect-ratio: 4/5;
  background: var(--bv-black);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 2rem;
  border: 2px solid var(--bv-cyan);
  border-radius: 4px;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/bv-logo.png') center center / 55% auto no-repeat;

}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--bv-border-light);
  border-top: 3px solid var(--bv-cyan);
  border-radius: var(--card-radius);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--bv-muted-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-dark .value-card {
  background: #222c3e;
  border: 1px solid rgba(1, 184, 224, 0.15);
  border-top: 3px solid var(--bv-cyan);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.section-dark .value-card p {
  color: #b8c4d0;
}

/* ============================================
   Service Detail Blocks
   ============================================ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--bv-border-light);
}

.section-dark .service-detail {
  border-bottom-color: var(--bv-border-dark);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-content .eyebrow {
  color: var(--bv-cyan);
}

.service-detail-content h2 {
  margin-bottom: 1.25rem;
}

.service-detail-content p {
  color: var(--bv-muted-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.section-dark .service-detail-content p {
  color: #b8c4d0;
}

.service-detail-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-detail-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-detail-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--bv-cyan);
  font-weight: 700;
}

.service-visual {
  aspect-ratio: 5/4;
  background: var(--bv-black);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual.mint {
  background: var(--bv-mint);
}

.service-visual.cyan {
  background: var(--bv-cyan);
}

.service-visual-icon {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: var(--bv-cyan);
  letter-spacing: -0.05em;
}

.service-visual.mint .service-visual-icon,
.service-visual.cyan .service-visual-icon {
  color: var(--bv-black);
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.service-visual.mint::before,
.service-visual.cyan::before {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-info p {
  color: var(--bv-muted-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 0;
}

.contact-detail {
  padding: 1.25rem 0;
  border-top: 1px solid var(--bv-border-light);
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-cyan);
  margin-bottom: 0.4rem;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bv-black);
}

.contact-detail-value a:hover {
  color: var(--bv-cyan);
}

.contact-form-wrap {
  background: #fff;
  color: var(--bv-black);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
}

.contact-form-wrap::before {
  display: none;
}

.contact-form-wrap h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  position: relative;
  color: var(--bv-black);
}

.contact-form-wrap > p {
  color: var(--bv-muted-light);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-form-wrap form {
  position: relative;
}

.form-submit {
  margin-top: 0.75rem;
}

/* ============================================
   Photography Portfolio Grid
   ============================================ */

.portfolio-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--bv-border-light);
}

.section-dark .portfolio-section {
  border-bottom-color: var(--bv-border-dark);
}

.portfolio-section:last-of-type {
  border-bottom: none;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.portfolio-header-text {
  max-width: 560px;
}

.portfolio-header h2 {
  margin-bottom: 0.75rem;
}

.portfolio-header p {
  color: var(--bv-muted-light);
  font-size: 1.05rem;
}

.section-dark .portfolio-header p {
  color: #b8c4d0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid.mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}

.portfolio-grid.mosaic .portfolio-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-grid.mosaic .portfolio-item:nth-child(4) {
  grid-column: span 2;
}

.portfolio-item {
  aspect-ratio: 4/5;
  background: var(--bv-dark-gray);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-grid.mosaic .portfolio-item {
  aspect-ratio: auto;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--bv-off-white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-label {
  opacity: 1;
}

/* ============================================
   Email Flow Previews (blurred)
   ============================================ */

.email-flows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.email-flow-card {
  background: var(--bv-off-white);
  border: 1px solid var(--bv-border-light);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.section-dark .email-flow-card {
  background: #222c3e;
  border-color: rgba(1, 184, 224, 0.2);
  border-top: 2px solid var(--bv-cyan);
  isolation: isolate;
}

.email-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.email-flow-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--bv-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.section-dark .email-flow-header {
  border-bottom-color: rgba(1, 184, 224, 0.15);
}

.email-flow-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.email-flow-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--bv-cyan);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--bv-cyan);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.email-flow-preview {
  padding: 1.5rem 1.75rem;
  position: relative;
  flex: 1;
}

.email-step {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--bv-border-light);
  align-items: center;
}

.section-dark .email-step {
  border-bottom-color: var(--bv-border-dark);
}

.email-step:last-child {
  border-bottom: none;
}

.email-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--bv-cyan);
  font-weight: 600;
  min-width: 28px;
}

.email-step-body {
  flex: 1;
}

.email-step-subject {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.email-step-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--bv-muted-light);
}

.section-dark .email-step-meta {
  color: #b8c4d0;
}

.email-step.blurred .email-step-subject,
.email-step.blurred .email-step-meta {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.email-flow-footer {
  padding: 1.5rem 1.75rem;
  background: #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--bv-border-light);
}

.section-dark .email-flow-footer {
  background: #0d0d0d;
  border-top-color: var(--bv-border-dark);
}

.email-flow-footer-text {
  font-size: 0.85rem;
  color: var(--bv-muted-light);
}

.section-dark .email-flow-footer-text {
  color: #b8c4d0;
}

.email-flow-unlock {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bv-cyan);
  white-space: nowrap;
}

.email-flow-unlock:hover {
  text-decoration: underline;
}

/* ============================================
   GHL Feature Cards w/ Screenshots
   ============================================ */

.ghl-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ghl-feature {
  background: var(--bv-off-white);
  border: 1px solid var(--bv-border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-dark .ghl-feature {
  background: #1a2030;
  border-color: var(--bv-border-dark);
}

.ghl-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ghl-feature-image {
  aspect-ratio: 16/10;
  background: var(--bv-black);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--bv-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-dark .ghl-feature-image {
  background: #0d0d0d;
  border-bottom-color: var(--bv-border-dark);
}

.ghl-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ghl-feature-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ghl-feature-body {
  padding: 1.75rem;
}

.ghl-feature-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--bv-cyan);
  margin-bottom: 0.75rem;
}

.ghl-feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.ghl-feature p {
  color: var(--bv-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-dark .ghl-feature p {
  color: #b8c4d0;
}

/* ============================================
   Ad Preview Mockups
   ============================================ */

.ads-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.ads-hero-main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 480px;
  background: var(--bv-black);
}

.ads-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.ads-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--bv-off-white);
}

.ads-hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--bv-cyan);
  margin-bottom: 0.75rem;
}

.ads-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ads-hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ads-hero-stat .stat-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bv-cyan);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.ads-hero-stat .stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #b8c4d0;
}

.ads-hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.ads-hero-side .ads-hero-main {
  min-height: 0;
}

.ads-hero-side .ads-hero-overlay {
  padding: 1.75rem;
}

.ads-hero-side .ads-hero-headline {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.ads-hero-side .ads-hero-stats {
  gap: 1.25rem;
  padding-top: 1rem;
}

.ads-hero-side .ads-hero-stat .stat-val {
  font-size: 1.35rem;
}

.ad-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ad-mockup {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bv-off-white);
  border: 1px solid var(--bv-border-light);
  transition: transform 0.3s ease;
}

.section-dark .ad-mockup {
  background: #1a2030;
  border-color: var(--bv-border-dark);
}

.ad-mockup:hover {
  transform: translateY(-4px);
}

.ad-mockup-img {
  aspect-ratio: 1/1;
  background: #f0f0f0;
  overflow: hidden;
}

.section-dark .ad-mockup-img {
  background: #0d0d0d;
}

.ad-mockup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-mockup-body {
  padding: 1.25rem;
}

.ad-mockup-platform {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--bv-cyan);
  margin-bottom: 0.4rem;
}

.ad-mockup-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.ad-mockup-result {
  font-size: 0.85rem;
  color: var(--bv-muted-light);
}

.section-dark .ad-mockup-result {
  color: #b8c4d0;
}

.ad-mockup-result strong {
  color: var(--bv-cyan);
}

/* ============================================
   Inline CTA (between portfolio sections)
   ============================================ */

.inline-cta {
  background: #ffffff;
  color: var(--bv-black);
  padding: 3rem 2.5rem;
  border-radius: 6px;
  border: 2px solid var(--bv-cyan);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.inline-cta--dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(1, 184, 224, 0.2), transparent 70%);
  pointer-events: none;
}

.inline-cta-text {
  position: relative;
  z-index: 1;
}

.inline-cta-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.4rem;
  color: var(--bv-black);
}

.inline-cta-text p {
  color: var(--bv-muted-light);
  font-size: 0.95rem;
}

.inline-cta .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   Friendly signature / solo voice
   ============================================ */

.signature {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--bv-mint);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--bv-black);
  letter-spacing: 0.05em;
}

.signature-dot {
  width: 8px;
  height: 8px;
  background: var(--bv-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   Platform Cards (ads/social pages)
   ============================================ */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.platform-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(1, 184, 224, 0.2);
  background: #222c3e;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-light .platform-card {
  background: var(--bv-off-white);
  border-color: var(--bv-border-light);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--bv-cyan);
  box-shadow: 0 20px 40px rgba(1, 184, 224, 0.1);
}

.platform-icon {
  width: 42px;
  height: 42px;
  color: var(--bv-cyan);
  margin-bottom: 1.5rem;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.platform-card p {
  color: #b8c4d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-light .platform-card p {
  color: var(--bv-muted-light);
}

/* Stat Stack (for experience blocks) */
.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-block {
  background: var(--bv-black);
  border: 1px solid rgba(1, 184, 224, 0.25);
  border-radius: 4px;
  padding: 2rem;
  color: var(--bv-off-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bv-cyan);
}

.stat-block-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bv-cyan);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-block-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #b8c4d0;
  text-align: right;
  max-width: 140px;
}

/* ============================================
   Custom GHL Graphics (SVG-styled divs)
   ============================================ */

.ghl-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #0d0d0d;
  position: relative;
}

/* KPI Dashboard mockup */
.ghl-graphic-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  height: 100%;
}

.ghl-tile {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.ghl-tile-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-transform: uppercase;
}

.ghl-tile-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bv-cyan);
  line-height: 1;
}

.ghl-tile-bar {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 16px;
  margin-top: 0.25rem;
}

.ghl-tile-bar span {
  flex: 1;
  background: rgba(1, 184, 224, 0.3);
  border-radius: 1px;
}

.ghl-tile-bar span:nth-child(1) { height: 30%; }
.ghl-tile-bar span:nth-child(2) { height: 50%; }
.ghl-tile-bar span:nth-child(3) { height: 70%; }
.ghl-tile-bar span:nth-child(4) { height: 45%; background: var(--bv-cyan); }
.ghl-tile-bar span:nth-child(5) { height: 90%; background: var(--bv-cyan); }
.ghl-tile-bar span:nth-child(6) { height: 65%; }

/* Pipeline kanban mockup */
.ghl-graphic-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: 100%;
  height: 100%;
}

.ghl-column {
  background: #151515;
  border-radius: 4px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ghl-column-head {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--bv-cyan);
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 0.2rem;
}

.ghl-lead {
  background: #222;
  border-left: 2px solid var(--bv-cyan);
  padding: 0.4rem 0.5rem;
  border-radius: 2px;
  font-size: 0.6rem;
  color: #ccc;
}

.ghl-lead-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
  font-size: 0.65rem;
}

.ghl-lead-meta {
  font-family: var(--font-mono);
  color: #6b7280;
  font-size: 0.55rem;
}

/* Workflow mockup */
.ghl-graphic-workflow {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding: 1rem;
  gap: 0.5rem;
}

.ghl-node {
  background: #1a1a1a;
  border: 1px solid var(--bv-cyan);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
  position: relative;
  min-width: 70px;
}

.ghl-node.trigger {
  background: var(--bv-cyan);
  color: var(--bv-black);
  font-weight: 700;
}

.ghl-node-connector {
  flex: 1;
  height: 2px;
  background: var(--bv-cyan);
  opacity: 0.5;
  position: relative;
}

.ghl-node-connector::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--bv-cyan);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Lead form mockup */
.ghl-graphic-form {
  width: 70%;
  max-width: 220px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 1rem;
}

.ghl-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.ghl-form-field {
  height: 18px;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}

.ghl-form-field.filled {
  background: linear-gradient(90deg, #1a1a1a 0%, #0d0d0d 40%);
}

.ghl-form-submit {
  background: var(--bv-cyan);
  color: var(--bv-black);
  padding: 0.4rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.4rem;
}

/* SMS/Email inbox */
.ghl-graphic-inbox {
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ghl-msg {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #1a1a1a;
  border-radius: 4px;
  align-items: start;
}

.ghl-msg-avatar {
  width: 20px;
  height: 20px;
  background: var(--bv-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--bv-black);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.ghl-msg-body {
  flex: 1;
  min-width: 0;
}

.ghl-msg-name {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
}

.ghl-msg-text {
  color: #9ca3af;
  font-size: 0.6rem;
  line-height: 1.3;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ghl-msg-badge {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: rgba(1, 184, 224, 0.15);
  color: var(--bv-cyan);
  flex-shrink: 0;
}

/* Training/playbook */
.ghl-graphic-training {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
}

.ghl-play-button {
  width: 50px;
  height: 50px;
  background: var(--bv-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ghl-play-button::after {
  content: '';
  border-left: 14px solid var(--bv-black);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.ghl-doc-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ghl-doc-line {
  height: 6px;
  background: #2a2a2a;
  border-radius: 2px;
}

.ghl-doc-line.short { width: 60%; }
.ghl-doc-line.accent { background: var(--bv-cyan); width: 40%; }

/* Content calendar for social page */
.social-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  background: #0d0d0d;
  padding: 1.5rem;
  border-radius: 8px;
  aspect-ratio: 16/9;
}

.social-calendar-head {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--bv-cyan);
  text-align: center;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #2a2a2a;
}

.social-day {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0.4rem;
  font-size: 0.6rem;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 0;
  overflow: hidden;
}

.social-day-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #6b7280;
  font-weight: 600;
}

.social-post {
  background: rgba(1, 184, 224, 0.15);
  border-left: 2px solid var(--bv-cyan);
  padding: 0.2rem 0.35rem;
  border-radius: 2px;
  font-size: 0.55rem;
  color: #fff;
  line-height: 1.2;
}

.social-post.alt {
  background: rgba(214, 255, 245, 0.08);
  border-left-color: var(--bv-mint);
  color: var(--bv-mint);
}

/* ============================================
   Booking Page (calendar + time picker)
   ============================================ */

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

.booking-info h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.booking-info p {
  color: var(--bv-muted-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.booking-facts {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  padding: 0;
}

.booking-fact {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-fact:hover {
  border-color: rgba(1,184,224,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.booking-fact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--bv-cyan);
}

.booking-fact-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
  color: var(--bv-black);
}

.booking-fact-text span {
  font-size: 0.88rem;
  color: var(--bv-muted-light);
}

/* Booking widget - clean white card */
.booking-widget {
  background: #fff;
  color: var(--bv-black);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.booking-widget::before {
  display: none;
}

.booking-widget-header {
  padding: 1.25rem 1.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: #1a2030;
}

.booking-widget-header h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.booking-widget-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.booking-step {
  position: relative;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.booking-step:last-child {
  border-bottom: none;
}

.booking-step-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--bv-cyan);
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

/* Calendar */
.booking-calendar {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.875rem;
}

.booking-cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.booking-cal-month {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bv-black);
}

.booking-cal-nav-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: var(--bv-black);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.booking-cal-nav-btn:hover:not(:disabled) {
  border-color: var(--bv-cyan);
  color: var(--bv-cyan);
}

.booking-cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.booking-cal-header-cell {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: #9ca3af;
  text-align: center;
  padding: 0.35rem 0;
}

.booking-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--bv-black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}

.booking-cal-day.empty {
  visibility: hidden;
  cursor: default;
}

.booking-cal-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.booking-cal-day:not(.disabled):not(.empty):hover {
  background: rgba(1, 184, 224, 0.08);
  border-color: rgba(1,184,224,0.3);
}

.booking-cal-day.selected {
  background: var(--bv-cyan);
  color: var(--bv-black);
  font-weight: 700;
  border-color: var(--bv-cyan);
}

.booking-cal-day.today:not(.selected) {
  border-color: rgba(1, 184, 224, 0.4);
  font-weight: 600;
}

/* Time slots */
.booking-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.booking-slot {
  padding: 0.4rem 0.35rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: var(--bv-black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.booking-slot:hover {
  border-color: var(--bv-cyan);
  color: var(--bv-cyan);
  background: rgba(1,184,224,0.04);
}

.booking-slot.selected {
  background: var(--bv-cyan);
  color: var(--bv-black);
  border-color: var(--bv-cyan);
  font-weight: 700;
}

.booking-slots-empty {
  color: #9ca3af;
  font-size: 0.875rem;
  padding: 1.25rem;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
}

/* Final form details */
.booking-details {
  display: grid;
  gap: 0.75rem;
}

.booking-details .form-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.booking-details .form-group input,
.booking-details .form-group textarea {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  color: var(--bv-black);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.booking-details .form-group input:focus,
.booking-details .form-group textarea:focus {
  border-color: var(--bv-cyan);
  outline: none;
  background: #fff;
}

.booking-summary {
  padding: 1rem 1.25rem;
  background: rgba(1, 184, 224, 0.06);
  border: 1px solid rgba(1, 184, 224, 0.2);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--bv-black);
}

.booking-summary strong {
  color: var(--bv-cyan);
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.booking-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .booking-widget {
    border-radius: 14px;
  }

  .booking-step {
    padding: 1.5rem;
  }

  .booking-widget-header {
    padding: 1.5rem;
  }

  .booking-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}
  border: 1px solid rgba(1, 184, 224, 0.2);
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--bv-off-white);
}

.booking-summary strong {
  color: var(--bv-cyan);
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.booking-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .booking-widget {
    padding: 1.5rem;
  }

  .booking-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

.clients-section {
  padding: 4rem 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-header .eyebrow {
  margin-bottom: 0.75rem;
}

.clients-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bv-border-light);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.section-dark .client-logo {
  background: #1e2a3b;
  border-color: var(--bv-border-dark);
  isolation: isolate;
}

.client-logo:hover {
  border-color: var(--bv-cyan);
  background: rgba(1, 184, 224, 0.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.client-logo:hover img {
  opacity: 1;
}

/* Placeholder text for when logos aren't uploaded yet */
.client-logo-placeholder {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #b8c4d0;
  text-align: center;
  text-transform: uppercase;
}

.section-light .client-logo-placeholder {
  color: var(--bv-muted-light);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* Universal card hover - cyan border + lift on all box elements */
.value-card:hover {
  border-color: var(--bv-cyan);
  border-top-color: var(--bv-cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(1, 184, 224, 0.12);
}

.process-step:hover {
  border-top-color: var(--bv-cyan);
  border-color: var(--bv-cyan);
  box-shadow: 0 0 0 1px var(--bv-cyan);
  transform: none;
}

.section-dark .process-step:hover {
  border-color: var(--bv-cyan);
  box-shadow: 0 0 0 1px var(--bv-cyan);
}

.stat-block:hover {
  border-color: var(--bv-cyan);
  box-shadow: 0 0 0 2px var(--bv-cyan);
}

.booking-fact:hover {
  border-color: var(--bv-cyan);
  transform: translateY(-2px);
}

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

@media (max-width: 900px) {
  .hero .logo-sub,
.page-header .logo-sub,
.section-dark .logo-sub,
.footer .logo-sub {
  color: var(--bv-black) !important;
}

.nav .logo-sub {
  color: var(--bv-black);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    min-width: 0;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .contact-form-wrap {
    padding: 2rem;
  }

  .portfolio-grid,
  .portfolio-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid.mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .portfolio-grid.mosaic .portfolio-item:nth-child(1),
  .portfolio-grid.mosaic .portfolio-item:nth-child(4) {
    grid-column: span 2;
  }

  .ghl-features {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    padding: 2rem;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ads-hero {
    grid-template-columns: 1fr;
  }

  .ads-hero-main {
    min-height: 320px;
  }

  .ads-hero-side {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .ads-hero-side .ads-hero-main {
    min-height: 280px;
  }

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

  .social-calendar {
    gap: 0.3rem;
    padding: 1rem;
  }

  .social-post {
    font-size: 0.5rem;
  }
}

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

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

@media (max-width: 900px) and (min-width: 601px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}


/* ============================================
   MOBILE-ONLY FIXES (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {

  /* --- NAV: center all items, aligned properly --- */
  .nav-links {
    align-items: center;
    text-align: center;
  }

  .nav-links > li:not(.nav-dropdown) {
    width: 100%;
    text-align: center;
  }

  .nav-links > li:not(.nav-dropdown) a {
    display: block;
    width: 100%;
    text-align: center;
  }

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

  .nav-dropdown-toggle {
    justify-content: center;
    gap: 0.5rem;
  }

  /* Dropdown sub-items: visible, dark on white bg */
  .nav-dropdown-menu {
    padding: 0.5rem 0;
  }

  .nav-dropdown-menu a {
    color: var(--bv-black) !important;
    opacity: 1 !important;
    text-align: center;
    padding: 0.5rem 1rem;
    display: block;
  }

  .nav-dropdown-menu a:hover {
    color: var(--bv-cyan) !important;
  }

  /* --- ADS PAGE: results stats stack to single column --- */
  .results-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .results-stat-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(1,184,224,0.12);
    padding: 1.5rem 1rem !important;
  }

  .results-stat-col:last-child {
    border-bottom: none;
  }

  /* --- SOCIAL CALENDAR: scale down to fit --- */
  .social-calendar {
    aspect-ratio: auto;
    gap: 0.25rem;
    padding: 0.75rem;
    overflow-x: auto;
    min-width: 0;
  }

  .social-calendar-head {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }

  .social-day {
    font-size: 0.5rem;
    padding: 0.25rem;
    min-height: 48px;
  }

  .social-day-num {
    font-size: 0.55rem;
  }

  .social-post {
    font-size: 0.48rem;
    padding: 0.15rem 0.25rem;
  }

  /* --- DEMO TRIP CARDS: side by side on mobile --- */
  .rb-trip-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  .rb-trip-img {
    height: 120px !important;
  }

}


/* ============================================================
   ZOOM-INSPIRED STYLE LAYER
   Applied on top of existing brand — revert to style-pre-zoom.css to undo
   ============================================================ */

/* --- Breathing room: more generous section padding --- */
.section {
  padding: 6rem 0;
}

.page-header {
  padding: 7rem 0 5rem;
}

/* --- Section headers: tighter, more centered authority --- */
.section-header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* --- Eyebrow labels: smaller, more refined --- */
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
}

/* --- Hero: bigger, more commanding --- */
.page-header h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  max-width: 820px;
  margin: 0 auto 1.25rem;
}

.page-header-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.page-header-content p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* --- Buttons: pill shape like Zoom --- */
.btn {
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  gap: 0.5rem;
}

.btn-primary {
  box-shadow: 0 2px 12px rgba(1, 184, 224, 0.35);
  transition: box-shadow 0.2s, transform 0.15s;
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(1, 184, 224, 0.5);
  transform: translateY(-1px);
}

/* --- Nav: slightly taller, cleaner --- */
.nav {
  padding: 0;
}

.nav-container {
  height: 68px;
}

/* --- Cards: softer, more Zoom-like --- */
.value-card {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.value-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* --- Service cards on home --- */
.service-card {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* --- CTA section: more centered, tighter --- */
.cta-section {
  padding: 7rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* --- Stats: Zoom-style horizontal strip --- */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--bv-border-light);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--bv-border-light);
  transition: background 0.15s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: #f8f9fa;
}

/* --- Testimonial cards: cleaner --- */
.testimonial-card {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* --- Process steps: more distinct --- */
.process-step {
  border-radius: 12px;
  transition: box-shadow 0.2s;
}

.process-step.active {
  box-shadow: 0 4px 24px rgba(1,184,224,0.15);
}

/* --- Inline CTA: pill button inside --- */
.inline-cta {
  border-radius: 12px;
}

.inline-cta .btn {
  white-space: nowrap;
}

/* --- About grid: more balanced --- */
.about-grid {
  gap: 5rem;
}

/* --- Portfolio items: rounded --- */
.portfolio-item {
  border-radius: 10px;
}

/* --- Footer: slightly more breathing room --- */
.footer {
  padding: 5rem 0 2.5rem;
}

/* --- Section transitions: soft gradient dividers between light sections --- */
.section-light + .section-mint,
.section-mint + .section-light {
  position: relative;
}

/* --- Hero fade-in animations: slightly longer, smoother --- */
.fade-in {
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Mobile refinements --- */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 5rem 0 3.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .btn {
    padding: 0.8rem 1.75rem;
  }

  .cta-section {
    padding: 5rem 0;
  }
}


/* ============================================================
   LOGO MARQUEE STRIP (Zoom-style)
   ============================================================ */
/* ============================================================
   FEATURE ROWS (ZenBusiness-style alternating layout)
   ============================================================ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: none;
}



.section-dark .feature-row {
  border-bottom-color: rgba(255,255,255,0.06);
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-row-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-row-text .eyebrow {
  margin-bottom: 0;
}

.feature-row-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0;
}

.feature-row-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--bv-muted-light);
  margin: 0;
}

.section-dark .feature-row-text p {
  color: #b8c4d0;
}

.feature-row-text .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-row-text .feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--bv-muted-light);
  line-height: 1.5;
}

.section-dark .feature-row-text .feature-bullets li {
  color: #b8c4d0;
}

.feature-row-text .feature-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--bv-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.feature-row-visual {
  position: relative;
}

.feature-visual-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid var(--bv-border-light);
}

.section-dark .feature-visual-card {
  background: #1e2a3a;
  border-color: rgba(1,184,224,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* Value cards - ZenBusiness style */
.value-card-zen {
  background: #fff;
  border: 1px solid var(--bv-border-light);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card-zen:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(1,184,224,0.3);
}

.value-card-zen .vc-icon {
  width: 48px;
  height: 48px;
  background: rgba(1,184,224,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card-zen h3 {
  font-size: 1.2rem;
  color: var(--bv-black);
  margin: 0;
}

.value-card-zen p {
  font-size: 0.95rem;
  color: var(--bv-muted-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .feature-row.reverse {
    direction: ltr;
  }
}

.logo-marquee-section {
  background: var(--bv-off-white);
  border-top: 1px solid var(--bv-border-light);
  border-bottom: 1px solid var(--bv-border-light);
  padding: 3rem 0;
  overflow: hidden;
}

.logo-marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-muted-light);
  margin-bottom: 2rem;
}

.logo-marquee-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
}

/* marquee: no pause on hover */

/* Industry hero overrides global page-header .container padding */
.industry-hero.page-header .container {
  padding-top: 9rem;
  padding-bottom: 3rem;
}

.industry-hero.page-header {
  min-height: 560px;
  padding: 0 !important;
  display: flex;
  align-items: center;
}

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

.logo-marquee-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 72px;
  padding: 0 24px;
  box-sizing: border-box;
}

.logo-marquee-logo img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.8;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  display: block;
}

.logo-marquee-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================================
   ZOOM-STYLE PROCESS STEPS
   ============================================================ */
.process-steps-zoom {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step-zoom {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.process-step-zoom:hover {
  background: rgba(1,184,224,0.06);
  border-color: rgba(1,184,224,0.25);
}

.process-step-zoom-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-zoom-num.active {
  background: var(--bv-cyan);
  border-color: var(--bv-cyan);
}

.process-step-zoom-num span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.process-step-zoom-num.active span {
  color: var(--bv-black);
}

.process-step-zoom-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bv-off-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step-zoom-content p {
  font-size: 0.85rem;
  color: #b8c4d0;
  line-height: 1.7;
}

.process-step-zoom-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
}

.process-step-zoom-connector::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(1,184,224,0.3);
}

@media (max-width: 900px) {
  .process-steps-zoom {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 480px;
  }
  .process-step-zoom-connector {
    display: none;
  }
}

/* Social page - 3 columns for even split */
.social-values-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Hero layout fixes */
@media (max-width: 1100px) {
  .hero-side-cards { display: none !important; }
  .hero-content { max-width: 100% !important; }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  line-height: 1.08 !important;
}

/* ============================================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================================ */

/* --- Hero: stack on mobile --- */
@media (max-width: 860px) {
  .hero .container[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
  }
  .hero-side-cards { display: none !important; }
}

/* --- Feature rows: stack on mobile --- */
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2rem 0 !important;
  }
  .feature-row.reverse {
    direction: ltr !important;
  }
  .feature-row-visual {
    order: -1;
  }
  .feature-visual-card {
    max-width: 100% !important;
  }
}

/* --- About/contact 2-col grids --- */
@media (max-width: 768px) {
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .contact-form-wrap {
    padding: 1.75rem !important;
    border-radius: 14px !important;
  }
}

/* --- Process steps: 2-col then 1-col --- */
@media (max-width: 860px) {
  .reveal[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  .reveal[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Platform / value card grids: 2-col then 1-col --- */
@media (max-width: 860px) {
  .values-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(2,1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Ad type cards (3-col) --- */
@media (max-width: 900px) {
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Ecommerce platform cards (2-col) --- */
@media (max-width: 768px) {
  div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Customer journey timeline --- */
@media (max-width: 600px) {
  .booking-widget-header {
    padding: 1.25rem 1.5rem !important;
  }
  .booking-step {
    padding: 1.25rem 1.5rem !important;
  }
  .booking-slots {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* --- Footer: 2-col then 1-col --- */
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
  }
}

/* --- Page header shrink --- */
@media (max-width: 600px) {
  .page-header {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }
  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3.25rem) !important;
  }
  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem) !important;
  }
}

/* --- CTA section --- */
@media (max-width: 600px) {
  .cta-section {
    padding: 4rem 1.5rem !important;
  }
  .cta-section h2 {
    font-size: clamp(1.75rem, 7vw, 2.75rem) !important;
  }
  .inline-cta {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* --- Nav: ensure proper mobile layout --- */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 1.25rem !important;
  }
}

/* --- Marquee: reduce container height on mobile --- */
@media (max-width: 600px) {
  .logo-marquee-section {
    padding: 2rem 0 !important;
  }
  .logo-marquee-logo {
    width: 120px !important;
    height: 60px !important;
    padding: 0 12px !important;
  }
  .logo-marquee-logo img {
    max-height: 36px !important;
    max-width: 96px !important;
  }
}

/* --- GHL features: already stacks, just ensure images don't overflow --- */
@media (max-width: 768px) {
  .ghl-feature-image {
    max-height: 280px !important;
  }
}

/* --- Booking widget: full width on small screens --- */
@media (max-width: 400px) {
  .booking-slots {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- Form rows always 1 col on mobile --- */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* ── About page 3-col story on mobile ── */
@media (max-width: 900px) {
  div[style*="grid-template-columns:1fr 1.1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Ads journey 4-col on mobile ── */
@media (max-width: 768px) {
  div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── About page: photo+card row stacks on mobile ── */
@media (max-width: 600px) {
  .about-intro-row {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ── About page 3-col stacks on tablet/mobile ── */
@media (max-width: 960px) {
  div[style*="grid-template-columns:220px 1fr 260px"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  div[style*="grid-template-columns:220px 1fr 260px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   MOBILE OVERFLOW FIX - prevents horizontal scroll on all pages
   ============================================================ */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Global: every element respects viewport width ── */
*, *::before, *::after {
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Nav ── */
@media (max-width: 768px) {
  .nav-container { padding: 0 1rem; }
  .logo-text { display: none; }
}

/* ── Hero ── */
@media (max-width: 860px) {
  .hero .container {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
    gap: 2rem !important;
  }
  .hero-side-cards { display: none !important; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .hero-subtitle { font-size: 1rem !important; }
  .hero .fade-in[style*="display:flex"][style*="gap:2.5rem"] {
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
  }
}

/* ── Page headers ── */
@media (max-width: 600px) {
  .page-header .container {
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
  }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.75rem) !important; }
  .page-header p { font-size: 1rem !important; }
}

/* ── Feature rows ── */
@media (max-width: 768px) {
  .feature-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .feature-row.reverse { flex-direction: column !important; }
  .feature-visual-card { overflow: hidden; }
}

/* ── Grids: collapse all to 1 col on mobile ── */
@media (max-width: 640px) {
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  .form-row,
  .services-grid,
  .values-grid,
  .testimonials-grid {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── About page 3-col ── */
@media (max-width: 900px) {
  [style*="grid-template-columns:280px 1fr 260px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
}

/* ── GHL features ── */
@media (max-width: 768px) {
  .ghl-features { grid-template-columns: 1fr !important; }
  .ghl-feature { flex-direction: column !important; }
}

/* ── Email flow cards ── */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 0"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── Booking ── */
@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
@media (max-width: 500px) {
  .booking-slots { grid-template-columns: repeat(3,1fr) !important; }
  .booking-step { padding: 1rem 1.25rem !important; }
  .booking-widget-header { padding: 1rem 1.25rem !important; }
}

/* ── Ads journey 4-col ── */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── Pricing ── */
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* ── Process steps 4-col ── */
@media (max-width: 800px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Ad type cards 3-col ── */
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── Full-stack 5-col (LSA + + Branded + + pMax) ── */
@media (max-width: 640px) {
  [style*="grid-template-columns: 1fr 24px 1fr 24px 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  [style*="grid-template-columns: 1fr 24px 1fr 24px 1fr"] > [style*="text-align: center"] {
    display: none !important;
  }
}

/* ── Social platform cards 2-col ── */
@media (max-width: 640px) {
  #platform-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Contact / booking info grids ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ── Inline CTA ── */
@media (max-width: 640px) {
  .inline-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  [style*="Full-width inline CTA"] > div {
    flex-direction: column !important;
  }
}

/* ── Industry hero ── */
@media (max-width: 640px) {
  .industry-hero.page-header .container {
    padding-top: 6rem !important;
    padding-bottom: 2rem !important;
  }
}

/* ── Footer ── */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 0.5rem !important; }
}

/* ── CTA section ── */
@media (max-width: 640px) {
  .cta-section { padding: 4rem 1.5rem !important; }
  .cta-section h2 { font-size: clamp(1.6rem, 7vw, 2.5rem) !important; }
}

/* ── Marquee ── */
@media (max-width: 480px) {
  .logo-marquee-logo { width: 120px !important; }
  .logo-marquee-logo img { max-height: 36px !important; }
}

/* ── Tables / wide cards overflow ── */
@media (max-width: 640px) {
  .feature-visual-card,
  [style*="overflow:hidden"][style*="border-radius"] {
    overflow: hidden;
  }
}

/* ── Section headers ── */
@media (max-width: 600px) {
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2.25rem) !important; }
}

/* ── Section-y padding on mobile ── */
@media (max-width: 600px) {
  .section { padding: 3rem 0 !important; }
}

/* ── Proof bar stats ── */
@media (max-width: 640px) {
  [style*="display:flex;gap:2.5rem;align-items:center"] {
    flex-wrap: wrap !important;
    gap: 1.25rem !important;
    justify-content: center !important;
  }
}
