/**
 * OmniYou landing — matches reference layout (12 sections).
 * Scope: body.oy-landing
 */
:root {
  --oy-bg: #f3f4f6;
  --oy-black: #000000;
  --oy-accent: #ff3b30;
  --oy-white: #ffffff;
  --oy-text: #111827;
  --oy-muted: #6b7280;
  --oy-muted-soft: #9ca3af;
  --oy-radius: 1.5rem;
  --oy-radius-lg: 2rem;
  --oy-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  --oy-nav-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

body.oy-landing {
  background: var(--oy-bg);
  color: var(--oy-text);
  overflow-x: hidden;
}

body.oy-landing.oy-video-modal-open {
  overflow: hidden;
}

/* Video lightbox — backdrop matches .offcanvas-menu (theme styles.css) */
.oy-landing .oy-video-modal {
  position: fixed;
  inset: 0;
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: max(24px, env(safe-area-inset-top, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.oy-landing .oy-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.oy-landing .oy-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5607843137);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.oy-landing .oy-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(85vh, 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  background: #000;
}

.oy-landing .oy-video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.oy-landing .oy-video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--oy-black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.oy-landing .oy-video-modal__close:hover {
  background: #fff;
}

/* Main white shell (services → features): clip inner sections so top corners read as rounded */
.oy-landing .box-white {
  border-radius: 40px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .oy-landing .box-white {
    border-radius: 24px;
  }
}

/* Black wordmark PNG in dark offcanvas: visibility only, same slot as theme .logo-site */
.oy-landing .offcanvas-menu .logo-site img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* —— Header: sits on top of hero (same overlap idea as theme .tf-header) —— */
.oy-landing .tf-header.omniyou-header {
  padding-top: 24px;
  margin-bottom: -116px;
  position: sticky;
  top: 0;
  z-index: 1020;
  background: transparent;
  pointer-events: none;
}

.oy-landing .tf-header.omniyou-header .header-inner {
  pointer-events: auto;
}

@media (max-width: 991px) {
  .oy-landing .tf-header.omniyou-header {
    margin-bottom: -104px;
  }
}

.oy-landing .tf-header.omniyou-header .header-inner.oy-header-inner {
  max-width: min(1100px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--oy-nav-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.oy-landing .tf-header.omniyou-header .logo-site img {
  display: block;
  height: 35px;
  width: auto;
}

.oy-landing .oy-header-nav {
  flex: 1;
  display: none;
  justify-content: center;
  min-width: 0;
}

.oy-landing .oy-header-nav .nav-menu-main {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

@media (min-width: 992px) {
  .oy-landing .oy-header-nav {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .oy-landing .tf-header.omniyou-header .header-inner.oy-header-inner {
    margin-left: 16px;
    margin-right: 16px;
    max-width: none;
  }
}

/* Mobile header: orange text CTA next to menu (desktop uses .tf-btn Get Your Clone) */
.oy-landing .oy-header-mobile-actions {
  flex-shrink: 0;
  gap: 18px;
}

.oy-landing .oy-header-mobile-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oy-accent);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

@media (min-width: 380px) {
  .oy-landing .oy-header-mobile-cta {
    font-size: 0.875rem;
  }
}

.oy-landing .oy-header-mobile-cta:hover {
  color: var(--oy-accent);
  text-decoration: underline;
  opacity: 0.92;
}

/* —— Hero: page background + video structure only (theme .sub, .title, .text, .tf-btn) —— */
.oy-anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

/*
 * In-page anchors (index.html): sticky header offset for scroll targets.
 * IDs: #problem #solution #clonelab #how-it-works #pricing #faq #contact
 */
.oy-landing #problem.oy-problem,
.oy-landing #solution,
.oy-landing #clonelab,
.oy-landing #how-it-works,
.oy-landing #pricing,
.oy-landing #faq,
.oy-landing #contact {
  scroll-margin-top: 96px;
}

/* FAQ: pricing already has .flat-spacing bottom padding — keep only modest top padding before the kicker */
.oy-landing #faq.section-faqs.oy-faq-section {
  margin-top: 0;
  padding-top: clamp(48px, 6vw, 80px) !important;
}

/* Contact: full vertical rhythm (flat-spacing) + inner padding from .section-contact — avoid pt-0 / p-0 utilities */
.oy-landing #contact.flat-spacing {
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
}

/* Contact strip: keep copy + form above the rounded background image */
.oy-landing .section-contact.oy-contact-section .contact-image {
  z-index: 0;
}

.oy-landing .section-contact.oy-contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact: Demo pill + headline stack */
.oy-landing .oy-contact-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  margin-bottom: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.oy-landing .oy-contact-demo-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand, #fd3a25);
  flex-shrink: 0;
}

.oy-landing .oy-contact-demo-badge__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand, #fd3a25);
}

@media (max-width: 991px) {
  .oy-landing #contact.flat-spacing {
    padding-top: clamp(48px, 9vw, 80px);
    padding-bottom: clamp(48px, 9vw, 80px);
  }
}

@media (max-width: 767px) {
  .oy-landing #contact.flat-spacing {
    padding-top: clamp(40px, 10vw, 60px);
    padding-bottom: clamp(40px, 10vw, 60px);
  }

  .oy-landing .section-contact.oy-contact-section {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .oy-landing .section-contact.oy-contact-section .form-contact {
    padding: 20px;
  }

  .oy-landing .section-contact.oy-contact-section .col-left {
    padding-bottom: 28px;
  }
}

/* Footer: app-style mark (full squircle asset — no extra tile) */
.oy-landing footer .footer-logo.oy-footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oy-landing footer .oy-footer-logo-mark__square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.oy-landing footer .oy-footer-logo-mark__square img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

/*
 * Footer social pills — linked profiles (target="_blank" in HTML).
 */
.oy-landing footer .tf-social-1 .oy-footer-social-item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 24px;
  background-color: var(--neutral-100);
  box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.oy-landing footer .tf-social-1 a.oy-footer-social-item:hover {
  opacity: 0.9;
}

/* Mobile drawer: stack social links (replaces horizontal Twitter / Dribbble / LinkedIn placeholders) */
.oy-landing .offcanvas-menu .canvas_foot .right.oy-canvas-socials {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.oy-landing footer .tf-social-1 .oy-footer-social-item .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  border-radius: 50%;
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #272727, #272727);
  box-shadow: 0px -3px 0px 0px #080808 inset, 0px 1px 0px 0px rgba(255, 255, 255, 0.3019607843) inset, 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.1215686275), 0px 3px 3px 0px rgba(0, 0, 0, 0.1411764706);
}

.oy-landing footer .tf-social-1 .oy-footer-social-item .social-item .icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .oy-landing footer .tf-social-1 .oy-footer-social-item {
    gap: 7px;
    padding: 12px 7px;
  }

  .oy-landing .footer-bottom.oy-footer-bottom-nav .footer-links {
    gap: 12px 16px;
  }

  .oy-landing .oy-footer-legal-links {
    width: 100%;
    justify-content: center !important;
    padding-top: 4px;
  }
}

/* Privacy & Terms — visually separate from primary footer nav */
.oy-landing .oy-footer-legal-links a.link1 {
  color: var(--oy-accent);
  text-decoration-color: rgba(255, 59, 48, 0.4);
}

.oy-landing .oy-footer-legal-links a.link1:hover {
  color: #d32f26 !important;
  text-decoration-color: currentColor;
}

/*
 * Legal / policy pages — spacing matches OmniYou layout:
 * - Section: outer gutter from viewport (same idea as .container / nav side margins).
 * - Shell: max width + auto side margins + inner padding (same idea as .oy-header-inner).
 */
.oy-landing .oy-legal-page-wrap {
  padding-top: clamp(104px, 14vw, 168px);
  padding-bottom: clamp(64px, 10vw, 120px);
  /* Desktop: side space before content column (theme .container uses 12px; nav uses ~16px from edge) */
  padding-inline: clamp(16px, 3vw, 32px);
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .oy-landing .oy-legal-page-wrap {
    padding-top: clamp(132px, 26vw, 200px);
    /* Mobile: align with .oy-header-inner (16px side margins on small screens) */
    padding-inline: max(16px, env(safe-area-inset-left, 0px))
      max(16px, env(safe-area-inset-right, 0px));
  }
}

section.oy-legal-page-wrap > .oy-legal-page-shell,
.oy-landing section.oy-legal-page-wrap .oy-legal-page-shell {
  display: block;
  width: 100%;
  max-width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
  /* Inner padding: matches nav pill horizontal padding (see .oy-header-inner) */
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
  min-width: 0;
}

@media (max-width: 991px) {
  section.oy-legal-page-wrap > .oy-legal-page-shell,
  .oy-landing section.oy-legal-page-wrap .oy-legal-page-shell {
    /* Keep same inner inset as desktop nav pill (18px L/R) */
    padding-left: 18px;
    padding-right: 18px;
  }
}

.oy-landing .oy-legal-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.oy-landing .oy-legal-prose p,
.oy-landing .oy-legal-prose ul {
  margin-bottom: 1rem;
  color: var(--neutral-600, #52525b);
}

.oy-landing .oy-legal-prose ul {
  padding-left: 1.25rem;
}

.oy-landing .oy-legal-prose li {
  margin-bottom: 0.35rem;
}

/* Landing footer: brand title + slogan stack */
.oy-landing footer .oy-footer-brand .oy-footer-brand__name {
  margin-bottom: 6px;
}

.oy-landing footer .oy-footer-brand .oy-footer-brand__name sup {
  font-size: 0.55em;
  top: -0.4em;
  font-weight: inherit;
}

.oy-landing footer .oy-footer-brand .oy-footer-brand__slogan {
  margin-top: 0;
  margin-bottom: 14px;
}

/* Footer line under pricing tiers */
.oy-landing #pricing.section-pricing .oy-pricing-footer-lede {
  margin-top: clamp(56px, 7vw, 96px);
}

/* Pro tier: inline “Most Popular” pill */
.oy-landing #pricing .pricing-item.style-black .pricing-most-popular {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(253, 58, 37, 0.4);
}

/*
 * Pricing tiers: vertical space between rows on desktop.
 * Theme utility .lg-mb-24 only applies at max-width 991px, so stacked .row blocks were flush on large screens.
 */
.oy-landing #pricing.section-pricing .container > .row + .row {
  margin-top: clamp(24px, 3.5vw, 40px);
}

/* Space between major strips (grey ↔ white card ↔ next section) */
.oy-landing .section-hero.omniyou-hero + section.oy-what-we-do {
  margin-top: clamp(20px, 4vw, 40px);
}

/* How it works (white card) sits after OmniSelf strip */
.oy-landing .box-black + .section-process.oy-process {
  margin-top: clamp(32px, 6vw, 72px);
}

.oy-landing .section-process.oy-process + .box-black.oy-testimonials-outcome {
  margin-top: clamp(32px, 6vw, 72px);
}

.oy-landing .box-black.oy-testimonials-outcome + .section-pricing {
  margin-top: clamp(32px, 6vw, 72px);
}

.oy-landing .section-pricing + .section-about-us {
  margin-top: clamp(32px, 6vw, 72px);
}

/* The Problem: standalone white card (no longer fused to moved process section) */
.oy-landing section.oy-what-we-do + section.oy-problem {
  margin-top: clamp(24px, 4vw, 48px);
}

/* Dark OmniSelf strip: breathing room after The Shift (before .box-black) */
.oy-landing #solution + .box-black {
  margin-top: clamp(32px, 6vw, 72px);
}

/*
 * Horizontal fade line — same treatment as .section-statistic::before /
 * .swiper-testimonial_wrap .group-slider::before (theme dark sections).
 */
.oy-landing .box-black .section-team .line-gradient-dark {
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1324px;
  /* ~2× previous rhythm: clearer separation between the three OmniSelf blocks */
  margin: clamp(40px, 7.5vw, 96px) auto;
  border: 0;
  padding: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 767px) {
  .oy-landing .box-black .section-team .line-gradient-dark {
    margin: clamp(32px, 8vw, 64px) auto;
  }
}

/* OmniSelf ledes: same rhythm as Problem/Shift (.heading-section.mb-48 + title → lede gap) */
.oy-landing .box-black .section-team .heading-section.center .heading-title {
  margin-bottom: 16px;
}

.oy-landing .box-black .section-team .oy-omniself__lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.oy-landing .box-black .section-team .oy-omniself__lede--wide {
  max-width: 720px;
}

/* “What it does” two-column block: slightly more row gap when stacked */
.oy-landing .box-black .section-team > .container > .row.align-items-start.gy-5 {
  --bs-gutter-y: 2.75rem;
}

@media (min-width: 992px) {
  .oy-landing .box-black .section-team > .container > .row.align-items-start.gy-5 {
    --bs-gutter-y: 3rem;
  }
}

/* OmniSelf “What it does” pill rows: tighter than default .team-item (40px) */
.oy-landing .box-black .section-team .row.g-3 .team-item.style-1 {
  padding: 12px 16px;
  border-radius: 28px;
}
@media (max-width: 1199px) {
  .oy-landing .box-black .section-team .row.g-3 .team-item.style-1 {
    padding: 10px 14px;
  }
}
@media (max-width: 767px) {
  .oy-landing .box-black .section-team .row.g-3 .team-item.style-1 {
    padding: 8px 12px;
    border-radius: 22px;
  }
}

/* Breakthrough Voice Reply: custom SVGs in .image (avoid theme img 100%/cover stretch) */
.oy-landing .box-black .section-team .team-item.style-1 .top .image img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  border-radius: 0;
}

/* How it works: full white card (after .box-black; theme accordion stack inside) */
.oy-landing .section-process.oy-process {
  background-color: var(--oy-white);
  border-radius: 40px;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: none;
  filter: none;
}

.oy-landing .section-process.oy-process.flat-spacing {
  padding-bottom: clamp(48px, 7vw, 88px);
}

@media (max-width: 991px) {
  .oy-landing .section-process.oy-process {
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 767px) {
  .oy-landing .section-process.oy-process {
    border-radius: 24px;
  }
}

/* How it works: stacked accordion (theme .accordion-faq_item open/close chrome) */
.oy-landing .oy-hiw__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.oy-landing .oy-process .heading-section.center .oy-hiw__sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(0deg, #f5f5f5, #f5f5f5),
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.04) inset, 0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 8px rgba(0, 0, 0, 0.05);
  color: var(--brand);
}

/* Use cases: nested inside .oy-process (one white card with How it works) */
.oy-landing .section-process.oy-process .section-features.oy-use-cases {
  background: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
  margin-top: clamp(28px, 5vw, 56px);
  padding-top: clamp(28px, 5vw, 56px);
}

.oy-landing .section-process.oy-process .section-features.oy-use-cases .oy-use-cases__footer {
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: 0;
  color: var(--secondary);
}

.oy-landing .oy-use-cases__title {
  line-height: 1.12;
  text-wrap: balance;
}

.oy-landing .oy-use-cases__hub img {
  width: min(88px, 48%);
  height: auto;
  display: block;
  object-fit: contain;
}

/* Animated connectors: theme paints ::after with neutral-50; keep strokes, drop grey fill */
.oy-landing .section-process.oy-process .section-features.oy-use-cases .side-line-main .link-break-line::after {
  background: transparent;
}

/* Testimonials (founder carousel) + Outcome — dark strip after Use cases */
.oy-landing .box-black.oy-testimonials-outcome {
  position: relative;
  background-color: var(--neutral-950);
  background-image: radial-gradient(ellipse 90% 50% at 50% -15%, rgba(253, 58, 37, 0.14) 0%, transparent 55%);
}

.oy-landing .oy-testimonials-outcome .oy-founder-header {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.oy-landing .oy-testimonials-outcome .oy-founder-header .heading-title {
  line-height: 1.08;
}

.oy-landing .oy-testimonials-outcome .oy-founder-quote .quote-icon {
  display: block;
  margin-bottom: 16px;
}

.oy-landing .oy-testimonials-outcome .oy-founder-quote .desc {
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.oy-landing .oy-testimonials-outcome .oy-founder-quote .cite {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  color: var(--neutral-400);
  font-size: 0.875rem;
  font-weight: 600;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile.team-item {
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  text-align: left;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile .image {
  position: relative;
  margin-bottom: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.oy-landing .oy-testimonials-outcome .oy-founder-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile.hover-video .oy-founder-play {
  opacity: 0;
  pointer-events: none;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile .image .oy-founder-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.oy-landing .oy-testimonials-outcome .oy-founder-tile:hover .oy-founder-video,
.oy-landing .oy-testimonials-outcome .oy-founder-tile.hover-video .oy-founder-video {
  opacity: 1;
}

.oy-landing .oy-testimonials-outcome .oy-founder-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 4px;
}

.oy-landing .oy-testimonials-outcome .oy-founder-swiper-wrap {
  position: relative;
  padding-bottom: 8px;
}

.oy-landing .oy-testimonials-outcome .oy-founder-swiper-wrap .group-btn-slider {
  margin-top: clamp(20px, 4vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1324px;
  margin-left: auto;
  margin-right: auto;
}

.oy-landing .oy-testimonials-outcome .oy-outcome-section {
  margin-top: clamp(48px, 8vw, 88px);
  padding-top: clamp(8px, 2vw, 16px);
}

.oy-landing .oy-testimonials-outcome .oy-outcome-kicker {
  margin-top: clamp(32px, 6vw, 56px);
  margin-bottom: 0;
  color: var(--brand);
  font-weight: 600;
}

/* Outcome benefits: 12-col grid — top 8+4, bottom 6+6; cards stretch to row height */
@media (min-width: 768px) {
  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    align-items: stretch;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
    /* Fill grid row track so inner .benefits-box can use height:100% */
    height: 100%;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row .benefits-box {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
}

/* Tablet: equal 2×2 (ignore 12-col spans) */
@media (min-width: 768px) and (max-width: 991px) {
  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, auto));
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row > [class*="col-"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* Desktop: same column widths as section-benefits — row 1: 7+5, row 2: 5+7 */
@media (min-width: 992px) {
  /*
   * Equal-height rows: two 1fr tracks split grid height; min-height ensures fr resolves so cards
   * can use height:100%. Grid still grows if content is taller than the minimum.
   */
  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: clamp(520px, 58vh, 880px);
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row .benefits-box {
    height: 100% !important;
    min-height: 100%;
    box-sizing: border-box;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row > :nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: 1;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row > :nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row > :nth-child(3) {
    grid-column: 1 / span 5;
    grid-row: 2;
  }

  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row.row > :nth-child(4) {
    grid-column: 6 / span 7;
    grid-row: 2;
  }

  /* Narrower copy column — avoids cramped/long lines in the 7-col progress card */
  .oy-landing .oy-testimonials-outcome .oy-outcome-benefits-row .benefits-box.benefits-progress .content {
    max-width: 88%;
  }
}

@media (max-width: 991px) {
  .oy-landing .oy-testimonials-outcome .oy-founder-header {
    margin-bottom: clamp(24px, 5vw, 40px);
  }
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-title.oy-hiw__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.2;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action:not(.collapsed) .accordion-title.oy-hiw__title-row {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action:not(.collapsed) .oy-hiw__name {
  color: var(--white);
}

.oy-landing .oy-hiw__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 16px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action.collapsed .oy-hiw__circle {
  border-color: var(--neutral-400);
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.35);
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action:not(.collapsed) .oy-hiw__circle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.oy-landing .oy-hiw__ic--open {
  display: none;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action:not(.collapsed) .oy-hiw__ic--collapsed {
  display: none;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-action:not(.collapsed) .oy-hiw__ic--open {
  display: block;
}

/* Theme rotates .accordion-title .icon when open; keep our circle icons upright */
.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-title .oy-hiw__circle .icon {
  transform: none;
  border: none;
  width: auto;
  height: auto;
  font-size: inherit;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-content.oy-hiw__body {
  position: relative;
  padding-top: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(48px, 8vw, 72px);
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-content.oy-hiw__body .text {
  padding-top: 0;
  padding-bottom: 0;
}

.oy-landing .oy-hiw-stack .accordion-faq_item .accordion-content.oy-hiw__body .oy-hiw__desc {
  max-width: 42rem;
  padding-right: clamp(72px, 18vw, 140px);
}

.oy-landing .oy-hiw__step {
  position: absolute;
  right: clamp(8px, 2vw, 20px);
  bottom: clamp(8px, 2vw, 16px);
  font-weight: 600;
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.oy-landing .oy-hiw__step-of {
  font-size: 0.5em;
  opacity: 0.65;
  font-weight: 600;
}

@media (max-width: 575px) {
  .oy-landing .oy-hiw-stack .accordion-faq_item .accordion-content.oy-hiw__body .oy-hiw__desc {
    padding-right: 0;
  }
}

/* The Problem: standalone rounded card after “What we do” */
.oy-landing .oy-problem {
  background-color: var(--oy-white);
  border-radius: 40px;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 0;
  overflow: hidden;
  box-shadow: none;
  filter: none;
}

@media (max-width: 767px) {
  .oy-landing .oy-problem {
    border-radius: 24px;
  }
}

@media (max-width: 991px) {
  .oy-landing .oy-problem {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.oy-landing .oy-problem .heading-section.center .heading-title {
  margin-bottom: 16px;
}

.oy-landing .oy-problem__lede {
  margin: 0 auto;
  max-width: 520px;
}

.oy-landing .oy-problem__grid {
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* Same card shell as Services accordion rows; static (no collapse / no image swap) */
.oy-landing .oy-problem .accordion-faq_item {
  height: 100%;
}

.oy-landing .oy-problem .accordion-action.oy-problem-card-only {
  pointer-events: none;
  cursor: default;
}

.oy-landing .oy-problem .accordion-faq_item .accordion-title {
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  line-height: 1.25;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.2vw, 20px);
}

@media (max-width: 767px) {
  .oy-landing .oy-problem .accordion-faq_item .accordion-title {
    font-size: 1.125rem;
    line-height: 1.35;
  }
}

/* Problem + Shift cards: medium grey icon tile, white glyph, icon first (left) */
.oy-landing .oy-problem .accordion-title .oy-problem-q {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-400, #a1a1aa);
  border: none;
  box-sizing: border-box;
}

/* Problem: white ? on grey diamond */
.oy-landing #problem .accordion-title .oy-problem-q {
  border-radius: 11px;
  transform: rotate(45deg);
}

/* Shift: white tick on grey circle */
.oy-landing #solution .accordion-title .oy-problem-q {
  border-radius: 50%;
  transform: none;
}

.oy-landing .oy-problem .accordion-title .oy-problem-q__inner {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}

.oy-landing #problem .accordion-title .oy-problem-q__inner {
  transform: rotate(-45deg);
}

.oy-landing #solution .accordion-title .oy-problem-q__inner {
  transform: none;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .oy-landing .oy-problem .accordion-title .oy-problem-q {
    width: 38px;
    height: 38px;
  }

  .oy-landing .oy-problem .accordion-title .oy-problem-q__inner {
    font-size: 14px;
  }

  .oy-landing #solution .accordion-title .oy-problem-q__inner {
    font-size: 12px;
  }
}

.oy-landing .oy-problem__callout {
  background: var(--oy-black);
  color: var(--oy-white);
  border-radius: var(--oy-radius-lg);
  padding: clamp(28px, 4vw, 44px);
}

.oy-landing .oy-problem__callout-title {
  margin: 0 0 20px;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.oy-landing .oy-problem__callout-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oy-landing .oy-problem__callout-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.oy-landing .oy-problem__callout-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7c3aed;
  color: var(--oy-white);
  font-size: 11px;
  flex-shrink: 0;
}

.oy-landing .oy-problem__callout-check .icon {
  line-height: 1;
}

.oy-landing .oy-problem__callout-text {
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 575px) {
  .oy-landing .oy-problem__callout-row {
    align-items: flex-start;
    border-radius: 20px;
  }
}

.oy-landing .section-hero.omniyou-hero {
  /* Same inset top / left / right as the floating card (hero-image) — tweak once, applies everywhere */
  --oy-hero-card-gutter: 18px;
  min-height: 100vh;
  padding: var(--oy-hero-card-gutter) var(--oy-hero-card-gutter) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--oy-bg);
  display: flex;
  flex-direction: column;
}

/* Theme-style floating card; your abstract art (orange curve on the right) */
.oy-landing .section-hero.omniyou-hero .hero-image {
  display: block;
  position: absolute;
  z-index: 0;
  inset: var(--oy-hero-card-gutter) var(--oy-hero-card-gutter) 0 var(--oy-hero-card-gutter);
  border-radius: 40px;
  background-color: #f3f4f6;
  background-image: url(../images/div.hero-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  background-attachment: scroll;
}

@media (min-width: 992px) {
  .oy-landing .section-hero.omniyou-hero .hero-image {
    background-attachment: fixed;
  }
}

.oy-landing .section-hero.omniyou-hero .container.omniyou-hero__container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 0;
}

.oy-landing .section-hero.omniyou-hero .content-wrap.omniyou-hero__layout {
  max-width: 1060px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(120px, 17vh, 200px) 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.oy-landing .section-hero.omniyou-hero .omniyou-hero__copy {
  flex-shrink: 0;
}

.oy-landing .section-hero.omniyou-hero .bot-btns {
  margin-bottom: 0;
}


.oy-landing .omniyou-hero__video {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 0;
  position: relative;
}

.oy-landing .omniyou-hero__video-frame {
  position: relative;
  z-index: 10;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
  background: #e5e7eb;
  isolation: isolate;
  transition: box-shadow 0.3s ease;
}


.oy-landing .omniyou-hero__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: none; /* hidden — VSL now uses inline <video> */
}

/* Inline VSL video: fills the 16:9 frame */
.oy-landing .omniyou-hero__video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* (overlay styles moved below with VSL controls) */

.oy-landing .omniyou-hero__video-tagline {
  margin: 0;
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  max-width: 520px;
  flex-shrink: 1;
  min-height: 0;
}

/* Play control: not a theme CTA; minimal shape only */
.oy-landing .omniyou-hero__play {
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  aspect-ratio: 1;
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
  border-radius: 50%;
  border: none;
  background: var(--oy-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oy-landing .omniyou-hero__play:hover {
  transform: scale(1.05);
}

.oy-landing .omniyou-hero__play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--oy-black);
  /* Optical centering: shift right so triangle feels visually centered */
  margin-left: 3px;
}

/* "See how it works" on top of video (inside frame), flush to bottom edge of frame */
.oy-landing .omniyou-hero__video-chip.tf-btn-2 {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 26px;
  font-size: 14px;
  line-height: 1.2;
  gap: 8px;
  text-decoration: none;
}

.oy-landing .omniyou-hero__chip-arrow {
  flex-shrink: 0;
  color: var(--brand);
}

/* ── VSL Custom Controls ─────────────────────────────── */

/* Overlay: visible by default, hidden after first play */
.oy-landing .omniyou-hero__video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: var(--oy-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.oy-landing .omniyou-hero__video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}
.oy-landing .omniyou-hero__video-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

/* Chip: transitions for show/hide on play/pause */
.oy-landing .omniyou-hero__video-chip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 5;
  position: relative;
}
.oy-landing .omniyou-hero__video-chip span {
  white-space: nowrap;
  line-height: 1;
  display: block;
}
.oy-landing .omniyou-hero__video-chip.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}
.oy-landing .vsl-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 14px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
}
/* Show controls when playing or hovered */
.oy-landing .omniyou-hero__video-frame:hover .vsl-controls,
.oy-landing .omniyou-hero__video-frame.vsl-playing .vsl-controls,
.oy-landing .vsl-controls.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Auto-hide after inactivity while playing */
.oy-landing .vsl-controls.controls-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Play/Pause button inside control bar */
.oy-landing .vsl-controls__play {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.15s ease;
}
.oy-landing .vsl-controls__play:hover { transform: scale(1.1); }
.oy-landing .vsl-controls__icon { width: 18px; height: 18px; }
.oy-landing .vsl-controls__icon--pause { display: none; }
.oy-landing .vsl-controls.is-playing .vsl-controls__icon--play { display: none; }
.oy-landing .vsl-controls.is-playing .vsl-controls__icon--pause { display: block; }

/* Progress bar */
.oy-landing .vsl-controls__progress-wrap {
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.oy-landing .vsl-controls__progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: height 0.15s ease;
}
.oy-landing .vsl-controls__progress-wrap:hover .vsl-controls__progress-bar {
  height: 6px;
}
.oy-landing .vsl-controls__progress-played {
  height: 100%;
  width: 0%;
  background: #ff3b30;
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Time display */
.oy-landing .vsl-controls__time {
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

/* Mute button */
.oy-landing .vsl-controls__mute {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.15s ease;
}
.oy-landing .vsl-controls__mute:hover { transform: scale(1.1); }

/* Hero badge: wrap long lines but pill width = content (not full column) */
@media (max-width: 991px) {
  /* Theme clears min-height on .section-hero — restore full viewport so flex + margin-top: auto pins video to bottom */
  .oy-landing .section-hero.omniyou-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .oy-landing .section-hero.omniyou-hero .content-wrap .sub {
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 8px 14px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* GSAP fadeUp wrapper shrinks with badge, stays centered */
  .oy-landing .section-hero.omniyou-hero .omniyou-hero__copy > .overflow-hidden {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  /* Match desktop: no bottom section padding, background card + video flush to hero bottom */
  .oy-landing .section-hero.omniyou-hero {
    padding: var(--oy-hero-card-gutter) var(--oy-hero-card-gutter) 0;
  }

  .oy-landing .section-hero.omniyou-hero .content-wrap.omniyou-hero__layout {
    padding: clamp(104px, 14vh, 160px) 0 0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .oy-landing .section-hero.omniyou-hero .hero-image {
    inset: var(--oy-hero-card-gutter) var(--oy-hero-card-gutter) 0 var(--oy-hero-card-gutter);
    border-radius: 24px 24px 0 0;
    background-position: 82% center;
  }

  .oy-landing .omniyou-hero__video {
    padding-top: 24px;
  }

  /* Taller than 16:9 on phones so the preview + play read more prominently */
  .oy-landing .omniyou-hero__video-frame {
    border-radius: 24px 24px 0 0;
    aspect-ratio: 4 / 3;
  }

  .oy-landing .omniyou-hero__play {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    /* Override video-overlay padding that breaks centering */
    padding: 0 !important;
    gap: 0 !important;
  }

  .oy-landing .omniyou-hero__play-icon {
    /* Optical centering: shift triangle right slightly */
    margin-left: 3px;
  }

  .oy-landing .section-hero.omniyou-hero .content-wrap .sub {
    font-size: clamp(0.7rem, 3.1vw, 0.8125rem);
    padding: 8px 12px;
  }

  /* Theme stacks .bot-btns on mobile — keep OmniYou CTAs side by side */
  .oy-landing .section-hero.omniyou-hero .content-wrap .bot-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .oy-landing .section-hero.omniyou-hero .content-wrap .bot-btns .tf-btn,
  .oy-landing .section-hero.omniyou-hero .content-wrap .bot-btns .tf-btn-2 {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: clamp(0.75rem, 3.2vw, 0.9375rem);
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .oy-landing .section-hero.omniyou-hero .content-wrap .sub {
    font-size: 0.68rem;
    line-height: 1.35;
    padding: 6px 10px;
  }
}

/* —— What we do (post-hero): heading-section + pill chips —— */
.oy-landing .oy-what-we-do {
  background: var(--oy-bg);
}

.oy-landing .oy-what-we-do .heading-section.oy-what-we-do__heading {
  text-align: left;
}

.oy-landing .oy-what-we-do .heading-section.oy-what-we-do__heading .heading-sub {
  margin-bottom: 24px;
}

.oy-landing .oy-what-we-do .heading-section.oy-what-we-do__heading .heading-title,
.oy-landing .oy-what-we-do #oy-what-we-do-heading {
  margin-bottom: 0;
  color: var(--oy-text);
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.oy-landing .oy-what-we-do__lead {
  margin-bottom: 20px;
  color: var(--oy-text);
}

.oy-landing .oy-what-we-do__chips {
  gap: 12px;
}

.oy-landing .oy-what-we-do__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: var(--oy-white);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 -1px 0 rgba(0, 0, 0, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.oy-landing .oy-what-we-do__chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7c3aed;
  color: var(--oy-white);
  font-size: 11px;
  flex-shrink: 0;
}

.oy-landing .oy-what-we-do__chip-icon .icon {
  line-height: 1;
}

.oy-landing .oy-what-we-do__chip-text {
  font-size: 15px;
  line-height: 1.35;
  color: var(--oy-text);
  text-align: left;
}

/* OmniSelf "What it does": same chip layout as post-hero, dark pill + brand-red tick */
.oy-landing .box-black .oy-what-we-do__chip--dark {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.2),
    0 -1px 0 rgba(255, 255, 255, 0.05) inset;
}

.oy-landing .box-black .oy-what-we-do__chip--dark .oy-what-we-do__chip-text {
  color: var(--white);
}

.oy-landing .box-black .oy-what-we-do__chip-icon--danger {
  background: var(--brand);
  color: var(--white);
}

.oy-landing .box-black .oy-what-we-do__chip-icon--danger .icon {
  font-size: 10px;
  line-height: 1;
}

/* —— Sections —— */
.oy-section {
  padding: clamp(3rem, 6vw, 5rem) 20px;
}

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

.oy-section--white {
  background: var(--oy-white);
}

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

.oy-container {
  max-width: 1120px;
  margin: 0 auto;
}

/* —— Hero —— */
.oy-hero {
  position: relative;
  padding: 32px 20px 72px;
  background: var(--oy-bg);
  overflow: hidden;
}

.oy-hero__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.oy-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--oy-black);
}

.oy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.oy-btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  background: var(--oy-black);
  color: var(--oy-white);
  border: 2px solid var(--oy-black);
  text-decoration: none;
  transition: opacity 0.15s;
}

.oy-btn-black:hover {
  color: var(--oy-white);
  opacity: 0.88;
}

.oy-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  background: var(--oy-white);
  color: var(--oy-black);
  border: 2px solid var(--oy-black);
  text-decoration: none;
}

.oy-btn-outline:hover {
  background: var(--oy-bg);
  color: var(--oy-black);
}

.oy-hero__video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--oy-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--oy-shadow);
}

.oy-hero__orb {
  position: absolute;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.55) 0%, rgba(255, 59, 48, 0) 70%);
  filter: blur(40px);
  right: -8%;
  top: 20%;
  pointer-events: none;
  z-index: 0;
}

/* Add background-image here when you have a hero still, e.g. url("../images/landing/hero-blur.jpg") */
.oy-hero__video-bg {
  position: absolute;
  inset: 0;
  background-color: #2d2d2d;
  background-image: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(60, 60, 60, 0.85));
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.1);
}

.oy-hero__video-fg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.oy-hero__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: var(--oy-white);
  color: var(--oy-black);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
}

/* —— Logo bar —— */
.oy-logo-bar {
  padding: 28px 20px;
  background: var(--oy-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.oy-logo-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}

.oy-logo-slot {
  width: 120px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(90deg, #d1d5db 0%, #e5e7eb 50%, #d1d5db 100%);
  opacity: 0.7;
}

/* —— Product intro —— */
.oy-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .oy-split {
    grid-template-columns: 1fr;
  }
}

.oy-split__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.oy-split__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--oy-muted);
  margin: 0;
}

.oy-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 575px) {
  .oy-mini-cards {
    grid-template-columns: 1fr;
  }
}

.oy-mini-card {
  background: var(--oy-white);
  border-radius: var(--oy-radius);
  padding: 24px;
  box-shadow: var(--oy-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
}

.oy-mini-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--oy-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.oy-mini-chart {
  flex: 1;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.oy-mini-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.25), rgba(255, 59, 48, 0.85));
  min-height: 20%;
}

.oy-mini-chart span:nth-child(1) {
  height: 45%;
}
.oy-mini-chart span:nth-child(2) {
  height: 70%;
}
.oy-mini-chart span:nth-child(3) {
  height: 55%;
}
.oy-mini-chart span:nth-child(4) {
  height: 90%;
}

.oy-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .oy-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .oy-feature-row {
    grid-template-columns: 1fr;
  }
}

.oy-feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--oy-white);
  border-radius: var(--oy-radius);
  box-shadow: var(--oy-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.oy-feature-pill::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--oy-accent);
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.15), rgba(255, 59, 48, 0.35));
}

.oy-pro-band {
  background: var(--oy-black);
  color: var(--oy-white);
  border-radius: var(--oy-radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 767px) {
  .oy-pro-band {
    grid-template-columns: 1fr;
  }
}

.oy-pro-band h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

.oy-pro-band p {
  margin: 0;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.oy-pro-band__icons {
  display: flex;
  gap: 16px;
  font-size: 28px;
  color: var(--oy-accent);
}

/* —— Inside (dark) —— */
.oy-kicker {
  text-align: center;
  color: var(--oy-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.oy-headline-center {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
}

.oy-section--dark .oy-headline-center {
  color: var(--oy-white);
}

.oy-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

@media (max-width: 991px) {
  .oy-trio {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.oy-trio-card {
  border-radius: var(--oy-radius);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.oy-trio-card--a {
  background: linear-gradient(165deg, #ff5c3d 0%, #8b2500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oy-trio-card--b {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.oy-trio-card--c {
  background: linear-gradient(180deg, #2a1810 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oy-silhouette {
  width: 100px;
  height: 120px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50% 50% 40% 40%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.oy-wave-bars {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100px;
}

.oy-wave-bars span {
  width: 6px;
  border-radius: 3px;
  background: var(--oy-accent);
  animation: oy-pulse 1.1s ease-in-out infinite;
}

.oy-wave-bars span:nth-child(1) {
  height: 32px;
  animation-delay: 0s;
}
.oy-wave-bars span:nth-child(2) {
  height: 56px;
  animation-delay: 0.1s;
}
.oy-wave-bars span:nth-child(3) {
  height: 40px;
  animation-delay: 0.2s;
}
.oy-wave-bars span:nth-child(4) {
  height: 72px;
  animation-delay: 0.3s;
}
.oy-wave-bars span:nth-child(5) {
  height: 48px;
  animation-delay: 0.4s;
}

@keyframes oy-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.oy-app-cluster {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 10px;
}

.oy-app-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.oy-split-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .oy-split-dark {
    grid-template-columns: 1fr;
  }
}

.oy-split-dark h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.oy-split-dark p {
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}

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

.oy-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.oy-bullet-list li:last-child {
  border-bottom: none;
}

.oy-bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--oy-accent);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.6);
}

/* —— Devices —— */
.oy-device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .oy-device-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oy-device-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--oy-radius);
  padding: 32px 24px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.oy-device-card svg {
  width: 44px;
  height: 44px;
}

.oy-device-card span {
  font-size: 14px;
  font-weight: 700;
  color: #d1d5db;
}

/* —— Pricing mega card —— */
.oy-price-card {
  background: var(--oy-white);
  border-radius: var(--oy-radius-lg);
  box-shadow: var(--oy-shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}

.oy-price-card__head {
  padding: 32px 32px 0;
}

.oy-price-card__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}

.oy-price-card__list {
  list-style: none;
  margin: 0;
  padding: 24px 32px;
}

.oy-price-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  font-weight: 600;
}

.oy-price-card__list li:last-child {
  border-bottom: none;
}

.oy-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--oy-accent);
  flex-shrink: 0;
  position: relative;
}

.oy-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.oy-price-card__foot {
  padding: 28px 32px 36px;
  background: var(--oy-bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.oy-price-tag {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.oy-btn-accent {
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  background: var(--oy-accent);
  color: #fff;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oy-btn-accent:hover {
  color: #fff;
  filter: brightness(1.05);
}

/* —— Ecosystem —— */
.oy-eco {
  text-align: center;
}

.oy-eco svg {
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
  display: block;
}

/* —— Social proof —— */
.oy-avatars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.oy-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #374151, #6b7280);
  border: 3px solid #1f2937;
  flex-shrink: 0;
}

.oy-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .oy-stat-grid {
    grid-template-columns: 1fr;
  }
}

.oy-stat-card {
  background: var(--oy-white);
  color: var(--oy-black);
  border-radius: var(--oy-radius);
  padding: 28px;
  box-shadow: var(--oy-shadow);
}

.oy-stat-card__big {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--oy-accent);
}

.oy-stat-card__spark {
  height: 48px;
  margin: 12px 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.oy-stat-card__spark span {
  flex: 1;
  height: 30%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #fecaca, var(--oy-accent));
}

.oy-stat-card__spark span:nth-child(2) {
  height: 55%;
}
.oy-stat-card__spark span:nth-child(3) {
  height: 40%;
}
.oy-stat-card__spark span:nth-child(4) {
  height: 70%;
}

.oy-stat-card p {
  margin: 0;
  font-size: 14px;
  color: var(--oy-muted);
  line-height: 1.5;
}

/* —— Analytics —— */
.oy-analytics-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .oy-analytics-top {
    grid-template-columns: 1fr;
  }
}

.oy-analytics-stat {
  background: var(--oy-white);
  border-radius: var(--oy-radius);
  padding: 28px;
  box-shadow: var(--oy-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.oy-analytics-chart {
  background: var(--oy-black);
  border-radius: var(--oy-radius);
  padding: 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.oy-analytics-chart__bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
  height: 120px;
}

.oy-analytics-chart__bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--oy-accent), #7f1d1d);
  min-height: 24px;
}

.oy-analytics-wide {
  background: var(--oy-white);
  border-radius: var(--oy-radius);
  padding: 24px;
  box-shadow: var(--oy-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-height: 160px;
}

.oy-table-placeholder {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background: repeating-linear-gradient(
    0deg,
    #f3f4f6,
    #f3f4f6 1px,
    transparent 1px,
    transparent 28px
  ),
    repeating-linear-gradient(
      90deg,
      #f3f4f6,
      #f3f4f6 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.9;
}

/* —— FAQ —— */
.oy-faq {
  max-width: 800px;
  margin: 0 auto;
}

.oy-faq details {
  background: var(--oy-white);
  border-radius: var(--oy-radius);
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.oy-faq summary {
  list-style: none;
  padding: 22px 24px;
  padding-right: 52px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.oy-faq summary::-webkit-details-marker {
  display: none;
}

.oy-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--oy-muted);
}

.oy-faq details[open] summary::after {
  content: "−";
}

.oy-faq__body {
  padding: 0 24px 22px;
  color: var(--oy-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* —— Final CTA —— */
.oy-final {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 20px;
  background: var(--oy-bg);
  overflow: hidden;
}

.oy-final__blob {
  position: absolute;
  width: min(90vw, 480px);
  height: min(90vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.45) 0%, transparent 65%);
  filter: blur(32px);
  right: -10%;
  bottom: -20%;
  pointer-events: none;
}

.oy-final__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .oy-final__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.oy-final h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.oy-final p {
  font-size: 17px;
  color: var(--oy-muted);
  line-height: 1.6;
  margin: 0 0 28px;
}

.oy-phone-mock {
  width: 240px;
  height: 480px;
  margin: 0 auto;
  border-radius: 36px;
  background: linear-gradient(180deg, #0a0a0a, #262626);
  border: 4px solid #374151;
  box-shadow: var(--oy-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* —— Footer —— */
.oy-footer {
  position: relative;
  background: var(--oy-bg);
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.oy-footer__watermark {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.oy-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.oy-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .oy-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oy-footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oy-muted);
  margin: 0 0 16px;
}

.oy-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oy-footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--oy-text);
  text-decoration: none;
}

.oy-footer__col a:hover {
  color: var(--oy-accent);
}

.oy-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: var(--oy-muted);
}

.oy-footer__social {
  display: flex;
  gap: 16px;
}

.oy-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--oy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oy-text);
  border: 1px solid #e5e7eb;
  text-decoration: none;
  font-size: 16px;
}

.oy-footer__social a:hover {
  color: var(--oy-accent);
  border-color: var(--oy-accent);
}

/* ── Back-to-top button: closer to chat widget ── */
#goTop {
  bottom: 75px;
}

@media (max-width: 767px) {
  #goTop {
    bottom: 65px;
    right: 16px;
  }
}

/* ── Hide chat widget when mobile menu is open ── */
.oy-landing .offcanvas-menu.show ~ .oyw-root,
.oy-landing .offcanvas-menu.show ~ #tidio-widget,
.oy-landing .offcanvas-menu.show ~ [data-tidio]
{
  display: none !important;
}

/* ---- Form Validation Styles ---- */
.form-contact input.is-invalid {
  border-bottom-color: #FD3A25 !important;
  color: #FD3A25;
}

.form-contact input.is-invalid::placeholder {
  color: #FD3A25;
  opacity: 0.6;
}

.field-error {
  display: none;
  color: #FD3A25;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Shake animation on validation error */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-6px); }
  30%       { transform: translateX(6px); }
  45%       { transform: translateX(-5px); }
  60%       { transform: translateX(5px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}
#contact-form.shake {
  animation: shake 0.45s ease-in-out;
}

/* Feedback banner */
.form-feedback {
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  background: transparent;
  border: none;
  box-shadow: none;
}
.form-feedback-icon {
  margin-right: 6px;
  font-size: 15px;
}
.form-feedback-success {
  color: #16a34a;
}
.form-feedback-error {
  color: #FD3A25;
}
