/* ===========================
   MIRACLE READINGS — STYLES
   =========================== */

:root {
  --bg-deep: #1a0c35;
  --bg-dark: #221444;
  --bg-mid: #2c1c58;
  --bg-card: #38256a;

  --purple-deep: #4c1d95;
  --purple-dark: #6d28d9;
  --purple-mid: #8b5cf6;
  --purple-light: #c4b5fd;

  --teal: #0d9488;
  --teal-light: #5eead4;

  --gold-light: #fcd34d;

  --text-primary: #faf7ff;
  --text-secondary: #ddd6fe;
  --text-muted: #a99fd4;

  --border: rgba(196, 181, 253, 0.15);
  --border-glow: rgba(196, 181, 253, 0.4);

  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(7,1,15,0.92) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(167, 139, 250, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.06em;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--teal)) !important;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-active { color: var(--text-primary) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  border-top: 1px solid transparent;
}

.nav-mobile.is-open {
  max-height: 400px;
  padding: 1rem 0 1.25rem;
  border-top-color: var(--border);
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  gap: 0.25rem;
}

.nav-mobile ul a {
  display: block;
  padding: 0.65rem 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile ul a:hover,
.nav-mobile ul a.nav-active { color: var(--text-primary); }

.nav-mobile ul li:last-child a {
  border-bottom: none;
  margin-top: 0.5rem;
  display: inline-flex;
  background: linear-gradient(135deg, var(--purple-mid), var(--teal));
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ===========================
   PAGE HEADER (sub-pages)
   =========================== */

.page-header {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.page-header-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, #f5f0ff 0%, var(--purple-light) 55%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.page-header-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-intro {
  background-color: var(--bg-deep);
}

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

.about-portrait {
  position: sticky;
  top: 6rem;
}

.portrait-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.2);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--bg-card), var(--purple-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-badge {
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-badge-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--purple-mid);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-style: italic;
  color: var(--purple-light) !important;
  font-size: 1.05rem !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

.gifts-section {
  background-color: var(--bg-dark);
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.gift-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-mid), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.gift-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(76, 29, 149, 0.3);
}

.gift-card:hover::after { opacity: 1; }

.gift-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.25rem;
}

.gift-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.gift-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-section { background-color: var(--bg-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-main h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-main > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-phone-block {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.15);
}

.contact-phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.6rem;
}

.contact-phone-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.contact-phone-number:hover { color: var(--purple-light); }

.contact-phone-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.contact-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--teal), var(--teal) 40%, var(--purple-mid));
  color: white;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.35);
}

.contact-text-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(13, 148, 136, 0.5);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.info-card:hover { border-color: var(--border-glow); }

.info-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-card-content h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.info-card-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.info-card-content strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-what-to-say {
  background-color: var(--bg-dark);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
}

.steps-list-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  counter-increment: step-counter;
  position: relative;
  transition: all 0.3s;
}

.steps-list-item::before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.75rem;
}

.steps-list-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.steps-list-item h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.steps-list-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===========================
   ABOUT PAGE — RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-portrait { position: static; }

  .portrait-frame { aspect-ratio: 1 / 1; font-size: 4rem; }
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/static/images/hero.jpg');
  background-size: cover;
  background-position: 65% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 12, 53, 0.88) 0%,
    rgba(34, 20, 68, 0.72) 40%,
    rgba(76, 29, 149, 0.28) 65%,
    transparent 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f5f0ff 0%, var(--purple-light) 55%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
  color: white;
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(124, 58, 237, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}

.btn-ghost:hover {
  background: rgba(167, 139, 250, 0.08);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===========================
   LAYOUT HELPERS
   =========================== */

.section { padding: 6rem 2rem; }

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===========================
   SERVICES
   =========================== */

.services { background-color: var(--bg-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-mid), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(76, 29, 149, 0.3);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ===========================
   HOW IT WORKS
   =========================== */

.how-it-works { background-color: var(--bg-mid); }

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

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-mid), var(--teal));
  margin-top: 3rem;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ===========================
   REVIEWS
   =========================== */

.reviews { background-color: var(--bg-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(76, 29, 149, 0.22);
}

.review-stars {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.85;
  font-weight: 300;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  color: white;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.review-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

/* ===========================
   CTA BANNER
   =========================== */

.cta-banner {
  padding: 7rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, var(--purple-deep) 0%, var(--bg-mid) 45%, rgba(13, 148, 136, 0.25) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.75rem;
  font-weight: 300;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero { background-position: 75% center; }
  .hero .container { padding-top: 6rem; }

  .section { padding: 4rem 1.5rem; }
  .container { padding: 0 1.5rem; }

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

  .step-connector {
    width: 1px;
    height: 36px;
    margin: 0;
  }
}
