/* ================================================================
   MY VILLAGE LANDING PAGE - STYLES
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary: #0AA6B2;
  --primary-light: #E6F7F8;
  --primary-dark: #088A94;
  --primary-50: #E6F7F8;
  --primary-100: #CCF0F2;
  --primary-200: #99E0E5;

  /* Text */
  --text: #17364C;
  --text-light: #6B7C93;
  --text-muted: #9CA3AF;

  /* Accents */
  --pink: #F892B5;
  --pink-light: #FDE8F0;
  --coral: #F77760;
  --coral-light: #FEE8E4;
  --green: #71D491;
  --green-light: #E3F8EA;
  --yellow: #FFBB17;
  --yellow-light: #FFF5D6;
  --purple: #A78BFA;
  --purple-light: #EDE9FE;

  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-warm: #FCF9F4;
  --bg-light: #FAFCFD;
  --bg-section: #F8FAFB;

  /* Borders */
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(23, 54, 76, 0.06);
  --shadow-md: 0 4px 12px rgba(23, 54, 76, 0.08);
  --shadow-lg: 0 8px 30px rgba(23, 54, 76, 0.1);
  --shadow-xl: 0 16px 50px rgba(23, 54, 76, 0.12);
  --shadow-glow-teal: 0 8px 30px rgba(10, 166, 178, 0.2);
  --shadow-glow-pink: 0 8px 30px rgba(248, 146, 181, 0.2);
  --shadow-glow-green: 0 8px 30px rgba(113, 212, 145, 0.2);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Lexend', system-ui, sans-serif;

  /* Navbar */
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   UTILITY
   ---------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-accent {
  color: var(--primary);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  gap: 8px;
}

.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-teal);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10, 166, 178, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn--white:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn__wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 30px rgba(23, 54, 76, 0.06);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
}

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

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--primary);
  background: var(--primary-50);
}

.navbar__link--cta {
  background: var(--primary);
  color: #fff;
  margin-left: 8px;
}

.navbar__link--cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__toggle--active .navbar__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle--active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active .navbar__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--navbar-height) + 40px) 24px 80px;
  background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg) 40%, var(--primary-50) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/patterns/Brand-Pattern-1.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.hero__title--accent {
  color: var(--primary);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating characters in hero */
.hero__characters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-char {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08));
  transition: transform 0.1s ease-out;
}

.floating-char--1 {
  top: 12%;
  left: 6%;
  width: 100px;
  animation: float 4s ease-in-out infinite;
}

.floating-char--2 {
  top: 18%;
  right: 8%;
  width: 90px;
  animation: float 5s ease-in-out infinite -1s;
}

.floating-char--3 {
  bottom: 25%;
  left: 4%;
  width: 110px;
  animation: float 4.5s ease-in-out infinite -2s;
}

.floating-char--4 {
  bottom: 15%;
  right: 5%;
  width: 85px;
  animation: float 3.5s ease-in-out infinite -0.5s;
}

.floating-char--5 {
  top: 50%;
  left: 12%;
  width: 70px;
  animation: float 5s ease-in-out infinite -3s;
}

.floating-char--6 {
  top: 45%;
  right: 10%;
  width: 75px;
  animation: float 4s ease-in-out infinite -1.5s;
}

/* Floating doodles in hero */
.hero__doodles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-doodle {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

.floating-doodle--1 {
  top: 8%;
  left: 30%;
  width: 50px;
  animation: spin-slow 20s linear infinite;
}

.floating-doodle--2 {
  bottom: 20%;
  right: 25%;
  width: 60px;
  animation: float 6s ease-in-out infinite;
}

.floating-doodle--3 {
  top: 30%;
  right: 30%;
  width: 70px;
  opacity: 0.1;
}

.floating-doodle--4 {
  bottom: 30%;
  left: 25%;
  width: 45px;
  animation: spin-slow 25s linear infinite reverse;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fade-bounce 2s ease-in-out infinite;
}

.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   SECTIONS (SHARED)
   ---------------------------------------------------------------- */
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pattern backgrounds for alternating sections */
.section__pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.section__pattern-bg {
  background-image: url('../assets/patterns/Brand-Pattern-2.svg');
  background-size: cover;
}

.section__pattern-bg--2 {
  background-image: url('../assets/patterns/Brand-Pattern-2.svg');
}

.section__pattern-bg--3 {
  background-image: url('../assets/patterns/Brand-Pattern-3.svg');
}

/* Section decorative doodles */
.section-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}

.section-char {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Problem section doodles */
.section-doodle--problem-1 { top: 40px; right: 60px; width: 80px; transform: rotate(15deg); }
.section-doodle--problem-2 { bottom: 60px; left: 40px; width: 60px; }

/* What section */
.section-doodle--what-1 { top: 80px; left: 30px; width: 70px; }
.section-char--what-1 { bottom: 80px; right: 40px; width: 90px; opacity: 0.6; }

/* Features section doodles */
.section-doodle--feat-1 { top: 60px; left: 50px; width: 80px; transform: rotate(-10deg); }
.section-doodle--feat-2 { bottom: 40px; right: 60px; width: 70px; }

/* How section doodles */
.section-doodle--how-1 { top: 50px; right: 40px; width: 90px; opacity: 0.12; }
.section-doodle--how-2 { bottom: 60px; left: 60px; width: 50px; opacity: 0.1; animation: spin-slow 30s linear infinite; }

/* Audience section doodles */
.section-doodle--audience-1 { top: 30px; left: 50px; width: 60px; }
.section-doodle--audience-2 { bottom: 40px; right: 40px; width: 70px; opacity: 0.06; }

/* CTA section doodles */
.section-doodle--cta-1 { top: 30px; left: 8%; width: 60px; opacity: 0.15; }
.section-doodle--cta-2 { bottom: 40px; right: 10%; width: 50px; opacity: 0.12; }

/* ----------------------------------------------------------------
   PROBLEM SECTION
   ---------------------------------------------------------------- */
.section--problem {
  background: var(--bg);
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.problem-card__icon svg {
  width: 28px;
  height: 28px;
}

.problem-card__icon--coral { background: var(--coral-light); color: var(--coral); }
.problem-card__icon--yellow { background: var(--yellow-light); color: var(--yellow); }
.problem-card__icon--pink { background: var(--pink-light); color: var(--pink); }

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   WHAT IS MY VILLAGE
   ---------------------------------------------------------------- */
.section--what {
  background: var(--bg-warm);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.what-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.what-stat {
  display: flex;
  flex-direction: column;
}

.what-stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.what-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Visual mockup card */
.what-visual__card {
  position: relative;
}

.what-visual__mockup {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light);
}

.mockup-logo {
  width: 24px;
  height: 24px;
}

.mockup-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-goal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-goal__name {
  font-size: 0.8rem;
  color: var(--text);
  width: 150px;
  flex-shrink: 0;
}

.mockup-progress {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mockup-progress__bar {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.mockup-progress__bar--green { background: var(--green); }
.mockup-progress__bar--blue { background: var(--primary); }
.mockup-progress__bar--teal { background: var(--primary); }
.mockup-progress__bar--orange { background: var(--yellow); }

.mockup-goal__pct {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  width: 36px;
  text-align: right;
}

/* Characters floating around the mockup */
.what-visual__char {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.1));
}

.what-visual__char--1 {
  top: -30px;
  right: -30px;
  width: 80px;
}

.what-visual__char--2 {
  bottom: -25px;
  left: -25px;
  width: 70px;
}

/* ----------------------------------------------------------------
   FEATURES
   ---------------------------------------------------------------- */
.section--features {
  background: var(--bg);
}

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

.feature-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  transition: var(--transition);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover .feature-card__char {
  opacity: 0.3;
  transform: translate(10%, 10%) rotate(-5deg) scale(1.1);
}

.feature-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon {
  width: 26px;
  height: 26px;
}

.feature-card__icon-wrap--teal { background: var(--primary-50); color: var(--primary); }
.feature-card__icon-wrap--pink { background: var(--pink-light); color: var(--pink); }
.feature-card__icon-wrap--green { background: var(--green-light); color: var(--green); }
.feature-card__icon-wrap--yellow { background: var(--yellow-light); color: var(--yellow); }
.feature-card__icon-wrap--coral { background: var(--coral-light); color: var(--coral); }
.feature-card__icon-wrap--purple { background: var(--purple-light); color: var(--purple); }

.feature-card__char {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 90px;
  opacity: 0.12;
  transition: var(--transition-slow);
  pointer-events: none;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   MEASUREMENT TYPES
   ---------------------------------------------------------------- */
.section--measurements {
  background: var(--bg-warm);
}

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

.measurement-card {
  display: flex;
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.measurement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.measurement-card__color {
  width: 5px;
  flex-shrink: 0;
}

.measurement-card__color--teal { background: var(--primary); }
.measurement-card__color--pink { background: var(--pink); }
.measurement-card__color--green { background: var(--green); }
.measurement-card__color--yellow { background: var(--yellow); }
.measurement-card__color--coral { background: var(--coral); }
.measurement-card__color--purple { background: var(--purple); }

.measurement-card__content {
  padding: 20px;
}

.measurement-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.measurement-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.measurement-card__example {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ----------------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------------- */
.section--how {
  background: var(--bg-light);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 320px;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow-teal);
}

.step__char-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__char {
  width: 100px;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.1));
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  flex-shrink: 0;
}

.step__connector-doodle {
  width: 60px;
  opacity: 0.15;
}

/* ----------------------------------------------------------------
   AUDIENCE / WHO IT'S FOR
   ---------------------------------------------------------------- */
.section--audience {
  background: var(--bg);
}

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

.audience-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audience-card__header {
  position: relative;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  overflow: hidden;
}

.audience-card__header--teal { background: linear-gradient(135deg, var(--primary-50), var(--primary-100)); }
.audience-card__header--pink { background: linear-gradient(135deg, var(--pink-light), #fdd8e7); }
.audience-card__header--green { background: linear-gradient(135deg, var(--green-light), #c5f0d3); }

.audience-card__char {
  width: 100px;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.1));
  position: relative;
  z-index: 2;
}

.audience-card__sublogo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  opacity: 0.4;
  z-index: 1;
}

.audience-card__body {
  padding: 28px 24px;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.audience-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-card__list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   PROGRESS DEMO
   ---------------------------------------------------------------- */
.section--progress {
  background: var(--bg-section);
}

.progress-demo {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.progress-level {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-level__bar {
  height: 12px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-level__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-level__fill--gray { background: var(--text-muted); width: 4%; }
.progress-level__fill--orange { background: var(--coral); }
.progress-level__fill--blue { background: var(--primary); }
.progress-level__fill--green { background: var(--green); }
.progress-level__fill--green-full { background: linear-gradient(90deg, var(--green), var(--primary)); }

.progress-level__info {
  display: flex;
  justify-content: space-between;
}

.progress-level__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.progress-level__range {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

/* ----------------------------------------------------------------
   CTA / CONTACT
   ---------------------------------------------------------------- */
.section--cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #066E76 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta__characters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-char--cta-1 { top: 10%; left: 5%; width: 80px; opacity: 0.2; }
.floating-char--cta-2 { top: 15%; right: 8%; width: 70px; opacity: 0.15; }
.floating-char--cta-3 { bottom: 15%; left: 10%; width: 65px; opacity: 0.15; }
.floating-char--cta-4 { bottom: 10%; right: 6%; width: 75px; opacity: 0.2; }

.cta-content {
  position: relative;
  z-index: 3;
}

.cta__logo {
  height: 50px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta__contact-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.cta__contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--text);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/patterns/Brand-Pattern-3.svg');
  background-size: cover;
  opacity: 0.03;
}

.footer__content {
  position: relative;
  z-index: 2;
}

.footer__brand {
  text-align: center;
  margin-bottom: 24px;
}

.footer__logo {
  height: 32px;
  margin: 0 auto 8px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-200);
}

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.footer__sofex {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__sofex strong {
  color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* Scroll-triggered fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Progress bar animation */
.mockup-progress__bar.animate {
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    padding-top: 0;
    padding: 10px 0;
    transform: rotate(90deg);
  }

  .floating-char--1,
  .floating-char--3,
  .floating-char--5 {
    left: -2%;
  }

  .floating-char--2,
  .floating-char--4,
  .floating-char--6 {
    right: -2%;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    align-items: flex-start;
  }

  .navbar__menu--open {
    right: 0;
  }

  .navbar__link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .navbar__link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  /* Grids */
  .problem-grid,
  .features-grid,
  .measurements-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--navbar-height) + 30px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .floating-char {
    width: 50px !important;
    opacity: 0.5;
  }

  .floating-doodle {
    opacity: 0.06;
  }

  .hero__scroll {
    display: none;
  }

  /* What stats */
  .what-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Mockup */
  .mockup-goal__name {
    width: 110px;
    font-size: 0.75rem;
  }

  /* Steps */
  .step {
    max-width: 100%;
  }

  .step__connector {
    display: none;
  }

  /* Section doodles - hide on mobile */
  .section-doodle,
  .section-char {
    display: none;
  }

  /* Progress demo */
  .progress-demo {
    padding: 24px;
  }

  /* CTA characters */
  .floating-char--cta-1,
  .floating-char--cta-2,
  .floating-char--cta-3,
  .floating-char--cta-4 {
    width: 50px !important;
    opacity: 0.1 !important;
  }

  /* Footer */
  .footer__links {
    gap: 16px;
  }
}

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

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .what-stats {
    justify-content: center;
    text-align: center;
  }

  .audience-card__header {
    min-height: 120px;
    padding: 24px;
  }
}
