:root {
  --blue: #0e94d6;
  --blue-light: #1aa0dd;
  --orange: #f26b1f;
  --navy: #0f172a;
  --slate: #475569;
  --slate-mid: #1e293b;
  --bg-dark: #0a0f1c;
}

* {
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #fff;
  color: var(--navy);
}

/* ── Navbar ────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-accent-line {
  height: 3px;
  background: var(--blue);
}

.main-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-pill {
  border: 2px solid var(--blue);
  border-radius: 9999px;
  padding: 4px 4px 4px 24px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link-item {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}

.nav-link-item:hover {
  color: var(--blue);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-link-item.active {
  color: var(--blue);
}

.nav-link-item.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown-nav .dropdown-toggle {
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s;
}

.dropdown-nav .dropdown-toggle:hover,
.dropdown-nav:hover .dropdown-toggle {
  color: var(--blue);
}

.dropdown-nav.active .dropdown-toggle,
.dropdown-nav .dropdown-toggle.active {
  color: var(--blue);
}

.dropdown-nav .dropdown-toggle .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  display: inline-block;
}

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

.dropdown-menu-custom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  top: calc(100% + 10px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 100;
}

.dropdown-menu-custom::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #f3f4f6;
  border-top: 1px solid #f3f4f6;
}

.dropdown-menu-custom::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.dropdown-nav:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
}

.dropdown-menu-custom a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: #1f2937;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown-menu-custom a:hover {
  background: #f3f8fb;
  color: var(--blue);
}

.dropdown-menu-custom a.active {
  background: #f3f8fb;
  color: var(--blue);
  font-weight: 600;
}

.nav-social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s;
}

.nav-social-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: #0e94d6;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-phone-link:hover {
  opacity: 0.8;
  color: #0e94d6;
}

.btn-signin {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.btn-signin:hover {
  background: #d85b14;
  color: #fff;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  border-top: 1px solid #f3f4f6;
  background: #fff;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.mobile-nav-link:hover {
  background: #f3f8fb;
  color: var(--blue);
}

.mobile-nav-link.active {
  background: #f3f8fb;
  color: var(--blue);
}

.mobile-collapse {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-collapse.open {
  display: flex;
}

.mobile-sub-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.mobile-sub-link:hover {
  background: #f3f8fb;
  color: var(--blue);
}

.mobile-sub-link.active {
  background: #f3f8fb;
  color: var(--blue);
  font-weight: 600;
}

/* ── Hero section ──────────────────────────────────── */
#hero-bg-img {
  position: absolute;
  right: calc(50% - 600px);
  top: 180px;
  width: 660px;
  max-width: none;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 991px) {
  #hero-bg-img {
    display: none;
  }
}

.hero-section {
  padding: 54px 16px 32px;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 120px 16px 26px;
  }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  .hero-eyebrow {
    font-size: 13px;
  }
}

.hero-h1 {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 34px;
  line-height: 1.05;
  margin: 0;
}

@media (min-width: 576px) {
  .hero-h1 {
    font-size: 52px;
    line-height: 1.02;
  }
}

@media (min-width: 992px) {
  .hero-h1 {
    font-size: 64px;
  }
}

.hero-body {
  margin-top: 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}

@media (min-width: 576px) {
  .hero-body {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--slate);
}

@media (min-width: 576px) {
  .check-list li {
    font-size: 13px;
  }
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

/* ── Hero Cards section ────────────────────────────── */
.cards-section {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .cards-section {
    padding: 64px 0;
  }
}

@media (min-width: 992px) {
  .cards-section {
    padding: 80px 0 48px;
  }
}

/* Ellipse backdrop */
.ellipse-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  bottom: 0;
  height: 92%;
  top: auto;
}

/* ─── Desktop notched card (SVG clip) ─── */
.desktop-card-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 540 / 220;
  min-height: 180px;
}

.desktop-card-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.desktop-card-content-left {
  position: absolute;
  left: 0;
  top: 0;
  /* width is set inline per card */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
}

.desktop-card-img {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 140px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  ring: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

@media (max-width: 767px) {
  .desktop-card-img {
    width: 120px;
    height: 88px;
  }
}

.avatar-row {
  display: flex;
}

.avatar-row img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  margin-left: -8px;
}

.avatar-row img:first-child {
  margin-left: 0;
}

.desktop-card-cta {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid #fff;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.3s;
}

.desktop-card-cta:hover {
  transform: translateY(-2px);
}

.desktop-card-cta .shimmer {
  position: absolute;
  inset-y: 0;
  left: -50%;
  width: 50%;
  transform: skewX(-12deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: transform 0.7s;
  pointer-events: none;
}

.desktop-card-cta:hover .shimmer {
  transform: skewX(-12deg) translateX(600%);
}

.desktop-card-cta span {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  padding: 0 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Mobile card */
.mobile-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 12px 28px -14px rgba(15, 23, 42, 0.18),
    0 2px 4px rgba(15, 23, 42, 0.05);
}

.mobile-card-body {
  padding: 20px;
}

.mobile-card-cta-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  overflow: hidden;
  text-decoration: none;
}

.mobile-card-cta-bar .shimmer {
  position: absolute;
  inset-y: 0;
  left: -50%;
  width: 50%;
  transform: skewX(-12deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: transform 0.7s;
  pointer-events: none;
}

.mobile-card-cta-bar:hover .shimmer {
  transform: skewX(-12deg) translateX(600%);
}

.mobile-card-cta-bar span {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* ── Reviews section ───────────────────────────────── */
.reviews-section {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .reviews-section {
    padding: 96px 0 112px;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  .section-eyebrow {
    font-size: 12px;
  }
}

.section-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.review-card {
  background: #fff;
  border: 1.5px solid var(--blue-light);
  border-radius: 16px;
  padding: 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
  stroke: var(--orange);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Carousel */
.reviews-carousel {
  position: relative;
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
}

@media (max-width: 991px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-light);
  background: #fff;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--blue-light);
  color: #fff;
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .reviews-carousel {
    padding: 0 4px;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }
}

@media (max-width: 575px) {
  .carousel-btn {
    display: none !important;
  }
}

/* ── How It Works ──────────────────────────────────── */
.how-section {
  background: #fff;
  padding: 64px 0;
  border-top: 0;
}

@media (min-width: 576px) {
  .how-section {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  .how-section {
    padding: 128px 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-panel {
  position: relative;
  padding: 32px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 576px) {
  .step-panel {
    border-right: 1px solid #e2e8f0;
    border-bottom: 0;
    padding: 56px 24px;
  }

  .step-panel:nth-child(2) {
    border-right: 1px solid #e2e8f0;
  }

  .step-panel:nth-child(3) {
    border-top: 1px solid #e2e8f0;
  }

  .step-panel:nth-child(4) {
    border-top: 1px solid #e2e8f0;
    border-right: 0;
  }
}

@media (min-width: 992px) {
  .step-panel {
    border-top: 0 !important;
  }

  .step-panel:last-child {
    border-right: 0;
  }
}

.step-watermark {
  position: absolute;
  left: -6px;
  top: -12px;
  font-size: clamp(110px, 10vw, 160px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  color: rgba(15, 23, 42, 0.045);
}

.step-panel.final .step-watermark {
  color: rgba(242, 107, 31, 0.12);
}

.step-panel.final {
  background: rgba(242, 107, 31, 0.05);
}

.step-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.step-rule-line {
  display: block;
  height: 2px;
  width: 36px;
  background: var(--blue-light);
  flex-shrink: 0;
}

.step-rule-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-light);
  white-space: nowrap;
}

.step-title {
  position: relative;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.12;
}

@media (min-width: 576px) {
  .step-title {
    font-size: 28px;
  }
}

.step-body {
  position: relative;
  margin-top: 20px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 340px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.01em;
  background: var(--orange);
  border: 2px solid #fff;
  box-shadow:
    0 10px 24px -10px rgba(242, 107, 31, 0.55),
    0 0 0 1px rgba(242, 107, 31, 0.18);
  transition: transform 0.3s;
}

.btn-orange:hover {
  transform: translateY(-2px);
  color: #fff;
}

.step-arrow {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 74px;
}

.step-cta {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  height: 74px;
}

/* ── Gallery ───────────────────────────────────────── */
.gallery-section {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 576px) {
  .gallery-section {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  .gallery-section {
    padding: 128px 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
}

.tile {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.tile-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}

.tile-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  pointer-events: none;
  user-select: none;
}

.tile:hover .tile-img-after {
  transform: scale(1.04);
}

.tile-before-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: width 0.9s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
}

.tile:hover .tile-before-layer {
  width: 0%;
}

.tile-img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 100%;
  pointer-events: none;
  user-select: none;
}

.tile-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  transition: left 0.9s cubic-bezier(0.65, 0.05, 0.36, 1);
  pointer-events: none;
  left: calc(100% - 1px);
}

.tile:hover .tile-divider {
  left: calc(0% - 1px);
}

.tile-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.9s cubic-bezier(0.65, 0.05, 0.36, 1);
  pointer-events: none;
  left: calc(100% - 18px);
}

.tile:hover .tile-handle {
  left: calc(0% - 18px);
}

.tile-badge {
  position: absolute;
  top: 16px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}

.tile-badge-before {
  left: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
}

.tile-badge-after {
  right: 16px;
  background: var(--orange);
  color: #fff;
  opacity: 0;
  box-shadow: 0 6px 14px -6px rgba(242, 107, 31, 0.55);
}

.tile:hover .tile-badge-before {
  opacity: 0;
}

.tile:hover .tile-badge-after {
  opacity: 1;
}

.tile-meta {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    transparent
  );
}

.tile-location {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.tile-title {
  margin-top: 4px;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 576px) {
  .tile-title {
    font-size: 19px;
  }
}

/* Gallery grid spans */
@media (min-width: 992px) {
  .tile-tor-kitchen {
    grid-column: span 5;
    grid-row: span 2;
  }

  .tile-miss-bath {
    grid-column: span 4;
    grid-row: span 1;
  }

  .tile-etob-base {
    grid-column: span 3;
    grid-row: span 1;
  }

  .tile-osh-deck {
    grid-column: span 4;
    grid-row: span 1;
  }

  .tile-rh-add {
    grid-column: span 3;
    grid-row: span 1;
  }
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

.aspect-5-4 {
  aspect-ratio: 5/4;
}

.aspect-sq {
  aspect-ratio: 1/1;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-section {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 576px) {
  .faq-section {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  .faq-section {
    padding: 128px 0;
  }
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

@media (min-width: 576px) {
  .faq-trigger {
    font-size: 18px;
    padding: 28px 0;
  }
}

.faq-trigger:hover {
  color: var(--blue-light);
}

.faq-trigger .faq-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue-light);
  padding-top: 3px;
  flex-shrink: 0;
}

.faq-trigger .faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: var(--slate);
}

.faq-item.open .faq-trigger {
  color: var(--navy);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-body {
  display: none;
  padding: 0 0 24px 36px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

@media (min-width: 576px) {
  .faq-body {
    padding-bottom: 28px;
  }
}

.faq-item.open .faq-body {
  display: block;
}

/* ── Final CTA ─────────────────────────────────────── */
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
}

.final-cta-overlay2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 60% at 80% 20%,
    rgba(242, 107, 31, 0.35) 0%,
    transparent 60%
  );
}

.final-cta-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.4) 0px,
    rgba(255, 255, 255, 0.4) 1px,
    transparent 1px,
    transparent 4px
  );
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  padding: 64px 20px;
}

@media (min-width: 576px) {
  .final-cta-inner {
    padding: 96px 32px;
  }
}

@media (min-width: 992px) {
  .final-cta-inner {
    padding: 144px 32px;
  }
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition:
    border-color 0.3s,
    background 0.3s;
}

.btn-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trust-pillar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.trust-pillar:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.trust-pillar-key {
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 576px) {
  .trust-pillar-key {
    font-size: 32px;
  }
}

.trust-pillar-val {
  margin-top: 8px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  position: relative;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--blue-light);
}

.footer-inner {
  padding: 80px 20px 40px;
}

@media (min-width: 992px) {
  .footer-inner {
    padding: 96px 32px 40px;
  }
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.footer-watermark {
  text-align: center;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: -0.05em;
  line-height: 1;
  padding-bottom: 0.05em;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.platform-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.2s;
}

.platform-strip a:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* ── Utilities ─────────────────────────────────────── */
.text-orange {
  color: var(--orange);
}

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

.fw-900 {
  font-weight: 900;
}

.tracking-tight {
  letter-spacing: -0.03em;
}
/* .desktop-card-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.18s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.desktop-card-cta span {
  position: relative;
  z-index: 2;
}

/* Shimmer sweep */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transform: skewX(-15deg);
  z-index: 1;
  pointer-events: none;
}

.desktop-card-cta:hover .shimmer {
  animation: shimmer-sweep 0.55s ease forwards;
}

@keyframes shimmer-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 160%;
  }
}

/* Lift on hover */
.desktop-card-cta:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  filter: brightness(1.08);
}

/* Press on click */
.desktop-card-cta:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  filter: brightness(0.97);
  transition-duration: 0.08s;
}
*/
/* Text shifts left slightly to make room for arrow */
.desktop-card-cta span {
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-card-cta:hover span {
  transform: translateX(-4px);
}

/* Arrow slides in from the right */
.arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: 0;
  opacity: 0;
  margin-left: 0;
  transition:
    width 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease,
    margin-left 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.arrow svg {
  flex-shrink: 0;
  transform: translateX(-6px);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-card-cta:hover .arrow {
  width: 22px;
  opacity: 1;
  margin-left: 6px;
}
.desktop-card-cta:hover .arrow svg {
  transform: translateX(0);
}
.btn-orange svg {
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orange:hover svg {
  transform: translateX(5px);
}

.btn-orange:active svg {
  transform: translateX(8px);
  transition-duration: 0.08s;
}
.btn-cta-secondary svg {
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-secondary:hover svg {
  transform: translate(3px, -3px);
}

/* ── Legal pages ─────────────────────────────────────── */
.legal-page {
  position: relative;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.legal-hero {
  position: relative;
  padding: 64px 0 48px;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 992px) {
  .legal-hero {
    padding: 96px 0 64px;
  }
}

.legal-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 576px) {
  .legal-hero-inner {
    padding: 0 32px;
  }
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.legal-back-link:hover {
  color: #0e7aaf;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.legal-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue-light);
}

.legal-eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-light);
}

@media (min-width: 576px) {
  .legal-eyebrow-label {
    font-size: 12px;
  }
}

.legal-title {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 36px;
  line-height: 1.02;
  margin: 0;
}

@media (min-width: 576px) {
  .legal-title {
    font-size: 48px;
  }
}

@media (min-width: 992px) {
  .legal-title {
    font-size: 60px;
  }
}

.legal-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
}

@media (min-width: 576px) {
  .legal-subtitle {
    font-size: 18px;
  }
}

.legal-updated {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.legal-main {
  flex: 1;
  padding: 56px 0;
}

@media (min-width: 992px) {
  .legal-main {
    padding: 80px 0;
  }
}

.legal-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 576px) {
  .legal-main-inner {
    padding: 0 32px;
  }
}

@media (min-width: 992px) {
  .legal-main-inner {
    grid-template-columns: 3fr 9fr;
    gap: 64px;
  }
}

.legal-sidebar-wrap {
  position: relative;
}

@media (min-width: 992px) {
  .legal-sidebar-wrap {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

.legal-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}

.legal-toc {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-toc li {
  display: flex;
  gap: 12px;
}

.legal-toc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue-light);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
  flex-shrink: 0;
}

.legal-toc a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s;
}

.legal-toc a:hover {
  color: var(--blue-light);
}

.legal-article {
  max-width: 760px;
}

.legal-prose {
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}

@media (min-width: 576px) {
  .legal-prose {
    font-size: 15.5px;
  }
}

.legal-prose > * + * {
  margin-top: 16px;
}

.legal-prose h2 {
  scroll-margin-top: 96px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.15;
  margin-top: 48px;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .legal-prose h2 {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  .legal-prose h2 {
    font-size: 28px;
  }
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-prose p {
  margin-bottom: 0;
}

.legal-prose ul,
.legal-prose ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.legal-prose ul {
  list-style-type: disc;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose ul li::marker {
  color: var(--blue-light);
}

.legal-prose a {
  color: var(--blue-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-prose a:hover {
  color: #0e7aaf;
}

.legal-prose strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-footer-note {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.7;
}

.legal-footer-note a {
  color: var(--blue-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-footer-note a:hover {
  color: #0e7aaf;
}
