/* =============================================
   SIDE HUSTLE — Consumer App / Hustle Culture
   Warm tan + black + electric magenta + mint money green.
   Bold sans display, phone-mockup hero, motivational energy.
   ============================================= */

:root {
  --tan:         #EAE2CC;
  --tan-2:       #DDD2B5;
  --tan-3:       #C8BC9C;
  --ink:         #0F0F12;
  --ink-2:       #1C1C22;
  --ink-soft:    #2D2D38;
  --cream:       #FCF8EE;
  --magenta:     #FF3B7E;
  --magenta-deep:#E61F62;
  --magenta-soft:rgba(255,59,126,0.14);
  --mint:        #5EE7A0;
  --mint-deep:   #2BC077;
  --mint-soft:   rgba(94,231,160,0.18);
  --line:        rgba(15,15,18,0.14);
  --line-strong: rgba(15,15,18,0.28);
  --muted:       #5E5849;
  --shadow:      0 24px 60px rgba(15,15,18,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: var(--tan);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* Soft warm gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 8%, rgba(255,59,126,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 8% 92%, rgba(94,231,160,0.08) 0%, transparent 50%);
}
main, .nav, .footer, .marquee { position: relative; z-index: 1; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }
.wrap.narrow { max-width: 920px; }

/* ============== TYPE ============== */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8.5vw, 7.5rem); font-weight: 900; letter-spacing: -0.045em; line-height: 0.9; }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); margin-bottom: 0.35em; font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 0.4em; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; }

.italic { font-style: italic; font-weight: 600; }
.magenta { color: var(--magenta); }
.mint    { color: var(--mint-deep); }
.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1em; line-height: 1.6; }

a { color: var(--magenta-deep); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ink); }

::selection { background: var(--magenta); color: var(--cream); }

.mono {
  font-family: 'JetBrains Mono', 'Source Code Pro', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Highlight + chip */
.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--magenta-soft) 60%);
  padding: 0 6px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: "💸"; }

.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chapter::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234,226,204,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1340px;
  margin: 0 auto;
}
.brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--magenta-deep); }
.brand .magenta { color: var(--magenta); }
.brand-mark { display: inline-flex; flex-shrink: 0; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a.active { color: var(--magenta-deep); }
.nav-links a:hover { color: var(--magenta-deep); }
.nav-links .cta-btn { margin-left: 8px; }

/* ============== BUTTONS ============== */
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--ink);
  color: var(--cream) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 999px;
}
a.btn:hover, button.btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-1px);
}
a.btn-magenta, button.btn-magenta {
  background: var(--magenta);
  color: var(--cream) !important;
  border-color: var(--magenta);
  box-shadow: 0 12px 28px rgba(255,59,126,0.34);
}
a.btn-magenta:hover, button.btn-magenta:hover {
  background: var(--ink);
  border-color: var(--ink);
}
a.btn-mint, button.btn-mint {
  background: var(--mint);
  color: var(--ink) !important;
  border-color: var(--mint);
}
a.btn-mint:hover, button.btn-mint:hover {
  background: var(--ink);
  color: var(--cream) !important;
  border-color: var(--ink);
}
a.btn-ghost, button.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 2px solid var(--ink);
}
a.btn-ghost:hover, button.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream) !important;
}
.cta-btn {
  padding: 10px 18px !important;
  font-size: 0.86rem !important;
}
.nav .cta-btn {
  background: var(--magenta) !important;
  color: var(--cream) !important;
  border-color: var(--magenta) !important;
  box-shadow: 0 8px 18px rgba(255,59,126,0.34);
}
.nav .cta-btn:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

/* ============== MARQUEE (motivational scroll) ============== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.marquee-row {
  display: flex;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}
.marquee-row span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-row span::after { content: "✦"; color: var(--magenta); font-size: 0.7em; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== HERO ============== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 22px;
  max-width: 760px;
}
.hero .sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stat-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-stat-row .hs {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
}
.hero-stat-row .hs .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-row .hs .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============== PHONE MOCKUP ============== */
.phone {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/19;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(15,15,18,0.25);
  transform: rotate(2deg);
}
.phone::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--ink-2);
  border-radius: 999px;
  z-index: 5;
}
.phone-screen {
  background: linear-gradient(170deg, var(--cream) 0%, var(--tan-2) 100%);
  border-radius: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-screen .ph-time {
  position: absolute;
  top: 22px;
  left: 28px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.phone-screen .ph-bal {
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 18px 16px;
}
.phone-screen .ph-bal .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 4px;
}
.phone-screen .ph-bal .num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.phone-screen .ph-bal .delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 6px;
  color: var(--mint);
}
.phone-screen .ph-gig {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
}
.phone-screen .ph-gig .title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.phone-screen .ph-gig .meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.phone-screen .ph-gig .meta .pay { color: var(--magenta-deep); font-weight: 700; }
.phone-screen .ph-cta {
  background: var(--magenta);
  color: var(--cream);
  border-radius: 999px;
  padding: 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: auto;
  box-shadow: 0 8px 16px rgba(255,59,126,0.3);
}

/* ============== SECTION ============== */
.section { padding: 100px 0; position: relative; }
.section.dark { background: var(--ink); color: var(--cream); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--cream); }
.section.dark p { color: rgba(252,248,238,0.78); }
.section.dark .chapter { color: var(--mint); }
.section.dark .chapter::after { background: rgba(252,248,238,0.16); }
.section.dark a { color: var(--mint); }
.section.dark a:hover { color: var(--cream); }
.section.dark .eyebrow { background: var(--mint); color: var(--ink); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-head h2 { flex: 1; min-width: 300px; margin-bottom: 0; }
.section-head .lead {
  max-width: 460px;
  font-size: 1.06rem;
  color: var(--ink-soft);
}
.section.dark .section-head .lead { color: rgba(252,248,238,0.72); }
.section-head .view-all {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--magenta-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section.dark .section-head .view-all { color: var(--mint); }
.section-head .view-all::after { content: "→"; transition: transform 0.2s; }
.section-head .view-all:hover::after { transform: translateX(4px); }

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 36px 28px;
  transition: all 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
}
.step h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step p { font-size: 0.98rem; color: var(--ink-soft); margin-bottom: 0; }

/* ============== STAT CALLOUT BAR ============== */
.stat-bar {
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  padding: 46px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,59,126,0.22), transparent 65%);
  pointer-events: none;
}
.stat-bar .stat {
  padding: 0 24px;
  border-right: 1px solid rgba(252,248,238,0.18);
  position: relative;
  z-index: 1;
}
.stat-bar .stat:first-child { padding-left: 0; }
.stat-bar .stat:last-child { border-right: none; padding-right: 0; }
.stat-bar .stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
  color: var(--mint);
}
.stat-bar .stat .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(252,248,238,0.78);
}

/* ============== HUSTLE TILES (categories) ============== */
.hustles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hustle {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 30px 26px;
  transition: all 0.2s;
  position: relative;
}
.hustle:hover {
  transform: translateY(-3px);
  background: var(--magenta);
  color: var(--cream);
}
.hustle:hover h3, .hustle:hover .pay, .hustle:hover p { color: var(--cream); }
.hustle:hover .icon { background: var(--cream); color: var(--magenta); }
.hustle .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--magenta-soft);
  color: var(--magenta-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  transition: all 0.2s;
}
.hustle h3 { font-size: 1.35rem; margin-bottom: 8px; }
.hustle .pay {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mint-deep);
  margin-bottom: 10px;
}
.hustle p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ============== MOTIVATION QUOTES ============== */
.quote-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
}
.quote::before {
  content: "\"";
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--magenta);
  opacity: 0.4;
}
.quote .q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  margin-top: 30px;
}
.quote .who {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta-deep);
}

/* ============== CTA STRIP ============== */
.cta-strip {
  background: var(--magenta);
  color: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  margin: 80px 0;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(94,231,160,0.20), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(252,248,238,0.10), transparent 50%);
  pointer-events: none;
}
.cta-strip .wrap { position: relative; z-index: 1; max-width: 920px; }
.cta-strip h2 { color: var(--cream); margin-bottom: 22px; }
.cta-strip p { font-size: 1.2rem; max-width: 620px; margin: 0 auto 32px; color: rgba(252,248,238,0.92); }
.cta-strip .chapter { color: var(--ink); }
.cta-strip .chapter::after { background: rgba(15,15,18,0.3); }
.cta-strip .btn { background: var(--ink); color: var(--cream) !important; border-color: var(--ink); }
.cta-strip .btn:hover { background: var(--mint); color: var(--ink) !important; border-color: var(--mint); }
.cta-strip .btn-ghost { background: transparent; color: var(--cream) !important; border-color: var(--cream); }
.cta-strip .btn-ghost:hover { background: var(--cream); color: var(--ink) !important; }
.cta-strip .hero-cta { justify-content: center; }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 80px 0 50px;
}
.page-header .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.page-header h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: 0 0 22px;
  line-height: 0.92;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 740px;
  line-height: 1.55;
}

/* ============== FORM ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.form-aside h3 { margin-bottom: 14px; font-size: 1.9rem; line-height: 1.02; }
.form-aside p { font-size: 1rem; }
.form-aside ul { list-style: none; margin: 28px 0; }
.form-aside li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
}
.form-aside li:last-child { border-bottom: 1px solid var(--line); }
.form-aside li::before {
  content: "✦";
  color: var(--magenta);
  font-weight: 800;
  flex-shrink: 0;
}
.form-aside li strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.form-aside li span { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }

.contact-form {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 44px 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--tan);
  border: 2px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--magenta);
  background: var(--cream);
  box-shadow: 0 0 0 3px var(--magenta-soft);
}
.field select option { background: var(--cream); color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.field .hint { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -10000px; }
.contact-form button.btn { display: flex; width: 100%; margin-top: 12px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0 32px;
}
.footer-big {
  margin-bottom: 70px;
}
.footer-big h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(4rem, 14vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.05em;
}
.footer-big h2 .magenta { color: var(--magenta); }
.footer-big h2 .serif { color: var(--mint); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand { color: var(--cream); margin-bottom: 18px; display: inline-flex; }
.footer .brand:hover { color: var(--magenta); }
.footer-brand p { font-size: 0.95rem; max-width: 340px; color: rgba(252,248,238,0.6); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 500;
}
.footer-col a:hover { color: var(--magenta); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(252,248,238,0.18);
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(252,248,238,0.55);
}
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(252,248,238,0.22);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.15s;
}
.socials a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--cream);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .phone { max-width: 320px; }
  .hero-stat-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hustles { grid-template-columns: repeat(2, 1fr); }
  .quote-list { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-bar .stat { border-right: none; padding: 0 20px; }
  .stat-bar .stat:nth-child(odd) { border-right: 1px solid rgba(252,248,238,0.18); padding-left: 0; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 14px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.cta-btn) { display: none; }
  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 60px; }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .hustles { grid-template-columns: 1fr; }
  .stat-bar { padding: 32px 24px; grid-template-columns: 1fr; }
  .stat-bar .stat { padding: 16px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(252,248,238,0.18); }
  .stat-bar .stat:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { padding: 70px 0; margin: 60px 0; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
