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

:root {
  --bv-black: #0A0A0A;
  --bv-off-white: #F8F8F8;
  --bv-cyan: #00C8A0;
  --bv-cyan-hover: #00B090;
  --bv-dark-gray: #3A3A3A;
  --bv-mint: #D6FFF5;
  --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: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1280px;
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* 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.05;
  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.75rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  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(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bv-border-dark);
  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-off-white);
}

.logo-mark {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.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;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--bv-cyan);
  margin-top: 0.15rem;
}

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

.nav-links a {
  color: var(--bv-off-white);
  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-off-white);
  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: #141414;
  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(0, 200, 160, 0.1);
  color: var(--bv-cyan);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bv-off-white);
  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(0, 200, 160, 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(0, 200, 160, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 160, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 160, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  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: var(--bv-muted-dark);
  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: var(--bv-muted-dark);
}

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

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

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

.section-dark .section-header p {
  color: var(--bv-muted-dark);
}

.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.5rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-dark .service-card {
  background: #141414;
  border-color: var(--bv-border-dark);
  color: var(--bv-off-white);
}

.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(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-dark .service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 200, 160, 0.1);
  border-color: var(--bv-cyan);
}

.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: var(--bv-muted-dark);
}

.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-top: 2rem;
  border-top: 2px solid var(--bv-border-light);
}

.section-dark .process-step {
  border-top-color: var(--bv-border-dark);
}

.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: var(--bv-muted-dark);
}

/* ============================================
   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: var(--bv-muted-dark);
}

.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: var(--bv-muted-dark);
  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: var(--bv-muted-dark);
}

.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: var(--bv-off-white);
  border: 1px solid var(--bv-border-light);
  padding: 2.25rem 2rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--bv-cyan);
}

.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: var(--bv-muted-dark);
}

/* ============================================
   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::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 200, 160, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.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: var(--bv-muted-dark);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

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

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

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

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bv-muted-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.section-dark .form-group label {
  color: var(--bv-muted-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--bv-border-light);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: inherit;
  transition: border-color 0.2s ease;
}

.section-dark .form-group input,
.section-dark .form-group select,
.section-dark .form-group textarea {
  border-bottom-color: var(--bv-border-dark);
  color: var(--bv-off-white);
}

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

.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='%2300C8A0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

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

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

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

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

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--bv-muted-dark);
  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: var(--bv-muted-dark);
  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 var(--bv-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--bv-muted-dark);
  font-family: var(--font-mono);
}

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

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

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 160, 0.2), transparent 70%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.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: var(--bv-muted-dark);
  max-width: 640px;
}

/* ============================================
   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: var(--bv-muted-dark);
}

.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: 'BV';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--bv-cyan);
  letter-spacing: -0.05em;
}

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

.value-card {
  padding: 2rem 0;
  border-top: 2px solid var(--bv-cyan);
}

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

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

.section-dark .value-card p {
  color: var(--bv-muted-dark);
}

/* ============================================
   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: var(--bv-muted-dark);
}

.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.5fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.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: 1.5rem;
}

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

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

.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

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

.contact-form-wrap {
  background: var(--bv-black);
  color: var(--bv-off-white);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 160, 0.15), transparent 70%);
  pointer-events: none;
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

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

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

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

/* ============================================
   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: var(--bv-muted-dark);
}

.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;
}

.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;
}

.section-dark .email-flow-card {
  background: #141414;
  border-color: var(--bv-border-dark);
}

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

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

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

.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.7rem;
  letter-spacing: 0.15em;
  color: var(--bv-cyan);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--bv-cyan);
  border-radius: 999px;
}

.email-flow-preview {
  padding: 1.5rem 1.75rem;
  position: relative;
  min-height: 260px;
}

.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: var(--bv-muted-dark);
}

.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: var(--bv-muted-dark);
}

.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: #141414;
  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: var(--bv-muted-dark);
}

/* ============================================
   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: var(--bv-muted-dark);
}

.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: #141414;
  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: var(--bv-muted-dark);
}

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

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

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

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

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

.inline-cta-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.inline-cta-text p {
  color: var(--bv-muted-dark);
  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 var(--bv-border-dark);
  background: #141414;
  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(0, 200, 160, 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: var(--bv-muted-dark);
  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 {
  padding: 2rem;
  background: var(--bv-black);
  color: var(--bv-off-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.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: var(--bv-muted-dark);
  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(0, 200, 160, 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(0, 200, 160, 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(0, 200, 160, 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.5fr;
  gap: 3rem;
  align-items: start;
}

.booking-info h2 {
  margin-bottom: 1rem;
}

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

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

.booking-fact {
  padding: 1.25rem 1.5rem;
  background: var(--bv-off-white);
  border-left: 3px solid var(--bv-cyan);
  border-radius: 4px;
  display: flex;
  gap: 1rem;
  align-items: start;
}

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

.booking-fact-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

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

.booking-widget {
  background: var(--bv-black);
  color: var(--bv-off-white);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.booking-widget::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 200, 160, 0.12), transparent 70%);
  pointer-events: none;
}

.booking-widget-header {
  position: relative;
  margin-bottom: 1.5rem;
}

.booking-widget-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.booking-widget-header p {
  color: var(--bv-muted-dark);
  font-size: 0.9rem;
}

.booking-step {
  position: relative;
  margin-bottom: 2rem;
}

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

/* Calendar */
.booking-calendar {
  background: #141414;
  border: 1px solid var(--bv-border-dark);
  border-radius: 6px;
  padding: 1.25rem;
}

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

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

.booking-cal-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--bv-border-dark);
  color: var(--bv-off-white);
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  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: 4px;
}

.booking-cal-header-cell {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--bv-muted-dark);
  text-align: center;
  padding: 0.5rem 0;
}

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

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

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

.booking-cal-day:not(.disabled):not(.empty):hover {
  background: rgba(0, 200, 160, 0.1);
  border-color: var(--bv-cyan);
}

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

.booking-cal-day.today:not(.selected) {
  border-color: rgba(0, 200, 160, 0.4);
}

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

.booking-slot {
  padding: 0.75rem 0.5rem;
  background: #141414;
  border: 1px solid var(--bv-border-dark);
  color: var(--bv-off-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.booking-slot:hover {
  border-color: var(--bv-cyan);
  color: var(--bv-cyan);
}

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

.booking-slots-empty {
  color: var(--bv-muted-dark);
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
  background: #141414;
  border: 1px dashed var(--bv-border-dark);
  border-radius: 4px;
}

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

.booking-details .form-group input,
.booking-details .form-group textarea {
  background: transparent;
  border-bottom-color: var(--bv-border-dark);
  color: var(--bv-off-white);
  padding: 0.6rem 0;
}

.booking-details .form-group input:focus,
.booking-details .form-group textarea:focus {
  border-bottom-color: var(--bv-cyan);
}

.booking-details .form-group label {
  color: var(--bv-muted-dark);
}

.booking-summary {
  padding: 1rem 1.25rem;
  background: rgba(0, 200, 160, 0.08);
  border: 1px solid rgba(0, 200, 160, 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: rgba(255, 255, 255, 0.025);
  border-color: var(--bv-border-dark);
}

.client-logo:hover {
  border-color: var(--bv-cyan);
  background: rgba(0, 200, 160, 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: var(--bv-muted-dark);
  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);
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bv-black);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--bv-border-dark);
  }

  .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;
  }
}
