/* ===== Design tokens — Premium Red & Orange ===== */
:root {
  --red: #e63946;
  /* Primary — Crimson Red */
  --red-2: #d42a37;
  --red-hover: #c1121f;
  /* Primary Hover — Deep Red */
  --red-dark: #c1121f;
  --vermillion: #f04e23;
  /* Secondary — Vermillion */
  --orange: #ff7a00;
  /* Accent — Tangerine */
  --charcoal: #1c1c24;
  /* Dark Section — Rich Charcoal */
  --charcoal-2: #26262f;
  --white: #ffffff;
  /* Background — Snow White */
  --surface: #fafafb;
  /* Surface / Cards — Off White */
  --line: #e6e2e6;
  /* Border — Light Warm Gray */
  --line-2: #efedef;
  --ink: #1a1a1f;
  /* Heading Text — Charcoal */
  --ink-2: #33343b;
  --muted: #55565c;
  /* Body Text — Slate Gray */
  --muted-2: #8a8b93;
  --green: #14b86a;
  /* Success — Forest Green */
  --soft-pink: #fdece8;
  /* icon tile tint */
  --grad: linear-gradient(135deg, #e63946 0%, #ff7a00 100%);
  --grad-soft: linear-gradient(135deg, #fff4f2 0%, #ffe9e5 100%);
  --card: #ffffff;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-xs: 0 1px 2px rgba(28, 28, 36, .04);
  --shadow-sm: 0 2px 10px rgba(28, 28, 36, .05);
  --shadow-md: 0 16px 40px rgba(28, 28, 36, .09);
  --shadow-lg: 0 40px 80px rgba(28, 28, 36, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* ===== Custom Scrollbar ===== */
/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-hover);
} */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--muted);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: -0.005em;
  zoom: 0.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
}

::selection {
  background: rgba(230, 57, 70, .16);
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

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

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 13px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.btn .arrow {
  transition: transform .25s var(--ease);
  position: relative;
  z-index: 1;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 16px 28px;
  box-shadow: 0 12px 26px -8px rgba(230, 57, 70, .5), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(193, 18, 31, .5), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn-header {
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 11px;
}

.btn-link {
  color: var(--ink);
  padding: 16px 10px;
  font-weight: 600;
  position: relative;
}

.btn-link::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width .3s var(--ease);
}

.btn-link:hover {
  color: var(--red);
}

.btn-link:hover::before {
  width: calc(100% - 34px);
}

/* ===== Header ===== */
.site-header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.scrolled {
  background: rgba(28, 28, 36, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.logo-sub {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-left: 5px;
}

.nav {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  color: #b7c1cd;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 9px;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ===== Hero ===== */
.hero {
  padding: 70px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  /* Give more width to the image side */
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* background: var(--soft-pink); */
  border: 1px solid #d8d8db;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #55565C;
  box-shadow: var(--shadow-xs);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 174, 99, .18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(31, 174, 99, .18);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(31, 174, 99, .08);
  }
}

.hero-title {
  margin: 26px 0 24px;
  font-family: var(--font-head);
  font-size: 62px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-title .accent {
  background: linear-gradient(120deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  max-width: 470px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 0;
  flex-wrap: wrap;
}

/* ===== Stats ===== */
.stats {
  display: flex;
  gap: 0;
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 44px;
  margin-right: 44px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ===== Hero media ===== */
.hero-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(230, 57, 70, .08) 0%, transparent 68%); */
  /* filter: blur(14px); */
  z-index: 0;
}

.media-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin-top: -60px;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
  pointer-events: none;
}

.media-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  background: url("hero.jpeg") center/cover;
  position: relative;
  overflow: hidden;
}

/* .floating-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px 14px 14px;
  box-shadow: 0 20px 44px rgba(28, 28, 36, .18);
} */

.fc-icon {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #e7f6ee;
  border-radius: 11px;
  color: var(--green);
}

.fc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-right: 28px;
}

.fc-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.fc-text span {
  font-size: 12.5px;
  color: var(--muted-2);
}

.fc-check {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #e7f6ee;
  color: var(--green);
  border-radius: 50%;
}

/* ===== Feature cards ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  margin-top: 52px;
  box-shadow: var(--shadow-sm);
}

.feature {
  display: flex;
  gap: 18px;
  padding: 32px 30px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: none;
}

.feature-icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  /* background: var(--soft-pink); */
  background: var(--popover, #FFFFFF);

  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  color: var(--red);
  font-size: 16px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== Shared section bits ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 2px;
}

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

.eyebrow-light::before {
  background: linear-gradient(90deg, transparent, var(--orange));
}

.section-title {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 18px;
}

.title-light {
  color: #fff;
}

/* ===== Who It's For ===== */
.who {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(255, 122, 0, .07) 0%, transparent 55%),
    var(--charcoal);
  padding: 72px 0 80px;
}

.who-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.who-head .section-title {
  max-width: 560px;
}

.who-lead {
  color: #96a2b0;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 330px;
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.audience {
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background .3s var(--ease);
  cursor: pointer;
}

.audience:nth-child(4n) {
  border-right: none;
}

.audience:nth-child(n+5) {
  border-bottom: none;
}

.audience:hover {
  background: #f2efe7;
}

.aud-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 17px;
  margin-bottom: 14px;
  transition: all .3s var(--ease);
}

.audience:hover .aud-icon {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.audience h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}

.audience:hover h3 {
  color: var(--ink);
}

.audience p {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  transition: color .3s var(--ease);
}

.audience:hover p {
  color: var(--muted);
}

/* ===== About ===== */
.about {
  background: #fff;
  padding: 116px 0 120px;
}

.about-inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title {
  font-size: 40px;
  max-width: 600px;
  margin: 20px 0 32px;
}

.about-text {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 640px;
}

.about-tags {
  list-style: none;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.about-tags li {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 9px 18px 9px 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.about-tags li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .14);
}

/* ===== Partnership Models ===== */
.models {
  background: linear-gradient(180deg, #fafafb 0%, #ffffff 100%);
  padding: 104px 0 116px;
}

.section-head {
  margin-bottom: 52px;
}

.section-head .section-title {
  max-width: 520px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.model-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 40px 34px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.model-card:hover::before {
  transform: scaleX(1);
}

.model-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.model-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.model-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(230, 57, 70, 0.6);
  color: var(--red);
  font-size: 16px;
}

.model-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.model-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.model-list {
  list-style: none;
  margin-bottom: 28px;
}

.model-list li {
  position: relative;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 9px 0 9px 32px;
}

.model-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.model-link:hover {
  color: var(--red);
}

.model-link .arrow {
  transition: transform .25s var(--ease);
}

.model-link:hover .arrow {
  transform: translate(3px, -3px);
}

/* ===== Services ===== */
.services-sec {
  background: #fff;
  padding: 104px 0 116px;
}

.who-lead-dark {
  color: var(--muted);
}

.service-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 20px 1fr 1.3fr 28px;
  align-items: center;
  gap: 10px;
  padding: 30px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
  transition: background .3s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 40%;
  background: linear-gradient(var(--red), var(--orange));
  border-radius: 3px;
  transition: transform .3s var(--ease);
}

.service-row:hover {
  background: linear-gradient(90deg, #faf6f3, transparent);
  padding-left: 34px;
}

.service-row:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.sr-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
}

.sr-icon {
  font-size: 18px;
}

.sr-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sr-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
}

.sr-arrow {
  justify-self: end;
  color: #c2c9d1;
  font-size: 18px;
  transition: transform .3s var(--ease), color .3s var(--ease);
}

.service-row:hover .sr-arrow {
  color: var(--red);
  transform: translateX(5px);
}

.services-cta {
  margin-top: 48px;
  background:
    radial-gradient(500px 300px at 88% 30%, rgba(230, 57, 70, .06), transparent 60%),
    #fafafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.services-cta h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.services-cta p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ===== How it Works ===== */
.how-works {
  padding: 104px 0 116px;
  background:
    radial-gradient(700px 500px at 90% 25%, #f04e23 0%, transparent 58%),
    linear-gradient(140deg, #e63946 0%, #c1121f 100%);
}

.eyebrow-onred {
  color: rgba(255, 255, 255, .82);
}

.eyebrow-onred::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8));
}

.how-lead {
  color: rgba(255, 255, 255, .88);
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 330px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 30px 30px 34px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.step-arrow {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}

.step h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.step p {
  color: rgba(255, 255, 255, .86);
  font-size: 13.5px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== Why ConsultBridge ===== */
.why-sec {
  background: #fff;
  padding: 104px 0 116px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 36px;
  min-height: 230px;
  background: linear-gradient(180deg, #ffffff, #fafafb);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #e2d6ca;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(230, 57, 70, 0.6);
  color: var(--red);
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.principle {
  position: relative;
  margin-top: 28px;
  background:
    radial-gradient(600px 340px at 92% 15%, rgba(240, 78, 35, .12) 0%, transparent 62%),
    linear-gradient(135deg, #26262f 0%, #1c1c24 100%);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  overflow: hidden;
}

.principle-quote {
  display: block;
  font-family: var(--font-head);
  color: var(--orange);
  font-size: 60px;
  font-weight: 600;
  line-height: .6;
  margin-bottom: 20px;
}

.principle-text {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.42;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-bottom: 26px;
}

.principle-text strong {
  color: #fff;
  font-weight: 500;
}

.principle-text span {
  color: rgba(255, 255, 255, .5);
}

.principle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ===== FAQ ===== */
.faq-sec {
  background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%);
  padding: 104px 0 116px;
}

.faq-head {
  text-align: center;
  margin-bottom: 52px;
}

.faq-head .eyebrow {
  justify-content: center;
}

.faq-head .section-title {
  max-width: none;
}

.faq {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 34px;
  box-shadow: var(--shadow-sm);
}

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

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .25s var(--ease);
}

.faq-q:hover {
  color: var(--red);
}

.faq-toggle {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #cfd6df;
  transition: background .2s ease, border-color .2s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #6b7280;
  transition: opacity .2s ease, background .2s ease;
}

.faq-toggle::before {
  width: 9px;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 9px;
}

.faq-item.open .faq-toggle {
  background: var(--red);
  border-color: var(--red);
}

.faq-item.open .faq-toggle::before {
  background: #fff;
}

.faq-item.open .faq-toggle::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  padding: 0 40px 24px 0;
}

.faq-item.open .faq-a {
  max-height: 800px;
}

/* ===== Partner CTA ===== */
.cta-sec {
  position: relative;
  padding: 120px 0 128px;
  background:
    radial-gradient(700px 480px at 85% 20%, #f04e23 0%, transparent 60%),
    linear-gradient(140deg, #e63946 0%, #c1121f 100%);
  overflow: hidden;
}

.cta-sec::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 300px;
  background: radial-gradient(closest-side, rgba(255, 122, 0, .16), transparent);
}

.cta-inner {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.cta-text-content {
  flex: 1;
  max-width: 560px;
}

.cta-inner .eyebrow {
  justify-content: flex-start;
}

.cta-title {
  font-size: 58px;
  line-height: 1.05;
  max-width: 680px;
  margin: 20px 0 24px;
}

.cta-text {
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 24px;
}

.cta-features {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cta-feature-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.cta-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.cta-avatars {
  display: flex;
}

.cta-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #c1121f;
  margin-left: -12px;
  object-fit: cover;
}

.cta-avatars img:first-child {
  margin-left: 0;
}

.cta-social-proof span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 17px 32px;
  box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .3);
}

.btn-white::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(230, 57, 70, .1) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
}

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

.btn-white:hover::after {
  transform: translateX(130%);
}

.cta-note {
  margin-top: 24px;
  font-size: 12.5px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .82);
}

/* ===== Form within CTA ===== */
.cta-form-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  flex: 1;
  margin: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  text-align: left;
}

.partner-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.partner-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.partner-form .form-row .form-group {
  margin-bottom: 0;
}

.partner-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  background: #fdfdfd;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-head);
  -webkit-appearance: none;
  appearance: none;
}

.partner-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%238a8b93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  border-color: var(--red);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}

.partner-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 16px;
  font-size: 16px;
}

@media (max-width: 960px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .cta-text-content {
    max-width: 100%;
  }
  .cta-inner .eyebrow {
    justify-content: center;
  }
  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .partner-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .partner-form .form-row .form-group {
    margin-bottom: 24px;
  }
  .cta-form-card {
    padding: 24px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: #cdd5df;
  padding: 80px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 20px;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 16px -4px rgba(230, 57, 70, .5);
}

.footer-brand p {
  font-size: 14px;
  color: #8b98a8;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7f8a9d;
  margin-bottom: 20px;
}

.footer-col a,
.footer-static {
  font-size: 14px;
  color: #b6bdc7;
  padding: 6px 0;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-static {
  color: #8b98a8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  color: #8b98a8;
}

.footer-legal {
  display: flex;
  gap: 26px;
}

.footer-legal a:hover {
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  body {
    zoom: 1;
  }

  .hero {
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-copy,
  .hero-media {
    min-width: 0;
  }

  .hero-media {
    justify-content: center;
    width: 100%;
  }

  .hero-media::before {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
  }

  .media-image {
    aspect-ratio: 1 / 1;
  }

  .hero-title {
    font-size: 52px;
    word-break: break-word;
  }

  .principle {
    padding: 40px 34px;
  }

  .principle-text {
    font-size: 23px;
  }

  .principle-quote {
    font-size: 50px;
  }

  .who-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .audience-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }

  .audience:nth-child(2n) {
    border-right: none;
  }

  .audience:nth-child(n+5) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .audience:nth-child(n+7) {
    border-bottom: none;
  }

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

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

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .why-card {
    min-height: 0;
  }

  .why-icon {
    margin-bottom: 20px;
  }

  .cta-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 36px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 18px 40px 24px;
    gap: 6px;
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .nav.open a {
    padding: 12px 14px;
  }

  .btn-header {
    display: none;
  }
}

@media (max-width: 720px) {
  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: none;
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
  }

  .audience:last-child {
    border-bottom: none !important;
  }

  .service-row {
    grid-template-columns: 30px 1fr 20px;
    grid-template-areas:
      "num title arrow"
      "num desc desc";
    row-gap: 6px;
  }

  .sr-num {
    grid-area: num;
    align-self: start;
  }

  .sr-icon {
    display: none;
  }

  .sr-title {
    grid-area: title;
  }

  .sr-desc {
    grid-area: desc;
    max-width: none;
  }

  .sr-arrow {
    grid-area: arrow;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 22px;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-sec {
    padding: 88px 0 92px;
  }

  .section-title {
    font-size: 29px;
  }

  .about-title {
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }

  .hero-text {
    font-size: 16px;
  }

  .stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .stat {
    padding-right: 24px;
    margin-right: 24px;
  }

  .stat-num {
    font-size: 27px;
  }

  .principle {
    padding: 34px 26px;
  }

  .principle-text {
    font-size: 20px;
  }

  .services-cta {
    padding: 28px 26px;
  }

  .faq {
    padding: 4px 22px;
  }

  .media-card {
    width: 100%;
    max-width: 360px;
  }

  .media-image {
    width: 100%;
    max-width: 360px;
    height: 420px;
  }

  .who,
  .about,
  .models,
  .services-sec,
  .how-works,
  .why-sec,
  .faq-sec {
    padding-top: 76px;
    padding-bottom: 82px;
  }
}

/* ===================================================================
   Motion & interaction layer
   =================================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 12px rgba(220, 75, 66, .5);
  transition: width .1s linear;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.22, .61, .36, 1),
    transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Hero entrance (plays on load) */
.hero-copy>*,
.hero-media {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .8s cubic-bezier(.22, .61, .36, 1) forwards;
}

.hero-copy>*:nth-child(1) {
  animation-delay: .05s;
}

.hero-copy>*:nth-child(2) {
  animation-delay: .15s;
}

.hero-copy>*:nth-child(3) {
  animation-delay: .25s;
}

.hero-copy>*:nth-child(4) {
  animation-delay: .35s;
}

.hero-copy>*:nth-child(5) {
  animation-delay: .45s;
}

.hero-media {
  animation-delay: .3s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Floating card gentle bob */
.floating-card {
  animation: bob 4.5s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Hero image subtle zoom on hover */
.media-image {
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.media-card:hover .media-image {
  transform: scale(1.03);
}

/* Card hover lifts (unify across sections) */
.feature,
.audience,
.model-card,
.step {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.model-card:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature:hover {
  background: rgba(255, 255, 255, .55);
}

/* Button press feedback */
.btn:active {
  transform: translateY(1px) scale(.99);
}

/* Reduced motion: disable all of the above */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy>*,
  .hero-media {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .floating-card {
    animation: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

/* ===== WhatsApp Sticky Button ===== */
.whatsapp-sticky {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-wa 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 45px;
  width: 50px;
  height: 50px;
  background-color: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  background-color: var(--red-hover);
}

@media (max-width: 560px) {
  .whatsapp-sticky {
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-sticky svg {
    width: 24px;
    height: 24px;
  }

  .scroll-top {
    bottom: 86px;
    right: 33px;
    width: 40px;
    height: 40px;
  }

  .scroll-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Toast Notification ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--card);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid var(--red);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: #ef4444;
}

  .toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile and Tablet UI Fixes */
  @media (max-width: 980px) {
    .cta-features {
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .stats {
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
    }
    .stat {
      padding-right: 0;
      margin-right: 0;
      border-right: none;
      align-items: center;
      text-align: center;
      flex: 1 1 calc(50% - 16px);
    }
    .site-footer {
      padding-bottom: 120px;
    }
    .media-card {
      margin-top: 32px; /* Prevent overlapping stats */
    }
    .media-image {
      background-size: contain;
      background-repeat: no-repeat;
      background-position: top center;
      box-shadow: none;
    }
    .footer-grid {
      padding-bottom: 32px !important;
    }
    .footer-bottom {
      padding-top: 32px !important;
    }
  }