/* =========================================
   STRONGHER MINDSET — Global Stylesheet v2
   Brand: #000000 | #ed2cce | #e4aee0 | #d624cf
   Fonts: Bebas Neue | Playfair Display | Inter
   ========================================= */

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

:root {
  --black:    #1c1917;
  --off-black:#faf6f2;
  --pink:     #ed2cce;
  --lavender: #b87db4;
  --magenta:  #d624cf;
  --white:    #ffffff;
  --gray:     #f5f0eb;
  --gray2:    #ede8e2;
  --gray3:    #e4ddd6;
  --text:     #7a706b;
  --cream:    #faf6f2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, .display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.0;
}

em.serif, .serif-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.pink { color: var(--pink); }
.lavender { color: var(--lavender); }
.white { color: var(--white); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 160px 0; }

.btn {
  display: inline-block;
  padding: 17px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: var(--magenta); transform: translateY(-2px); }

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

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

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray); }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
}

nav .nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 32px;
  position: relative;
  z-index: 2;
}

.hero-photo-panel {
  position: relative;
  overflow: hidden;
  background: var(--gray3);
}

.hero-photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,44,206,0.15) 0%, rgba(232,195,228,0.35) 60%);
  z-index: 1;
}

.hero-photo-panel::after {
  content: 'YOUR PHOTO HERE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(0,0,0,0.12);
  z-index: 0;
  white-space: nowrap;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-photo-panel .photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pink);
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--pink);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(72px, 8vw, 120px);
  color: var(--black);
  margin-bottom: 0;
  line-height: 0.95;
}
.hero h1 .accent { color: var(--pink); }
.hero h1 .serif-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(60px, 6.5vw, 100px);
  letter-spacing: 0;
  color: var(--pink);
  display: block;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  max-width: 480px;
  margin: 28px 0 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--black); font-weight: 600; }

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats-bar {
  display: flex;
  gap: 0;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.hero-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(0,0,0,0.1);
  margin-right: 32px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--pink);
  line-height: 1;
  display: block;
}
.hero-stat .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-top: 6px;
  display: block;
}

.ticker {
  background: var(--pink);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 0 52px;
}
.ticker-item .dot {
  margin-right: 52px;
  opacity: 0.4;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}

.pain-section { background: var(--gray); }

.pain-split {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 100px;
  align-items: start;
}

.pain-statement h2 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: var(--black);
  margin: 16px 0 28px;
}
.pain-statement h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
  display: block;
  font-size: 0.85em;
}

.pain-statement p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 40px;
}

.pain-list {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pain-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.2s;
}
.pain-item:first-child { padding-top: 0; }
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { border-color: rgba(237,44,206,0.3); }

.pain-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(237,44,206,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  transition: color 0.2s;
}
.pain-item:hover .pain-num { color: rgba(237,44,206,0.45); }

.pain-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

.truth-section {
  background: var(--white);
  padding: 140px 0;
}

.truth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.truth-left h2 {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--black);
  line-height: 1.0;
  margin: 16px 0 28px;
}
.truth-left h2 .accent { color: var(--pink); }

.truth-left p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.truth-right { position: relative; }

.truth-pullquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--black);
  line-height: 1.45;
  position: relative;
  padding-left: 36px;
  border-left: 3px solid var(--pink);
}
.truth-pullquote span { color: var(--pink); }

.truth-pullquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--pink);
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: -16px;
  line-height: 1;
}

.process-section { background: var(--gray); }

.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}
.process-header h2 {
  font-size: clamp(56px, 7vw, 96px);
  color: var(--black);
  line-height: 0.95;
}
.process-header h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
  display: block;
  font-size: 0.82em;
}
.process-header p {
  font-size: 16px;
  color: var(--text);
  max-width: 360px;
  line-height: 1.7;
  flex-shrink: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.process-step {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: attr(data-num);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(237,44,206,0.05);
  position: absolute;
  bottom: -20px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
}

.step-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--pink);
}

.process-step h3 {
  font-size: 56px;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1;
}

.process-step p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.testimonials-section { background: var(--off-black); }

.featured-testimonial {
  margin: 64px 0 80px;
  position: relative;
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.featured-quote-glyph {
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  color: var(--pink);
  opacity: 0.2;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}

.featured-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--black);
  line-height: 1.5;
  max-width: 820px;
  margin-bottom: 32px;
}

.featured-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.featured-author span {
  color: rgba(0,0,0,0.4);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 8px;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.testimonial-small {
  background: var(--off-black);
  padding: 44px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.testimonial-small:hover { border-color: var(--pink); }

.testimonial-small p {
  font-size: 15px;
  color: rgba(0,0,0,0.7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-small .t-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
}
.testimonial-small .t-desc {
  font-size: 11px;
  color: var(--text);
  margin-top: 4px;
}

.about-section { background: var(--gray); }

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

.about-photo-wrap { position: relative; }

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--pink);
  opacity: 0.3;
  pointer-events: none;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--gray3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: 'Add Your Photo Here';
  position: absolute;
  text-align: center;
  color: #bbb;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-text .section-label { margin-bottom: 16px; }
.about-text h2 {
  font-size: clamp(52px, 6vw, 80px);
  margin-bottom: 28px;
  line-height: 0.95;
}
.about-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
  display: block;
  font-size: 0.82em;
}
.about-text p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 36px;
}
.credential-tag {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.social-section {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
}

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

.social-left h2 {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--black);
  line-height: 0.95;
  margin: 16px 0 20px;
}
.social-left h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink);
  display: block;
  font-size: 0.82em;
}

.social-left p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  max-width: 420px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s;
  border-left: 3px solid transparent;
}
.social-link-card:hover {
  background: var(--gray3);
  border-left-color: var(--pink);
}

.social-link-platform {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.social-link-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.social-link-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.faq-section { background: var(--gray); }

.faq-inner {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 100px;
  align-items: start;
}

.faq-left h2 {
  font-size: clamp(52px, 6vw, 80px);
  color: var(--black);
  line-height: 0.95;
  margin: 16px 0 24px;
}
.faq-left h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink);
  display: block;
  font-size: 0.82em;
}

.faq-left p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--pink); }
.faq-question .chevron {
  font-size: 18px;
  color: var(--pink);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .chevron { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner {
  padding: 0 0 26px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

.cta-banner {
  background: var(--pink);
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .container { position: relative; }

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  display: block;
}

.cta-banner h2 {
  font-size: clamp(64px, 10vw, 130px);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 0;
}
.cta-banner h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  display: block;
  font-size: 0.85em;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 32px auto 48px;
  line-height: 1.7;
}

footer {
  background: var(--gray2);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 80px 32px 40px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { font-size: 22px; display: block; margin-bottom: 16px; text-decoration: none; }
.footer-brand p { font-size: 14px; color: var(--text); line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--black); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9a8f8a;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--pink); }

.page-hero {
  padding: 160px 32px 100px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(237,44,206,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(64px, 10vw, 120px); }
.page-hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink);
  display: block;
  font-size: 0.82em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: rgba(0,0,0,0.06);
}
.service-card {
  background: var(--gray2);
  padding: 52px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover { border-color: var(--pink); background: var(--gray3); }
.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--pink); }
.service-card h3 { font-size: 40px; margin-bottom: 16px; }
.service-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 28px; }
.service-includes { list-style: none; margin-bottom: 36px; }
.service-includes li {
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-includes li::before { content: '\2713'; color: var(--pink); font-weight: 700; flex-shrink: 0; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 60px;
  background: rgba(0,0,0,0.06);
}
.compare-col { padding: 52px 44px; }
.compare-col.them { background: var(--gray3); }
.compare-col.us { background: var(--pink); }
.compare-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.6;
}
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  gap: 12px;
  line-height: 1.5;
}
.compare-col.them li::before { content: '\2717'; color: #aaa; flex-shrink: 0; }
.compare-col.us li::before { content: '\2713'; color: var(--white); flex-shrink: 0; font-weight: 700; }
.compare-col.them li { color: var(--text); }
.compare-col.us li { color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--black);
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--white); }
.contact-info h3 { font-size: 36px; color: var(--black); margin-bottom: 20px; }
.contact-info p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--pink); }
.contact-link .icon { font-size: 18px; color: var(--pink); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text p { font-size: 17px; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
.story-text p strong { color: var(--black); }
.mission-box {
  background: var(--gray2);
  border-left: 3px solid var(--pink);
  padding: 44px 52px;
  margin-top: 60px;
}
.mission-box .eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 16px;
}
.mission-box p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--black);
  line-height: 1.65;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-top: 60px;
}
.value-card { background: var(--gray2); padding: 40px 36px; }
.value-card h4 { font-size: 32px; color: var(--pink); margin-bottom: 14px; }
.value-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo-panel { min-height: 50vw; }
  .hero-text-panel { padding: 64px 32px; }
  .pain-split { grid-template-columns: 1fr; gap: 56px; }
  .truth-inner { grid-template-columns: 1fr; gap: 56px; }
  .social-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap::before { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .hero-stats-bar { flex-wrap: wrap; gap: 32px; }
  .hero-stat { border-right: none; margin-right: 0; min-width: 140px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero-text-panel { padding: 48px 20px; }
  .hero h1 { font-size: 68px; }
  .page-hero h1 { font-size: 60px; }
  .pain-num { font-size: 48px; width: 44px; }
  .btn { padding: 15px 28px; }
  .hero-cta-group { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner h2 { font-size: 72px; }
  .featured-quote-text { font-size: 20px; }
}