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

html {
  scroll-behavior: auto;
}

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --grey: #c0c0c0;
  --selection: #DF3E11;
  --border: #e5e5e5;
  --hover: #f0f0f0;
  --hover-active: #ebebeb;
  --dropdown-bg: #ffffff;
  --card-shadow: rgba(0, 0, 0, 0.06);
  --card-shadow-lg: rgba(0, 0, 0, 0.08);
  --muted: #999;
  --divider-bg: #f0f0f0;
  --cta-bg: #1a1a1a;
  --cta-text: #ffffff;
}

::selection {
  background-color: #b4d5fe;
  color: inherit;
}

html, body {
  height: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--text);
}

/* ---- Base ---- */

body {
  background-color: var(--bg);
  font-family: "Times New Roman", Times, Georgia, serif;
  color: var(--text);
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

/* ---- Header ---- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 80px;
}

.logo {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  line-height: 42px;
}

.header-right {
  position: relative;
  border: none;
  border-radius: 0;
  background: var(--dropdown-bg);
  box-shadow: 0 1px 6px var(--card-shadow), 0 1px 3px var(--card-shadow);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 280px;
}

.header-right.open {
  box-shadow: 0 8px 30px var(--card-shadow-lg), 0 1px 4px var(--card-shadow);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  padding: 3px 8px;
  margin: 4px;
  border-radius: 4px;
  background-color: transparent;
  transition: background-color 0.15s ease;
}

.nav-toggle:hover {
  background-color: var(--hover);
}

.nav-toggle:active {
  background-color: var(--hover-active);
}

.header-right.open .nav-toggle {
  background-color: transparent;
}

.chevron {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-right.open .chevron {
  transform: rotate(180deg);
}

.header-spacer {
  flex: 1;
}

.cta {
  display: inline-block;
  background-color: var(--cta-bg);
  color: var(--cta-text);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.01em;
  margin-right: 4px;
  transition: opacity 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.cta:hover {
  opacity: 0.85;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dropdown-bg);
  box-shadow: 0 8px 30px var(--card-shadow-lg), 0 1px 4px var(--card-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
  z-index: 100;
}

.header-right.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.15s ease;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    background-color 0.15s ease,
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-right.open .nav-dropdown a {
  opacity: 1;
  transform: translateY(0);
}

.header-right.open .nav-dropdown a:nth-child(1) { transition-delay: 0.05s; }
.header-right.open .nav-dropdown a:nth-child(2) { transition-delay: 0.1s; }
.header-right.open .nav-dropdown a:nth-child(3) { transition-delay: 0.15s; }

.nav-dropdown a:hover {
  background-color: var(--hover);
}

/* ---- Main ---- */

main {
  padding-top: 90px;
}

/* ---- Logo Wall ---- */

.logo-wall {
  display: flex;
  justify-content: space-between;
  margin: 0 80px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
}

.logo-wall::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -80px;
  right: -80px;
  height: 1px;
  background: var(--border);
}

.logo-wall-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  z-index: 2;
  position: relative;
}

.logo-wall-label::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -81px;
  width: 81px;
  height: 1px;
  background: var(--border);
}

.logo-wall-label span {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.logo-wall-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 72px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.logo-wall-logo::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -81px;
  width: 81px;
  height: 1px;
  background: var(--border);
}

.logo-wall-logo img {
  max-width: 90px;
  max-height: 36px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .logo-wall {
    margin: 0 48px;
  }
}

@media (max-width: 768px) {
  .logo-wall {
    margin: 0 24px;
  }

  .logo-wall-label {
    padding: 0 20px;
  }

  .logo-wall-label span {
    font-size: 13px;
  }

  .logo-wall-logo {
    padding: 0 20px;
    height: 60px;
  }
}

/* ---- Continuous grid borders ---- */

.content-border {
  position: relative;
  border-top: 1px solid var(--border);
}

.content-border::before,
.content-border::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
  z-index: 2;
  pointer-events: none;
}

.content-border::before {
  left: 80px;
}

.content-border::after {
  right: 80px;
}

/* ---- Hero Section ---- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 80px 100px;
  gap: 28px;
}

.hero-heading {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
}

.hero-sub {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.5;
  max-width: 640px;
}


/* ---- Value Cards ---- */

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 80px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  transition: grid-template-columns 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-cards::before,
.value-cards::after {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.value-cards::before { top: 0; }
.value-cards::after  { bottom: 0; }

.value-cards:has(.value-card[data-card="0"].active) {
  grid-template-columns: 2.2fr 1fr 1fr;
}
.value-cards:has(.value-card[data-card="1"].active) {
  grid-template-columns: 1fr 2.2fr 1fr;
}
.value-cards:has(.value-card[data-card="2"].active) {
  grid-template-columns: 1fr 1fr 2.2fr;
}

.value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 20px 24px 22px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: filter 0.3s ease;
}

.value-card:last-child {
  border-right: none;
}

.value-card--orange { background: #F45B2F; }
.value-card--brown  { background: #391D13; }
.value-card--pink   { background: #FF3988; }

.value-card__icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: #fff;
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__body h3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
}

.value-card__body p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
  opacity: 0;
  max-height: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
  overflow: hidden;
}

.value-card.active .value-card__body p {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.value-card:not(.active):hover {
  filter: brightness(1.05);
}

@media (max-width: 1024px) {
  .value-cards {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 48px;
  }

  .value-cards::before,
  .value-cards::after {
    left: -48px;
    right: -48px;
  }
}

@media (max-width: 768px) {
  .value-cards,
  .value-cards:has(.value-card[data-card="0"].active),
  .value-cards:has(.value-card[data-card="1"].active),
  .value-cards:has(.value-card[data-card="2"].active) {
    grid-template-columns: 1fr;
    margin: 0 24px;
  }

  .value-cards::before,
  .value-cards::after {
    left: -24px;
    right: -24px;
  }

  .value-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 0;
    padding: 20px 24px;
    gap: 12px;
  }

  .value-card:last-child {
    border-bottom: none;
  }

  .value-card__body p {
    opacity: 1;
    max-height: 200px;
    transform: none;
    transition: none;
  }
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Scroll reveal animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---- Isometric Layers ---- */

.iso-scroll-wrap {
  position: relative;
  height: 300vh;
}

.iso-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 80px;
  overflow: hidden;
  position: sticky;
  top: 0;
  min-height: 100vh;
  background: var(--bg);
  z-index: 1;
}

.iso-section::before,
.iso-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
  z-index: 2;
  pointer-events: none;
}

.iso-section::before {
  left: 80px;
}

.iso-section::after {
  right: 80px;
}

.iso-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-card {
  position: relative;
  width: 350px;
  height: 400px;
}

.iso-layer {
  position: absolute;
  left: 50%;
  width: 350px;
  will-change: transform;
}

.iso-layer--1 {
  transform: translateX(-50%) translateY(0);
}

.iso-layer--2 {
  transform: translateX(-50%) translateY(20px);
}

.iso-layer--3 {
  transform: translateX(-50%) translateY(40px);
}

.iso-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.iso-text-item {
  transition: opacity 0.5s ease;
  opacity: 0.2;
}

.iso-text-item.active {
  opacity: 1;
}

.iso-text-item h3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.iso-text-item p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .iso-section {
    padding: 80px 48px;
  }
}

@media (max-width: 768px) {
  .iso-scroll-wrap {
    height: 200vh;
  }

  .iso-section {
    grid-template-columns: 1fr;
    padding: 40px 40px;
    gap: 32px;
    min-height: auto;
  }

  .iso-right {
    gap: 24px;
  }

  .iso-card {
    width: 260px;
    height: 300px;
  }

  .iso-layer {
    width: 260px;
  }

  .iso-layer--2 {
    transform: translateX(-50%) translateY(15px);
  }

  .iso-layer--3 {
    transform: translateX(-50%) translateY(30px);
  }
}

/* ---- Section Spacer ---- */

.section-spacer {
  height: 133px;
  border-bottom: 1px solid var(--border);
}

/* ---- Feature Sections ---- */

.features-wrapper {
  position: relative;
}

.features-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--border);
  z-index: 1;
  pointer-events: none;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 80px;
  border-bottom: 1px solid var(--border);
}

.feature-image {
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.feature-reverse .feature-text {
  order: -1;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  text-align: left;
}

.feature-text h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}

.feature-text p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

/* ---- Statement Section ---- */

.statement {
  text-align: center;
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.statement h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.statement p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Gray Divider ---- */

.gray-divider {
  height: 100px;
  background: var(--divider-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- Tagline ---- */

.tagline {
  text-align: left;
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.tagline h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ---- Carousel ---- */

.step-badge {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 1.5px;
  padding: 2px 8px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.why-trust-heading {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--text);
  margin: 0;
  position: absolute;
  right: 230px;
  top: 70px;
}

.carousel {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.carousel-next {
  position: absolute;
  top: 0;
  right: 80px;
  width: 56px;
  height: 56px;
  background: #2b1f13;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}

.carousel-next:hover {
  background: #3d2c1b;
}

@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

.carousel-next svg {
  transition: transform 0.2s ease;
}

.carousel-next:hover svg {
  animation: arrowNudge 0.55s ease infinite;
}

.carousel-inner {
  height: 500px;
  padding: 60px 80px 60px 120px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
}

.carousel-progress {
  display: flex;
  gap: 6px;
  max-width: 420px;
}

.carousel-seg {
  flex: 1;
  height: 2px;
  background: var(--border);
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.carousel-seg-fill {
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0;
}

.carousel-seg.done .carousel-seg-fill {
  transform: scaleX(1);
}

.carousel-grid {
  position: absolute;
  top: 150px;
  right: 230px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.grid-shapes > * {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.8);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-shapes.active > :nth-child(1) { opacity: 1; transform: scale(1); }
.grid-shapes.active > :nth-child(2) { opacity: 1; transform: scale(1); transition-delay: 0.07s; }
.grid-shapes.active > :nth-child(3) { opacity: 1; transform: scale(1); transition-delay: 0.14s; }
.grid-shapes.active > :nth-child(4) { opacity: 1; transform: scale(1); transition-delay: 0.21s; }
.grid-shapes.active > :nth-child(5) { opacity: 1; transform: scale(1); transition-delay: 0.28s; }


@media (max-width: 1024px) {
  .carousel-grid {
    right: 80px;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .carousel-grid {
    display: none;
  }
}

.carousel-track {
  position: relative;
  flex: 1;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide.exit {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.35s ease, transform 0.4s ease;
}

.carousel-slide.active h2 {
  animation: carouselH2In 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-slide.active p {
  animation: carouselPIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

@keyframes carouselH2In {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes carouselPIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 0.5; transform: translateY(0); }
}

.carousel-slide h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  white-space: nowrap;
}

.carousel-slide p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  max-width: 540px;
}

/* ---- FAQ ---- */

.faq {
  display: grid;
  grid-template-columns: 40% 60%;
  border-bottom: 1px solid var(--border);
}

.faq-label {
  padding: 48px 40px 48px 112px;
  border-right: 1px solid var(--border);
}

.faq-label h3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.faq-label p {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.5;
}

.faq-label a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
}

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


.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 32px 22px 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(45deg);
}

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a-wrap {
  grid-template-rows: 1fr;
}

.faq-a {
  overflow: hidden;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  opacity: 0;
  padding: 0 32px 0 40px;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a {
  opacity: 0.5;
  transform: translateY(0);
  padding-bottom: 24px;
  transition: opacity 0.35s ease 0.1s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

/* ---- Footer CTA ---- */

.footer-cta {
  display: block;
  text-align: center;
  padding: 80px 80px 120px;
  border-bottom: 1px solid var(--border);
}

.footer-cta h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin-bottom: 20px;
}

.cta-button.cta-button--lg {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(18px, 1.4vw, 22px);
  padding: 18px 48px;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  position: relative;
}

.cta-button.cta-button--lg:hover { opacity: 1; }

.cta-text {
  display: inline-flex;
  line-height: 1;
}

.cta-letter {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 25ms);
  will-change: transform;
}

.cta-button.cta-button--lg:hover .cta-letter {
  transform: translateY(-6px);
}

.cta-button.cta-button--lg:not(:hover) .cta-letter {
  transition-delay: calc((10 - var(--i)) * 25ms);
}

@media (max-width: 768px) {
  .cta-button.cta-button--lg {
    font-size: 16px;
    padding: 14px 32px;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--cta-bg);
  color: var(--cta-text);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.cta-button:hover {
  opacity: 0.85;
}

/* ---- Footer ---- */

.footer {
  padding: 40px 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(140px, 22vw, 360px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.footer-letter {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.15s ease, color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
  cursor: default;
}

.footer-logo.ready:hover .footer-letter {
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
}

.footer-letter.visible {
  opacity: 1;
}

.footer-copy {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-left: -80px;
  margin-right: -80px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  header {
    padding: 24px 48px;
  }

  .hero {
    padding: 20px 48px 0;
  }

  .content-border::before,
  .iso-section::before {
    left: 48px;
  }

  .content-border::after,
  .iso-section::after {
    right: 48px;
  }

  .feature {
    padding: 0 48px;
  }

  .feature-text {
    padding: 30px;
  }

  .statement {
    padding: 100px 48px;
  }


  .carousel-next {
    right: 48px;
  }

  .carousel-inner {
    padding: 48px 48px 48px 80px;
  }

  .why-trust-heading {
    right: 80px;
    top: 60px;
  }

  .faq-label {
    padding: 40px 32px 40px 72px;
  }

  .faq-list {
    margin-right: 48px;
  }

  .faq-q {
    padding: 20px 24px 20px 32px;
  }

  .faq-a {
    padding: 0 24px 20px 32px;
  }

  .footer-cta {
    padding: 60px 48px 100px;
  }

  .footer {
    padding: 40px 48px 24px;
  }

  .footer-copy {
    margin-left: -48px;
    margin-right: -48px;
  }


  .hero {
    padding: 80px 48px;
  }

  .hero-heading {
    font-size: clamp(36px, 4.2vw, 56px);
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 24px;
  }

  .content-border::before,
  .iso-section::before {
    left: 24px;
  }

  .content-border::after,
  .iso-section::after {
    right: 24px;
  }

  .gray-divider {
    height: 60px;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .section-spacer {
    height: 100px;
  }

  .carousel-next {
    right: 24px;
  }

  .carousel-inner {
    padding: 40px 24px 40px 40px;
    height: 440px;
  }

  .why-trust-heading {
    position: static;
    margin-bottom: 4px;
  }

  .feature {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .features-wrapper::after {
    display: none;
  }

  .feature-image {
    border-bottom: 1px solid var(--border);
    order: -1;
  }

  .feature-reverse .feature-text {
    order: 0;
  }

  .feature-reverse .feature-image {
    order: -1;
  }

  .feature-text {
    padding: 24px;
  }

  .feature-text h2 {
    font-size: 22px;
  }

  .statement {
    padding: 60px 24px;
  }


  .statement h2 {
    font-size: 24px;
  }

  .statement p br,
  .iso-text-item p br,
  .feature-text h2 br,
  .feature-text p br,
  .statement h2 br,
  .tagline h2 br,
  .hero-sub br {
    display: none;
  }

  .tagline {
    padding: 48px 0;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .faq-list {
    margin-right: 0;
  }

  .faq-label {
    padding: 32px 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    padding: 18px 40px;
  }

  .faq-a {
    padding: 0 40px 18px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 24px;
  }


  .footer-cta {
    padding: 48px 24px 80px;
  }

  .footer-cta h2 {
    font-size: 44px;
  }

  .footer-cta h2 br {
    display: none;
  }

  .footer {
    padding: 32px 24px 20px;
  }

  .footer-logo {
    font-size: 18vw;
    white-space: nowrap;
  }

  .footer-copy {
    margin-left: -24px;
    margin-right: -24px;
  }
}

