/* === Fonts === */
@font-face {
  font-family: "Foundersgrotesk regular";
  src: url("fonts/FoundersGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Foundersgrotesk light";
  src: url("fonts/FoundersGrotesk-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Foundersgrotesk medium";
  src: url("fonts/FoundersGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Foundersgrotesk bold";
  src: url("fonts/FoundersGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Variables === */
:root {
  --gold: #fed31a;
  --white-smoke: #f4f5f5;
  --black: #000;
  --white: #fff;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  color: var(--black);
  background-color: var(--white);
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  line-height: 110%;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

/* === Section: Head (Hero) === */
.section-head {
  z-index: 1;
  position: relative;
  background-color: var(--white);
  background-image: url("images/bg-flat-1600.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 0 0 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 64px;
  padding-left: 64px;
  padding-right: 64px;
  box-shadow: 0 0 200px -60px rgba(0, 0, 0, 0.1);
}

/* === Navbar === */
.navbar {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: var(--white-smoke);
  border-radius: 16px;
  padding: 12px 12px 12px 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.navbar-link:hover {
  opacity: 0.7;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 12px;
}

/* === Tagline (Hero Content) === */
.tagline {
  margin-top: 130px;
  margin-bottom: 120px;
}

.tagline-heading {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 90%;
  color: var(--black);
  text-align: center;
}

.tagline-sub {
  font-family: "Foundersgrotesk light", sans-serif;
  width: 70%;
  margin: 20px auto 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 122%;
  color: var(--black);
  text-align: center;
}

/* === Feature Rows === */
.double-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  mix-blend-mode: multiply;
}

/* === Feature Cards === */
.feature-card {
  width: 100%;
  max-width: 640px;
  background-color: var(--white-smoke);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  max-height: 560px;
}

.feature-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}

.feature-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: 40px;
}

picture {
  display: flex;
  justify-content: center;
}

.feature-image {
  max-width: 60%;
  object-fit: contain;
}

/* === Use Cases === */
.use-cases {
  width: 100%;
  margin-top: 80px;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  background-color: #fed31a45;
}

.use-cases > * {
  width: 100%;
  max-width: 1320px;
}

.use-cases-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
}

.use-case-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* .reversed layout is handled by DOM order */

.use-case-text {
  flex: 1;
}

.use-case-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 20px;
}

.use-case-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #444;
}

.use-case-image {
  flex: 1;
}

.use-case-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
}

/* === Testimonials === */
.testimonials {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 100px 32px;
}

.testimonials-title {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 122%;
  color: var(--black);
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-cards {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  flex: 1;
  background-color: var(--white-smoke);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 24px 8px;
}

.testimonial-text {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  color: #444;
  margin: 0 24px 24px;
}

/* === For Who V2 === */
.for-who-v2 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.for-who-v2-header {
  text-align: center;
  margin-bottom: 64px;
}

.for-who-v2-heading {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
}

.for-who-v2-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.for-who-v2-text {
  flex: 1;
}

.for-who-v2-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 20px;
}

.for-who-v2-desc {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #444;
}

.for-who-v2-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.for-who-v2-pill {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--black);
}

.for-who-v2-image {
  flex: 1;
}

.for-who-v2-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
}

/* === FAQ === */
.faq {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.faq::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -60px;
  width: 450px;
  height: 550px;
  background-image: radial-gradient(circle, #fed31a 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 20%,
    transparent 70%
  );
}

.faq::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: -60px;
  width: 450px;
  height: 550px;
  background-image: radial-gradient(circle, #fed31a 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.3;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 20%,
    transparent 70%
  );
}

.faq-header {
  margin-bottom: 64px;
  text-align: center;
}

.faq-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #444;
  max-width: 600px;
}

.faq-list {
  width: 100%;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--black);
  margin-right: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  gap: 0;
}

.faq-question span {
  flex: 1;
}

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-left: 56px;
  line-height: 160%;
  color: #444;
  margin-top: 12px;
  padding-right: 40px;
}

/* === Pricing === */
.pricing {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 16px;
}

.pricing-subtitle {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #444;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  background-color: var(--white-smoke);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  background-color: var(--gold);
}

.pricing-card.popular.gradient {
  background-color: var(--white);
  background-image: url("https://assets-global.website-files.com/6230a25427d02f59f736f5ab/6446e36582c6223d0f84357c_Bakground_xs.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--black);
  color: var(--white);
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.pricing-card.gradient .pricing-badge {
  background-color: var(--gold);
  color: var(--black);
}

.pricing-emoji {
  font-size: 32px;
  margin-bottom: 8px;
}

.pricing-plan {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-price-label {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 4px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
}

.pricing-currency {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  white-space: nowrap;
}

.pricing-desc {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 15px;
  line-height: 140%;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-features li.disabled {
  text-decoration: line-through;
  text-decoration-color: #747070;
}

.pricing-features li.disabled::before {
  content: "✗";
}

.pricing-card.popular .pricing-features li::before {
  color: var(--black);
}

.pricing-btn {
  display: block;
  text-align: center;
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 12px;
  transition: opacity 0.2s ease;
}

.pricing-btn:hover {
  opacity: 0.8;
}

.pricing-card.popular .pricing-btn {
  background-color: var(--black);
  color: var(--white);
}

.pricing-btn-dark {
  background-color: var(--black);
  color: var(--white);
}

/* === Social Proof Pills === */
.section-pills {
  width: 100%;
  background-color: var(--white-smoke);
  padding: 48px 32px;
}

.metrics-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(254, 211, 26, 0.15);
}

.proof-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-number {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black);
}

.proof-label {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
}

/* === Wall of Love === */
.wall-of-love {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
}

.wall-header {
  text-align: center;
  margin-bottom: 56px;
}

.wall-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 16px;
}

.wall-subtitle {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #444;
}

.wall-cards {
  display: flex;
  gap: 24px;
}

.wall-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wall-quote {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 165%;
  color: #333;
  margin-bottom: 32px;
}

.wall-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wall-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white-smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  flex-shrink: 0;
}

.wall-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wall-name {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.wall-role {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
}

/* === Testimonials V2 === */
.testimonials-v2 {
  width: 100%;
  background-color: var(--white-smoke);
  padding: 100px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.testimonials-v2-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 3;
}

.testimonials-v2-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
}

.testimonials-v2-cards {
  display: flex;
  gap: 24px;
  animation: scroll-marquee 25s linear infinite;
  width: max-content;
}

.testimonials-v2-cards:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonials-v2-card {
  flex-shrink: 0;
  width: 340px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonials-v2-quote-mark {
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.testimonials-v2-text {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: #333;
  flex: 1;
  margin-bottom: 28px;
}

.testimonials-v2-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-v2-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials-v2-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials-v2-name {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.testimonials-v2-role {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
}

/* === Metrics Strip === */
.metrics-strip {
  width: 100%;
  background-color: var(--gold);
  padding: 40px 32px;
}

.metrics-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric-number {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.metric-star {
  font-size: 20px;
}

.metric-label {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

/* === Metrics Dark Section === */
.section-metrics-dark {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 32px;
}

.metrics-dark-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  justify-content: center;
}

.metric-stat {
  flex: 1;
  text-align: center;
}

.metric-stat-number {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.metric-stat-label {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.metric-stat-desc {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #9ca3af;
  max-width: 320px;
  margin: 0 auto;
}

/* === Metrics Section (old) === */
.section-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 32px;
}

.metrics-bg-glow {
  background: radial-gradient(
    ellipse 60% 70% at 50% 50%,
    rgba(254, 211, 26, 0.15) 0%,
    rgba(254, 211, 26, 0.05) 40%,
    transparent 70%
  );
}

.metrics-header {
  text-align: center;
  margin-bottom: 48px;
}

.metrics-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
}

.metrics {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  background-color: #f7f7f8;
  border-radius: 32px;
}

.metrics-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.metrics-row:last-child {
  margin-bottom: 0;
}

.metric-card {
  flex: 1;
  background-color: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.metric-card.metric-dark {
  background-color: #1a1a1a;
  color: var(--white);
}

.metric-card.metric-dark .metric-text {
  color: rgba(255, 255, 255, 0.65);
}

.metric-card.metric-dark .metric-name {
  color: var(--white);
}

.metric-card.metric-dark .metric-role {
  color: rgba(255, 255, 255, 0.45);
}

.metric-card.metric-dark .metric-avatar {
  background-color: var(--gold);
  color: var(--black);
}

.metric-card.metric-dark .metric-quote-mark {
  color: var(--gold);
}

.metric-top {
  margin-bottom: 20px;
}

.metric-number-old {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  display: block;
  margin-bottom: 6px;
}

.metric-label-old {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #6b7280;
}

.metric-quote {
  flex: 1;
  margin-bottom: 28px;
}

.metric-quote-mark {
  font-size: 48px;
  font-weight: 700;
  line-height: 0.8;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.metric-text {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #6b7280;
}

.metric-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  flex-shrink: 0;
}

.metric-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-name {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.metric-role {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
}

/* === Legal Page === */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.legal-back {
  display: inline-block;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 40px;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}

.legal-intro {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 170%;
  color: #444;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  line-height: 170%;
  color: #333;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 16px;
  line-height: 170%;
  color: #333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.legal-page ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.legal-page a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.legal-page a:hover {
  text-decoration-color: var(--black);
}

/* === Footer === */
.section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 32px;
  text-align: center;
}

.footer-cta-title {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 20px;
}

.footer-cta-sub {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 40px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 40px;
  border-radius: 14px;
  transition: opacity 0.2s ease;
}

.footer-cta-btn:hover {
  opacity: 0.8;
}

.footer-bottom {
  width: 100%;
  background-color: var(--white-smoke);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 32px;
}

.footer-logo-text {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dot {
  color: #999;
}

.footer-copy {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
}

.footer-legal {
  font-family: "Foundersgrotesk light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  text-decoration: none;
}

.footer-legal:hover {
  text-decoration: underline;
}

/* === Hamburger Toggle (hidden on desktop) === */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* === Responsive === */
@media screen and (max-width: 991px) {
  .section-head {
    padding-left: 32px;
    padding-right: 32px;
  }

  .tagline-heading {
    font-size: 56px;
  }

  .tagline-sub {
    font-size: 24px;
    width: 90%;
  }

  .tagline {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .double-container {
    flex-direction: column;
  }

  .use-case-row,
  .use-case-row.reversed {
    flex-direction: column;
  }

  .use-cases {
    padding: 0 32px;
  }

  .testimonials-cards {
    flex-direction: column;
  }

  .for-who-v2-row,
  .for-who-v2-row.reversed {
    flex-direction: column;
  }

  .for-who-v2-title {
    font-size: 28px;
  }

  .for-who-v2-desc {
    font-size: 16px;
  }

  .pricing-cards {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-title,
  .faq-title,
  .testimonials-v2-title,
  .for-who-v2-heading {
    font-size: 36px;
  }

  .metrics-strip-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .metric-item {
    min-width: 140px;
  }

  .metrics-row {
    flex-direction: column;
  }

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

  .footer-cta-sub {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .section-head {
    border-radius: 0 0 24px 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }

  .navbar {
    padding: 20px 0 10px;
  }

  /* Hamburger menu */
  .navbar-toggle {
    display: flex;
  }

  .navbar-inner {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 12px 16px;
    gap: 0;
    border: 1px solid #dcdcdc;
  }

  .navbar-toggle {
    grid-row: 1;
    grid-column: 1;
  }

  .navbar-cta {
    grid-row: 1;
    grid-column: 3;
    padding: 12px 18px;
    font-size: 14px;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 0;
    padding-top: 12px;
  }

  .navbar-inner.open .navbar-links {
    display: flex;
  }

  .navbar-inner.open .navbar-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-inner.open .navbar-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar-inner.open .navbar-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar-link {
    padding: 12px 0;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .navbar-link:last-child {
    border-bottom: none;
  }

  /* Hero */
  .tagline {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .tagline-heading {
    font-size: 47px;
    line-height: 1;
  }

  .tagline-sub {
    font-size: 18px;
    width: 100%;
  }

  /* Feature cards */
  .double-container {
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 16px;
  }

  .feature-card {
    border-radius: 24px;
    padding-top: 24px;
    max-height: 400px;
  }

  .feature-title {
    font-size: 22px;
  }

  /* For Who */
  .for-who-v2 {
    padding: 60px 16px;
    gap: 48px;
  }

  .for-who-v2-row {
    gap: 24px;
  }

  .for-who-v2-image {
    order: -1;
  }

  .for-who-v2-title {
    font-size: 24px;
  }

  .for-who-v2-image img {
    height: 260px;
    border-radius: 16px;
  }

  /* Testimonials V2 */
  .testimonials-v2 {
    padding: 60px 0;
  }

  .testimonials-v2-title {
    font-size: 28px;
    padding: 0 16px;
  }

  .testimonials-v2-card {
    width: 280px;
    padding: 24px;
  }

  /* Metrics strip */
  .metrics-strip {
    padding: 32px 16px;
  }

  .metrics-strip-inner {
    flex-direction: column;
    gap: 20px;
  }

  .metric-number {
    font-size: 28px;
  }

  .metric-label {
    font-size: 15px;
  }

  /* Pricing */
  .pricing {
    padding: 60px 16px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .pricing-cards {
    max-width: 100%;
  }

  .pricing-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  /* FAQ */
  .faq {
    padding: 60px 16px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    margin-left: 0;
    padding-right: 0;
    font-size: 15px;
  }

  .faq-icon {
    display: none;
  }

  /* Footer */
  .footer-cta {
    padding: 60px 16px;
  }

  .footer-cta-title {
    font-size: 32px;
  }

  .footer-cta-sub {
    font-size: 18px;
  }

  .footer-cta-btn {
    font-size: 16px;
    padding: 16px 32px;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .footer-dot {
    display: none;
  }
}


.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* === Waitlist Modal === */
.waitlist-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.waitlist-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 530px;
  width: 90%;
  text-align: left;
  position: relative;
}

.waitlist-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
}

.waitlist-title {
  font-family: "Foundersgrotesk bold", sans-serif;
  font-size: 28px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.waitlist-text {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 18px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.5;
}


.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-input {
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 18px;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.waitlist-submit {
  font-family: "Foundersgrotesk medium", sans-serif;
  font-size: 18px;
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.waitlist-submit:hover {
  opacity: 0.8;
}

.waitlist-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #999;
  margin: 20px 0 0;
}

.waitlist-avatars {
  display: flex;
}

.waitlist-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

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

.waitlist-success {
  display: none;
  font-family: "Foundersgrotesk regular", sans-serif;
  font-size: 18px;
  color: #2e7d32;
  text-align: center;
  margin: 0 0 20px;
}
