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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #7c3aed;
  --text-dark: #1f2937;
  --text-light: #374151;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-alt: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

p {
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-home,
.page-webinar {
  --webinar-bar-height: 44px;
}

.webinar-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 1.25rem;
  height: var(--webinar-bar-height);
  font-size: 0.875rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.webinar-bar-badge {
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

.webinar-bar-line1,
.webinar-bar-line2 {
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  white-space: nowrap;
  min-width: 0;
}

.webinar-bar-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.webinar-bar-cta:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .page-home,
  .page-webinar {
    --webinar-bar-height: 76px;
  }

  .webinar-bar {
    align-content: center;
    flex-wrap: wrap;
    gap: 0.15rem 0.35rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  .webinar-bar-line1,
  .webinar-bar-line2 {
    display: block;
    flex: 0 0 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .webinar-bar-cta {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .page-home,
  .page-webinar {
    --webinar-bar-height: 60px;
  }

  .webinar-bar {
    align-content: center;
    flex-wrap: wrap;
    gap: 0.12rem 0.5rem;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
  }

  .webinar-bar-line1 {
    flex: 0 0 100%;
    min-width: 0;
    text-align: center;
  }

  .webinar-bar-line2,
  .webinar-bar-cta {
    line-height: 1.25;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
}

.page-webinar .navbar {
  top: var(--webinar-bar-height);
}

section[id] {
  scroll-margin-top: 80px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo-line1 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 0.16em;
}

.logo-line2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:not(.btn-nav):hover {
  color: var(--primary-color);
}

.btn-nav {
  background: var(--primary-color);
  color: white !important;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  margin-top: 0.75rem;
  z-index: 1002;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  padding: 165px 0 60px;
  background: linear-gradient(135deg, #f5f7ff 0%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-right {
  flex-shrink: 0;
}

.hero-photo {
  width: 340px;
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

.hero-right {
  position: relative;
}

.hero-video-annotation {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: 8px;
  transform: translateX(-50%) rotate(-3deg);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.hero-annotation-text {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

.hero-annotation-arrow {
  width: 52px;
  height: 32px;
  flex-shrink: 0;
}

.hero-video-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  aspect-ratio: 16/9;
}

.hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.gradient-text {
  background: var(--gradient-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  color: #4B5563;
  margin-bottom: 1rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.hero-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4B5563;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-trust-icon {
  width: 17px;
  height: 17px;
  color: var(--primary-color);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.hp-featured-bar {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.hp-featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}

.hp-featured-logos {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hp-feat-logo {
  height: 24px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
}

.hp-feat-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

/* ── OCF Shared Utilities ── */
.testimonials-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonials-two-col {
    grid-template-columns: 1fr;
  }
  .testimonials-two-col img:last-child {
    display: none;
  }
}

.ocf-section {
  padding: 5rem 0;
}
.ocf-section-alt {
  background: #fff;
}
.ocf-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Case Study Cards (shared) ── */
.ocf-cases-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.ocf-case-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.ocf-case-card:nth-child(even) .ocf-case-img-panel { order: 2; }
.ocf-case-card:nth-child(even) .ocf-case-content { order: 1; }
.ocf-case-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.ocf-case-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ocf-case-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ocf-case-practice {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}
.ocf-case-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.ocf-case-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.ocf-case-card p:last-child { margin-bottom: 0; }
.ocf-case-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.ocf-case-metric {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #1e3a8a;
  font-weight: 600;
  line-height: 1.4;
}
.ocf-case-metric-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 50%;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .ocf-case-card { grid-template-columns: 1fr; }
  .ocf-case-img-panel { min-height: 220px; }
  .ocf-case-card:nth-child(even) .ocf-case-img-panel,
  .ocf-case-card:nth-child(even) .ocf-case-content { order: unset; }
}

/* ── 7 Driver Cards (shared) ── */
.ocf-drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.ocf-driver-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ocf-driver-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}
.ocf-driver-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.ocf-driver-icon svg { width: 22px; height: 22px; }
.ocf-driver-num {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin-bottom: 0.4rem;
}
.ocf-driver-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.35rem;
}
.ocf-driver-question {
  font-size: 0.92rem;
  font-style: italic;
  color: #2563eb;
  font-weight: 500;
}
.ocf-driver-card .ocf-driver-question {
  margin-bottom: 1.5rem;
}
.ocf-driver-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}
.ocf-driver-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.ocf-driver-list li {
  font-size: 0.88rem;
  color: #4b5563;
  padding: 0.25rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.ocf-driver-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}
.ocf-driver-dark .ocf-driver-list li {
  color: rgba(255,255,255,0.95);
}
.ocf-driver-dark .ocf-driver-list li::before {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: block;
    width: 100%;
  }

  .hero-video-wrapper {
    width: 100%;
  }

  .hero-video-annotation {
    position: static;
    transform: rotate(-2deg);
    justify-content: center;
    margin-bottom: 8px;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-trust-bar {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }
}

.ppm-section {
  padding: 6rem 0;
  background: #f8f9ff;
}

.ppm-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.ppm-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.ppm-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ppm-intro {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.ppm-column {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.ppm-column-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.ppm-column-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.breaking-news {
  color: #dc2626;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ppm-column-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ppm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ppm-list li {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
}

.ppm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.hp-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem auto 3rem;
  max-width: 780px;
}

.hp-step-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.hp-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hp-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.hp-step-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hp-step-card { gap: 1rem; padding: 1.5rem; }
}

.ppm-callout {
  background: linear-gradient(135deg, #142669 0%, #1e3a8a 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.ppm-callout-inner {
  max-width: 600px;
  margin: 0 auto;
}

.ppm-callout-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.ppm-callout-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.ppm-callout-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

  .ppm-callout {
    padding: 2rem 1.5rem;
  }
}

/* ── Homepage driver chain ── */
.hp-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin: 2.5rem 0 2rem;
  align-items: center;
}

.hp-chain-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  text-align: center;
  min-width: 110px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hp-chain-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}

.hp-chain-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hp-chain-arrow {
  font-size: 1.4rem;
  color: #cbd5e1;
  padding: 0 0.35rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hp-chain { gap: 0.25rem; }
  .hp-chain-item { min-width: 85px; padding: 0.6rem 0.7rem; }
  .hp-chain-item-name { font-size: 0.82rem; }
  .hp-chain-arrow { padding: 0 0.15rem; font-size: 1rem; }
}

.founder-section {
  padding: 6rem 0;
  background: #ffffff;
}

.founder-section-alt {
  background: var(--bg-light);
}

.founder-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-text {
  padding: 1rem 0;
}

.founder-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.founder-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-bio {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.founder-link {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.founder-link:hover {
  color: var(--primary-dark);
}

.founder-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
  background: var(--bg-light);
  border-radius: 0 12px 12px 0;
}

.founder-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

.competitors-section {
  background: white;
}

.competitors-container {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.competitor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.competitor-row:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

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

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

.competitor-content {
  padding: 1rem 0;
}

.competitor-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.competitor-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.competitor-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.competitor-list li {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.25rem;
  padding-left: 1.25rem;
  position: relative;
}

.competitor-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.competitor-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.competitor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.formula-section {
  background: #142669;
  padding: 80px 0;
}

.formula-card {
  padding: 2rem 0;
}

.formula-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.formula-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.formula-intro {
  font-size: 18px;
  color: white;
  margin-bottom: 1.5rem;
}

.formula-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formula-list li {
  font-size: 18px;
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.formula-list li::before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: 700;
}

.formula-quote {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.quote-icon {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 18px;
  color: white;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .formula-card {
    padding: 2rem;
  }
  
  .formula-title {
    font-size: 1.75rem;
  }
  
  .formula-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Dental Website Designer V1 ── */
.eyebrow {
  display: inline-block;
  color: var(--primary-color);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.projects-section { background: #fff; padding: 6.5rem 0; }
.section-header { max-width: 720px; margin: 0 auto 3.25rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.16; letter-spacing: -.03em; }
.section-subtitle { max-width: 620px; margin: .9rem auto 0; line-height: 1.7; }
.project-list { display: flex; flex-direction: column; gap: 2rem; }
.project-card {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 370px;
  overflow: hidden; border: 1px solid #e3e8f1; border-radius: 18px;
  background: #fff; box-shadow: 0 5px 22px rgba(20,48,100,.06);
}
.project-card:nth-child(even) .project-image { order: 2; }
.project-card:nth-child(even) .project-copy { order: 1; }
.project-image { min-height: 300px; background: #eaf0fc; overflow: hidden; }
.project-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-image img { transform: scale(1.025); }
.project-copy { display: flex; flex-direction: column; justify-content: center; padding: 2.6rem 3rem; }
.project-kicker { color: var(--primary-color); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .65rem; }
.project-copy h3 { font-size: 1.65rem; line-height: 1.2; margin-bottom: .85rem; }
.project-copy p { color: var(--text-light); font-size: .97rem; line-height: 1.7; margin-bottom: 1.1rem; }
.project-copy ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; gap: .75rem 1.2rem; flex-wrap: wrap; }
.project-copy li { color: #1e3a8a; font-weight: 600; font-size: .84rem; }
.project-copy li::before { content: "✓"; color: var(--primary-color); margin-right: .35rem; }
.text-link { color: var(--primary-color); font-size: .94rem; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: .25rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.approach-section { background: #f4f7ff; padding: 7rem 0; }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; align-items: start; }
.approach-grid .section-title { text-align: left; }
.section-lead { color: var(--text-light); line-height: 1.75; max-width: 440px; font-size: 1.08rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid #dce5f7; }
.benefit-icon { color: var(--primary-color); font-size: .75rem; font-weight: 800; padding-top: .25rem; }
.benefit h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.benefit p { color: var(--text-light); font-size: .92rem; line-height: 1.6; margin: 0; }
.process-section { background: #fff; padding: 6.5rem 0; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.process-step { border-top: 3px solid var(--primary-color); padding: 1.35rem 1.1rem 0 0; }
.process-step > span { color: var(--primary-color); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.process-step h3 { font-size: 1.05rem; line-height: 1.3; margin: .75rem 0 .55rem; }
.process-step p { color: var(--text-light); font-size: .91rem; line-height: 1.65; margin: 0; }
.pricing-section { background: #f8faff; padding: 6.5rem 0; }
.pricing-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem; max-width: 880px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid #dfe6f3; border-radius: 16px; padding: 2.3rem; box-shadow: 0 5px 24px rgba(20,48,100,.05); }
.price-card.featured { border: 2px solid var(--primary-color); }
.price-label { color: var(--primary-color); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.price-card h3 { font-size: 1.5rem; margin: .75rem 0 .6rem; }
.price { color: var(--text-light); margin: 0 0 1.5rem; }
.price strong { color: var(--text-dark); font-size: 2.25rem; letter-spacing: -.04em; }
.price small { font-size: .95rem; }
.price-card ul { border-top: 1px solid #e8edf5; list-style: none; padding: 1.2rem 0 1.7rem; margin: 0 0 0; }
.price-card li { color: var(--text-light); font-size: .92rem; padding: .35rem 0 .35rem 1.35rem; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-color); font-weight: 800; }
.price-card .btn { width: 100%; text-align: center; }
.trust-notes, .cta-notes { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; color: #38558a; font-size: .83rem; font-weight: 700; }
.about-section { background: #fff; padding: 7rem 0; }
.about-grid { display: grid; grid-template-columns: 330px 1fr; gap: 5rem; align-items: center; max-width: 960px; margin: auto; }
.about-image { text-align: center; background: #eef3ff; border-radius: 18px 18px 80px 18px; overflow: hidden; }
.about-image img { display: block; width: 100%; max-height: 420px; object-fit: contain; }
.about-copy .section-title { text-align: left; max-width: 520px; }
.about-copy p { color: var(--text-light); line-height: 1.75; font-size: 1rem; max-width: 610px; }
.final-cta { background: #142669; padding: 6.5rem 0; text-align: center; }
.final-cta .eyebrow { color: #a9c5ff; }
.cta-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.final-cta .btn-primary { background: #fff; color: #1d4ed8; box-shadow: none; }
.final-cta .btn-primary:hover { background: #e9f0ff; }
.final-cta .cta-notes { color: rgba(255,255,255,.76); }
.footer { background: #0e1d4f; }
.footer-text, .footer-links li, .footer-links a, .footer-bottom p { color: rgba(255,255,255,.7); }
.footer-heading { color: #fff; }
@media (max-width: 768px) {
  .projects-section, .approach-section, .process-section, .pricing-section, .about-section { padding: 4.5rem 0; }
  .project-card, .pricing-grid, .about-grid, .approach-grid { grid-template-columns: 1fr; gap: 0; }
  .project-card:nth-child(even) .project-image, .project-card:nth-child(even) .project-copy { order: unset; }
  .project-image { min-height: 220px; max-height: 280px; }
  .project-copy { padding: 2rem 1.5rem 2.25rem; }
  .approach-grid { gap: 2.5rem; }
  .approach-grid .section-title { margin-bottom: 1rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.25rem; }
  .price-card { padding: 1.8rem 1.5rem; }
  .about-grid { gap: 2rem; }
  .about-image { max-width: 280px; margin: auto; }
  .about-copy .section-title { text-align: left; }
  .trust-notes, .cta-notes { gap: .7rem 1.2rem; }
}
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* Proof Section */
.proof-section {
  background: #f8f9ff;
  padding: 80px 0 40px;
}

.proof-video-embed {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.proof-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.proof-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

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

.proof-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.highlight-number {
  color: var(--primary-color);
}

.proof-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.proof-screenshot {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.proof-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-clients .proof-screenshot {
  margin-top: 2rem;
}

.proof-clients {
  margin-top: 4rem;
  text-align: center;
}

.proof-clients-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.proof-clients-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.proof-clients-screenshots {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}


@media (max-width: 768px) {
  .proof-title {
    font-size: 1.75rem;
  }
  
  .proof-subtitle {
    font-size: 1.25rem;
  }
  
  .proof-clients-title {
    font-size: 1.5rem;
  }
}

.services {
  background: var(--bg-white);
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  stroke: var(--primary-color);
  stroke-width: 2;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.service-link:hover {
  gap: 0.5rem;
}

.services-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f5f7ff 0%, #faf5ff 100%);
  text-align: center;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.service-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.service-card-link:hover {
  background: var(--primary-color);
  color: white;
}

.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: white;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
  color: white;
}

.testimonial-link {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}

.testimonial-link a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

.testimonial-link a:hover {
  opacity: 0.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  opacity: 0.9;
  font-size: 0.9rem;
}

.expert-testimonials {
  background: #ffffff;
  padding: 80px 0;
}

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

.expert-testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.expert-testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.expert-testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.expert-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.inline-pullquote {
  border-left: 3px solid var(--primary-color);
  margin: 1.75rem 0;
  padding: 0.75rem 0 0.75rem 1.25rem;
}

.inline-pullquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.inline-pullquote footer {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.inline-pullquote footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.inline-pullquote footer span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cta-section {
  background: var(--bg-light);
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-with-photo {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  text-align: left;
}

.cta-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cta-with-photo .cta-text {
  flex: 1;
}

.cta-with-photo .cta-title {
  text-align: left;
}

.cta-with-photo .cta-subtitle {
  text-align: left;
}

.cta-with-photo .cta-buttons {
  justify-content: flex-start;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.desktop-only-break {
  display: none;
}

@media (min-width: 769px) {
  .desktop-only-break {
    display: inline;
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

.services-hero {
  padding: 160px 0 80px;
}

.services-hero-split {
  padding: 140px 0 60px;
  background: #ffffff;
}

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

.hero-split-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-split-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-split-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-split-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-split-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.hero-split-list li {
  padding: 0.25rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.case-study-section {
  padding: 5rem 0;
  background: #ffffff;
}

.case-study-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.case-study-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-blue {
  color: var(--primary-color);
}

.case-study-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

.case-study-item {
  text-align: center;
}

.case-study-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.case-study-screenshot {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.case-study-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-testimonial {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-study-testimonial-avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.case-study-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.case-study-testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.case-study-testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.case-study-testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.case-study-testimonial-stars {
  font-size: 0.8rem;
}

.audit-cta-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.audit-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.audit-cta-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 0.75rem;
}

.audit-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.audit-cta-list-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.audit-cta-body {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.audit-cta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.audit-cta-list li {
  padding: 0.25rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

.audit-cta-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-split-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.ads-seo-section {
  padding: 5rem 0;
  background: #ffffff;
}

.ads-seo-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.ads-seo-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ads-seo-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ads-seo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.ads-seo-list li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ads-seo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.ads-seo-list li strong {
  color: var(--text-dark);
}

.ads-seo-closing {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ads-seo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ads-seo-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 12px;
}

.schedule-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.schedule-section .section-subtitle {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-container {
  overflow: hidden;
}

.schedule-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
}


.schedule-step-reverse {
  direction: rtl;
}

.schedule-step-reverse > * {
  direction: ltr;
}

.schedule-step-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.schedule-step-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.schedule-step-image img {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 12px;
}

.schedule-step-reverse .schedule-step-image {
  display: flex;
  justify-content: flex-end;
}

.approach-section {
  padding: 5rem 0;
  background: #ffffff;
}


.approach-section .container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 2rem;
}

.approach-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.approach-list {
  max-width: 100%;
}

.approach-item {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.approach-item:last-child {
  border-bottom: 1px solid var(--border-color);
}

.approach-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.approach-item-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.page-testimonial-section {
  padding: 4rem 0;
  background: #0f2a4a;
}

.page-testimonial {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.page-testimonial-content {
  position: relative;
}

.page-testimonial-quote {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.page-testimonial-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.page-testimonial-author {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-testimonial-author strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-testimonial {
    flex-direction: column;
    text-align: center;
  }

  .page-testimonial-quote {
    font-size: 3rem;
  }
}

.services-detail-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.service-detail-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-detail-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.service-detail-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail-features {
  list-style: none;
  padding: 0;
}

.service-detail-features li {
  padding: 0.4rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.dark-section {
  background: #0f2a4a;
}

.dark-section .section-title,
.dark-section .section-subtitle {
  color: #ffffff;
}

.dark-section .service-detail-card {
  background: #ffffff;
  border-color: transparent;
}

.services-process-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #faf5ff 100%);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-text {
  color: var(--text-light);
  line-height: 1.7;
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-line1 {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.16em;
}

.footer-logo-line2 {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .hero-trust-bar {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .logo-line1 {
    font-size: 0.85rem;
  }
  
  .logo-line2 {
    font-size: 0.65rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  
  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 0;
  }
  
  .nav-links > a {
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--text-dark);
    border-bottom: none;
  }
  
  .nav-links > a:not(.btn-nav):hover {
    background: var(--bg-light);
  }
  
  .nav-links .btn-nav {
    display: block;
    margin: 0.75rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    width: 100%;
    justify-content: space-between;
    border-bottom: none;
  }

  .nav-dropdown-trigger:hover {
    background: var(--bg-light);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s;
  }

  .nav-dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .founder-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .founder-image {
    max-width: 350px;
    margin: 0 auto;
    order: 2;
  }
  
  .founder-name {
    font-size: 2rem;
  }
  
  .founder-social {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .case-study-title {
    font-size: 1.75rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .case-study-testimonial {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 1.5rem;
  }

  .case-study-testimonial-attribution {
    flex-direction: column;
    gap: 0.25rem;
  }

  .audit-cta-title {
    font-size: 1.75rem;
  }

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

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ads-seo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ads-seo-image {
    order: -1;
  }

  .ads-seo-image img {
    max-width: 300px;
  }

  .schedule-step,
  .schedule-step-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .schedule-step-reverse {
    direction: ltr;
  }

  .schedule-step-text {
    order: 0;
  }

  .schedule-step-image {
    order: 1;
  }

  .schedule-step-image img {
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .schedule-step-reverse .schedule-step-image {
    justify-content: center;
  }

  .services-hero-split {
    padding: 120px 0 40px;
  }

  
  .competitor-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .competitor-row.reverse {
    direction: ltr;
  }
  
  .competitor-image {
    order: -1;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }

  .cta-with-photo {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-with-photo .cta-title,
  .cta-with-photo .cta-subtitle {
    text-align: center;
  }

  .cta-with-photo .cta-buttons {
    justify-content: center;
  }

  .cta-photo img {
    width: 160px;
    height: 160px;
  }
}

.content-hero {
  padding: 140px 0 60px;
  background: var(--bg-light);
}

.content-hero-inner {
  max-width: 800px;
}

.content-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
}

.content-hero-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: #e5e7eb;
}

.byline-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.byline-separator {
  color: var(--text-light);
}

.byline-date {
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.content-body {
  max-width: 800px;
}

.content-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-body h2:first-child {
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.15;
}

.content-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-body p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-body li {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.content-body strong {
  color: var(--text-dark);
}

.content-cta-card {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
}

.content-cta-card h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.content-cta-card strong {
  color: white;
}

.content-cta-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-cta-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.content-cta-card ul li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.content-cta-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: white;
}

.bottom-line-box {
  border: 1.5px solid #000;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  margin-bottom: 0;
}

.bottom-line-box h2 {
  margin-top: 0;
}

.btn-cta-card {
  display: inline-block;
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .content-cta-card {
    padding: 2rem 1.5rem;
  }

  .content-cta-card h2 {
    font-size: 1.4rem;
  }
}

.content-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.pricing-table-wrapper {
  margin: 2rem 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table thead th {
  background: transparent;
  color: var(--text-dark);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

.pricing-table tbody td {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  line-height: 1.7;
  vertical-align: top;
}

.pricing-table tbody td:first-child {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table tbody td:first-child {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .content-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 140px 0 60px;
  }

  .hero-title {
    line-height: 1.1;
  }

  .hero-subtitle {
    max-width: 320px;
  }

  .btn {
    padding: 0.75rem 1.75rem;
  }
  
  .founder-section,
  .competitors-section,
  .formula-section,
  .proof-section,
  .services,
  .testimonials,
  .cta-section {
    padding: 3rem 0;
  }

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

  .founder-content {
    gap: 2rem;
  }

  .logo-img {
    height: 35px;
  }
}

/* Start page two-column layout */
.start-page-section {
  padding: 100px 0 6rem;
}

.start-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.start-form-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.start-form-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.start-form-subtext {
  font-size: 0.95rem;
  color: #4B5563;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.start-right-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.start-num-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.start-num-step {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.start-num-step-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.start-num-step-desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .start-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .start-page-section {
    padding: 90px 0 4rem;
  }

  .start-form-heading {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .start-form-card {
    padding: 1.5rem;
  }
}

.start-hero {
  background: white;
  text-align: center;
  padding-bottom: 1rem;
}

.thank-you-hero {
  padding-bottom: 4rem;
}

.start-hero + .content-section {
  padding-top: 1rem;
}

.start-hero .content-hero-inner {
  margin: 0 auto;
}

.thank-you-testimonial {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.thank-you-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  flex-shrink: 0;
  transform: scale(1.08);
  overflow: hidden;
}

.thank-you-content {
  flex: 1;
}

.thank-you-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.thank-you-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thank-you-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.thank-you-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.start-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.start-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.char-count {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  text-align: right;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
}

.start-stats {
  padding: 3rem 0 4rem;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .start-form {
    padding: 1.5rem;
  }

  .start-stats {
    padding: 2rem 0 3rem;
  }
}

.results-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f5f7ff 0%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.results-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.results-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.results-hero-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.results-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4B5563;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.results-platform-section {
  background: var(--bg-white);
}

.results-platform-alt {
  background: var(--bg-light);
}

.results-platform-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.results-platform-header .section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.results-screenshot-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.results-screenshot-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.results-platform-alt .results-screenshot-card {
  background: #ffffff;
}

.results-screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.results-screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.results-section-video {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
}

.results-section-video-featured {
  max-width: none;
  margin: 0;
  background: #111827;
  padding: 4rem 20px;
}

.results-video-inner {
  max-width: 680px;
  margin: 0 auto;
}

.results-video-case-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.results-video-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.results-video-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
  line-height: 1.25;
}

.results-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.results-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.results-video-case-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 1rem;
}

.results-section-video-featured .results-video-case-title {
  color: #e5e7eb;
}

@media (max-width: 600px) {
  .results-hero {
    padding: 120px 0 60px;
  }
}

/* ── Webinar registration page ─────────────────────────────────────────── */

.page-webinar .webinar-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(168px + var(--webinar-bar-height)) 0 88px;
  background: linear-gradient(125deg, #0b1633 0%, #122653 48%, #0a142e 100%);
}

.webinar-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 17% 16%, rgba(59, 130, 246, 0.28), transparent 36%),
    radial-gradient(circle at 82% 90%, rgba(37, 99, 235, 0.1), transparent 32%);
}

.webinar-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(147, 197, 253, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.webinar-orbit-one {
  width: 560px;
  height: 560px;
  top: -260px;
  left: -180px;
}

.webinar-orbit-two {
  width: 720px;
  height: 720px;
  right: -370px;
  bottom: -490px;
}

.webinar-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  gap: clamp(2.75rem, 7vw, 6rem);
  align-items: center;
}

.webinar-hero-copy {
  max-width: 660px;
}

.webinar-eyebrow,
.webinar-section-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.webinar-eyebrow span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.12);
}

.webinar-hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.webinar-lede {
  max-width: 620px;
  margin: 1.6rem 0 2rem;
  color: #d9e3f4;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.webinar-event-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.webinar-event-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 72px;
  padding: 1rem 1.1rem 1rem 0;
}

.webinar-event-detail + .webinar-event-detail {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.webinar-event-detail svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 0.15rem;
  color: #7dd3fc;
}

.webinar-event-detail span {
  display: block;
  color: #93a4bf;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.webinar-event-detail strong {
  display: block;
  margin-top: 0.28rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.webinar-host-inline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.webinar-host-inline img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(147, 197, 253, 0.65);
  border-radius: 50%;
  background: #dbeafe;
}

.webinar-host-inline span,
.webinar-host-inline strong,
.webinar-host-inline p {
  display: block;
}

.webinar-host-inline span {
  color: #93a4bf;
  font-size: 0.72rem;
  line-height: 1.2;
}

.webinar-host-inline strong {
  margin-top: 0.1rem;
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.2;
}

.webinar-host-inline p {
  margin: 0.2rem 0 0;
  color: #c4d2e8;
  font-size: 0.76rem;
  line-height: 1.3;
}

.webinar-registration-card {
  width: 100%;
  padding: clamp(1.55rem, 3.5vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.26);
  scroll-margin-top: calc(var(--webinar-bar-height) + 105px);
}

.registration-card-heading {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #e5e7eb;
}

.registration-card-heading p {
  margin: 0 0 0.25rem;
  color: var(--primary-color);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-card-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.65rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.registration-card-heading span {
  display: block;
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.45;
}

.webinar-form {
  margin-top: 1.35rem;
}

.webinar-name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.webinar-form-group {
  margin-bottom: 0.95rem;
}

.webinar-form-group label {
  display: block;
  margin-bottom: 0.38rem;
  color: #243047;
  font-size: 0.8rem;
  font-weight: 700;
}

.webinar-form-group input,
.webinar-form-group select {
  width: 100%;
  min-height: 47px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #172033;
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.webinar-form-group select {
  cursor: pointer;
}

.webinar-form-group input:focus,
.webinar-form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.webinar-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.26);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.webinar-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 11px 22px rgba(30, 64, 175, 0.3);
  transform: translateY(-1px);
}

.webinar-submit span,
.webinar-bottom-button span,
.webinar-text-link span {
  font-size: 1.12em;
  transition: transform 0.2s;
}

.webinar-submit:hover span,
.webinar-bottom-button:hover span,
.webinar-text-link:hover span {
  transform: translateX(3px);
}

.webinar-form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.95rem 0 0;
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.45;
}

.webinar-form-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 0.08rem;
  color: #64748b;
}

.webinar-takeaways {
  padding: 96px 0 104px;
  background: #f8fafc;
}

.webinar-section-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
}

.webinar-section-intro .webinar-section-kicker {
  justify-content: center;
  color: var(--primary-color);
}

.webinar-section-intro h2,
.webinar-host-copy h2,
.webinar-bottom-cta h2 {
  margin: 0;
  color: #0f1d39;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.webinar-section-intro > p:last-child {
  max-width: 660px;
  margin: 1rem auto 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}

.webinar-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.webinar-takeaway {
  min-height: 255px;
  padding: 1.6rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  transition: box-shadow 0.25s, transform 0.25s;
}

.webinar-takeaway:hover {
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
  transform: translateY(-4px);
}

.takeaway-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin-bottom: 2.1rem;
  border-radius: 5px;
  color: var(--primary-color);
  background: #dbeafe;
  font-size: 0.72rem;
  font-weight: 800;
}

.webinar-takeaway h3 {
  margin: 0;
  color: #16213a;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.webinar-takeaway p {
  margin: 0.75rem 0 0;
  color: #5b6576;
  font-size: 0.87rem;
  line-height: 1.65;
}

.webinar-proof-strip {
  padding: 2.4rem 0;
  color: #fff;
  background: #172554;
}

.webinar-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.webinar-proof-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.35rem 1rem;
  text-align: center;
}

.webinar-proof-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.webinar-proof-grid strong {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.webinar-proof-grid span {
  margin-top: 0.5rem;
  color: #b9c8e2;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.webinar-host-section {
  padding: 105px 0;
  overflow: hidden;
  background: #fff;
}

.webinar-host-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 9vw, 8rem);
  align-items: center;
  max-width: 1010px;
  margin: 0 auto;
}

.webinar-host-photo-wrap {
  position: relative;
  min-height: 450px;
}

.webinar-host-photo-bg {
  position: absolute;
  inset: 10px 0 0 23px;
  border-radius: 15px;
  background: #dbeafe;
  transform: rotate(-4deg);
}

.webinar-host-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.webinar-host-tag {
  position: absolute;
  right: -22px;
  bottom: 25px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  color: #c5d6f4;
  background: #10234d;
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.25);
  font-size: 0.7rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.webinar-host-tag strong {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.webinar-host-copy .webinar-section-kicker {
  color: var(--primary-color);
}

.webinar-host-role {
  margin: 0.55rem 0 1.5rem;
  color: var(--primary-color);
  font-size: 0.96rem;
  font-weight: 700;
}

.webinar-host-copy > p:not(.webinar-section-kicker):not(.webinar-host-role) {
  margin: 0 0 1rem;
  color: #495568;
  font-size: 1rem;
  line-height: 1.75;
}

.webinar-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--primary-color);
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.webinar-bottom-cta {
  padding: 94px 0;
  background: linear-gradient(115deg, #1e3a8a 0%, #2563eb 100%);
}

.webinar-bottom-cta-inner {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.webinar-bottom-cta .webinar-section-kicker {
  justify-content: center;
  color: #bfdbfe;
}

.webinar-bottom-cta h2 {
  color: #fff;
}

.webinar-bottom-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.9rem;
  padding: 0.95rem 1.45rem;
  border-radius: 9px;
  color: #153068;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 44, 110, 0.25);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.webinar-bottom-button:hover {
  box-shadow: 0 14px 26px rgba(16, 44, 110, 0.33);
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .webinar-hero-grid {
    gap: 2.5rem;
  }

  .webinar-event-detail {
    padding-right: 0.8rem;
  }

  .webinar-event-detail + .webinar-event-detail {
    padding-left: 0.8rem;
  }

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

  .webinar-takeaway {
    min-height: 215px;
  }

  .takeaway-number {
    margin-bottom: 1.35rem;
  }
}

@media (max-width: 800px) {
  .page-webinar .webinar-hero {
    padding-top: calc(140px + var(--webinar-bar-height));
  }

  .webinar-hero-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }

  .webinar-hero-copy {
    max-width: none;
  }

  .webinar-registration-card {
    max-width: 560px;
  }

  .webinar-host-grid {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1fr);
    gap: 2.25rem;
  }

  .webinar-host-photo-wrap,
  .webinar-host-photo {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .page-webinar .webinar-hero {
    padding: calc(127px + var(--webinar-bar-height)) 0 58px;
  }

  .webinar-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .webinar-lede {
    margin: 1.25rem 0 1.55rem;
    font-size: 0.98rem;
  }

  .webinar-event-details {
    grid-template-columns: 1fr;
  }

  .webinar-event-detail {
    min-height: 0;
    padding: 0.85rem 0;
  }

  .webinar-event-detail + .webinar-event-detail {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .webinar-registration-card {
    padding: 1.35rem;
    border-radius: 13px;
  }

  .webinar-name-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .webinar-takeaways,
  .webinar-host-section {
    padding: 68px 0;
  }

  .webinar-section-intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .webinar-section-intro .webinar-section-kicker {
    justify-content: flex-start;
  }

  .webinar-section-intro > p:last-child {
    margin-left: 0;
  }

  .webinar-takeaway-grid,
  .webinar-proof-grid,
  .webinar-host-grid {
    grid-template-columns: 1fr;
  }

  .webinar-takeaway {
    min-height: 0;
  }

  .webinar-proof-grid > div {
    padding: 1rem;
  }

  .webinar-proof-grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .webinar-host-grid {
    gap: 2.75rem;
  }

  .webinar-host-photo-wrap,
  .webinar-host-photo {
    width: min(100%, 390px);
    min-height: 420px;
    height: 420px;
    margin: 0 auto;
  }

  .webinar-host-tag {
    right: 1px;
    bottom: 14px;
  }

  .webinar-bottom-cta {
    padding: 70px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webinar-takeaway,
  .webinar-submit,
  .webinar-bottom-button,
  .webinar-submit span,
  .webinar-bottom-button span,
  .webinar-text-link span {
    transition: none;
  }
}

/* V1 homepage selectors are intentionally last so legacy secondary-page rules
   cannot change the single-page offer. */
body.page-home .projects-section { background:#fff; padding:6.5rem 0; }
body.page-home .approach-section { background:#f4f7ff; padding:7rem 0; }
body.page-home .process-section { background:#fff; padding:6.5rem 0; }
body.page-home .pricing-section { background:#f8faff; padding:6.5rem 0; }
body.page-home .about-section { background:#fff; padding:7rem 0; }
body.page-home .final-cta { background:#142669; padding:6.5rem 0; text-align:center; }
body.page-home .project-card { display:grid; grid-template-columns:1.05fr .95fr; min-height:370px; overflow:hidden; border:1px solid #e3e8f1; border-radius:18px; background:#fff; }
body.page-home .project-card:nth-child(even) .project-image { order:2; }
body.page-home .project-card:nth-child(even) .project-copy { order:1; }
body.page-home .project-copy { display:flex; flex-direction:column; justify-content:center; padding:2.6rem 3rem; }
body.page-home .process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
body.page-home .pricing-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:1.5rem; max-width:880px; margin:0 auto; }
body.page-home .about-grid { display:grid; grid-template-columns:330px 1fr; gap:5rem; align-items:center; max-width:960px; margin:auto; }
body.page-home .final-cta .cta-title { color:#fff; }
@media (max-width:768px) {
  body.page-home .project-card, body.page-home .pricing-grid, body.page-home .about-grid, body.page-home .approach-grid { grid-template-columns:1fr; gap:0; }
  body.page-home .project-card:nth-child(even) .project-image, body.page-home .project-card:nth-child(even) .project-copy { order:unset; }
  body.page-home .project-copy { padding:2rem 1.5rem 2.25rem; }
  body.page-home .process-grid { grid-template-columns:1fr 1fr; gap:2.2rem 1.25rem; }
  body.page-home .about-grid { gap:2rem; }
}
@media (max-width:480px) { body.page-home .process-grid { grid-template-columns:1fr; } }

@media (max-width:1024px) {
  body.page-home .hamburger,
  body.page-conversion .hamburger {
    display: flex;
  }

  body.page-home .nav-links,
  body.page-conversion .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
  }

  body.page-home .nav-links.active,
  body.page-conversion .nav-links.active {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 0;
    visibility: visible;
    pointer-events: auto;
  }

  body.page-home .nav-links > a,
  body.page-conversion .nav-links > a {
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    text-align: left;
  }

  body.page-home .nav-links .btn-nav,
  body.page-conversion .nav-links .btn-nav {
    margin: 0.75rem 1.5rem;
    text-align: center;
  }
}

@media (max-width:768px) {
  .nav-links {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.active {
    visibility: visible;
    pointer-events: auto;
  }
}
