/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Roboto-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Roboto-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Roboto-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Roboto-Condensed-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Roboto-Condensed-RegularItalic.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Roboto-Condensed-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Bowlby One SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bowlby-one-sc-v27-latin-regular.woff2') format('woff2');
}

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

:root {
  --white: #ffffff;
  --dark: #2B3034;
  --accent: #3EB1B6;
  --cta: #FF2E6D;
  --cta-hover: #e0245a;
  --light-bg: #E1EAEA;
  --lighter-bg: #E1EAEA;
  --font-body: 'Roboto', sans-serif;
  --font-headline: 'Roboto Condensed', sans-serif;
  --font-bowlby: 'Bowlby One SC', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cta); }

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

.section { padding: 180px 0; }

/* ==================== BUTTONS ==================== */
.btn-cta {
  display: inline-block;
  font-family: var(--font-bowlby);
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--cta);
  padding: 18px 44px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-transform: lowercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  text-align: center;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 32px; }
h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 20px; }
p + p { margin-top: 20px; }
strong { font-weight: 700; }

.overline {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.overline--white { color: var(--white); opacity: 0.7; }

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 48, 52, 0.08);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }

.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--accent); }

.nav__links .btn-cta {
  padding: 14px 32px;
  font-size: 16px;
  font-family: var(--font-bowlby);
  color: var(--white);
  text-transform: lowercase;
}

.nav__links .btn-cta:hover {
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  justify-content: center;
  position: relative;
  background: url('hero-bg.jpg') center center / cover no-repeat, linear-gradient(135deg, #FF2E6D 0%, #a0336b 25%, #4a5a8a 50%, #3EB1B6 80%, #4bc4c8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(62, 177, 182, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero > .container {
  width: 100%;
}

.hero__content {
  max-width: 900px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__claim {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 100px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__sub {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.6;
}

.hero__weeks {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

/* ==================== BRIDGE-INTO-FRUSTRATION ==================== */
.bridge-connector {
  padding: 100px 0 0;
  background: var(--white);
  text-align: left;
}

.bridge-connector__inner {
  max-width: 720px;
}

.bridge-connector__overline {
  color: var(--accent);
}

.bridge-connector__text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--dark);
}

.bridge-connector__folge {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 24px;
}

.bridge-connector__line {
  width: 1px;
  height: 80px;
  background: rgba(43, 48, 52, 0.15);
  margin: 48px 0 -1px;
  position: relative;
  z-index: 1;
}

/* ==================== FRUSTRATION ==================== */
.frustration {
  padding: 80px 0 180px;
  background: var(--lighter-bg);
}

.frustration__inner {
  max-width: none;
}

.frustration__overline { color: var(--cta); }

.frustration__intro {
  font-size: clamp(22px, 3vw, 28px);
  color: rgba(43, 48, 52, 0.45);
  margin-bottom: 16px;
  line-height: 1.4;
}

.frustration__headline {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 60px;
}

.frustration__headline span {
  color: var(--cta);
  display: block;
}

.frustration__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid rgba(43, 48, 52, 0.1);
}

.frustration__item:last-child { border-bottom: 1px solid rgba(43, 48, 52, 0.1); }

.frustration__item-label {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(43, 48, 52, 0.5);
}

.frustration__item-text {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

/* ==================== PAIN ==================== */
.pain {
  padding: 180px 0;
  background: var(--white);
}

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

.pain__left h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 0; }
.pain__right { font-size: 18px; line-height: 1.7; }

/* ==================== DIAGNOSIS ==================== */
.diagnosis {
  padding: 180px 0;
  background: var(--lighter-bg);
}

.diagnosis__content { max-width: 900px; margin: 0 auto; }

.diagnosis__pullquote {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--cta);
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(43, 48, 52, 0.08);
}

/* ==================== SOLUTION BANNER ==================== */
.solution-banner {
  padding: 180px 0;
  background: var(--dark);
  color: var(--white);
}

.solution-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.solution-banner__right {
  padding-top: 38px;
}

.solution-banner h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 0;
}

.solution-banner__right p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.65;
}

/* ==================== PROCESS ==================== */
.process {
  padding: 180px 0;
  background: var(--accent);
  color: var(--white);
}

.process__header { margin-bottom: 48px; }

.process__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 0;
  max-width: 100%;
  overflow: hidden;
}

.process__tab {
  padding: 28px 20px;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.process__tab.active {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.process__tab-number {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.process__tab.active .process__tab-number { color: var(--accent); }

.process__tab-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.process__tab.active .process__tab-title { color: var(--dark); }

.process__content {
  background: var(--white);
  color: var(--dark);
  padding: 48px 40px;
  min-height: 240px;
}

.process__panel { display: none; }
.process__panel.active { display: block; }

.process__panel-header {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process__panel-tags {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.process__panel-item {
  font-size: 18px;
  line-height: 1.6;
  padding: 6px 0;
}

.process__panel-item::before {
  content: '\2192';
  margin-right: 10px;
  color: var(--accent);
}

.process__panel-quote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 18px;
  color: rgba(43, 48, 52, 0.55);
  margin-top: 24px;
}

/* ==================== PRICE ==================== */
.price-section {
  padding: 180px 0;
  background: var(--lighter-bg);
}

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

.price__left { text-align: left; }

.price__amount {
  font-family: var(--font-headline);
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}

.price__label {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--dark);
  opacity: 0.55;
}

.price__vat {
  font-size: 16px;
  opacity: 0.4;
  margin-top: 8px;
}

.price__right { text-align: left; }

.price__text {
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ==================== DIFFERENTIATOR ==================== */
.diff {
  padding: 180px 0;
  background: var(--dark);
  color: var(--white);
}

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

.diff__left h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 0;
}

.diff__right {
  padding-top: 38px;
}

.diff__right p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.65;
}

.diff__right p + p { margin-top: 20px; }
.diff__right strong { color: var(--accent); }

.diff__results-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.diff__results-list li {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.65;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.diff__results-list li:last-child {
  border-bottom: none;
}

.diff__results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ==================== FOR WHOM ==================== */
.forwhom {
  padding: 180px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.forwhom__header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.forwhom__header h2 {
  color: var(--white);
}

.forwhom__line {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px auto 0;
}

.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.forwhom__card {
  background: var(--white);
  padding: 48px 40px;
}

.forwhom__card h3 { font-size: 24px; margin-bottom: 28px; }
.forwhom__card h3.text-accent { color: var(--accent); }
.forwhom__card h3.text-cta { color: var(--cta); }

.forwhom__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(43, 48, 52, 0.08);
  font-size: 18px;
  line-height: 1.55;
}

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

.forwhom__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 3px;
}

.forwhom__icon svg {
  width: 24px;
  height: 24px;
}

/* ==================== ABOUT ==================== */
.about {
  padding: 180px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about__image-wrapper {
  position: relative;
  padding-top: 8px;
}

.about__image-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--light-bg);
  overflow: hidden;
}

.about__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.about__text h2 { margin-bottom: 24px; }

/* ==================== VIDEO ==================== */
.video-section {
  padding: 180px 0;
  background: var(--light-bg);
  text-align: center;
}

.video-header {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  max-width: 800px;
  margin: 48px auto 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper video { width: 100%; display: block; }

/* ==================== OBJECTIONS ==================== */
.objections {
  padding: 180px 0;
  background: var(--white);
}

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

.objections__right {
  padding-top: 38px;
}

.objections__left h2 { font-size: clamp(36px, 5vw, 52px); }

.accordion-item { border-bottom: 1px solid rgba(43, 48, 52, 0.1); }
.accordion-item:first-child { border-top: 1px solid rgba(43, 48, 52, 0.1); }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
}

.accordion-trigger__text {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.accordion-trigger__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.3s, background 0.3s;
  line-height: 1;
}

.accordion-item.open .accordion-trigger__icon {
  transform: rotate(45deg);
  background: var(--cta);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body__inner {
  padding: 0 0 24px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(43, 48, 52, 0.75);
}

/* ==================== FINAL CTA + FORM ==================== */
.final-cta {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #FF2E6D 0%, #a0336b 25%, #4a5a8a 50%, #3EB1B6 80%, #4bc4c8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(62, 177, 182, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.final-cta__left {
  padding-top: 0;
}

.final-cta__left h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 28px;
}

.final-cta__left p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 0;
}

.final-cta__personal {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 28px;
}

.final-cta__checklist {
  margin-top: 32px;
  list-style: none;
}

.final-cta__checklist li {
  font-size: 18px;
  padding: 10px 0;
  opacity: 0.75;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.final-cta__checklist li::before {
  content: '\2192';
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

.form-card {
  background: rgba(0, 0, 0, 0.18);
  padding: 40px;
  backdrop-filter: blur(4px);
}

.form-wrapper { text-align: left; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0.9;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group .hint {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.form-submit { margin-top: 28px; }
.form-submit .btn-cta { width: 100%; padding: 20px; font-size: 18px; }

.form-privacy {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.form-privacy a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

.form-privacy a:hover {
  color: var(--white);
}

/* ==================== WORKING IMAGES ==================== */
.working-images {
  padding: 0 0 180px;
  background: var(--white);
}

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

.working-images__item {
  overflow: hidden;
  position: relative;
}

.working-images__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.working-images__item:hover img {
  filter: grayscale(0%);
}

.working-images__caption {
  display: block;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: rgba(43, 48, 52, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ==================== TESTIMONIAL QUOTE ==================== */
.testimonial-quote {
  max-width: 720px;
  margin: 48px auto;
  text-align: center;
}

.testimonial-quote blockquote {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
}

.testimonial-quote cite {
  display: block;
  font-style: normal;
  font-size: 16px;
  color: rgba(43, 48, 52, 0.5);
  margin-top: 20px;
}

/* ==================== SCROLL PROGRESS + BACK TO TOP ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--cta);
  z-index: 1001;
  transition: none;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 32px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1000px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrapper { display: flex; justify-content: center; }
  .final-cta__grid { grid-template-columns: 1fr; gap: 48px; }
  .solution-banner__grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-banner__right { padding-top: 0; }
  .diff__grid { grid-template-columns: 1fr; gap: 40px; }
  .diff__right { padding-top: 0; }
}

@media (max-width: 900px) {
  .pain__grid { grid-template-columns: 1fr; gap: 40px; }
  .forwhom__grid { grid-template-columns: 1fr; gap: 24px; }
  .forwhom__card { padding: 36px 28px; }
  .objections__grid { grid-template-columns: 1fr; gap: 40px; }
  .objections__right { padding-top: 0; }
  .process__tabs { grid-template-columns: repeat(2, 1fr); }
  .frustration__item { grid-template-columns: 1fr; gap: 8px; }
  .price__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .price__left, .price__right { text-align: center; }
  .pain, .diagnosis, .solution-banner, .process, .price-section,
  .diff, .forwhom, .about, .video-section, .objections { padding: 100px 0; }
  .working-images { padding: 0 0 100px; }
  .working-images__grid { grid-template-columns: 1fr; gap: 16px; }
  .working-images__item img { height: 240px; }
  .final-cta { padding: 100px 0 80px; }
  .frustration { padding: 60px 0 100px; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 24px; height: 72px; }
  .nav__links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(43, 48, 52, 0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .hero__content { padding: 40px 0 60px; }
  .section { padding: 72px 0; }
  .process__content { padding: 32px 24px; }
  .process__tab { padding: 24px 16px; min-width: 0; }
  .container--wide { padding: 0 24px; }
  .form-card { padding: 28px 20px; }
  .final-cta__portrait { width: 64px; height: 64px; }
}

@media (max-width: 480px) {
  .process__tabs { grid-template-columns: 1fr 1fr; gap: 0; }
  .process__tab { padding: 20px 14px; min-width: 0; }
  .process__tab-number { font-size: 32px; }
  .process__tab-title { font-size: 16px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .frustration__item { grid-template-columns: 1fr; gap: 4px; }
}
