/* ===================================================
   PowerUpBrain — Stylesheet
   v20260523a
   =================================================== */

:root {
  /* Palette: warm, hopeful, friendly */
  --coral:        #FF8A7A;
  --coral-light:  #FFD4CC;
  --coral-deep:   #E85C4A;
  --sage:         #8BC4A8;
  --sage-light:   #CFE6D9;
  --sage-deep:    #5A9C7E;
  --butter:       #FFD56B;
  --butter-light: #FFEAB4;
  --navy:         #1E2A47;
  --navy-soft:    #3C4A6B;
  --cream:        #FFF8F0;
  --cream-deep:   #F7EBD9;
  --white:        #FFFFFF;
  --line:         rgba(30, 42, 71, 0.1);

  /* Fonts */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing */
  --container:    1240px;
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    32px;
  --radius-xl:    48px;

  /* Shadows */
  --shadow-sm:  0 4px 12px rgba(30, 42, 71, 0.06);
  --shadow:     0 12px 32px rgba(30, 42, 71, 0.08);
  --shadow-lg:  0 24px 60px rgba(30, 42, 71, 0.12);
  --shadow-coral: 0 16px 40px rgba(232, 92, 74, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===================================================
   TOP CONTACT STRIP (Pritpal Singh - flashing)
   =================================================== */
.contact-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--navy) 0%, var(--coral-deep) 100%);
  color: var(--cream);
  z-index: 101;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(30, 42, 71, 0.15);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 24px;
  flex-wrap: nowrap;
}

.strip-pulse {
  width: 9px;
  height: 9px;
  background: var(--butter);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  animation: strip-pulse 1.4s infinite;
}

.strip-pulse::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--butter);
  border-radius: 50%;
  opacity: 0.5;
  animation: strip-ripple 1.4s infinite;
}

@keyframes strip-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

@keyframes strip-ripple {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}

.strip-text {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strip-text strong {
  color: var(--butter);
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: strip-flash 2.5s infinite;
}

@keyframes strip-flash {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(255, 213, 107, 0.5); }
  50% { opacity: 0.85; text-shadow: 0 0 16px rgba(255, 213, 107, 0.9); }
}

.strip-divider {
  opacity: 0.5;
  margin: 0 2px;
}

.strip-number {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.strip-number:hover { color: var(--butter); }

.strip-cta {
  background: var(--butter);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.strip-cta:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .contact-strip { font-size: 12px; }
  .contact-strip-inner { padding: 7px 14px; gap: 10px; }
  .strip-divider-mobile-hide,
  .strip-number-mobile-hide { display: none; }
  .strip-cta { padding: 4px 10px; font-size: 11.5px; }
}

@media (max-width: 420px) {
  .strip-cta { display: none; }
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

@media (max-width: 720px) {
  .site-header { top: 34px; }
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text em {
  font-style: italic;
  font-weight: 700;
  color: var(--coral-deep);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-soft);
  border-radius: 999px;
  transition: all 0.2s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--navy);
  background: var(--coral-light);
}

.main-nav a.nav-cta {
  background: var(--navy);
  color: var(--cream);
  margin-left: 8px;
}

.main-nav a.nav-cta:hover {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  padding: 180px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, var(--butter-light) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, var(--sage-light) 0%, transparent 50%),
    var(--cream);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: blob-float 20s infinite ease-in-out;
}

.blob-1 {
  width: 400px; height: 400px;
  background: var(--coral);
  top: 10%; right: -100px;
}

.blob-2 {
  width: 350px; height: 350px;
  background: var(--sage);
  bottom: 10%; left: -100px;
  animation-delay: -7s;
}

.blob-3 {
  width: 280px; height: 280px;
  background: var(--butter);
  top: 50%; left: 40%;
  opacity: 0.3;
  animation-delay: -14s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-text { animation: slide-up 0.8s ease both; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--coral-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--coral-light);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}

.word-pop {
  position: relative;
  display: inline-block;
  color: var(--coral-deep);
  font-style: italic;
}

.word-pop::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 4%;
  height: 18%;
  background: var(--butter);
  z-index: -1;
  border-radius: 999px;
  transform: skewX(-6deg);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--navy-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--coral-deep);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(30, 42, 71, 0.2);
}

.btn-secondary {
  background: var(--sage-deep);
  color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12.5px;
  color: var(--navy-soft);
  line-height: 1.4;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 640px;
  width: 100%;
  animation: slide-up 0.8s 0.15s ease both;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  display: block;
}

.hero-card-main {
  top: 0; right: 0;
  width: 68%;
  height: 80%;
  transform: rotate(2deg);
  z-index: 2;
}

.hero-card-main:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 70px rgba(232, 92, 74, 0.25);
}

.hero-card-secondary {
  bottom: 0; left: 0;
  width: 58%;
  height: 55%;
  transform: rotate(-3deg);
  z-index: 3;
  border: 5px solid var(--cream);
}

.hero-card-secondary:hover {
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 30px 70px rgba(90, 156, 126, 0.3);
}

.hero-card-secondary img { object-position: center; }

/* ---- Dot-to-pill label ---- */
.card-pill {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 999px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 8px 24px rgba(30, 42, 71, 0.25);
  cursor: pointer;
  overflow: hidden;
  transition: gap 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pill-main {
  top: 16px;
  left: 16px;
}

.card-pill-secondary {
  bottom: 16px;
  right: 16px;
}

.pill-dot {
  width: 14px;
  height: 14px;
  background: var(--coral-deep);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  animation: pill-pulse 2s infinite;
}

.pill-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: var(--coral-deep);
  border-radius: 50%;
  opacity: 0.4;
  animation: pill-ripple 2s infinite;
}

.pill-dot-sage {
  background: var(--sage-deep);
}

.pill-dot-sage::before {
  background: var(--sage-deep);
}

@keyframes pill-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes pill-ripple {
  0% { opacity: 0.45; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}

.pill-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-left 0.4s ease;
}

.pill-text svg {
  color: var(--coral-deep);
  flex-shrink: 0;
}

.card-pill-secondary .pill-text svg {
  color: var(--sage-deep);
}

/* Hover (or focus, for keyboard users) expands the pill */
.hero-card:hover .card-pill,
.hero-card:focus-visible .card-pill {
  gap: 10px;
  padding: 10px 16px 10px 12px;
}

.hero-card:hover .pill-text,
.hero-card:focus-visible .pill-text {
  max-width: 200px;
  opacity: 1;
  margin-left: 2px;
}

.hero-card:hover .pill-dot,
.hero-card:focus-visible .pill-dot {
  animation-play-state: paused;
}

.hero-card:hover .pill-dot::before,
.hero-card:focus-visible .pill-dot::before {
  animation-play-state: paused;
  opacity: 0;
}

/* Touch devices: always show the pill expanded since there's no hover */
@media (hover: none) {
  .card-pill {
    gap: 10px;
    padding: 10px 16px 10px 12px;
  }
  .pill-text {
    max-width: 200px;
    opacity: 1;
    margin-left: 2px;
  }
}

.floating-badge {
  position: absolute;
  top: -16px;
  left: 8%;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 5;
  white-space: nowrap;
}

.floating-badge svg { color: var(--sage); }

/* Marquee */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.marquee-track span { flex-shrink: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================
   SECTION COMMONS
   =================================================== */
section { padding: 100px 0; position: relative; scroll-margin-top: 110px; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral-deep);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-lede {
  font-size: 1.1rem;
  color: var(--navy-soft);
  max-width: 640px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hl-coral, .hl-sage {
  position: relative;
  font-style: italic;
}

.hl-coral { color: var(--coral-deep); }
.hl-sage  { color: var(--sage-deep); }

/* ===================================================
   ABOUT
   =================================================== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-sticker {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--butter);
  color: var(--navy);
  padding: 16px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.about-text .section-eyebrow { color: var(--coral-deep); }

.about-text p {
  font-size: 1.05rem;
  color: var(--navy-soft);
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}

.about-list svg {
  background: var(--sage);
  color: var(--white);
  padding: 6px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background:
    radial-gradient(ellipse at top, var(--cream-deep) 0%, var(--cream) 60%);
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover { border-color: var(--coral); color: var(--navy); }

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.tab-btn.active svg { color: var(--coral); }

.tab-panel { display: none; animation: fade-in 0.5s ease; }
.tab-panel.active { display: block; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-intro {
  text-align: center;
  margin-bottom: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.panel-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.panel-intro h3 em {
  color: var(--coral-deep);
  font-style: italic;
}

.panel-intro p {
  color: var(--navy-soft);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card-feature {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}

.service-card-feature .card-img-wrap {
  width: 50%;
  flex-shrink: 0;
}

.service-card-feature .card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-feature h4 {
  font-size: 1.6rem;
}

.card-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--cream-deep);
}

.service-card-feature .card-img-wrap { height: auto; }

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--coral-light);
  color: var(--coral-deep);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.tag-light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.service-card p {
  color: var(--navy-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* CTA cards */
.service-card-cta {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  color: var(--white);
}

.service-card-cta h4, .service-card-cta p { color: var(--white); }

.service-card-cta-alt {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
}

.service-card-cta .card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.service-card-cta p { margin-bottom: 18px; }

.service-card-cta .btn {
  align-self: flex-start;
  background: var(--white);
  color: var(--navy);
}

.service-card-cta .btn:hover { background: var(--navy); color: var(--white); }

/* ===================================================
   MISSION / VISION / COMMITMENT
   =================================================== */
.mvc-wrap {
  margin-top: 80px;
}

.mvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral-deep);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mvc-card.mvc-vision::before { background: var(--sage-deep); }
.mvc-card.mvc-commitment::before { background: var(--butter); }

.mvc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.mvc-icon {
  width: 56px; height: 56px;
  background: var(--coral-light);
  color: var(--coral-deep);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvc-vision .mvc-icon {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.mvc-commitment .mvc-icon {
  background: var(--butter-light);
  color: var(--coral-deep);
}

.mvc-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--navy);
}

.mvc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvc-list li {
  font-size: 14.5px;
  color: var(--navy-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}

.mvc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--coral-deep);
  border-radius: 50%;
  flex-shrink: 0;
}

.mvc-vision .mvc-list li::before { background: var(--sage-deep); }
.mvc-commitment .mvc-list li::before { background: var(--butter); }

@media (max-width: 1024px) {
  .mvc-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===================================================
   TEAM
   =================================================== */
.team { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-grid-2col {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.team-card-lead {
  background: linear-gradient(180deg, var(--butter-light) 0%, var(--white) 60%);
  border-color: var(--butter);
}

.team-card-lead-full {
  text-align: left;
  padding: 40px 36px;
}

.team-card-lead-full .team-avatar {
  margin: 0 0 24px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-avatar-large {
  width: 140px;
  height: 140px;
}

.team-avatar svg { width: 100%; height: 100%; }

.badge-founder {
  position: absolute;
  bottom: 0; right: 50%;
  transform: translateX(50%);
  background: var(--coral-deep);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-cofounder {
  background: var(--sage-deep);
}

.team-quote {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 3px solid var(--coral-deep);
  background: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.team-card-lead-full .team-bio,
.team-card-lead-full + .team-card-lead .team-bio {
  text-align: left;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card-lead-full h4,
.team-card-lead-full + .team-card-lead h4 {
  text-align: left;
  font-size: 1.6rem;
}

.team-card-lead-full .team-role,
.team-card-lead-full + .team-card-lead .team-role {
  text-align: left;
  margin-bottom: 16px;
}

.team-card-lead h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.team-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral-deep);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.55;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow);
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30, 42, 71, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
/* ===================================================
   MODAL (Other Courses)
   =================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
  animation: fade-in 0.25s ease;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 71, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  box-shadow: var(--shadow-lg);
  animation: modal-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 0;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--coral-deep);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-head {
  text-align: center;
  margin-bottom: 36px;
}

.modal-head .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0;
}

.modal-head .section-lede {
  font-size: 1rem;
}

.modal-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.modal-course {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.modal-course:hover {
  border-color: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.modal-course-icon {
  display: inline-block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.modal-course h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.modal-course p {
  font-size: 13.5px;
  color: var(--navy-soft);
  line-height: 1.5;
}

.modal-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}

.modal-cta p {
  color: var(--navy-soft);
  margin-bottom: 16px;
  font-size: 14.5px;
}

@media (max-width: 720px) {
  .modal-content { padding: 36px 20px 24px; }
  .modal-courses-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 71, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

.lightbox.active { display: flex; animation: fade-in 0.25s ease; }

.lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 0;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: var(--navy);
  color: var(--cream);
}

.contact .section-eyebrow { color: var(--butter); }
.contact .section-title { color: var(--cream); }
.contact .hl-coral { color: var(--coral); }
.contact .hl-sage  { color: var(--sage); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-lede {
  color: rgba(255, 248, 240, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

a.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
  border-color: var(--coral);
}

.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--coral-deep);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon-sage { background: var(--sage-deep); }
.contact-card-icon-butter { background: var(--butter); color: var(--navy); }
.contact-card-icon-coral { background: var(--coral); color: var(--white); }

.contact-card-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 248, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 248, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icons { display: flex; gap: 8px; }

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.25s ease;
}

.social-icon:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form {
  background: var(--cream);
  color: var(--navy);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.form-row { margin-bottom: 16px; }

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row label span { display: block; margin-bottom: 6px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  transition: all 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--coral-deep);
  background: var(--white);
}

.form-row textarea { resize: vertical; }

.form-note {
  font-size: 12.5px;
  color: var(--navy-soft);
  margin-top: 12px;
  text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--cream-deep);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--navy-soft);
  margin-top: 16px;
  font-size: 14.5px;
  max-width: 280px;
}

.logo-footer { font-size: 22px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--navy-soft);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--coral-deep); }

.social-icons-footer { margin-top: 12px; }
.social-icons-footer .social-icon {
  background: var(--white);
  color: var(--navy);
}
.social-icons-footer .social-icon:hover { background: var(--coral-deep); color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--navy-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--coral-deep);
  font-weight: 600;
}

/* ===================================================
   REVEAL ON SCROLL
   =================================================== */
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 500px; max-width: 600px; margin: 0 auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 420px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-feature { grid-column: span 2; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-2col { grid-template-columns: 1fr; max-width: 600px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .hero { padding-top: 140px; }

  .main-nav {
    position: fixed;
    top: 76px; left: 16px; right: 16px;
    background: var(--white);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 18px;
    text-align: center;
  }

  .main-nav a.nav-cta { margin-left: 0; margin-top: 8px; }

  .hamburger { display: flex; }

  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat { padding: 12px 0; border-bottom: 1px dashed var(--line); }
  .stat:last-child { border-bottom: 0; }

  .hero-visual { height: 420px; }
  .hero-card-main { width: 75%; height: 70%; }
  .hero-card-secondary { width: 60%; height: 45%; }

  .about-list { grid-template-columns: 1fr; }
  .about-sticker { bottom: -16px; right: 0; padding: 12px 16px; font-size: 13px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-feature {
    flex-direction: column;
    grid-column: span 1;
  }
  .service-card-feature .card-img-wrap { width: 100%; height: 220px; }
  .service-card-feature .card-body { padding: 24px; }
  .service-card-feature h4 { font-size: 1.3rem; }

  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }

  .contact-form { padding: 28px 24px; }
  .form-row-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .tab-btn { padding: 12px 18px; font-size: 14px; }

  .marquee-track { font-size: 15px; gap: 32px; }

  .floating-badge { font-size: 11px; padding: 8px 14px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .nav-wrap { padding: 14px 16px; }
  .logo-text { font-size: 20px; }
  .logo-icon { width: 38px; height: 38px; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
}

/* ===================================================
   POLICY PAGES (Refund / Privacy / Terms)
   =================================================== */
.policy-header {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.9);
}

.policy-page {
  padding: 56px 0 80px;
  min-height: calc(100vh - 200px);
}

.policy-page .section-eyebrow {
  margin-bottom: 8px;
}

.policy-page .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}

.policy-lede {
  color: var(--navy-soft);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}

.policy-content {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy);
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.policy-content p {
  margin-bottom: 14px;
  color: var(--navy-soft);
}

.policy-content p strong { color: var(--navy); }

.policy-content ul {
  margin: 10px 0 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-content ul li {
  color: var(--navy-soft);
  padding-left: 6px;
}

.policy-content ul li::marker {
  color: var(--coral-deep);
}

.policy-content a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.policy-content a:hover { color: var(--navy); }

.policy-contact {
  background: var(--cream-deep);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 16px 0;
  border-left: 4px solid var(--coral-deep);
}

.policy-contact p { margin-bottom: 4px; }

.policy-quote {
  margin-top: 40px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--butter-light) 0%, var(--coral-light) 100%);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  text-align: center;
}

.policy-footer {
  padding: 32px 0;
  background: var(--cream-deep);
}

.footer-bottom-only {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--navy-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-only a {
  color: var(--coral-deep);
  font-weight: 600;
  margin: 0 4px;
}

@media (max-width: 720px) {
  .policy-page { padding: 32px 0 56px; }
  .policy-content { font-size: 15px; }
  .footer-bottom-only { flex-direction: column; text-align: center; }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--coral-light);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.testimonial-featured {
  background: linear-gradient(180deg, var(--butter-light) 0%, var(--white) 50%);
  border-color: var(--butter);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--butter);
  margin-bottom: 14px;
}

.testimonial-stars svg {
  filter: drop-shadow(0 1px 2px rgba(255, 168, 0, 0.2));
}

.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-avatar-1 { background: linear-gradient(135deg, var(--coral-deep), var(--coral)); }
.testimonial-avatar-2 { background: linear-gradient(135deg, var(--sage-deep), var(--sage)); }
.testimonial-avatar-3 { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.testimonial-avatar-4 { background: linear-gradient(135deg, var(--coral), var(--butter)); color: var(--navy); }

.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 12.5px;
  color: var(--navy-soft);
  margin-top: 2px;
}

.testimonials-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--navy-soft);
}

.testimonials-note span {
  color: var(--coral-deep);
  margin-right: 6px;
}

.testimonials-note a {
  color: var(--coral-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-note a:hover { color: var(--navy); }

@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 22px; }
}

/* ===================================================
   CONTACT MAP
   =================================================== */
.contact-map {
  position: relative;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  background: var(--cream-deep);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

.contact-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 1;
  pointer-events: none;
}

.contact-map-overlay svg {
  color: var(--coral-deep);
  flex-shrink: 0;
}

.contact-map-overlay strong {
  color: var(--coral-deep);
}

@media (max-width: 720px) {
  .contact-map { margin-top: 40px; }
  .contact-map iframe { height: 260px; }
  .contact-map-overlay { font-size: 12.5px; padding: 10px 14px; bottom: 12px; left: 12px; }
}

/* ===================================================
   FORM STATUS (AJAX feedback)
   =================================================== */
.form-status {
  margin-top: 16px;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-success {
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--butter-light) 100%);
  border-radius: var(--radius);
  border: 2px solid var(--sage);
  animation: status-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-status-success svg {
  color: var(--sage-deep);
  background: var(--white);
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.form-status-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-status-success p {
  font-size: 14.5px;
  color: var(--navy-soft);
  margin: 0;
  line-height: 1.5;
}

.form-status-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #FFE9E5;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--coral-deep);
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 600;
  animation: status-pop 0.3s ease;
}

.form-status-error svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-status-error span {
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

@keyframes status-pop {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===================================================
   FLOATING WHATSAPP BUTTON
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-pop-in 0.6s 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: wa-pulse 2.2s infinite;
}

.whatsapp-float:hover {
  background: #1FAE54;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover::before {
  animation-play-state: paused;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@keyframes wa-pop-in {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 720px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 13px;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  .whatsapp-float-label {
    display: none;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
