/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #191919;
  --bg-tertiary:   #1a1a1a;

  /* Text */
  --text-primary:   #fafafa;
  --text-secondary: rgba(250, 250, 250, 0.51);
  --text-muted:     rgba(250, 250, 250, 0.30);

  /* Accent */
  --green:       #36f790;
  --green-dark:  #1a7545;
  --green-glow:  rgba(26, 117, 69, 0.60);

  /* Borders */
  --border-subtle: rgba(250, 250, 250, 0.11);
  --border-mid:    rgba(250, 250, 250, 0.20);

  /* Cards */
  --card-bg:     rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);

  /* Misc */
  --amber: rgb(245, 158, 11);

  /* Radii */
  --radius-sm:   10px;
  --radius-md:   12px;
  --radius-btn:  13px;
  --radius-pill: 40px;

  /* Shadows */
  --glow-green-lg: 0px 0px 46px 5px rgb(26, 117, 69);
  --glow-green-md: 0px 0px 39px 9px rgb(26, 117, 69);
  --shadow-card:   0 0 24px -8px rgba(0, 0, 0, 0.15);

  /* Layout */
  --max-width:    1200px;
  --section-py:   120px;
  --container-px: 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(26, 26, 26, 0.61);
}

/* Gradient rule always sits at the very bottom of the header */
.site-header::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgb(250,250,250) 50%, transparent 100%);
}

.site-header__bar {
  padding: 15px 20px;
  display: flex;
  justify-content: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo-img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.site-header__logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-header__nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.site-header__nav-link:hover {
  color: var(--green);
  text-decoration: underline;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 154px;
  height: 37px;
  background: linear-gradient(90deg, #36f790 0%, #1a7545 100%);
  border: 1px solid rgba(250, 250, 250, 0.3);
  border-radius: 10px;
  color: #010101;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: box-shadow 0.2s;
  white-space: nowrap;
}

.site-header__cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 800%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(8px);
  transform: translateY(-50%) rotate(30deg) translateX(-60px);
  transition: transform 0.55s ease;
  border-radius: 4px;
}

.site-header__cta:hover {
  box-shadow: 0 0 20px 6px rgba(54, 247, 144, 0.4);
}

.site-header__cta:hover::after {
  transform: translateY(-50%) rotate(30deg) translateX(200px);
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.menu-open .site-header__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .site-header__hamburger span:nth-child(2) { opacity: 0; }
.site-header.menu-open .site-header__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.site-header__mobile-link:first-child { margin-top: 25px; }
.site-header__mobile-menu .site-header__cta { margin-bottom: 30px; }

.site-header__mobile-link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.site-header__mobile-link:hover {
  color: var(--green);
  text-decoration: underline;
}

/* Tablet + Mobile ≤1199px */
@media (max-width: 1199px) {
  .site-header__nav,
  .site-header__bar .site-header__cta { display: none; }

  .site-header__hamburger { display: flex; }

  .site-header__mobile-menu { display: flex; }

  .site-header.menu-open .site-header__mobile-menu { max-height: 300px; }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* --- Section padding --- */
.calendar-section,
.steps-section,
.process-section,
.why-section,
.testimonials-section,
.problem-section,
.faq-section {
  padding: 80px 40px;
}

/* --- Eyebrow pill (green) --- */
.calendar-section__eyebrow,
.steps-section__eyebrow,
.portfolio-section__eyebrow,
.process-section__eyebrow,
.why-section__eyebrow,
.services-section__eyebrow,
.testimonials-section__eyebrow,
.faq-section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background-color: var(--green);
  box-shadow: inset 0 0 0 2px var(--green-glow);
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000;
  white-space: nowrap;
}

/* --- Eyebrow pill (red) --- */
.problem-section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background-color: #ef4444;
  box-shadow: inset 0 0 0 2px rgba(180, 30, 30, 0.6);
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

/* --- Section headlines --- */
.calendar-section__headline,
.steps-section__headline,
.portfolio-section__headline,
.process-section__headline,
.why-section__headline,
.services-section__headline,
.testimonials-section__headline,
.faq-section__headline,
.problem-section__headline,
.brands-section__headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2em;
  color: var(--text-primary);
  text-align: center;
}

/* --- Card base (background, border, overflow, hover) --- */
.steps-card,
.why-card,
.testimonials-card,
.process-step,
.faq-item,
.services-list {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

/* --- Card hover — green border --- */
.steps-card:hover,
.why-card:hover,
.process-step:hover,
.faq-item:hover,
.faq-item.open {
  border-color: var(--green);
}

/* --- Card bottom glow --- */
.steps-card::after,
.why-card::after,
.testimonials-card::after,
.process-step::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  filter: blur(63px);
  opacity: 0.22;
  pointer-events: none;
}

/* --- CTA button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 250px;
  height: 60px;
  background: linear-gradient(90deg, #36f790 0%, #1a7545 100%);
  border: 1px solid rgba(250, 250, 250, 0.3);
  border-radius: 10px;
  color: #191919;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.3s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 800%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(8px);
  transform: translateY(-50%) rotate(30deg) translateX(-80px);
  transition: transform 0.55s ease;
  border-radius: 4px;
}

.btn-primary:hover {
  box-shadow: 0 0 28px 10px rgba(54, 247, 144, 0.55);
}

.btn-primary:hover::after {
  transform: translateY(-50%) rotate(30deg) translateX(340px);
}

.btn-primary--red {
  background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
}

.btn-primary--red:hover {
  box-shadow: 0 0 28px 10px rgba(239, 68, 68, 0.55);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-wrapper {
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: 1067px;
  padding: 175px 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-section__bg-image {
  position: absolute;
  top: -71px;
  left: 50%;
  transform: translateX(-50%);
  width: 2291px;
  max-width: none;
  filter: hue-rotate(238deg);
  z-index: 0;
  pointer-events: none;
}

.hero-section__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-post-fade {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 600px;
  background: linear-gradient(to bottom, #000 0%, #191919 100%);
  pointer-events: none;
}

@media (min-width: 810px) and (max-width: 1199px) {
  .hero-section           { min-height: 0; height: 1008px; }
  .hero-section__bg-image { width: 1909px; top: 0; }
  .hero-fade              { bottom: auto; top: 928px; }
  .hero-post-fade         { top: 1008px; }
}

@media (max-width: 809px) {
  .hero-section           { min-height: 0; height: min-content; padding: 120px 35px 0; }
  .hero-section__bg-image { width: 1142px; top: -77px; }
  .hero-fade              { bottom: auto; top: 480px; }
  .hero-post-fade         { top: 560px; }
}

.hero-section__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.hero-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  text-align: center;
}

/* Eyebrow pill — structure mirrors Framer exactly */
.hero-section__eyebrow {
  display: inline-block;
  position: relative;
  width: 194px;
  height: 30px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0px 0px 46px 5px rgb(26, 117, 69);
}

/* Comet — framer-seo6bt: absolute, inset:-69px -67px, overflow:hidden, rotates */
.hero-section__eyebrow-comet {
  position: absolute;
  inset: -69px -67px;
  overflow: hidden;
  border-radius: 84px;
  background: conic-gradient(from 0deg at 50% 50%, rgba(250, 250, 250, 0) 284.4deg, rgb(250, 250, 250) 360deg);
  filter: blur(3px);
  animation: pill-spin 3s linear infinite;
}

@keyframes pill-spin {
  from { transform: rotate(-90deg); }
  to   { transform: rotate(270deg); }
}

/* Inner pill — framer-uo26ls: absolute, inset:2px (190×26px), green bg, own glow */
.hero-section__eyebrow-inner {
  position: absolute;
  inset: 2px;
  overflow: hidden;
  background-color: rgb(26, 117, 69);
  border-radius: 36px;
  box-shadow: 0px 0px 39px 9px rgb(26, 117, 69);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Dot — framer-1sd7cee: 4×4px, green (#36f790) */
.hero-section__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgb(54, 247, 144);
  flex-shrink: 0;
}

/* Label — framer-12pc6im text */
.hero-section__eyebrow-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: rgb(250, 250, 250);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.hero-section__headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2em;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.01em;
}

.hero-section__italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.hero-section__subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: center;
}

@property --vsl-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 218deg;
}

.hero-section__vsl {
  position: relative;
  width: 890px;
  border-radius: 16px;
  --vsl-angle: 218deg;
  background: linear-gradient(var(--vsl-angle), rgba(250,250,250,0.11) 20%, rgba(250,250,250,0.51) 50%, rgba(250,250,250,0.11) 72%);
  border: 1px solid rgba(250, 250, 250, 0.21);
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: --vsl-angle 0.25s ease;
}

@media (min-width: 810px) and (max-width: 1199px) {
  .hero-section__vsl { width: 663px; }
}

@media (max-width: 809px) {
  .hero-section__vsl { width: 335px; padding: 5px; }
}

.hero-section__vsl:hover {
  --vsl-angle: 308deg;
}

.hero-section__vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.hero-section__vsl-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.hero-section__vsl-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: none;
}

.hero-section__vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.15s;
}

.hero-section__vsl-play:hover { opacity: 0.8; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  flex-flow: row;
  place-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 35px;
}

.footer__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 100%;
}

.footer__logo {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__logo-wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-primary);
  white-space: pre;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-primary);
  white-space: pre;
}

/* ============================================================
   CALENDAR SECTION
   ============================================================ */
.calendar-section {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}

.calendar-section__container {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.calendar-section__text {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 16px;
}

.calendar-section__widget {
  width: 100%;
}

.calendly-inline-widget {
  width: 100%;
  height: 750px;
}

@media (min-width: 810px) and (max-width: 1199px) {
  .calendar-section { padding: 60px 35px; }
  .calendar-section__container { gap: 48px; }
  .calendly-inline-widget { height: 1150px; }
}

@media (max-width: 809px) {
  .calendar-section__container { gap: 48px; }
  .calendly-inline-widget { height: 1150px; }
}

/* ============================================================
   STEPS SECTION (Get Yourself Booked In)
   ============================================================ */
.steps-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.steps-card {
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.steps-card__icon {
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-card__step {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--green);
}

.steps-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
}

.steps-card__body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
}

@media (max-width: 809px) {
  .steps-section__headline { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  overflow: hidden;
}

.brands-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.brands-section__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--text-primary);
}

.brands-ticker {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
}

.brands-ticker__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brands-scroll 20s linear infinite;
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands-ticker__logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: invert(1);
  object-fit: contain;
}

@media (max-width: 809px) {
  .brands-section { padding: 60px 0; }
  .brands-section__headline { font-size: 28px; }
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  overflow: hidden;
}


.portfolio-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.portfolio-ticker {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 16.5%, rgba(0,0,0,1) 83.5%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 16.5%, rgba(0,0,0,1) 83.5%, rgba(0,0,0,0) 100%);
}

.portfolio-ticker__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: portfolio-scroll 35s linear infinite;
}

@keyframes portfolio-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.portfolio-ticker__img {
  width: 200px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 809px) {
  .portfolio-section { padding: 60px 0; }
  .portfolio-section__headline { font-size: 30px; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.problem-section__subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  max-width: 680px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.problem-card__image {
  border: 1px solid rgba(250, 250, 250, 0.22);
  border-radius: 13px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 10 / 7;
}

.problem-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.problem-card__image:hover img {
  transform: scale(1.12);
}

.problem-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.problem-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.problem-card__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

@media (max-width: 809px) {
  .problem-section__headline { font-size: 30px; }
  .problem-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   OUR PROCESS SECTION
   ============================================================ */
.process-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.process-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.process-section__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 720px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-primary);
}

.process-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-step__number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 111px;
  line-height: 1;
  text-align: center;
  width: 100%;
  background-image: linear-gradient(0deg, rgba(54, 247, 144, 0) 17.9%, rgba(54, 247, 144, 0.83) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.process-step:nth-child(2) .process-step__number { animation-delay: 1s; }
.process-step:nth-child(3) .process-step__number { animation-delay: 2s; }

.process-step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.process-step__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--green);
  text-align: center;
}

.process-step__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: center;
}

@media (max-width: 809px) {
  .process-section__headline { font-size: 30px; }
  .process-step { padding: 24px 20px; }
  .process-step__number { font-size: 72px; }
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.why-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

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

.why-card {
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.why-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
}

.why-card__body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
}

@media (max-width: 809px) {
  .why-section__headline { font-size: 30px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 50px 35px;
}

.services-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
}

.services-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.services-section__subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-primary);
  max-width: 680px;
}

.services-list {
  border-radius: 10px;
  width: 100%;
}

.services-list:hover {
  border-color: var(--green);
}

.services-list__item {
  padding: 8px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.15s, color 0.15s;
}

.services-list__item:hover {
  background: var(--green);
  color: #000;
}

.services-list__item:last-child {
  border-bottom: none;
}

@media (max-width: 809px) {
  .services-section { padding: 50px 20px; }
  .services-section__headline { font-size: 30px; }
  .services-list__item { font-size: 16px; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section .container {
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
}

.testimonials-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonials-card {
  flex-shrink: 0;
  width: 340px;
  scroll-snap-align: start;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.testimonials-card__stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonials-card__quote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  flex: 1;
}

.testimonials-card__avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonials-card__avatar-frame {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonials-card__avatar-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.testimonials-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.testimonials-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.testimonials-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.testimonials-card__role {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonials-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.testimonials-nav__btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonials-nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 809px) {
  .testimonials-section__headline { font-size: 30px; }
  .testimonials-card { width: 80vw; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section__container {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section__header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.faq-list {
  display: flex;
  flex-flow: column;
  gap: 6px;
  width: 100%;
}

.faq-item {
  border-radius: 10px;
}

.faq-item__question {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 10px 25px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  flex: 1;
}

.faq-item__icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-text {
  padding: 0 25px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (min-width: 810px) and (max-width: 1199px) {
  .faq-section { padding: 35px; }
}

@media (max-width: 809px) {
  .faq-section { padding: 0 20px 60px; }
  .faq-section__headline { font-size: 30px; }
}

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (min-width: 810px) and (max-width: 1199px) {
  :root {
    --section-py:   100px;
    --container-px: 35px;
  }
}

@media (max-width: 809px) {
  :root {
    --section-py:   80px;
    --container-px: 20px;
  }

  .calendar-section,
  .steps-section,
  .process-section,
  .why-section,
  .testimonials-section,
  .problem-section,
  .faq-section {
    padding: 60px 20px;
  }

  .footer__copy {
    white-space: pre-wrap;
    word-break: break-word;
    text-align: center;
  }
}
