/* ═══════════════════════════════════════════
   ANESSA DOULA — STYLESHEET
   Palette: warm sage, dusty rose, cream, gold
═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────── */
:root {
  --cream:      #faf6f0;
  --cream-deep: #f2ebe0;
  --rose:       #c9917a;
  --rose-dark:  #a97060;
  --rose-light: #e8c4b4;
  --sage:       #8a9e8c;
  --sage-dark:  #6b7d6d;
  --sage-light: #c4d0c5;
  --gold:       #c6a96b;
  --gold-light: #e8d8b4;
  --charcoal:   #3a3530;
  --muted:      #7a7268;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius:     12px;
  --shadow:     0 4px 32px rgba(58, 53, 48, 0.10);
  --shadow-lg:  0 8px 48px rgba(58, 53, 48, 0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }

em { font-style: italic; color: var(--rose); }
strong { font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 780px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }

/* ── Section Eyebrow / Titles ──────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--sage-light); }

.section-title {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.section-title.light { color: var(--white); }

.section-intro {
  max-width: 540px;
  margin: 0 auto 3rem;
  color: var(--muted);
}

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 145, 122, 0.35);
}
.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 145, 122, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--rose-dark);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 1rem 2.4rem; font-size: 1rem; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(58, 53, 48, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--charcoal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav.scrolled .nav__links a { color: var(--charcoal); }
.nav__links a:hover { color: var(--rose-light); }
.nav.scrolled .nav__links a:hover { color: var(--rose); }

.nav__cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--charcoal); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  background: var(--cream);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--cream-deep);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.5rem; }
.nav__mobile a {
  display: block;
  padding: 0.65rem 0;
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-deep);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    url('/hero.jpg')
    center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(40, 35, 30, 0.55) 0%,
    rgba(80, 60, 40, 0.38) 55%,
    rgba(60, 70, 45, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 2rem;
  margin-top: 5rem;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero__headline em { color: var(--gold-light); font-style: italic; }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  position: relative;
  margin: 0 auto;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════
   BAND
═══════════════════════════════════════════ */
.band { padding: 6rem 0; }
.band--soft  { background: var(--cream-deep); }
.band--warm  { background: linear-gradient(135deg, #f5ede3 0%, #ede4d6 100%); }

/* ── Problem Band ─────────────────────── */
.band__pre {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.band__body {
  max-width: 560px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.problems {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0 2rem;
}

.problems__item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.problems__icon {
  font-size: 1.6rem;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.problems__item p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap { position: relative; }

.about__image-frame {
  position: relative;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__image-frame:hover .about__image { transform: scale(1.03); }

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 500;
}
.about__badge i { color: var(--sage); }

.about__text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about__text strong { color: var(--charcoal); }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9917a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step__number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.step__icon {
  font-size: 2rem;
  color: var(--rose-light);
  margin: 0.5rem 0 1rem;
}
.step__icon i { color: var(--rose); }

.step__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  color: var(--sage-light);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--rose);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--rose);
  transition: background var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--rose-light);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════════════════════════════════
   VISION / SUCCESS
═══════════════════════════════════════════ */
.vision {
  position: relative;
  padding: 7rem 0;
  background:
    url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1800&q=80')
    center center / cover no-repeat;
}

.vision__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107, 125, 109, 0.82) 0%,
    rgba(58, 53, 48, 0.78) 100%
  );
}

.vision > .container { position: relative; z-index: 1; }

.vision__outcomes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.vision__outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  min-width: 160px;
}

.vision__outcome i {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.vision__outcome p {
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}
.vision__outcome strong { color: var(--gold-light); }

.vision__body {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
  font-style: italic;
}
.vision__body strong { color: var(--gold-light); font-style: normal; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  border-left: 3px solid var(--rose-light);
  font-style: normal;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial footer {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--rose);
  font-style: normal;
}

/* ═══════════════════════════════════════════
   SCRIPTURE BAND
═══════════════════════════════════════════ */
.scripture-band {
  background: var(--charcoal);
  padding: 5rem 0;
}

.scripture-band__icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  opacity: 0.85;
}

.scripture-band__verse {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.9;
  margin: 0 auto 1.2rem;
  max-width: 640px;
  letter-spacing: 0.01em;
}

.scripture-band__ref {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact__item:hover { color: var(--rose); }
.contact__item i {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--rose-dark);
  flex-shrink: 0;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact__form h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.form-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(201, 145, 122, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bab4ac; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--sage-dark);
  min-height: 1.2rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  font-style: italic;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer__copy i { color: var(--rose); }

/* ═══════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--rose);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 6px 28px rgba(201, 145, 122, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.floating-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 145, 122, 0.55);
}
.floating-cta i { font-size: 1rem; }

/* ═══════════════════════════════════════════
   FADE-IN ANIMATION
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image-frame {
    max-width: 380px;
    margin: 0 auto;
  }

  .about__badge { right: 0; }

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

  .step__connector { display: none; }

  .step { min-width: 280px; max-width: 360px; width: 100%; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__content { margin-top: 4rem; }

  .band { padding: 4rem 0; }
  .about, .process, .contact { padding: 4rem 0; }
  .vision { padding: 5rem 0; }

  .problems { gap: 1rem; }
  .problems__item { min-width: 140px; }

  .service-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 1.75rem; }

  .vision__outcomes { gap: 1rem; }
  .vision__outcome { min-width: 130px; padding: 1.25rem 1rem; }

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

  .floating-cta span { display: none; }
  .floating-cta { padding: 0.9rem; border-radius: 50%; width: 3.2rem; height: 3.2rem; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav__inner { padding: 1rem 1.25rem; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}
