/* =============================================
   1980mnh Redesign — style.css
   Design System: Teal + Lavender + Warmth
   ============================================= */

/* === TOKENS === */
:root {
  --teal: #1B7A70;
  --teal-dark: #0D4F48;
  --teal-light: #E2F0EF;
  --teal-mid: #B8DDD8;
  --lavender: #8C3D87;
  --lavender-light: #F7E9F7;
  --lavender-mid: #D4A9D2;
  --white: #ffffff;
  --off-white: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #A0A0A0;
  --gray-600: #6B6B6B;
  --gray-800: #333333;
  --text: #2D3748;
  --text-light: #718096;

  --font-heading: 'Inter', -apple-system, sans-serif;
  --font-body: 'Jost', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-teal: 0 8px 32px rgba(27,122,112,0.2);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --nav-height: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

ul[role="list"] { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}

strong { font-weight: 600; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(27,122,112,0.25);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(27,122,112,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

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

/* === BADGES & LABELS === */
.section-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title.centered { text-align: center; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* === FADE-IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay {
  transition-delay: 0.15s;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition),
              background var(--transition);
}

.navbar.scrolled {
  border-bottom-color: rgba(27,122,112,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal);
  background: var(--teal-light);
}

.chevron {
  transition: transform var(--transition);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f0faf9 0%, #e8f7f5 40%, #faf5ff 100%);
  padding-top: var(--nav-height);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-mid), transparent);
  top: -100px;
  right: -100px;
  animation: drift 12s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lavender-mid), transparent);
  bottom: -50px;
  left: -80px;
  animation: drift 16s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #B8F0EB, transparent);
  top: 50%;
  left: 40%;
  animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,122,112,0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(27,122,112,0.2);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-highlight {
  color: var(--teal);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-illustration {
  width: 360px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(27,122,112,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-card-1 {
  top: 80px;
  left: -30px;
  animation: card-float-1 5s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 80px;
  right: -20px;
  animation: card-float-2 6s ease-in-out infinite;
}

@keyframes card-float-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes card-float-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.hc-icon { font-size: 1.6rem; }

.hc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-text strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text);
}

.hc-text span {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: var(--teal-dark);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }

.stat-icon { font-size: 1.8rem; margin-bottom: 8px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-weight: 400;
}

/* =============================================
   ENFOQUE PILARES (SUMMARY OF COMPROMISES)
   ============================================= */
.enfoque-pilares {
  padding: 96px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.pilar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pilar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27,122,112,0.08) !important;
  border-color: rgba(27,122,112,0.2) !important;
}

@media (max-width: 900px) {
  .pilares-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* =============================================
   INTRO BANNER
   ============================================= */
.intro-banner {
  background: var(--teal-light);
  padding: 80px 0;
  overflow: hidden;
}

.intro-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.intro-banner-content p {
  color: var(--gray-800);
  margin-bottom: 16px;
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
}

.cofepris-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,122,112,0.12);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(27,122,112,0.2);
  margin-top: 8px;
}

.intro-banner-deco {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(27,122,112,0.15);
  object-fit: cover;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  padding: 96px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-icon-teal {
  background: var(--teal-light);
  color: var(--teal);
}

.service-icon-lavender {
  background: var(--lavender-light);
  color: var(--lavender);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  color: var(--teal-dark);
  gap: 10px;
}

/* =============================================
   AUDIENCE SECTION
   ============================================= */
.audience-section {
  padding: 96px 0;
  background: var(--gray-100);
}

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

.audience-content p {
  color: var(--gray-800);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.tag-pride {
  background: linear-gradient(135deg, #fff 0%, #FFF0F0 100%);
  border-color: #FFD0D0;
}

.audience-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aud-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.aud-card-wide {
  grid-column: 1 / -1;
  background: var(--teal-light);
  border-color: var(--teal-mid);
}

.aud-card-icon { font-size: 2rem; margin-bottom: 8px; }

.aud-card-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* =============================================
   WELLBEING SECTION
   ============================================= */
.wellbeing-section {
  background: var(--lavender);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.wellbeing-bg { position: absolute; inset: 0; pointer-events: none; }

.wb-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.wb-shape-1 {
  width: 500px;
  height: 500px;
  background: white;
  top: -100px;
  right: 200px;
}

.wb-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--lavender-light);
  bottom: -80px;
  left: 100px;
}

.wellbeing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wellbeing-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.wellbeing-title span {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  font-style: italic;
}

.wellbeing-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

.wellbeing-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
}

.wellbeing-quote {
  border-left: 3px solid rgba(255,255,255,0.4);
  padding-left: 20px;
  margin: 24px 0;
}

.wellbeing-quote p {
  font-size: 1.1rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Flowers */
.wellbeing-deco {
  position: relative;
  width: 200px;
  height: 300px;
  flex-shrink: 0;
}

.flower {
  position: absolute;
  width: 100px;
  height: 100px;
}

.flower-1 { top: 0; left: 20px; }
.flower-2 { bottom: 20px; right: 0; transform: scale(0.7); }

.petal {
  position: absolute;
  width: 36px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) translateY(-100%) rotate(0deg);
}

.petal:nth-child(1) { transform: translateX(-50%) translateY(-100%) rotate(0deg); }
.petal:nth-child(2) { transform: translateX(-50%) translateY(-100%) rotate(72deg); }
.petal:nth-child(3) { transform: translateX(-50%) translateY(-100%) rotate(144deg); }
.petal:nth-child(4) { transform: translateX(-50%) translateY(-100%) rotate(216deg); }
.petal:nth-child(5) { transform: translateX(-50%) translateY(-100%) rotate(288deg); }

.flower .center {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stars {
  color: #F6C244;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-avatar-pride {
  background: linear-gradient(135deg, #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 96px 0;
  background: var(--teal-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition), background var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--teal-dark);
  border-bottom: 1px solid var(--gray-200);
}

.faq-answer {
  padding: 20px 24px;
}

.faq-answer p {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  padding: 96px 0;
  background: var(--white);
}

/* =============================================
   REDISEÑO FIEL DE PRECIOS (TARJETAS PREMIUM)
   ============================================= */
.pricing-billing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 48px;
}

.switch-pill-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #E2E8F0;
  transition: transform 0.2s ease;
}

.switch-pill-container:hover {
  transform: scale(1.02);
}

.switch-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #718096;
  transition: color 0.25s ease;
}

.switch-label.active {
  color: #1A202C;
}

.switch-container {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin: 0;
}

.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #1B7A70;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .switch-slider:before {
  transform: translateX(24px);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.pricing-card-premium {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #CBD5E0;
}

.card-badge-top {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.badge-psq { background: #1B7A70; }
.badge-sex { background: #8C3D87; }
.badge-psi { background: #1A8C82; }

.card-badge-hanging {
  position: absolute;
  top: 24px;
  right: -8px;
  background: #4A5568;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 2px 5px rgba(0,0,0,0.12);
}

.card-badge-hanging:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  border-width: 6px 6px 0 0;
  border-style: solid;
  border-color: #2D3748 transparent transparent transparent;
}

.card-icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-psq { background: #E2F0EF; color: #1B7A70; }
.icon-sex { background: #FFF0E8; }
.icon-psi { background: #E2F2F1; color: #1A8C82; }
.icon-prog { background: #F0F2F5; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: #E2E8F0;
  margin: 16px 0;
}

.card-price-block {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #1A202C;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-value {
  transition: opacity 0.15s ease;
}

.card-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.card-features-list li {
  font-size: 0.88rem;
  color: #4A5568;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  text-align: left;
}

.card-features-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.card-type-psq li::before { background: #E2F0EF; color: #1B7A70; }
.card-type-sex li::before { background: #F5EAF4; color: #8C3D87; }
.card-type-psi li::before { background: #E2F2F1; color: #1A8C82; }
.card-type-prog li::before { background: #E2F2F1; color: #1A8C82; }

.card-deposit-info {
  width: 100%;
  background: #F7FAFC;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #718096;
  margin-bottom: 20px;
  border: 1px solid #EDF2F7;
  margin-top: auto;
  transition: opacity 0.15s ease;
}

.deposit-value {
  font-family: var(--font-body);
  font-weight: 700;
  color: #4A5568;
  transition: opacity 0.15s ease;
}

.btn-card-cta {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.btn-psq { background: #1B7A70; color: var(--white); }
.btn-psq:hover { background: #135952; }

.btn-sex { background: #8C3D87; color: var(--white); }
.btn-sex:hover { background: #6E2D6A; }

.btn-psi { background: #1A8C82; color: var(--white); }
.btn-psi:hover { background: #136A63; }

.btn-outline-dark {
  border: 1.5px solid #E2E8F0;
  background: transparent;
  color: #2D3748;
}
.btn-outline-dark:hover {
  background: #F7FAFC;
  border-color: #CBD5E0;
}

.pricing-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 32px;
  }
  .pricing-programs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
  background: var(--teal-dark);
  padding: 80px 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(140,61,135,0.25) 0%, transparent 60%);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 8px;
}

.final-cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 96px 0;
  background: var(--off-white);
}

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

.contact-info p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.contact-channel:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-location { cursor: default; }
.contact-location:hover { transform: none; }

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon-wa { background: #E8F8ED; color: #25D366; }
.channel-icon-fb { background: #E8F0FF; color: #0866FF; }
.channel-icon-ig { background: #FFE8F5; color: #E1306C; }
.channel-icon-loc { background: var(--teal-light); color: var(--teal); }

.channel-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.channel-text strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text);
}

.channel-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
}

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

.form-row .form-group { margin-bottom: 0; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,122,112,0.1);
}

textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--teal);
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  padding: 14px 18px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: var(--radius-sm);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-top: 16px;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--teal-dark);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link-wa:hover { background: #25D366; }

.footer-links {
  display: contents;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li, .footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.cofepris-footer { font-size: 0.78rem !important; }

/* =============================================
   WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.fab-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: var(--text);
  color: white;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--text);
}

.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-right: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-summary-grid { grid-template-columns: 1fr !important; gap: 16px !important; margin-top: 40px !important; }
  .intro-banner-inner { grid-template-columns: 1fr; }
  .intro-banner-deco { display: none; }
  .intro-banner-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .intro-banner-top-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .intro-banner-bottom-cards > div { grid-template-columns: 1fr !important; gap: 20px !important; }
  .intro-banner-top-photo { min-height: 280px !important; }
  .inst-column { grid-column: span 1 !important; }
  .photo-column { grid-column: span 1 !important; display: block !important; width: 100% !important; min-height: auto !important; }
  .photo-column img { max-height: 320px !important; }
  .inst-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .audience-inner { grid-template-columns: 1fr; }
  .wellbeing-inner { grid-template-columns: 1fr; }
  .wellbeing-deco { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    justify-content: space-between;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    margin-top: 4px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Print */
@media print {
  .navbar, .whatsapp-fab, .hero-bg-shapes, .wb-shape { display: none; }
  body { color: black; }
  .hero { min-height: auto; padding: 40px 0; }
}

/* =============================================
   SERVICE TABS
   ============================================= */
.srv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 8px;
}

.srv-tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.srv-tab:hover {
  background: var(--white);
  color: var(--teal);
}

.srv-tab.active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
}

.srv-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: panel-enter 0.3s ease;
}

.srv-panel[hidden] { display: none; }

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

.srv-banner {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.srv-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px;
}

.srv-main h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.srv-sub {
  font-size: 0.95rem;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.srv-subtitle-color {
  color: var(--lavender);
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.srv-main p {
  color: var(--gray-800);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.srv-list {
  padding-left: 18px;
  margin-bottom: 14px;
}

.srv-list li {
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 0.92rem;
  line-height: 1.55;
}

.srv-list-sm li {
  font-size: 0.83rem;
  color: var(--gray-600);
  font-style: italic;
}

.srv-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-benefits-box {
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--teal-mid);
}

.srv-benefits-box h4 {
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.srv-benefits-box ul {
  padding-left: 18px;
}

.srv-benefits-box li {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  line-height: 1.5;
}

.srv-cta { margin-top: auto; }

@media (max-width: 900px) {
  .srv-content { grid-template-columns: 1fr; }
  .srv-tabs { padding: 6px; }
  .srv-tab { font-size: 0.8rem; padding: 10px 10px; }
}

@media (max-width: 480px) {
  .srv-tab { min-width: auto; flex: 1 1 40%; font-size: 0.75rem; }
  .srv-content { padding: 20px; gap: 24px; }
}
