/* ==================== DESIGN SYSTEM ==================== */
:root {
  --primary: #1a3a4a;
  --primary-dark: #0f2a38;
  --teal: #2bbab4;
  --teal-dark: #1f9e99;
  --teal-light: #e8f7f6;
  --teal-glow: rgba(43, 186, 180, 0.12);
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f2f5f7;
  --gray-100: #e4e9ee;
  --gray-200: #c8d1da;
  --gray-400: #8c99a6;
  --gray-600: #556170;
  --gray-800: #2d3a47;
  --accent-coral: #e8635f;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
  --shadow-teal: 0 4px 20px rgba(43, 186, 180, 0.25);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.2; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { font-size: 1.0625rem; color: var(--gray-600); }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-teal); transform: translateY(-2px); }

.btn--secondary { background: transparent; color: var(--primary); border: 2px solid var(--gray-200); }
.btn--secondary:hover { border-color: var(--teal); color: var(--teal); }

.btn--outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn--outline:hover { background: var(--teal); color: var(--white); }

.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.header--scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }

.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 34px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__links { display: flex; gap: 24px; }
.header__links a { color: var(--gray-600); font-size: 0.9375rem; font-weight: 500; }
.header__links a:hover { color: var(--teal); }

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
}
.header__phone svg { width: 16px; height: 16px; color: var(--teal); }
.header__phone:hover { color: var(--teal); }
.header__cta { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid var(--gray-100);
}
.mobile-menu.active { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  color: var(--primary);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-50);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--white);
  overflow: hidden;
}

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

.hero__content { position: relative; z-index: 1; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 { color: var(--primary); margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }

.hero__sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image */
.hero__visual {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__float-card img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}
.hero__float-stat { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.hero__float-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }

/* Stats bar */
.stats-bar {
  padding: 56px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-bar__item { text-align: center; }
.stats-bar__value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}
.stats-bar__label { font-size: 0.8125rem; color: var(--gray-400); font-weight: 500; }

/* Partner logos */
.partners {
  padding: 40px 0;
  background: var(--white);
}
.partners__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partners__logos img {
  height: 30px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.partners__logos img:hover { opacity: 0.8; filter: grayscale(0%); }

/* ==================== PROBLEM SECTION ==================== */
.problem {
  padding: 100px 0;
  background: var(--white);
}

.problem__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.problem__header { max-width: 560px; }
.problem__header h2 { margin-bottom: 16px; }
.problem__intro { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.8; margin-top: 12px; }

.problem__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.problem__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.problem__card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.problem__card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.problem__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(232, 99, 95, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__card-icon svg { width: 20px; height: 20px; color: var(--accent-coral); }
.problem__card h4 { margin-bottom: 4px; font-size: 0.9375rem; font-weight: 700; }
.problem__card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.problem__transition { text-align: center; font-size: 1.125rem; font-style: italic; color: var(--teal-dark); font-weight: 500; margin-bottom: 28px; }

/* ==================== GUIDE SECTION ==================== */
.guide {
  padding: 100px 0;
  background: var(--off-white);
}

.guide__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.guide__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.guide__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.guide__header { max-width: 520px; }
.guide__header h2 { margin-bottom: 16px; }
.guide__empathy { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.8; }

.guide__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.guide__proof-item {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.guide__proof-item svg { width: 20px; height: 20px; color: var(--teal); margin-bottom: 12px; }
.guide__proof-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }

/* Simplexity block */
.simplexity {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
}
.simplexity__quote {
  font-style: italic;
  color: var(--teal);
  font-size: 1.125rem;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}
.simplexity p { color: var(--gray-600); margin-bottom: 16px; }

.simplexity__points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.simplexity__point { display: flex; align-items: flex-start; gap: 12px; }
.simplexity__point svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--teal); margin-top: 3px; }
.simplexity__point p { color: var(--gray-600); font-size: 0.9375rem; }
.simplexity__point strong { color: var(--primary); }

/* Founder quote */
.founder-quote {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.founder-quote__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.founder-quote blockquote { font-style: italic; color: var(--gray-600); font-size: 1rem; line-height: 1.7; }
.founder-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 600; color: var(--teal); font-size: 0.875rem; }

/* ==================== PLAN SECTION ==================== */
.plan {
  padding: 100px 0;
  background: var(--white);
}
.plan__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.plan__header h2 { margin-bottom: 12px; }
.plan__header p { font-size: 1.0625rem; }

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

.plan__step {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.plan__step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }

.plan__step-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
}
.plan__step h3 { margin-bottom: 10px; font-size: 1.0625rem; }
.plan__step p { font-size: 0.9375rem; }

.plan__transition { text-align: center; font-style: italic; color: var(--teal-dark); font-size: 1.0625rem; font-weight: 500; }

/* ==================== SUCCESS SECTION ==================== */
.success {
  padding: 100px 0;
  background: var(--off-white);
}
.success__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.success__header { margin-bottom: 32px; }
.success__header h2 { margin-bottom: 12px; }

.success__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success__card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.success__card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }

.success__card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success__card-icon svg { width: 22px; height: 22px; color: var(--teal); }
.success__card h4 { margin-bottom: 4px; font-size: 1rem; }
.success__card p { font-size: 0.875rem; line-height: 1.6; }

.success__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.success__image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
}

/* ==================== OFFER SECTION ==================== */
.offer {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
}

.offer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.offer__content h2 { color: var(--white); margin-bottom: 12px; }
.offer__content > p { color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; font-size: 1.0625rem; }

.offer__includes { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.offer__include-item { display: flex; align-items: flex-start; gap: 10px; }
.offer__include-item svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--teal); margin-top: 3px; }
.offer__include-item p { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; line-height: 1.6; }

.offer__trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.offer__trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }
.offer__trust-item svg { width: 14px; height: 14px; color: var(--teal); }

/* Form */
.offer__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.offer__form-card h3 { color: var(--primary); margin-bottom: 6px; text-align: center; }
.offer__form-card > p { text-align: center; font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 24px; }

.form__group { margin-bottom: 14px; }
.form__group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.form__group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--primary);
  background: var(--off-white);
  transition: all 0.2s;
}
.form__group input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); background: var(--white); }
.form__group input::placeholder { color: var(--gray-400); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__submit { width: 100%; margin-top: 6px; padding: 14px; justify-content: center; font-size: 0.9375rem; }
.form__disclaimer { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; }

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials__header h2 { margin-bottom: 12px; }

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

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }

.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-card__stars svg { width: 16px; height: 16px; color: #f5a623; }

.testimonial-card blockquote { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-card__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-100); padding-top: 16px; }
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--teal);
}
.testimonial-card__name { font-weight: 700; font-size: 0.875rem; color: var(--primary); }
.testimonial-card__role { font-size: 0.75rem; color: var(--gray-400); }

/* ==================== FINAL CTA ==================== */
.final-cta {
  padding: 80px 0;
  background: var(--teal-light);
  text-align: center;
}
.final-cta__inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta__inner > p { font-size: 1.0625rem; margin-bottom: 32px; }
.final-cta__buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.final-cta__reassurance { font-size: 0.8125rem; color: var(--gray-400); font-style: italic; max-width: 560px; margin: 0 auto 12px; }
.final-cta__contact { font-size: 0.9375rem; color: var(--gray-600); font-weight: 500; }
.final-cta__contact a { color: var(--teal); }
.final-cta__contact a:hover { color: var(--teal-dark); }

/* ==================== FAQ ==================== */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq__header { text-align: center; margin-bottom: 56px; }
.faq__header h2 { margin-bottom: 12px; }

.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s;
}
.faq__item:hover { border-color: var(--teal); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
}
.faq__question svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--teal); transition: transform 0.3s; }
.faq__item.active .faq__question svg { transform: rotate(180deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__answer p { padding: 0 24px 18px; font-size: 0.9375rem; line-height: 1.7; color: var(--gray-600); }
.faq__item.active .faq__answer { max-height: 300px; }

/* ==================== FOOTER ==================== */
.footer {
  padding: 56px 0 28px;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
}
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 36px; }
.footer__brand img { height: 30px; margin-bottom: 14px; }
.footer__brand p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); max-width: 280px; line-height: 1.6; }

.footer__links { display: flex; gap: 44px; }
.footer__col h4 { color: var(--white); font-size: 0.8125rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__col a { display: block; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 8px; }
.footer__col a:hover { color: var(--teal); }

.footer__contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 8px; }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--teal); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.3); }
.footer__acknowledgement { max-width: 560px; font-size: 0.6875rem; color: rgba(255, 255, 255, 0.25); line-height: 1.6; text-align: right; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .problem__top { grid-template-columns: 1fr; }
  .problem__image { display: none; }
  .problem__grid { grid-template-columns: 1fr; }
  .guide__top { grid-template-columns: 1fr; }
  .guide__image { max-height: 300px; }
  .guide__proof { grid-template-columns: repeat(2, 1fr); }
  .plan__steps { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .success__top { grid-template-columns: 1fr; }
  .success__image { display: none; }
  .offer__inner { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__acknowledgement { text-align: center; }
  .simplexity { padding: 28px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 1.875rem; }
  .hero__sub { font-size: 1rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-bar__item { padding: 12px; }
  .partners__logos { gap: 20px; }
  .partners__logos img { height: 22px; }
  .problem, .guide, .plan, .success, .offer, .testimonials, .final-cta, .faq { padding: 64px 0; }
  .guide__proof { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .founder-quote { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__value { font-size: 1.25rem; }
  .simplexity { padding: 20px; }
}
