:root {
  --ink: #2e2e2e;
  --muted: #66625c;
  --soft: #f4efe6;
  --line: #ddd7cc;
  --paper: #fffaf2;
  --white: #fffef9;
  --dark: #20201d;
  --blue: #ceefff;
  --orange: #f19500;
  --red: #e34345;
  --green: #1f7a5c;
  --shadow: 0 24px 60px rgba(38, 31, 21, 0.12);
  --container: 1180px;
  --content: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.5rem);
  font-weight: 750;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 720;
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 720;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(221, 215, 204, 0.6);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-elevated {
  border-color: rgba(32, 32, 29, 0.1);
  box-shadow: 0 12px 36px rgba(32, 32, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-logo {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #66625c;
  font-size: 0.95rem;
  font-weight: 620;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #2e2e2e;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.hero-actions {
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  border: 1px solid rgba(32, 32, 29, 0.08);
  border-radius: 7px;
  background: rgba(255, 254, 249, 0.42);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 5px;
  color: rgba(102, 98, 92, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: rgba(32, 32, 29, 0.08);
  color: #2e2e2e;
}

.signin-link {
  color: #66625c;
  font-size: 0.92rem;
  font-weight: 720;
}

.signin-link:hover {
  color: #2e2e2e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.82rem;
}

.button-dark {
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover {
  background: #303030;
}

.button-primary {
  background: var(--orange);
  color: #171107;
  box-shadow: 0 14px 28px rgba(241, 149, 0, 0.2);
}

.button-primary:hover {
  background: #ffad22;
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 960px;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  font-weight: 760;
  line-height: 1.02;
}

.hero h2 {
  max-width: 820px;
  margin-top: 8px;
  color: #999;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.hero-copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(46, 46, 46, 0.7);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-shape {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero-shape-blue {
  top: 42px;
  right: -112px;
  width: 270px;
  height: 210px;
  border: 26px solid rgba(206, 239, 255, 0.66);
  border-radius: 86px 8px 86px 8px;
  transform: rotate(-18deg);
}

.hero-shape-orange {
  bottom: -82px;
  left: -64px;
  width: 220px;
  height: 160px;
  border-radius: 8px 86px 8px 86px;
  background: rgba(241, 149, 0, 0.12);
  transform: rotate(14deg);
}

.customer-strip {
  padding: 54px 0 42px;
  background: var(--white);
  text-align: center;
}

.customer-strip p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-logos {
  --logo-gap: 64px;
  --logo-half-gap: 32px;
  --logo-width: 156px;
  position: relative;
  max-width: 1080px;
  margin: 30px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.customer-logo-track,
.customer-logo-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--logo-gap);
}

.customer-logo-track {
  width: max-content;
  padding: 8px 0;
  animation: customer-logo-marquee 40s linear infinite;
  will-change: transform;
}

.customer-logos:hover .customer-logo-track {
  animation-play-state: paused;
}

.customer-logos img {
  width: var(--logo-width);
  max-height: 56px;
  flex: 0 0 var(--logo-width);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
}

.customer-logos img.customer-logo-knockout {
  filter: grayscale(1) brightness(0.75) contrast(12);
  mix-blend-mode: multiply;
  opacity: 1;
}

@keyframes customer-logo-marquee {
  to {
    transform: translateX(calc(-50% - var(--logo-half-gap)));
  }
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: var(--content);
  margin: 0 auto 44px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey {
  padding-top: 78px;
}

.journey-list {
  display: grid;
  max-width: 820px;
  gap: 0;
  margin: 0 auto;
}

.journey-item {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 54px;
}

.journey-item + .journey-item {
  margin-top: -2px;
}

.journey-item-reverse {
  grid-template-columns: 1fr 0.72fr;
}

.journey-item-reverse .journey-copy {
  order: 2;
}

.journey-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.journey-copy {
  max-width: 320px;
}

.journey-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 730;
  line-height: 1.08;
}

.journey-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.stats {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, 1fr);
  margin: 88px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stats div {
  padding: 20px;
  text-align: center;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-size: clamp(2.7rem, 5vw, 4rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

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

.interview-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 66px;
  padding-top: 92px;
  border-top: 0;
  text-align: center;
}

.interview-section::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  display: block;
  width: 220px;
  height: 164px;
  border-radius: 8px 86px 8px 86px;
  background: rgba(227, 67, 69, 0.12);
  content: "";
  pointer-events: none;
  transform: rotate(-10deg);
}

.interview-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading-light h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: normal;
  font-weight: 730;
  letter-spacing: 0;
}

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

.interview-frame-wrap {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.interview-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: var(--white);
}

.insights-section {
  padding-top: 96px;
  background: var(--paper);
}

.feature-grid {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.feature-card div {
  padding: 22px 22px 26px;
}

.feature-card h3 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 730;
  line-height: 1.08;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-section {
  padding-top: 86px;
  background: var(--white);
}

.pricing-heading {
  max-width: 900px;
  text-align: center;
}

.pricing-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.pricing-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 730;
  line-height: 1.04;
  letter-spacing: 0;
}

.pricing-grid {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.price-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.price-card-featured {
  border-color: rgba(241, 149, 0, 0.48);
  background: linear-gradient(145deg, #fff5df, #eef9ff);
  box-shadow: 0 18px 42px rgba(38, 31, 21, 0.1);
  transform: none;
}

.plan-name {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.price {
  margin-top: 14px;
  font-size: 32px;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.price span {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.price-card li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.price-card > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 15px;
  font-weight: 650;
}

.price-card-featured > a {
  border-color: var(--orange);
  background: var(--orange);
  color: #171107;
}

.inclusion-section {
  padding-top: 150px;
  background: var(--paper);
}

.inclusion-grid {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  margin: 0 auto;
}

.inclusion-grid article {
  padding: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.inclusion-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  font-weight: 800;
}

.inclusion-icon-orange {
  background: rgba(241, 149, 0, 0.18);
}

.inclusion-grid h3 {
  font-size: 1.45rem;
  font-weight: 730;
  line-height: 1.1;
}

.inclusion-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    #edf8fb;
}

.trust-shell {
  display: grid;
  gap: clamp(48px, 6vw, 72px);
}

.trust-copy {
  display: grid;
  width: min(100%, 760px);
  margin: 0 auto;
  justify-items: start;
  gap: 20px;
  text-align: left;
}

.trust-copy h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.25rem);
  line-height: 1.02;
}

.trust-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(19, 87, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.trust-badge svg {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.trust-principle {
  padding-top: 24px;
  border-top: 1px solid rgba(32, 32, 29, 0.16);
}

.trust-principle-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 122, 92, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.trust-principle h3 {
  max-width: 280px;
  margin-top: 22px;
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  line-height: 1.18;
}

.trust-principle p {
  max-width: 320px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-section {
  padding-top: 132px;
  background: var(--paper);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 13px 44px 13px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::before {
  margin-right: 9px;
  color: var(--orange);
  content: "+";
  font-weight: 400;
}

.faq-list details[open] summary::before {
  content: "–";
}

.faq-list details p {
  padding: 3px 46px 20px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  padding: 42px 0 30px;
  background: var(--dark);
  color: #fffef9;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-inner p,
.footer-links {
  color: rgba(255, 253, 248, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.9rem;
}

.footer-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal strong {
  color: rgba(255, 253, 248, 0.8);
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .journey-item {
    gap: 34px;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    gap: 14px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-actions {
    gap: 8px;
  }

  .signin-link {
    display: none;
  }

  .site-header .button-small {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 68px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.5rem);
    hyphens: manual;
  }

  .hero h2 {
    margin-top: 12px;
    font-size: clamp(1.65rem, 7.4vw, 2rem);
    line-height: 1.05;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-shape-blue {
    top: 36px;
    right: -112px;
    width: 190px;
    height: 150px;
    border-width: 18px;
  }

  .hero-shape-orange {
    bottom: -64px;
    left: -86px;
    width: 170px;
    height: 126px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .customer-strip {
    padding-top: 42px;
  }

  .customer-logos {
    --logo-gap: 44px;
    --logo-half-gap: 22px;
    --logo-width: 124px;
    width: calc(100% + 36px);
    margin-left: -18px;
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  }

  .customer-logos img {
    max-height: 46px;
  }

  .section {
    padding: 76px 0;
  }

  .journey {
    padding-top: 58px;
  }

  .journey-list {
    gap: 58px;
  }

  .journey-item,
  .journey-item-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journey-item + .journey-item {
    margin-top: 0;
  }

  .journey-item-reverse .journey-copy {
    order: 0;
  }

  .journey-copy {
    max-width: 340px;
  }

  .journey-copy h3 {
    font-size: 1.55rem;
  }

  .journey-copy p {
    font-size: 0.98rem;
  }

  .journey-item img {
    max-height: 460px;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .stats div {
    padding: 17px;
  }

  .stats strong {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .stats span {
    font-size: 0.88rem;
  }

  .stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .interview-section {
    padding-top: 74px;
  }

  .interview-frame-wrap iframe {
    height: 600px;
  }

  .feature-grid,
  .pricing-grid,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 52px;
  }

  .feature-card h3 {
    font-size: 1.5rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .pricing-heading .eyebrow {
    font-size: 0.74rem;
  }

  .pricing-heading h2 {
    font-size: 1.9rem;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    min-height: 280px;
  }

  .inclusion-section {
    padding-top: 110px;
  }

  .inclusion-grid {
    gap: 58px;
  }

  .inclusion-grid h3 {
    font-size: 1.35rem;
  }

  .inclusion-grid p {
    font-size: 0.95rem;
  }

  .trust-section {
    padding: 52px 0;
  }

  .trust-principles {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-principle {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 16px;
  }

  .trust-principle h3 {
    margin-top: 0;
  }

  .trust-principle p {
    grid-column: 2;
    margin-top: 8px;
  }

  .faq-section {
    padding-top: 96px;
  }

  .faq-list details p {
    padding: 3px 24px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-inner > div:first-child {
    display: grid;
    width: 100%;
    justify-items: center;
    gap: 8px;
  }

  .footer-links {
    width: 100%;
    max-width: 330px;
    justify-content: center;
    row-gap: 14px;
  }

  .footer-legal div {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .customer-logo-track {
    animation: none;
  }
}
