/* =========================================================
   Base
   ========================================================= */

body {
  font-family: var(--font-sans);
  color: var(--om-dark);
  background: var(--om-white);
  font-size: 16px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--om-orange);
  margin-bottom: var(--space-3);
}

.eyebrow-light {
  color: var(--om-orange);
}

.eyebrow-dash {
  color: var(--om-orange);
}

.section-heading {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--om-dark);
  max-width: 42ch;
  margin-bottom: var(--space-4);
}

.section-heading-light {
  color: var(--om-white);
}

.section-subhead {
  font-size: 1rem;
  color: var(--om-muted);
  max-width: 62ch;
  margin-bottom: var(--space-7);
}

.section-subhead-light {
  color: color-mix(in srgb, var(--om-white) 78%, transparent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--om-muted);
  border: 1px solid var(--om-orange);
  border-radius: 999px;
  padding: var(--space-1) var(--space-3);
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--om-pink);
  color: var(--om-white);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--om-pink) 88%, black 12%);
}

.btn-outline {
  background: transparent;
  border-color: color-mix(in srgb, var(--om-white) 40%, transparent);
  color: var(--om-white);
}

.btn-outline:hover {
  border-color: var(--om-teal);
  color: var(--om-teal);
}

.hero-cta-row .btn-outline,
.sticky-mobile-cta .btn-outline {
  border-color: var(--om-dark);
  color: var(--om-dark);
}

.hero-cta-row .btn-outline:hover,
.sticky-mobile-cta .btn-outline:hover {
  border-color: var(--om-teal);
  color: var(--om-teal);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--om-topbar-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--om-white) 10%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
  padding-block: var(--space-4);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 0;
}

@media (max-width: 479px) {
  .header-inner {
    gap: var(--space-3);
  }

  .site-logo img {
    height: 28px;
  }

  .header-actions {
    gap: var(--space-2);
  }

  .header-actions .btn {
    padding: var(--space-2) var(--space-3);
    font-size: 0.8125rem;
  }
}

.header-phone {
  display: none;
  color: var(--om-white);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
  }
}

/* =========================================================
   Hero background image layers + overlay
   ========================================================= */

.hero {
  /* Subtle wave motif — hex values below are literal copies of --om-white /
     --om-teal (data URIs can't reference CSS custom properties). */
  position: relative;
  background-color: var(--om-topbar-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80'%3E%3Cpath d='M0 40 Q50 10 100 40 T200 40' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.05'/%3E%3Cpath d='M0 60 Q50 30 100 60 T200 60' stroke='%231BBFC4' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-block: var(--space-7) var(--space-9);
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Each vertical's image group */
.hero-bg-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-bg-group.is-active {
  opacity: 1;
  visibility: visible;
}

/* Individual slides within the active group */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}

.hero-bg-layer.is-active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 40, 0.72) 0%,
    rgba(10, 20, 40, 0.60) 100%
  );
  pointer-events: none;
}

/* Keep all hero content above the overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-inner {
  display: grid;
  gap: var(--space-7);
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.hero-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  color: var(--om-teal);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.hero-bg-art.is-active {
  opacity: 0.08;
}

.hero-bg-art svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .hero-bg-art {
    width: 220px;
    height: 220px;
    right: -30px;
  }

  .hero-bg-art.is-active {
    opacity: 0.06;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

@media (min-width: 480px) {
  .trust-strip {
    display: flex;
    flex-wrap: wrap;
  }
}

.trust-strip li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-align: center;
  color: color-mix(in srgb, var(--om-white) 85%, transparent);
  background: color-mix(in srgb, var(--om-white) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--om-white) 14%, transparent);
  border-radius: 999px;
  padding: var(--space-2) var(--space-3);
}

@media (min-width: 480px) {
  .trust-strip li {
    text-align: left;
  }
}

.vertical-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  background: color-mix(in srgb, var(--om-white) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  border-radius: var(--radius-sm);
  padding: var(--space-1);
  margin-bottom: var(--space-5);
}

.vertical-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--om-white) 70%, transparent);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.vertical-tab.is-active {
  background: var(--om-orange);
  color: var(--om-white);
}

.hero-panel {
  display: none;
}

.hero-panel.is-active {
  display: block;
  animation: fade-in 0.2s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-h1 {
  font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--om-white);
  margin-bottom: var(--space-4);
}

.hero-h1 .highlight {
  color: var(--om-orange);
}

.hero-subhead {
  font-size: 1.0625rem;
  color: color-mix(in srgb, var(--om-white) 78%, transparent);
  max-width: 52ch;
  margin-bottom: var(--space-5);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.hero-cta-row .btn-outline {
  border-color: color-mix(in srgb, var(--om-white) 40%, transparent);
  color: var(--om-white);
}

.hero-microcopy {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--om-white) 55%, transparent);
  margin-bottom: var(--space-5);
}

.hero-panel .tag-list .tag {
  color: color-mix(in srgb, var(--om-white) 70%, transparent);
  border-color: color-mix(in srgb, var(--om-white) 24%, transparent);
}

/* Lead form card */

.lead-form-card {
  position: relative;
  z-index: 2;
  background: var(--om-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.45);
  scroll-margin-top: 90px;
}

.form-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--om-white);
  background: var(--om-orange);
  border-radius: 999px;
  padding: var(--space-1) var(--space-3);
  margin-bottom: var(--space-4);
}

.form-heading {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.form-subhead {
  font-size: 0.9375rem;
  color: var(--om-muted);
  margin-bottom: var(--space-5);
}

.form-field {
  margin-bottom: var(--space-4);
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--om-muted);
  margin-bottom: var(--space-2);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--om-border-light);
  border-radius: var(--radius-sm);
  background: var(--om-surface-light);
  font-size: 0.9375rem;
  font-family: inherit;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in srgb, var(--om-muted) 70%, transparent);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--om-teal);
  outline-offset: 1px;
  background: var(--om-white);
}

.form-legal {
  font-size: 0.75rem;
  color: var(--om-muted);
  text-align: center;
  margin-top: var(--space-4);
}

/* Compact, squarer hero form */
.hero .lead-form-card {
  padding: var(--space-5);
  border-radius: var(--radius-md);
}

.hero .form-badge {
  margin-bottom: var(--space-2);
}

.hero .form-heading {
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.hero .form-subhead {
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero .form-field {
  margin-bottom: var(--space-3);
}

.hero .form-field label {
  margin-bottom: 4px;
}

.hero .form-field input,
.hero .form-field select {
  padding: 8px 10px;
  font-size: 0.875rem;
}

.hero .form-row {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .hero .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.hero .lead-form-card .btn-block {
  min-height: 42px;
  padding-block: var(--space-2);
}

.hero .form-legal {
  margin-top: var(--space-2);
}

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

.lp-portfolio {
  padding-block: var(--space-8);
  background: var(--om-surface-light);
  border-bottom: 1px solid var(--om-border-light);
}

.lp-portfolio .section-heading .highlight {
  color: var(--om-pink);
}

.lp-portfolio-grid {
  display: grid;
  gap: var(--space-5);
}

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

.lp-portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--om-white);
  border: 1px solid var(--om-border-light);
  border-top: 4px solid var(--lp-port-color, var(--om-pink));
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(13, 43, 62, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 43, 62, 0.14);
}

.lp-portfolio-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.lp-portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-portfolio-tag {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  max-width: calc(100% - var(--space-8));
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lp-port-color, var(--om-pink)) 92%, black 8%);
  color: var(--om-white);
  font-size: 0.6875rem;
  font-weight: 600;
}

.lp-portfolio-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.lp-portfolio-client {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--om-muted);
}

.lp-portfolio-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.lp-portfolio-result {
  font-size: 0.875rem;
  color: var(--om-muted);
  line-height: 1.45;
}

.lp-portfolio-cta {
  margin-top: var(--space-7);
  text-align: center;
}

/* =========================================================
   Friction strip
   ========================================================= */

.friction {
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--om-border-light);
}

.friction-grid {
  display: grid;
  gap: var(--space-5);
}

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

.friction-item {
  background: var(--om-white);
  border: 1px solid var(--om-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.friction-item .friction-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--om-orange);
  margin-bottom: var(--space-3);
}

.friction-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.friction-item p {
  color: var(--om-muted);
  font-size: 0.9375rem;
}

.friction-item em {
  font-style: italic;
  color: var(--om-dark);
}

/* =========================================================
   Funnel
   ========================================================= */

.funnel {
  background: var(--om-topbar-bg);
  padding-block: var(--space-8) 0;
}

.funnel .section-heading,
.funnel .section-subhead {
  max-width: 60ch;
}

.funnel-span {
  border-top: 1px dashed color-mix(in srgb, var(--om-white) 25%, transparent);
  margin-bottom: var(--space-5);
  padding-top: var(--space-3);
}

.funnel-span-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--om-white) 50%, transparent);
}

.funnel-stages {
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
  padding-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .funnel-stages {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}

.funnel-stage {
  background: color-mix(in srgb, var(--om-white) 6%, var(--om-topbar-bg));
  border: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.funnel-stage-final {
  border-color: var(--om-orange);
}

.funnel-stage-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--om-orange);
  margin-bottom: var(--space-2);
}

.funnel-stage h3 {
  color: var(--om-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.funnel-stage p {
  color: color-mix(in srgb, var(--om-white) 70%, transparent);
  font-size: 0.875rem;
}

.funnel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--om-orange);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .funnel-arrow {
    display: flex;
  }
}

.proof-strip {
  background: var(--om-dark);
  border-top: 1px solid color-mix(in srgb, var(--om-white) 10%, transparent);
  padding-block: var(--space-6);
}

.proof-strip-inner {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 900px) {
  .proof-strip-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.proof-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--om-orange);
  margin-bottom: var(--space-2);
}

.proof-strip-label p {
  color: var(--om-white);
  font-size: 1rem;
  max-width: 42ch;
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.proof-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--om-orange);
}

.proof-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--om-white) 65%, transparent);
  max-width: 16ch;
}

.funnel-cta-row {
  padding-block: var(--space-7);
  text-align: center;
}

/* =========================================================
   Vertical cards
   ========================================================= */

.verticals {
  background: var(--om-white);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--om-border-light);
}

.vertical-cards {
  display: grid;
  gap: var(--space-5);
}

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

.vertical-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--om-white);
  border: 1px solid var(--om-border-light);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.vertical-card-media {
  width: 100%;
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.vertical-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vertical-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.vertical-card-watermark {
  position: absolute;
  z-index: -1;
  bottom: -35px;
  right: -35px;
  width: 80px;
  height: 80px;
  color: var(--om-teal);
  opacity: 0.07;
  pointer-events: none;
}

.vertical-card-watermark svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .vertical-card-watermark {
    width: 56px;
    height: 56px;
    bottom: -20px;
    right: -20px;
    opacity: 0.05;
  }
}

.vertical-card-icon {
  display: none;
}

.vertical-card-icon svg {
  width: 100%;
  height: 100%;
}

.vertical-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.vertical-card-friction {
  color: var(--om-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: var(--space-3);
}

.vertical-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.vertical-card-bullets li {
  position: relative;
  padding-left: var(--space-4);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--om-dark);
}

.vertical-card-bullets li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--om-teal);
}

.vertical-card .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-3);
}

.vertical-card .tag {
  font-size: 0.625rem;
  padding: 2px 8px;
  white-space: nowrap;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin-top: auto;
  padding-bottom: 2px;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--om-orange);
  border-bottom: 2px solid var(--om-orange);
  align-self: flex-start;
}

.card-cta:hover {
  color: var(--om-teal);
  border-color: var(--om-teal);
}

/* =========================================================
   Capability strip
   ========================================================= */

.capabilities {
  background: var(--om-topbar-bg);
  padding-block: var(--space-8);
}

.capabilities .section-heading,
.capabilities .section-subhead {
  max-width: 56ch;
}

.capability-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
}

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

.capability-item {
  padding: var(--space-5);
  border-bottom: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
}

@media (min-width: 900px) {
  .capability-item {
    border-right: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  }

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

.capability-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--om-orange);
  margin-bottom: var(--space-3);
}

.capability-item h3 {
  color: var(--om-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.capability-item p {
  color: color-mix(in srgb, var(--om-white) 65%, transparent);
  font-size: 0.875rem;
}

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

.process {
  padding-block: var(--space-8);
}

.process-steps {
  border-top: 1px solid var(--om-border-light);
}

.process-step {
  display: grid;
  gap: var(--space-2) var(--space-6);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--om-border-light);
}

@media (min-width: 768px) {
  .process-step {
    grid-template-columns: 80px 260px 1fr;
    align-items: start;
  }
}

.process-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--om-orange);
  font-weight: 700;
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.process-step p {
  color: var(--om-muted);
  font-size: 0.9375rem;
}

/* =========================================================
   Case study
   ========================================================= */

.case-study {
  /* Subtle dot-grid — hex value below is a literal copy of --om-white. */
  background-color: var(--om-topbar-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23ffffff' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-block: var(--space-8);
}

.case-study-inner {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .case-study-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: var(--space-7);
  }
}

.case-study-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-copy .section-heading,
.case-study-copy .section-subhead {
  max-width: 46ch;
}

.case-study-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.45);
  background: color-mix(in srgb, var(--om-white) 6%, transparent);
}

.case-study-image-wrap {
  position: relative;
  min-height: 240px;
}

.case-study-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .case-study-image-wrap {
    flex: 1;
    min-height: 280px;
  }

  .case-study-img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: color-mix(in srgb, var(--om-topbar-bg) 88%, black);
  border-top: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
}

@media (min-width: 600px) {
  .case-study-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.case-study-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--om-orange);
}

.case-study-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--om-white) 65%, transparent);
}

.case-study-stat-note {
  font-size: 0.6875rem;
  color: color-mix(in srgb, var(--om-white) 45%, transparent);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding-block: var(--space-8);
  background: var(--om-white);
}

.faq-list {
  border-top: 1px solid var(--om-border-light);
}

.faq-item {
  border-bottom: 1px solid var(--om-border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  padding-block: var(--space-5);
  font-size: 1rem;
  font-weight: 700;
  color: var(--om-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--om-orange);
  border: 1px solid var(--om-orange);
  border-radius: 50%;
}

.faq-item.is-open .faq-icon {
  background: var(--om-orange);
  color: var(--om-white);
}

.faq-answer {
  padding-bottom: var(--space-5);
  max-width: 68ch;
}

.faq-answer p {
  color: var(--om-muted);
  font-size: 0.9375rem;
}

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  /* Subtle wave motif, bookending the hero — hex values are literal copies
     of --om-white / --om-teal (data URIs can't reference custom properties). */
  background-color: var(--om-topbar-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='100'%3E%3Cpath d='M0 50 Q60 15 120 50 T240 50' stroke='%231BBFC4' stroke-width='1' fill='none' opacity='0.05'/%3E%3Cpath d='M0 75 Q60 40 120 75 T240 75' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-block: var(--space-8);
}

.final-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta .section-heading,
.final-cta .section-subhead {
  max-width: 48ch;
  margin-inline: auto;
}

.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

/* =========================================================
   Image Carousel
   ========================================================= */

.om-carousel {
  background: var(--om-dark);
  padding-block: var(--space-7);
}

.om-carousel-track-wrap {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--space-5);
  overflow: hidden;
}

.om-carousel-track {
  position: relative;
  /* height is driven by the tallest slide */
}

/* Slides */
.om-carousel-slide {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.om-carousel-slide.is-active {
  display: block;
  animation: carousel-fade-in 0.55s ease forwards;
}

@keyframes carousel-fade-in {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}

.om-carousel-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .om-carousel-img {
    height: 240px;
  }
}

/* Caption */
.om-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(transparent, rgba(13, 43, 62, 0.85));
  color: var(--om-white);
  font-weight: 700;
  font-size: 0.9375rem;
}

/* Arrows */
.om-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--om-orange);
  color: var(--om-white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.om-carousel-arrow:hover {
  background: color-mix(in srgb, var(--om-orange) 85%, black 15%);
  transform: translateY(-50%) scale(1.08);
}

.om-carousel-arrow--prev { left: var(--space-3); }
.om-carousel-arrow--next { right: var(--space-3); }

.om-carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Dots */
.om-carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.om-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--om-white) 30%, transparent);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.om-carousel-dot.is-active {
  background: var(--om-orange);
  transform: scale(1.3);
}

.om-carousel-dot:hover {
  background: color-mix(in srgb, var(--om-orange) 70%, transparent);
}

/* =========================================================
   Founder / Strategist section
   ========================================================= */

.founder {
  padding-block: var(--space-8);
  background: var(--om-white);
  border-bottom: 1px solid var(--om-border-light);
}

.founder-inner {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}

@media (min-width: 900px) {
  .founder-inner {
    grid-template-columns: 2fr 3fr;
    align-items: stretch;
  }
}

/* --- Left column: image --- */

.founder-image-col {
  display: flex;
}

.founder-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.18);
}

.founder-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 320px;
}

@media (min-width: 900px) {
  .founder-img {
    min-height: 480px;
  }
}

.founder-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--om-pink);
  border-radius: var(--radius-md);
  color: var(--om-white);
  line-height: 1.1;
}

.founder-badge-num {
  font-size: 1.375rem;
  font-weight: 800;
}

.founder-badge-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* --- Right column: content --- */

.founder-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-heading {
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--om-dark);
  margin-bottom: var(--space-4);
}

.founder-highlight {
  color: var(--om-pink);
}

.founder-subheading {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--om-muted);
  margin-bottom: var(--space-4);
}

.founder-subheading strong {
  color: var(--om-dark);
  font-weight: 700;
}

.founder-subheading-sep {
  display: inline-block;
  margin-inline: var(--space-2);
  color: var(--om-muted);
}

.founder-bio {
  font-size: 0.9375rem;
  color: var(--om-muted);
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: var(--space-5);
}

/* Numbered points */

.founder-points {
  display: flex;
  flex-direction: column;
}

.founder-point {
  border-top: 1px solid var(--om-border-light);
  padding-block: var(--space-4);
}

.founder-point-inner {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-3);
  align-items: start;
}

.founder-point-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--om-orange);
  padding-top: 2px;
}

.founder-point-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--om-dark);
  margin-bottom: var(--space-2);
}

.founder-point-desc {
  font-size: 0.875rem;
  color: var(--om-muted);
  line-height: 1.65;
}

/* =========================================================
   How We Start section
   ========================================================= */

.how-we-start {
  padding-block: var(--space-8);
  background: var(--om-white);
  border-bottom: 1px solid var(--om-border-light);
}

.hws-inner {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}

@media (min-width: 900px) {
  .hws-inner.has-image {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
    align-items: stretch;
  }
}

.hws-copy .section-heading {
  max-width: 28ch;
}

.hws-image-col {
  display: flex;
}

.hws-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.18);
}

.hws-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 320px;
}

@media (min-width: 900px) {
  .hws-image-wrap {
    min-height: 100%;
  }

  .hws-img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

.hws-steps {
  border-top: 1px solid var(--om-border-light);
  margin-top: var(--space-2);
}

.hws-step {
  display: grid;
  gap: var(--space-2) var(--space-6);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--om-border-light);
}

@media (min-width: 768px) {
  .hws-step {
    grid-template-columns: 64px 1fr;
    align-items: start;
  }
}

.hws-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--om-orange);
  padding-top: 2px;
}

.hws-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--om-dark);
  margin-bottom: var(--space-2);
}

.hws-body {
  font-size: 0.9375rem;
  color: var(--om-muted);
  line-height: 1.65;
  max-width: 62ch;
}

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

.site-footer {
  background: var(--om-topbar-bg);
}

.footer-top {
  display: grid;
  gap: var(--space-6);
  padding-top: var(--space-8);
  align-items: start;
}

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

  .footer-map,
  .footer-inquiry-card {
    height: 350px;
  }
}

.footer-map {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 520px;
}

.footer-map-toggle {
  display: inline-flex;
  gap: var(--space-1);
  background: color-mix(in srgb, var(--om-white) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  border-radius: var(--radius-sm);
  padding: var(--space-1);
  align-self: flex-start;
}

.footer-map-toggle-btn {
  min-height: 40px;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--om-white) 70%, transparent);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-map-toggle-btn.is-active {
  background: var(--om-orange);
  color: var(--om-white);
}

.footer-map-iframe {
  width: 100%;
  height: 230px;
  flex-shrink: 0;
  border: 0;
  border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
  .footer-map-iframe {
    height: auto;
    flex: 1;
    min-height: 0;
  }
}

.footer-inquiry-card {
  scroll-margin-top: 0;
  padding: var(--space-5);
  overflow-y: auto;
}

.footer-inquiry-card .form-heading {
  font-size: 0.9375rem;
  margin-bottom: var(--space-1);
}

.footer-inquiry-card .form-subhead {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: var(--space-1);
}

.footer-inquiry-card .form-field {
  margin-bottom: var(--space-1);
}

.footer-inquiry-card .form-field label {
  margin-bottom: var(--space-1);
}

.footer-inquiry-card .form-field input,
.footer-inquiry-card .form-field textarea {
  padding: var(--space-1) var(--space-2);
  font-size: 0.8125rem;
}

.footer-inquiry-card .form-field textarea {
  min-height: 28px;
}

.footer-inquiry-card button[type="submit"] {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
}

.footer-inner {
  display: grid;
  gap: var(--space-5);
  padding-block: var(--space-7);
}

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

.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-2);
}

.footer-logo-img {
  display: block;
  width: 160px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer-tagline,
.footer-contact p,
.footer-offices p {
  color: color-mix(in srgb, var(--om-white) 65%, transparent);
  font-size: 0.9375rem;
  margin-bottom: var(--space-1);
}

.footer-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: color-mix(in srgb, var(--om-white) 65%, transparent);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-cta {
  margin-top: var(--space-4);
}

.footer-contact a:hover,
.footer-offices a:hover {
  color: var(--om-teal);
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  padding-block: var(--space-4);
}

.footer-bottom p {
  color: color-mix(in srgb, var(--om-white) 45%, transparent);
  font-size: 0.8125rem;
}

/* =========================================================
   Left-side floating CTA
   ========================================================= */

.floating-cta {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 45;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--om-pink);
  color: var(--om-white);
  font-weight: 700;
  padding: var(--space-4) var(--space-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background-color 0.15s ease, padding 0.15s ease, opacity 0.2s ease;
}

.floating-cta:hover {
  background: color-mix(in srgb, var(--om-pink) 88%, black 12%);
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-cta-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.floating-cta-icon svg {
  width: 100%;
  height: 100%;
}

.floating-cta-text {
  display: none;
}

@media (min-width: 768px) {
  .floating-cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .floating-cta {
    padding: var(--space-5) var(--space-2);
  }

  .floating-cta-icon {
    display: none;
  }

  .floating-cta-text {
    display: inline-flex;
    writing-mode: vertical-rl;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

/* =========================================================
   Sticky mobile CTA
   ========================================================= */

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: var(--space-3);
  background: var(--om-white);
  border-top: 1px solid var(--om-border-light);
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-mobile-cta.is-visible {
  display: flex;
}

.sticky-mobile-cta.is-shown {
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  flex: 1;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

/* =========================================================
   WhatsApp floating button
   ========================================================= */

.om-landing-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.om-landing-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.om-landing-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .om-landing-whatsapp {
    bottom: 92px;
    right: 16px;
  }
}

/* =========================================================
   Lead modal (popup form)
   ========================================================= */

body.modal-open {
  overflow: hidden;
}

.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  overflow-y: auto;
  background: color-mix(in srgb, var(--om-dark) 70%, transparent);
}

.lead-modal-overlay.is-open {
  display: flex;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - var(--space-8));
  overflow-y: auto;
  background: var(--om-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.5);
  margin-block: auto;
}

.lead-modal-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--om-muted);
  border-radius: 50%;
}

.lead-modal-close:hover {
  color: var(--om-teal);
  background: var(--om-surface-light);
}

@media (max-width: 767px) {
  .lead-modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .lead-modal {
    max-width: none;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    margin: 0;
    padding-top: var(--space-8);
  }
}

/* =========================================================
   Form error page (handlers/submit-lead.php)
   ========================================================= */

.form-error-page {
  max-width: 480px;
  margin: var(--space-9) auto;
  padding: var(--space-6);
  text-align: center;
}

.form-error-page h1 {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
}

.form-error-page ul {
  color: var(--om-pink);
  margin-bottom: var(--space-5);
  display: inline-block;
  text-align: left;
}

.form-error-page li {
  margin-bottom: var(--space-2);
}

/* =========================================================
   Section rhythm — each block has a different visual type
   ========================================================= */

/* Friction: staggered problem cards + giant watermark numbers */
.friction {
  background: var(--om-surface-light);
}

.friction-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-left: 3px solid var(--om-orange);
  box-shadow: 0 10px 28px rgba(13, 43, 62, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.friction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 43, 62, 0.12);
}

.friction-index {
  position: absolute;
  right: 10px;
  top: 4px;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--om-orange) 14%, transparent);
  pointer-events: none;
}

@media (min-width: 768px) {
  .friction-item:nth-child(2) {
    transform: translateY(18px);
  }

  .friction-item:nth-child(2):hover {
    transform: translateY(12px);
  }
}

/* Funnel: colored top rail on each stage */
.funnel-stage {
  position: relative;
  overflow: hidden;
}

.funnel-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--om-teal);
}

.funnel-stage-final::before {
  background: var(--om-orange);
}

.funnel-stage-num {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.proof-stat {
  padding: var(--space-3) var(--space-4);
  border: 1px solid color-mix(in srgb, var(--om-white) 12%, transparent);
  border-radius: var(--radius-md);
  min-width: 140px;
}

/* Verticals: tinted, color-coded cards */
.verticals {
  background: var(--om-surface-light);
}

.vertical-card {
  background: color-mix(in srgb, var(--om-teal) 12%, white);
  border: 1px solid color-mix(in srgb, var(--om-teal) 38%, white);
  border-top: 4px solid var(--om-teal);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--om-teal) 16%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vertical-card:nth-child(2) {
  background: color-mix(in srgb, var(--om-orange) 14%, white);
  border-color: color-mix(in srgb, var(--om-orange) 42%, white);
  border-top-color: var(--om-orange);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--om-orange) 16%, transparent);
}

.vertical-card:nth-child(3) {
  background: color-mix(in srgb, var(--om-pink) 12%, white);
  border-color: color-mix(in srgb, var(--om-pink) 38%, white);
  border-top-color: var(--om-pink);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--om-pink) 16%, transparent);
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 43, 62, 0.14);
}

.vertical-card-icon {
  display: none;
}

.vertical-card:nth-child(2) .vertical-card-icon {
  color: var(--om-white);
  background: var(--om-orange);
}

.vertical-card:nth-child(3) .vertical-card-icon {
  color: var(--om-white);
  background: var(--om-pink);
}

.vertical-card:nth-child(2) .vertical-card-bullets li::before {
  color: var(--om-orange);
}

.vertical-card:nth-child(3) .vertical-card-bullets li::before {
  color: var(--om-pink);
}

.vertical-card .tag {
  color: var(--om-teal);
  background: color-mix(in srgb, var(--om-teal) 16%, white);
  border-color: var(--om-teal);
}

.vertical-card:nth-child(2) .tag {
  color: #b86a08;
  background: color-mix(in srgb, var(--om-orange) 18%, white);
  border-color: var(--om-orange);
}

.vertical-card:nth-child(3) .tag {
  color: var(--om-pink);
  background: color-mix(in srgb, var(--om-pink) 16%, white);
  border-color: var(--om-pink);
}

.vertical-card .card-cta {
  color: var(--om-teal);
  border-bottom-color: var(--om-teal);
}

.vertical-card:nth-child(2) .card-cta {
  color: var(--om-orange);
  border-bottom-color: var(--om-orange);
}

.vertical-card:nth-child(3) .card-cta {
  color: var(--om-pink);
  border-bottom-color: var(--om-pink);
}

/* Capabilities: oversized numbers + hover wash */
.capability-num {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.capability-item {
  transition: background-color 0.2s ease;
}

.capability-item:hover {
  background: color-mix(in srgb, var(--om-white) 7%, transparent);
}

/* Founder: inset lesson cards */
.founder-point-inner {
  background: var(--om-surface-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.founder-bio {
  position: relative;
  padding-left: var(--space-5);
  border-left: 3px solid var(--om-pink);
}

/* How we start: numbered discs */
.hws-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--om-orange) 12%, white);
  font-size: 0.8125rem;
}

/* FAQ: heading left, accordion right */
.faq {
  background: var(--om-surface-light);
}

@media (min-width: 900px) {
  .faq-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: var(--space-8);
    align-items: start;
  }
}

.faq-intro .section-heading {
  max-width: 16ch;
}

.faq-image-wrap {
  margin-top: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 43, 62, 0.12);
}

.faq-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .faq-img {
    height: 320px;
  }
}

.faq-list {
  border-top: 0;
}

.faq-item {
  background: var(--om-white);
  border: 1px solid var(--om-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  padding-inline: var(--space-5);
  box-shadow: 0 4px 16px rgba(13, 43, 62, 0.04);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  padding-block: var(--space-4);
}

.faq-answer {
  max-width: none;
}

/* Final CTA: glowing inner panel */
.final-cta-panel {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding: var(--space-8) var(--space-6);
  border: 1px solid color-mix(in srgb, var(--om-teal) 40%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--om-white) 6%, transparent);
  box-shadow: 0 0 80px color-mix(in srgb, var(--om-teal) 16%, transparent);
}

.final-cta-panel .section-heading,
.final-cta-panel .section-subhead {
  margin-inline: auto;
}
