/* ==========================================================
   Northbeam Consult — northbeamconsult.com
   Brand: Warm, approachable, expert. "Sharp friend who
   happens to know Shopify inside out."
   Font: DM Sans | Accent: Warm coral | Radius: 8px
   ========================================================== */

/* --- Custom Properties --- */
:root {
  /* Primary: Charcoal */
  --charcoal-900: hsl(0, 0%, 8%);
  --charcoal-800: hsl(0, 0%, 12%);
  --charcoal-700: hsl(0, 0%, 15%);
  --charcoal-600: hsl(0, 0%, 22%);
  --charcoal-500: hsl(0, 0%, 30%);
  --charcoal-400: hsl(0, 0%, 42%);
  --charcoal-300: hsl(0, 0%, 55%);
  --charcoal-200: hsl(0, 0%, 72%);
  --charcoal-100: hsl(0, 0%, 88%);
  --charcoal-50:  hsl(0, 0%, 95%);

  /* Accent: Warm coral */
  --coral-900: hsl(12, 75%, 25%);
  --coral-800: hsl(12, 75%, 32%);
  --coral-700: hsl(12, 75%, 40%);
  --coral-600: hsl(12, 75%, 50%);
  --coral-500: hsl(12, 75%, 60%);
  --coral-400: hsl(12, 70%, 68%);
  --coral-300: hsl(12, 65%, 76%);
  --coral-200: hsl(12, 55%, 85%);
  --coral-100: hsl(12, 45%, 92%);
  --coral-50:  hsl(12, 35%, 96%);

  /* Warm greys (background) */
  --warm-50:  hsl(30, 20%, 97%);
  --warm-100: hsl(30, 15%, 93%);
  --warm-200: hsl(30, 10%, 86%);
  --warm-300: hsl(30, 8%, 78%);

  /* Semantic */
  --color-text:       var(--charcoal-700);
  --color-text-light: var(--charcoal-400);
  --color-text-muted: var(--charcoal-300);
  --color-heading:    var(--charcoal-800);
  --color-accent:     var(--coral-500);
  --color-accent-hover: var(--coral-600);
  --color-bg:         hsl(0, 0%, 100%);
  --color-bg-alt:     var(--warm-50);
  --color-border:     var(--warm-200);
  --color-error:      hsl(0, 70%, 55%);
  --color-success:    hsl(145, 55%, 42%);

  /* Type scale (major third ~1.25) */
  --text-xs:   0.8rem;
  --text-sm:   0.875rem;
  --text-base: 1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.25rem;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows — 2-part: direct + ambient */
  --shadow-sm:  0 1px 3px hsla(12, 30%, 20%, 0.06), 0 1px 2px hsla(12, 30%, 20%, 0.04);
  --shadow-md:  0 4px 12px hsla(12, 30%, 20%, 0.08), 0 2px 4px hsla(12, 30%, 20%, 0.04);
  --shadow-lg:  0 10px 30px hsla(12, 30%, 20%, 0.1), 0 4px 8px hsla(12, 30%, 20%, 0.04);
  --shadow-coral: 0 4px 16px hsla(12, 75%, 60%, 0.2);

  /* Radius */
  --radius: 8px;
  --radius-lg: 12px;

  /* Transition */
  --transition: 200ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
h3 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
}

/* --- Layout --- */
.page-wrap {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

.section-padding {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

/* --- Gradient Dividers --- */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral-300), transparent);
  border: none;
  margin: 0;
}

/* --- Decorative Warm Circles --- */
.section-decor {
  position: relative;
  overflow: hidden;
}

.section-decor::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(12, 75%, 60%, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-decor--right::before {
  top: -150px;
  right: -200px;
}

.section-decor--left::before {
  bottom: -150px;
  left: -200px;
}

.section-decor > .page-wrap {
  position: relative;
  z-index: 1;
}

/* --- Noise Texture on Warm Backgrounds --- */
.has-noise {
  position: relative;
}

.has-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}

.has-noise > .page-wrap {
  position: relative;
  z-index: 1;
}

/* --- Scroll Reveal (bloom effect) --- */
.reveal {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
  opacity: 1;
  transform: scale(1.0);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  background-color: var(--color-accent);
  padding: var(--space-4) var(--space-10);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
  box-shadow: 0 4px 12px hsla(12, 75%, 60%, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 6px 20px hsla(12, 75%, 60%, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px hsla(12, 75%, 60%, 0.2);
}

.btn-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-accent);
  background-color: transparent;
  padding: var(--space-4) var(--space-10);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: #fff;
}

/* --- Section Heading Coral Accent Underline --- */
.section-heading {
  display: inline-block;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* ==========================================================
   SECTION: Hero
   ========================================================== */
.hero-banner {
  background-color: var(--color-bg);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(12, 75%, 60%, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(30, 50%, 70%, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: var(--space-6);
}

/* Coral underline on keyword */
.hero-accent {
  position: relative;
  display: inline;
  white-space: nowrap;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: hsla(12, 75%, 60%, 0.25);
  border-radius: 3px;
  z-index: -1;
}

.hero-subheadline {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
  max-width: 60ch;
}

.hero-content .btn-primary {
  font-size: var(--text-lg);
  padding: var(--space-5) var(--space-12);
  box-shadow: 0 6px 20px hsla(12, 75%, 60%, 0.25);
}

.hero-content .btn-primary:hover {
  box-shadow: 0 8px 28px hsla(12, 75%, 60%, 0.35);
}

/* ==========================================================
   SECTION: Stakes
   ========================================================== */
.stakes-section {
  background-color: var(--warm-50);
  position: relative;
}

.stakes-content {
  max-width: 700px;
}

.stakes-content p {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

/* ==========================================================
   SECTION: Intro / About
   ========================================================== */
.intro-welcome {
  background-color: var(--color-bg);
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.intro-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.intro-avatar {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: var(--coral-500);
  color: #fff;
  font-size: var(--text-5xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 8px hsla(12, 75%, 60%, 0.1),
    0 0 40px hsla(12, 75%, 60%, 0.2),
    0 0 80px hsla(12, 75%, 60%, 0.08);
  position: relative;
}

.intro-card {
  background-color: var(--warm-50);
  border-left: 4px solid var(--coral-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-8) var(--space-8);
  box-shadow: inset 0 1px 4px hsla(0, 0%, 0%, 0.03), var(--shadow-sm);
}

.intro-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.intro-text p {
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

/* --- Bridge sentences --- */
.bridge {
  color: var(--color-text);
  margin-top: var(--space-8);
  font-size: var(--text-base);
  max-width: 65ch;
}

.bridge strong {
  color: var(--color-heading);
}

/* --- Pull quote (attributed testimonial) --- */
.pull-quote {
  border-left: 4px solid var(--coral-500);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
  max-width: 720px;
  background-color: var(--coral-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 4rem;
  color: var(--coral-200);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.pull-quote cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* ==========================================================
   SECTION: Value Prop (numbered list)
   ========================================================== */
.diagnostic-covers {
  background-color: var(--color-bg);
  position: relative;
}

.diagnostic-covers h2 {
  margin-bottom: var(--space-10);
}

.numbered-list {
  list-style: none;
  counter-reset: diagnostic-step;
  max-width: 720px;
}

.numbered-item {
  counter-increment: diagnostic-step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
  align-items: start;
}

.numbered-item::before {
  content: counter(diagnostic-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-xl);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 10px hsla(12, 75%, 60%, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.numbered-item:hover::before {
  transform: scale(1.08);
  box-shadow: 0 5px 16px hsla(12, 75%, 60%, 0.3);
}

.numbered-item strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.numbered-item p {
  color: var(--color-text);
}

/* ==========================================================
   SECTION: Proof (case studies)
   ========================================================== */
.proof-section {
  background-color: var(--warm-50);
  position: relative;
}

.proof-section h2 {
  margin-bottom: var(--space-10);
}

.proof-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
  max-width: 720px;
  border-top: 3px solid var(--coral-500);
  transition: transform var(--transition), box-shadow var(--transition);
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.proof-card p {
  color: var(--color-text);
  line-height: 1.7;
}

.proof-highlight {
  font-weight: 700;
  color: var(--color-accent);
}

/* ==========================================================
   SECTION: Process (FAQ format)
   ========================================================== */
.process-faq {
  background-color: var(--color-bg);
}

.process-faq h2 {
  margin-bottom: var(--space-10);
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  margin-bottom: var(--space-8);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  border-radius: var(--radius);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--coral-200);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.faq-question::before {
  content: '';
  display: inline-block;
  width: 4px;
  min-height: 24px;
  height: 100%;
  background-color: var(--coral-500);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--warm-50);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  margin-top: var(--space-2);
}

/* ==========================================================
   SECTION: Lead Magnet
   ========================================================== */
.checklist-offer {
  background-color: var(--warm-50);
}

.checklist-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-10);
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  border-top: 3px solid var(--coral-500);
}

.checklist-card h2 {
  margin-bottom: var(--space-4);
}

.checklist-card > p {
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.checklist-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-heading);
  margin-bottom: var(--space-1);
}

.form-field input {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-bg);
  min-height: 48px;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px hsla(12, 75%, 60%, 0.15), 0 0 12px hsla(12, 75%, 60%, 0.08);
}

.form-field input.field-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px hsla(0, 70%, 55%, 0.12);
}

.field-error-msg {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  min-height: 1.2em;
}

.checklist-form .btn-primary {
  grid-column: 1 / -1;
  margin-top: var(--space-2);
}

.form-success {
  display: none;
  background-color: hsla(145, 55%, 42%, 0.08);
  border: 1px solid var(--color-success);
  border-radius: var(--radius);
  padding: var(--space-6);
  color: var(--color-text);
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

/* ==========================================================
   SECTION: Final CTA
   ========================================================== */
.final-cta {
  background-color: var(--charcoal-700);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(12, 75%, 60%, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.final-loss-line {
  font-size: var(--text-lg);
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-form {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-form .form-field label {
  color: hsla(0, 0%, 100%, 0.85);
}

.cta-form .form-field input {
  background-color: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.2);
  color: #fff;
  border-radius: var(--radius);
}

.cta-form .form-field input::placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}

.cta-form .form-field input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px hsla(12, 75%, 60%, 0.25), 0 0 16px hsla(12, 75%, 60%, 0.12);
}

.cta-form .form-field input.field-error {
  border-color: hsl(0, 70%, 65%);
}

.cta-form .field-error-msg {
  color: hsl(0, 70%, 72%);
}

/* Final CTA button — coral on charcoal */
.final-cta .btn-primary {
  background-color: var(--coral-500);
  box-shadow: 0 4px 16px hsla(12, 75%, 60%, 0.3);
}

.final-cta .btn-primary:hover {
  background-color: var(--coral-400);
  box-shadow: 0 6px 24px hsla(12, 75%, 60%, 0.4);
}

.cta-reassurance {
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.55);
  margin-top: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-form .form-success {
  background-color: hsla(145, 55%, 42%, 0.15);
  border-color: hsla(145, 55%, 42%, 0.5);
  color: hsla(0, 0%, 100%, 0.9);
}

/* ==========================================================
   SECTION: Footer
   ========================================================== */
.site-footer {
  background-color: var(--charcoal-800);
  color: hsla(0, 0%, 100%, 0.6);
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  font-size: var(--text-sm);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand {
  font-weight: 700;
  color: hsla(0, 0%, 100%, 0.85);
  font-size: var(--text-base);
}

.footer-right {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.footer-right a {
  color: hsla(0, 0%, 100%, 0.6);
  transition: color var(--transition);
}

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

/* ==========================================================
   Sticky Mobile CTA Bar
   ========================================================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--charcoal-700);
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  box-shadow: 0 -4px 16px hsla(0, 0%, 0%, 0.15);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .btn-primary {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  min-height: 42px;
  flex: 1;
  max-width: 320px;
}

.sticky-cta-dismiss {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: var(--text-lg);
  cursor: pointer;
  padding: var(--space-2);
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-dismiss:hover {
  color: #fff;
}

/* ==========================================================
   Responsive: Tablet (768px - 1100px)
   ========================================================== */
@media (max-width: 1100px) {
  .page-wrap {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .intro-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--space-8);
  }

  .intro-avatar {
    width: 220px;
    height: 220px;
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }
}

/* ==========================================================
   Responsive: Mobile (< 768px)
   ========================================================== */
@media (max-width: 768px) {
  .section-padding {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  body {
    font-size: 1rem;
  }

  /* Intro stacks vertically */
  .intro-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .intro-avatar {
    width: 200px;
    height: 200px;
    font-size: var(--text-4xl);
    margin: 0 auto;
  }

  .intro-card {
    text-align: left;
  }

  .intro-text p {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero */
  .hero-content {
    max-width: 100%;
  }

  .hero-content .btn-primary {
    width: 100%;
    font-size: var(--text-base);
  }

  /* Numbered list */
  .numbered-item {
    grid-template-columns: 44px 1fr;
    gap: var(--space-3);
  }

  .numbered-item::before {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  /* Proof */
  .proof-card {
    padding: var(--space-6) var(--space-5);
  }

  /* FAQ */
  .faq-item {
    padding: var(--space-5) var(--space-4) var(--space-5) var(--space-5);
  }

  /* Checklist form */
  .checklist-form {
    grid-template-columns: 1fr;
  }

  .checklist-card {
    padding: var(--space-8) var(--space-6);
  }

  /* CTA */
  .cta-form .form-field {
    grid-column: 1 / -1;
  }

  .cta-form .btn-primary {
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    flex-direction: column;
    gap: var(--space-3);
  }

  /* Sticky bar appears on mobile */
  .sticky-cta-bar {
    display: flex;
  }

  /* Add bottom padding so sticky bar doesn't cover footer content */
  .site-footer {
    padding-bottom: calc(var(--space-10) + 60px);
  }

  /* Decorative circles smaller on mobile */
  .section-decor::before {
    width: 300px;
    height: 300px;
  }
}

/* ==========================================================
   Responsive: Small mobile (< 480px)
   ========================================================== */
@media (max-width: 480px) {
  h2 {
    font-size: var(--text-xl);
  }

  .section-padding {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .page-wrap {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .intro-avatar {
    width: 160px;
    height: 160px;
    font-size: var(--text-3xl);
  }

  .hero-banner {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .faq-question {
    font-size: var(--text-lg);
  }

  .checklist-card {
    padding: var(--space-6) var(--space-4);
  }

  .faq-answer {
    padding: var(--space-3) var(--space-4);
  }
}

/* ==========================================================
   Utilities
   ========================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Real photo avatar */
.intro-avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--coral-500, hsl(12, 75%, 60%));
  box-shadow: 0 0 20px hsla(12, 75%, 60%, 0.2), 0 0 40px hsla(12, 75%, 60%, 0.1);
}
@media (max-width: 768px) { .intro-avatar-img { width: 160px; height: 160px; } }
@media (max-width: 480px) { .intro-avatar-img { width: 120px; height: 120px; } }
