/* ================================================================
   THE DIGITAL RESIDENT — styles.css
   Author: Claude (generated)
   ================================================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:        #1B3A5C;
  --navy-dark:   #122740;
  --navy-deeper: #0F2438;
  --gold:        #C8982A;
  --gold-light:  #E0B040;
  --off-white:   #F9F8F6;
  --white:       #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-mid:    #5C6B7A;
  --shadow-sm:   rgba(27, 58, 92, 0.08);
  --shadow:      rgba(27, 58, 92, 0.12);
  --shadow-md:   rgba(27, 58, 92, 0.20);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
  --header-h:    76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em {
  font-style: italic;
  color: var(--gold);
}

p {
  margin-bottom: 1em;
}

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

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

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

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.section {
  padding: 100px 0;
}

.section-white    { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-navy     { background: var(--navy); }
.section-cta      { background: var(--navy-dark); }

.section-title {
  text-align: center;
  margin-bottom: 0.8rem;
}

.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.section-title-light {
  color: var(--white);
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 1.875rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 152, 42, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(27, 58, 92, 0.4);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

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

.btn-block {
  width: 100%;
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  border-bottom-color: rgba(27, 58, 92, 0.08);
  box-shadow: 0 2px 24px var(--shadow-sm);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-the {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-light .logo-the  { color: var(--gold); }
.logo-light .logo-main { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links li a:not(.btn):hover { color: var(--navy); }
.nav-links li a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { font-size: 0.875rem; padding: 0.6rem 1.4rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--white);
}

.hero-content {
  padding: 4rem 3rem 4rem 4rem;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 58, 92, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(27, 58, 92, 0.15);
}

/* Hero image panel */
.hero-image {
  height: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/pexels-arvid-knutsen-1892648-3511307.jpg');
  background-size: cover;
  background-position: center top;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 35%
  );
}

.hero-image-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================================================
   PAIN POINTS
   ================================================================ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 28px var(--shadow);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-md);
  border-bottom-color: var(--gold);
}

.pain-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(200, 152, 42, 0.12), rgba(200, 152, 42, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pain-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.pain-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.pain-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.step-tag {
  display: inline-block;
  background: rgba(27, 58, 92, 0.07);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

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

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 2px 18px var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.module-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-md);
}

.module-card-salon {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.03), rgba(200, 152, 42, 0.05));
  border: 1px solid rgba(200, 152, 42, 0.2);
}

.module-card-salon:hover {
  border-left-color: var(--gold);
  border-color: rgba(200, 152, 42, 0.35);
}

.module-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(27, 58, 92, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.module-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  transition: stroke var(--transition);
}

.module-card:hover .module-icon {
  background: rgba(200, 152, 42, 0.12);
}

.module-card:hover .module-icon svg {
  stroke: var(--gold);
}

.module-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.module-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.module-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  line-height: 1.65;
}

.module-outcome {
  font-size: 0.875rem !important;
  color: rgba(27, 58, 92, 0.65) !important;
  font-style: italic;
  border-left: 2px solid rgba(200, 152, 42, 0.3);
  padding-left: 0.75rem;
  margin-bottom: 0 !important;
}

/* ================================================================
   PRICING
   ================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 28px var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px var(--shadow-md);
}

.pricing-card-featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 16px 56px rgba(27, 58, 92, 0.35);
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 24px 64px rgba(27, 58, 92, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.32rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-card-featured h3 { color: var(--white); }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.pricing-price span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
}

.pricing-card-featured .pricing-price span {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.pricing-card-featured .pricing-tagline {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-divider {
  height: 1px;
  background: rgba(27, 58, 92, 0.08);
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-divider {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-features li {
  font-size: 0.93rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

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

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

.about-photo-placeholder {
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem;
}

.about-photo-placeholder svg {
  width: 72px;
  height: 72px;
  stroke: rgba(255, 255, 255, 0.25);
}

/* When a real photo is added, use this class on an <img> */
.about-photo-real {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.about-content h2 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.about-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-founder-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 152, 42, 0.4);
}

.about-founder-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-founder-placeholder svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.3);
}

.about-founder-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-founder-text span {
  color: var(--gold);
  font-size: 0.82rem;
}

/* ================================================================
   CONTACT / CTA SECTION
   ================================================================ */

.section-cta { text-align: center; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.cta-note a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cta-note a:hover { color: var(--gold); }

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

.footer {
  background: var(--navy-deeper);
  padding: 5rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1.25rem;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.93rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* WhatsApp tooltip */
.whatsapp-btn::before {
  content: 'WhatsApp us';
  position: absolute;
  right: calc(100% + 12px);
  background: var(--navy-deeper);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  font-family: 'Inter', sans-serif;
}

.whatsapp-btn:hover::before {
  opacity: 1;
}

/* ================================================================
   FADE-IN SCROLL ANIMATION
   ================================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */

@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  /* Hero: single column, hide image panel */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 1rem);
  }

  .hero-image { display: none; }

  .hero-content {
    padding: 4rem 2rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .modules-grid { grid-template-columns: 1fr; }
  .module-card-salon { grid-column: span 1; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .about-content { text-align: center; }
  .about-eyebrow { justify-content: center; }
  .about-founder { justify-content: center; }

  .scenic-band { height: 320px; }

  .social-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .social-strip-text { text-align: center; }
  .social-strip-images { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================================ */

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links li a:not(.btn) { font-size: 1.25rem; font-weight: 600; }
  .nav-links .btn { font-size: 1rem; padding: 0.85rem 2rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ================================================================
   SCENIC BAND
   ================================================================ */

.scenic-band {
  height: 440px;
  position: relative;
  overflow: hidden;
}

.scenic-band-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/pexels-pixabay-274127.jpg');
  background-size: cover;
  background-position: center 40%;
}

.scenic-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 58, 92, 0.25) 0%,
    rgba(27, 58, 92, 0.1) 40%,
    rgba(27, 58, 92, 0.3) 100%
  );
}

.scenic-band-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* ================================================================
   SOCIAL PROOF / PEOPLE STRIP
   ================================================================ */

.social-strip {
  background: var(--navy);
  padding: 80px 0;
}

.social-strip-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.social-strip-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.social-strip-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.social-strip-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-strip-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
}

.social-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.88) saturate(0.9);
  transition: filter var(--transition), transform 0.5s ease;
}

.social-strip-img:hover img {
  filter: brightness(0.95) saturate(1.05);
  transform: scale(1.04);
}

/* ================================================================
   CTA SECTION — with background image
   ================================================================ */

.section-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/pexels-adriannacalvo-22033733.jpg');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.18;
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================================ */

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-trust { flex-direction: column; align-items: center; gap: 1rem; }
  .trust-divider { width: 36px; height: 1px; }
  .btn-large { padding: 0.95rem 1.75rem; font-size: 1rem; }
}
