/* ================================================================
   MALVA GROUP v3 — PINK · WHITE · BLACK
   Aesthetic: Luxury editorial feminine — think Vogue meets coaching
   Fonts: Playfair Display (editorial serif) + Raleway (refined sans)
   ================================================================ */

:root {
  /* Core palette */
  --pink:          #E8637A;
  --pink-deep:     #C94460;
  --pink-blush:    #F9E8EC;
  --pink-pale:     #FDF4F6;
  --pink-mid:      #F0A0B0;
  --black:         #0E0E0E;
  --black-soft:    #1A1A1A;
  --charcoal:      #2D2D2D;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-light:    #F2F2F2;
  --gray-mid:      #D0D0D0;
  --muted:         #888888;

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Raleway', system-ui, sans-serif;

  /* Spacing & shape */
  --radius-sm:  2px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(14,14,14,0.08);
  --shadow-md:  0 8px 40px rgba(14,14,14,0.12);
  --shadow-lg:  0 20px 80px rgba(14,14,14,0.16);
  --shadow-pink: 0 8px 40px rgba(232,99,122,0.25);

  /* Borders */
  --border: 1px solid rgba(14,14,14,0.08);
  --border-pink: 1px solid rgba(232,99,122,0.2);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--black);
}
h1 { font-size: clamp(44px, 7vw, 86px); letter-spacing: -1px; }
h2 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.5px; }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: 20px; }
p  { font-size: 16px; line-height: 1.85; color: var(--muted); font-weight: 300; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
}
.serif-italic {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
}

/* ---- LAYOUT ---- */
.container       { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.container-sm    { max-width: 760px;  margin: 0 auto; padding: 0 48px; }
.section         { padding: 112px 0; }
.section-sm      { padding: 64px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-pink:hover {
  background: var(--pink-deep);
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: var(--white);
}
.link-arrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.link-arrow::after { content: '→'; font-size: 14px; }
.link-arrow:hover  { gap: 14px; color: var(--pink-deep); }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
  background: var(--black);
  padding: 12px 24px;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement-bar p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announcement-bar a {
  color: var(--pink-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s;
}
.announcement-bar a:hover { color: var(--white); }
.announcement-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  flex-shrink: 0;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.3s ease;
}
.site-header.has-bar { top: 44px; }
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(14,14,14,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 48px;
  max-width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.site-header.scrolled .logo-text { color: var(--black); }
.site-header.header-solid .logo-text { color: var(--black); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav > a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.site-nav > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.site-nav > a:hover { color: var(--white); }
.site-nav > a:hover::after { width: 100%; }
.site-header.scrolled .site-nav > a,
.site-header.header-solid .site-nav > a { color: var(--charcoal); }
.site-header.scrolled .site-nav > a:hover,
.site-header.header-solid .site-nav > a:hover { color: var(--black); }
.nav-cta-btn { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}
.site-header.scrolled .nav-toggle span,
.site-header.header-solid .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO — HOME
   ================================================================ */
.hero-home {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
/* Decorative pink geometric accent */
.hero-home::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--pink-blush);
  z-index: 0;
}
/* Diagonal cut overlay */
.hero-home::after {
  content: '';
  position: absolute;
  top: 0;
  right: calc(45% - 80px);
  width: 160px;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--pink);
}
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
}
.hero-home h1 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero-home h1 em {
  font-style: italic;
  color: var(--pink);
}
.hero-home .hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  display: block;
}
.hero-stat-number span { color: var(--pink); }
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 6px;
}
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 40px 0;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
  z-index: 1;
  filter: contrast(1.02);
}
.hero-tag {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pink);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  z-index: 3;
  max-width: 180px;
}
.hero-tag p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 6px;
}
.hero-tag span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   MARQUEE / TICKER
   ================================================================ */
.ticker {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.ticker-sep {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT STRIP
   ================================================================ */
.about-strip { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
}
.about-image-side {
  position: relative;
  overflow: hidden;
  background: var(--pink-blush);
}
.about-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--white));
}
.about-text-side {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-side h2 { margin-bottom: 20px; }
.about-text-side p  { font-size: 17px; margin-bottom: 20px; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 40px;
}
.about-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--gray-mid);
  border-radius: 40px;
  color: var(--charcoal);
  transition: all 0.2s;
}
.about-tag:hover { border-color: var(--pink); color: var(--pink); }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-section { background: var(--off-white); }
.services-header  { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.services-header h2 { margin-bottom: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-light);
  transition: background 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { background: linear-gradient(90deg, var(--pink), var(--pink-mid)); }

.service-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.service-card.featured::before { background: var(--pink); }
.service-card.featured h3  { color: var(--white); }
.service-card.featured p   { color: rgba(255,255,255,0.5); }
.service-card.featured .service-price { color: var(--pink); }
.service-card.featured .link-arrow   { color: var(--pink); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--pink-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.service-card.featured .service-icon { background: rgba(232,99,122,0.15); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p  { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-price   {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  display: block;
}

/* ================================================================
   DISCOVERY CALL
   ================================================================ */
.discovery-section {
  background: var(--pink-blush);
  position: relative;
  overflow: hidden;
}
.discovery-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(232,99,122,0.08);
}
.discovery-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.discovery-text h2 { margin-bottom: 20px; }
.discovery-text p  { font-size: 17px; margin-bottom: 36px; }
.discovery-list    { margin-bottom: 40px; }
.discovery-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14,14,14,0.06);
}
.discovery-item:last-child { border-bottom: none; }
.discovery-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.discovery-check svg { width: 10px; height: 10px; }
.discovery-item p { font-size: 15px; margin: 0; color: var(--charcoal); }

.discovery-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.discovery-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
}
.discovery-card h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 8px;
}
.discovery-price {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  display: block;
  margin: 16px 0 6px;
}
.discovery-price-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
  display: block;
}
.discovery-card .btn-pink {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 12px;
}
.discovery-card-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 18px;
  letter-spacing: 0.5px;
}

/* ================================================================
   MISSION NUMBERS
   ================================================================ */
.mission-section { background: var(--black); }
.mission-header  { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.mission-header h2  { color: var(--white); }
.mission-header p   { color: rgba(255,255,255,0.4); }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.05); }
.mission-card {
  background: var(--black-soft);
  padding: 52px 44px;
  text-align: center;
  transition: background 0.25s;
}
.mission-card:hover { background: #222; }
.mission-number {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  color: rgba(232,99,122,0.18);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.mission-card h3  { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.mission-card p   { color: rgba(255,255,255,0.4); font-size: 14px; }

/* ================================================================
   BRANDING / PERSONAL BRANDING FEATURE
   ================================================================ */
.branding-section {
  background: var(--white);
}
.branding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.branding-visual {
  position: relative;
  padding: 40px;
}
.branding-block-main {
  background: var(--pink);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.branding-block-main::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 280px;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -40px; left: -10px;
  line-height: 1;
}
.branding-quote {
  position: relative;
  z-index: 1;
  padding: 40px;
  text-align: center;
}
.branding-quote p {
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}
.branding-quote span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.branding-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  max-width: 200px;
}
.branding-float h4 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}
.branding-float p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.branding-text h2  { margin-bottom: 20px; }
.branding-text p   { font-size: 17px; margin-bottom: 24px; }
.branding-services { margin: 32px 0 40px; }
.branding-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 400;
}
.branding-service-item:last-child { border-bottom: none; }
.bs-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ================================================================
   PODCAST SECTION
   ================================================================ */
.podcast-section { background: var(--pink-blush); }
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-visual { position: relative; }
.podcast-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.podcast-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--black);
  color: var(--white);
  width: 104px; height: 104px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--pink);
}
.podcast-badge strong { font-size: 15px; }
.podcast-badge small  { font-size: 10px; opacity: 0.6; }
.podcast-text h2 { margin-bottom: 16px; }
.podcast-text p  { font-size: 17px; margin-bottom: 28px; }
.podcast-host {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 36px;
  border-left: 3px solid var(--pink);
}
.podcast-host-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-blush);
  border: 2px solid var(--pink);
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--pink);
}
.podcast-host-name  { font-weight: 600; font-size: 15px; color: var(--black); }
.podcast-host-title { font-size: 12px; color: var(--muted); }
.podcast-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-section { background: var(--white); }
.testi-header  { text-align: center; margin-bottom: 64px; }
.testi-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  border: var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-quote-mark {
  font-family: var(--ff-display);
  font-size: 72px;
  color: var(--pink-blush);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}
.testi-stars { color: var(--pink); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text  { font-size: 15px; line-height: 1.75; color: var(--charcoal); font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--pink);
  font-weight: 600;
  border: 2px solid var(--pink-mid);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--black); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ================================================================
   COMMUNITY CTA
   ================================================================ */
.community-section {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.community-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(232,99,122,0.1);
}
.community-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(232,99,122,0.08);
}
.community-inner { position: relative; z-index: 1; }
.community-section h2 { color: var(--white); margin-bottom: 20px; }
.community-section p  { color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto 44px; font-size: 18px; }
.community-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-row     { display: flex; gap: 12px; justify-content: center; margin-top: 48px; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.22s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(232,99,122,0.08);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--black-soft); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p  { font-size: 12px; color: rgba(255,255,255,0.2); margin: 0; }
.footer-bottom a  { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--black);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.page-hero h1   { color: var(--white); margin-bottom: 20px; }
.page-hero .eyebrow { color: var(--pink); }
.page-hero p    { color: rgba(255,255,255,0.5); font-size: 18px; max-width: 580px; margin: 0 auto; }

/* ================================================================
   SERVICIOS PAGE
   ================================================================ */
.servicios-highlight {
  background: var(--pink);
  padding: 56px 0;
  text-align: center;
}
.servicios-highlight h2 { color: var(--white); margin-bottom: 14px; }
.servicios-highlight p  { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 28px; font-size: 17px; }
.servicios-highlight .btn-black { background: var(--black); }

.servicios-all { background: var(--off-white); }
.servicios-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.servicio-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.servicio-card-full:hover { box-shadow: var(--shadow-md); }
.servicio-card-full.dark {
  background: var(--black);
  border-color: transparent;
}
.servicio-card-full::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
}
.servicio-card-full.dark h3 { color: var(--white); }
.servicio-card-full.dark p  { color: rgba(255,255,255,0.45); }
.servicio-card-full.dark .service-price  { color: var(--pink); }
.servicio-card-full.dark .servicio-includes li { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.06); }
.servicio-card-full.dark .link-arrow { color: var(--pink); }
.servicio-icon-lg {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pink-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.servicio-card-full.dark .servicio-icon-lg { background: rgba(232,99,122,0.12); }
.servicio-card-full h3 { font-size: 26px; margin-bottom: 12px; }
.servicio-card-full p  { font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.servicio-includes        { margin-bottom: 28px; }
.servicio-includes h4 {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
}
.servicio-includes li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gray-light);
}
.servicio-includes li:last-child { border-bottom: none; }
.servicio-includes li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ================================================================
   SOBRE NOSOTRAS PAGE
   ================================================================ */
.story-section { background: var(--white); }
.story-inner   {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text h2 { margin-bottom: 24px; }
.story-text p  { margin-bottom: 20px; font-size: 17px; }
.story-pull {
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  color: var(--pink);
  border-left: 3px solid var(--pink);
  padding: 16px 24px;
  margin: 28px 0;
  line-height: 1.45;
}

.values-section { background: var(--pink-blush); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: var(--border);
}
.value-card h3 { font-size: 22px; margin-bottom: 10px; }

.quien-section { background: var(--white); }
.quien-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}
.quien-item:last-child { border-bottom: none; }
.quien-num {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--pink-blush);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.quien-item h4 { font-size: 19px; margin-bottom: 6px; }
.quien-item p  { font-size: 15px; margin: 0; }

.avales-section { background: var(--off-white); }
.avales-row     {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.aval-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(20%);
  transition: opacity 0.2s;
}
.aval-item img:hover { opacity: 1; }

/* ================================================================
   ÚNETE PAGE
   ================================================================ */
.unete-form-section { background: var(--white); }
.unete-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  border: var(--border);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.benefits-side h2 { margin-bottom: 36px; }
.benefit-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-light);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--pink-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 18px; margin-bottom: 4px; }
.benefit-item p  { font-size: 14px; margin: 0; }

/* ================================================================
   PODCAST PAGE
   ================================================================ */
.podcast-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.podcast-cta-block {
  background: var(--pink);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  text-align: center;
  margin-top: 64px;
}
.podcast-cta-block h3 { color: var(--white); font-size: 32px; margin-bottom: 14px; }
.podcast-cta-block p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 17px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-home::before, .hero-home::after { display: none; }
  .hero-right { display: none; }
  .hero-left  { padding: 100px 48px 80px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .discovery-inner { grid-template-columns: 1fr; }
  .discovery-card { max-width: 420px; margin: 0 auto; }
  .branding-inner,
  .podcast-inner,
  .about-inner,
  .story-inner,
  .podcast-page-inner,
  .unete-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { min-height: auto; }
  .about-image-side { min-height: 400px; }
  .mission-grid { grid-template-columns: repeat(2,1fr); }
  .servicios-grid-full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 24px; }
  .section    { padding: 72px 0; }
  .header-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .mission-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-left     { padding: 100px 24px 64px; }
  .hero-stats    { flex-wrap: wrap; gap: 28px; }
  .community-btns { flex-direction: column; align-items: center; }
  .nav-toggle  { display: flex; }
  .site-nav    {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav > a  { font-size: 22px; font-family: var(--ff-display); color: var(--white) !important; }
  .site-nav > a:hover { color: var(--pink) !important; }
  .nav-cta-btn   { margin-left: 0; }
  .announcement-bar p { font-size: 11px; gap: 8px; }
  .ticker-item   { padding: 0 24px; }
  .podcast-badge { display: none; }
  .branding-float { display: none; }
  .hero-tag { display: none; }
}
