/* ============================================ */
/* GLOBAL & RESET                              */
/* ============================================ */
:root {
  --beige-light: #F5EFE6;
  --beige-soft: #E8D8C3;
  --blue-soft: #A7C7E7;
  --blue-medium: #6FA3D2;
  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAFA;
  --text-dark: #2E2E2E;
  --text-soft: #4F4F4F;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 15px 30px -8px rgba(0,0,0,0.05);
  --border-radius-card: 20px;
  --border-radius-btn: 40px;
  --transition: all 0.3s ease;
}

/* ===== YENİ RENK PALETİ (SCOPED) ===== */
.ref-color-root {
  /* Ana Renkler */
  --ref-beige: #E8E3D3;
  --ref-deep-navy: #0A0F2C;
  --ref-blue-spruce: #2F6F68;
  --ref-tea-green: #BFD8B8;
  --ref-light-blue: #A9C7D0;
  --ref-purple-accent: #7B61FF;
  --ref-purple-light: #A78BFA;

  /* Gradyanlar */
  --ref-gradient-purple: linear-gradient(135deg, #7B61FF, #A78BFA);
  --ref-gradient-soft: linear-gradient(135deg, #BFD8B8, #A9C7D0);
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1rem;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

p {
  font-size: 1rem;
}

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

/* ============================================ */
/* HEADER & NAVIGATION                          */
/* ============================================ */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(232,216,195,0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.logo-signature,
.logo-signature a {
  margin: 0;
  padding: 0;
  transform: none;
}

.logo-signature a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-medium);
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav .nav-list {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  font-size: 1rem;
}

.nav-list a:hover {
  color: var(--blue-medium);
}

.nav-list a.active {
  color: var(--blue-medium);
  font-weight: 600;
  border-bottom: 2px solid var(--blue-medium);
  padding-bottom: 4px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-dark, #2E2E2E);
  transition: var(--transition);
}

/* ============================================ */
/* HERO SLIDER                                 */
/* ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background-color: var(--beige-light);
  margin-bottom: 2rem;
}
/* Mobil için slider yüksekliği */
@media (max-width: 768px) {
  .hero-slider {
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 420px;
  }
}
.hero-slider::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
  width: 80px;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.slider-container {
  height: 100%;
}

/* Arka plan gradient iyileştirmesi - slide'lar arası geçiş yumuşak */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}


/* İçerik alanı - okunabilirlik için hafif gölge */
.slide-content {
  max-width: 700px;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  margin: 0 20px;
}

.slide-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--blue-medium);
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.slide-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 16px 0;
  text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.slide-desc {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 32px;
}

/* Slider butonları - hem masaüstü hem mobilde düzgün konum */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 20;
  padding: 0 16px;
}

/* Buton stilleri - daha modern, yarı saydam */
.slider-arrow {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--blue-medium);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  background: var(--blue-medium);
  color: white;
  transform: scale(1.05);
}

/* Dotlar (sayfa göstergeleri) */
.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--blue-medium);
  width: 24px;
}

/* ============================================ */
/* BUTTONS & LINKS                              */
/* ============================================ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--border-radius-btn);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
}

.btn-primary {
  background: var(--blue-medium);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(111,163,210,0.2);
}

.btn-primary:hover {
  background: #5a8fc0;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--blue-medium);
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--beige-soft);
  color: var(--text-dark);
}

.btn-primary,
.btn-outline,
.btn-secondary,
.btn-elegant,
.ref-pricing-btn,
.ref-pricing-btn-primary {
  -webkit-text-fill-color: currentColor;
}

.btn-elegant {
  display: inline-block;
  background: linear-gradient(135deg, #6FA3D2, #5a8fc0);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 5px 12px rgba(111,163,210,0.3);
}

.btn-elegant:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(111,163,210,0.4);
  background: linear-gradient(135deg, #5a8fc0, #4a7aa8);
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: var(--blue-medium);
  margin-top: 16px;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.read-more:hover {
  color: #4a7aa8;
  transform: translateX(2px);
}

.text-link {
  font-weight: 600;
  color: var(--blue-medium);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* ============================================ */
/* SECTIONS & GRIDS                             */
/* ============================================ */
.section-padding {
  padding: 80px 0;
}
.section-padding-sm {
  padding: 50px 0;
}
.bg-soft-beige {
  background: linear-gradient(150deg, #f0f7f2 0%, #e4f0e8 50%, #eef5ee 100%);
}
.bg-soft-blue-light {
  background: rgba(167,199,231,0.12);
}
.text-center {
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 40px;
}

.intro-with-image {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  display: inline-block;
}

.intro-profile-img {
  width: 100%;
  height: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 1/1.1;
  border: 4px solid white;
}

.image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: var(--blue-soft);
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  z-index: -1;
  opacity: 0.25;
}

.intro-sub {
  color: var(--blue-medium);
  font-weight: 500;
  margin-bottom: 16px;
}

.intro-text p {
  margin-bottom: 20px;
  color: var(--text-soft);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-item {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: white;
}
.gallery-item:hover {
  transform: translateY(-6px);
}
.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  text-align: center;
  padding: 16px;
  background: white;
  font-weight: 500;
  color: var(--text-dark);
}

/* CTA Card */
.cta-card {
  background: white;
  padding: 56px 32px;
  border-radius: 40px;
  box-shadow: var(--shadow-md);
}
.cta-card h2 {
  margin-bottom: 16px;
}
.cta-card p {
  margin-bottom: 32px;
  color: var(--text-soft);
}

/* ============================================ */
/* CARDS (Servicios, Blog, etc)                 */
/* ============================================ */
.blog-card,
.service-detail-card,
.blog-post-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover,
.service-detail-card:hover,
.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon-large {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.soft-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

/* ============================================ */
/* BLOG ÖZEL STİLLER                            */
/* ============================================ */
.blog-img-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.2rem;
  transition: box-shadow 0.3s ease;
}

.blog-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
  will-change: transform;
}

.blog-post-card:hover .blog-thumb {
  transform: scale(1.03);
}

.blog-post-card:hover .blog-img-wrapper {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ref-card,
.ref-service-card,
.ref-pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-meta {
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-meta span {
  background: var(--beige-light);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.blog-post-card .blog-meta {
  margin-top: 0.25rem;
}

/* ============================================ */
/* İLETİŞİM SAYFASI ÖZEL                       */
/* ============================================ */
.contact-modern {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-visual {
  position: sticky;
  top: 100px;
}

.image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.image-wrapper:hover {
  transform: scale(1.02);
}

.contact-hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}

.image-wrapper:hover .contact-hero-img {
  transform: scale(1.05);
}

.img-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.img-overlay-text p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.signature-small {
  font-size: 0.8rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  background: #20b859;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(37,211,102,0.4);
}

.contact-form-wrapper {
  background: white;
  border-radius: 36px;
  padding: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(111,163,210,0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c5a7a;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6c757d;
  font-size: 0.95rem;
}

.contact-quick {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quick-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: #f0f4f8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-item strong {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
}

.quick-item a, .quick-item span {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
}

.quick-item a:hover {
  color: #6FA3D2;
}

/* ============================================ */
/* FORM ELEMANLARI & VALIDATION                 */
/* ============================================ */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  font-family: inherit;
  background: var(--bg-offwhite);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-medium);
  box-shadow: 0 0 0 3px rgba(111,163,210,0.2);
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.char-counter {
  text-align: right;
  font-size: 0.7rem;
  color: #8c9aa8;
  margin-top: 5px;
  transition: color 0.2s ease;
}

.char-counter.warning {
  color: #e67e22;
}

.char-counter.danger {
  color: #e74c3c;
}

.form-alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-top: 15px;
  border-left: 4px solid #e74c3c;
}

.alert {
  padding: 16px 20px;
  border-radius: 16px;
  margin-top: 24px;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* ============================================ */
/* HAKKIMDA SAYFASI ÖZEL                       */
/* ============================================ */
.profile-modern-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.profile-text-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 15px 35px -12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.profile-text-card:hover {
  transform: translateY(-5px);
}

.profile-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6FA3D2, #A7C7E7);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.profile-image-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.img-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
  transition: all 0.4s;
}

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

.img-frame:hover {
  transform: scale(1.02);
}

.img-accent-bg {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 130px;
  height: 130px;
  background: rgba(167,199,231,0.3);
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  z-index: -1;
}

.signature-modern {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #6FA3D2, #A7C7E7);
}

.signature-name {
  font-family: 'Poppins', cursive;
  font-style: italic;
  color: #6FA3D2;
  font-weight: 300;
}

.two-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.modern-card {
  background: white;
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(111,163,210,0.1);
}

.modern-card:hover {
  box-shadow: 0 20px 35px -12px rgba(111,163,210,0.15);
  transform: translateY(-4px);
  border-color: rgba(111,163,210,0.3);
}

.card-header-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: rgba(111,163,210,0.1);
  display: inline-block;
  padding: 0.5rem;
  border-radius: 18px;
}

.modern-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #2c5a7a;
}

.modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
  font-size: 0.9rem;
}

.modern-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #6FA3D2;
}

.check-list li::before {
  content: "✓";
  font-weight: bold;
}

.experience-compact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.exp-item strong {
  display: block;
  font-size: 1rem;
  color: #1a2a3a;
}

.exp-date {
  font-size: 0.75rem;
  color: #6FA3D2;
  display: inline-block;
  margin: 0.2rem 0 0.4rem;
  font-weight: 500;
}

.exp-item p {
  font-size: 0.85rem;
  color: #4a5568;
  margin: 0;
}

.modern-card.full-width {
  grid-column: span 2;
}

/* ============================================ */
/* FOOTER (TEK VE SON HALİ)                     */
/* ============================================ */
.psych-footer {
  background: linear-gradient(145deg, #0a2a3a 0%, #05161f 100%);
  padding: 2rem 1.5rem 1rem;
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.85);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #aad4f5, #6FA3D2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
}

.footer-desc {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cde5f5;
  margin: 0;
}

.footer-desc-small {
  font-size: 0.75rem;
  color: #9bb8d0;
  margin: 0;
}

.appointment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #aad4f5;
  background: rgba(111, 163, 210, 0.15);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.appointment-link:hover {
  background: #6FA3D2;
  color: #05161f;
  transform: translateX(3px);
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aad4f5;
  margin: 0 0 0.5rem 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #cde5f5;
}

.info-list li span {
  color: #e0f0fa;
}

.info-list li:hover {
  transform: translateX(4px);
  transition: 0.2s;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-email p {
  margin: 0.2rem 0;
  font-size: 0.8rem;
  color: #cde5f5;
}

.contact-email a {
  color: #cde5f5;
  text-decoration: none;
}

.contact-email a:hover {
  color: #aad4f5;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(170, 212, 245, 0.1);
  border-radius: 50%;
  color: #cde5f5;
  transition: all 0.2s;
}

.social-link:hover {
  background: #6FA3D2;
  color: #05161f;
  transform: translateY(-2px);
}

.footer-bottom-single {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(170, 212, 245, 0.2);
  font-size: 0.7rem;
  color: #9bb8d0;
  text-align: center;
}

.copyright-text {
  margin: 0;
  font-size: 0.7rem;
  color: #9bb8d0;
}

.sep {
  color: #6a8a9a;
  font-size: 0.6rem;
}

.designer-link {
  color: #9bb8d0;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.7rem;
}

.designer-link:hover {
  color: #aad4f5;
  text-decoration: underline;
}

/* ============================================ */
/* LOADER & TOAST (UX)                          */
/* ============================================ */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#global-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(111, 163, 210, 0.2);
  border-top: 4px solid var(--blue-medium, #6FA3D2);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Görsel yükleme efekti */
img {
  transition: opacity 0.35s ease, filter 0.3s ease;
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

img:not(.loaded) {
  filter: blur(3px);
  transform: scale(0.98);
}

.slide img,
.page-header-image img,
img[src*="data:"] {
  opacity: 1 !important;
  filter: none !important;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
  pointer-events: none;
}

.toast-message {
  background: white;
  color: var(--text-dark, #2E2E2E);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(111, 163, 210, 0.15);
  animation: toastSlideIn 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-message.toast-success {
  border-left: 6px solid #2ecc71;
  background: #f0fff4;
}

.toast-message.toast-error {
  border-left: 6px solid #e74c3c;
  background: #fff5f5;
}

.toast-message.toast-info {
  border-left: 6px solid var(--blue-medium, #6FA3D2);
  background: #f4f9ff;
}

.toast-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.toast-content {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #8c9aa8;
  padding: 0 4px;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #2E2E2E;
}

@keyframes toastSlideIn {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.btn.loading,
button[type="submit"].loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.loading::after,
button[type="submit"].loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

.btn.btn-outline.loading::after {
  border-top-color: var(--blue-medium, #6FA3D2);
}

/* ============================================ */
/* UTILITIES                                    */
/* ============================================ */
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 36px; }
.mt-3 { margin-top: 56px; }
.mt-4 { margin-top: 2.5rem; }

.clean-list {
  list-style: none;
  padding: 0;
}
.clean-list li {
  margin-bottom: 12px;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
}
.full-width-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 24px;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
}
.page-sub {
  font-size: 1.3rem;
  color: var(--text-soft);
}
.page-header-image {
  position: relative;
  background-color: var(--beige-light);
}
.page-header-image .container {
  position: relative;
  z-index: 2;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 992px) {
  .intro-with-image,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .profile-modern-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-columns-grid {
    grid-template-columns: 1fr;
  }
  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-visual {
    position: static;
  }
  .image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .whatsapp-btn {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .modern-card.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .logo-name {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.6rem;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .slide-desc {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-title {
    font-size: 2.2rem;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 99;
  }
  .main-nav.active {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 110;
  }

  .btn,
  button[type="submit"] {
    width: 100%;
    text-align: center;
  }
  
  .cta-card {
    padding: 40px 20px;
  }
  .cta-card h2 {
    font-size: 1.6rem;
  }
  .gallery-img {
    height: 200px;
  }
  .intro-image-wrapper {
    text-align: center;
  }
  .intro-profile-img {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .appointment-link {
    margin-left: auto;
    margin-right: auto;
  }
  .info-list li {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .form-header h2 {
    font-size: 1.5rem;
  }
  .quick-item {
    flex-direction: column;
    text-align: center;
  }
  .quick-icon {
    margin-bottom: 0.3rem;
  }
  .toast-container {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }
  .toast-message {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .slide-title {
    font-size: 1.6rem;
  }
  .btn {
    padding: 12px 24px;
  }
  .container {
    padding: 0 16px;
  }
  .footer-bottom-single {
    flex-direction: column;
    gap: 0.2rem;
  }
  .sep {
    display: none;
  }
}

/* ============================================ */
/* KULLANILMAYAN / YORUMA ALINAN STİLLER        */
/* ============================================ */
/* Aşağıdaki stiller projede aktif olarak kullanılmamaktadır.
   İleride ihtiyaç duyulursa geri alınabilir. */

/*
.apple-subfooter { ... }
.footer-bottom-area { ... }
.sub-footer { ... }
.sub-footer-container { ... }
.copyright-line { ... }
.sub-footer-links { ... }
.whatsapp-sub-link { ... }
.sub-footer-divider { ... }
.designer-credit { ... }
.credit-link { ... }
.lang-btn { ... }
.lang-divider { ... }
.header-actions { ... }
.exp-grid { ... }
.exp-card { ... }
.exp-meta { ... }
.profile-image-centered { ... }
.profile-img-medium { ... }
.grid-2col { ... }
.card-icon { ... }
.social-links a { ... }
.footer-copyright { ... }
.section-header { ... }
.header-dot { ... }
.contact-info { ... }
.social-svg { ... }
*/

/* ============================================ */
/* CTA GÜVEN İKONLARI (ELEGANT TOUCH)           */
/* ============================================ */
/* Mobil uyum */
@media (max-width: 640px) {
  .cta-features {
    flex-direction: column;
    gap: 0.8rem;
  }
  .feature-item {
    width: 100%;
    justify-content: center;
  }
}
/* Mobil özel */
@media (max-width: 768px) {
  .slider-controls {
    bottom: 15px;
    gap: 12px;
    padding: 6px 12px;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .slide-content {
    padding: 24px 20px;
    backdrop-filter: blur(4px);
    margin: 0 16px;
  }
  .intro {
    margin-top: 1rem;
  }
  .btn-primary, .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .slider-controls {
    bottom: 10px;
    gap: 8px;
    padding: 4px 10px;
  }
  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .slide-content {
    padding: 20px 16px;
  }
}


/* ============================================ */
/* PREMIUM CTA BÖLÜMÜ (APPLE TARZI YÜKSELTME)   */
/* ============================================ */

/* Kartın kendisi - daha premium his */
.cta-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #faf8f4 100%);
  padding: 48px 40px;
  border-radius: 28px;
  box-shadow: 
    0 20px 35px -8px rgba(0, 0, 0, 0.05),
    0 5px 12px -4px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(111, 163, 210, 0.08);
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

/* Yumuşak arka plan glow efekti */
.cta-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(167, 199, 231, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.cta-card:hover {
  box-shadow: 
    0 30px 45px -12px rgba(111, 163, 210, 0.12),
    0 8px 18px -6px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

/* Başlık - daha büyük ve premium */
.cta-card h2 {
  font-size: 2.4rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1e2f3f;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Alt metin - Apple soft rengi */
.cta-card p {
  font-size: 1.1rem;
  color: #5b6f7e;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Trust Badge'ler - Pill şeklinde glass */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 28px 0 32px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 22px;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(111, 163, 210, 0.2);
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--blue-medium);
  box-shadow: 0 8px 18px -6px rgba(111, 163, 210, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.3rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c5a7a;
  letter-spacing: -0.2px;
}

/* CTA Buton - Premium Gradient Pill */
.cta-card .btn-primary {
  background: linear-gradient(135deg, #6FA3D2 0%, #4a7ca5 100%);
  color: white;
  font-weight: 550;
  font-size: 1.1rem;
  padding: 16px 42px;
  border-radius: 999px;
  box-shadow: 0 12px 22px -8px rgba(74, 124, 165, 0.3), 0 3px 8px rgba(0,0,0,0.05);
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.cta-card .btn-primary:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 18px 28px -10px #4a7ca5, 0 5px 12px -4px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, #7db1da 0%, #5a8cb5 100%);
}

/* Buton içindeki ok için (opsiyonel - HTML'de ekleme yapılırsa) */
.cta-card .btn-primary .arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}

.cta-card .btn-primary:hover .arrow {
  transform: translateX(5px);
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .cta-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .cta-card h2 {
    font-size: 2rem;
  }
  .cta-card p {
    font-size: 1rem;
  }
  .cta-features {
    gap: 0.8rem;
  }
  .feature-item {
    padding: 8px 18px;
  }
  .cta-card .btn-primary {
    width: 100%;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .cta-card h2 {
    font-size: 1.8rem;
  }
  .feature-item {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================ */
/* MOBİL VE MASAÜSTÜ İÇİN ORTALAMA & DÜZELTME  */
/* ============================================ */

/* 1. Slide içeriğini ortala */
.slide-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* 2. Intro bölümünü ortala */
.intro-text {
  text-align: center;
}

.intro-text h2,
.intro-text p,
.intro-text a {
  text-align: center;
}

.intro.section-padding {
  padding-top: 1.5rem;
}
/* 4. Slider butonlarını mobilde daha iyi konumlandır */
@media (max-width: 768px) {
  .slider-controls {
    bottom: 15px;
    gap: 16px;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.9);
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .dot.active {
    width: 18px;
  }
}

/* 5. Arka plan ve geçişleri iyileştir (elegant) */
.slide {
  transition: opacity 0.5s ease-in-out;
}

.slide-tag {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  font-weight: 500;
}

/* 6. Butonların üst üste binmesini engelle (mobilde) */
@media (max-width: 640px) {
  .slider-controls {
    bottom: 10px;
  }
  
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
}

/* ===== REFINED HOMEPAGE STYLES (scoped) ===== */
/* These styles are isolated – they won't affect your global layout */

.ref-home-hero {
  display: block;
  width: 100%;
  background: #ffffff;
  position: relative;
}

.ref-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.ref-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ref-hero-closing {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #A9C7D0;
  font-weight: 350;
  margin-bottom: 2rem; /* butonlarla arasındaki mesafe için */
}

/* LEFT CONTENT */
.ref-hero-content {
  max-width: 540px;
}
/* Hero içindeki tüm paragrafların margin'lerini sıfırlayalım, ardından ihtiyaca göre alt boşluk verelim */
.ref-hero-content p {
  margin: 0;
}

.ref-hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7c6a9c;
  margin-bottom: 1rem;
}

.ref-hero-headline {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e1a2e;
  margin: 0 0 1.5rem 0;
}

.ref-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a4458;
  font-weight: 350;
  margin-bottom: 0.5rem; /* sadece ihtiyaç kadar boşluk */
}

.ref-hero-subline {
  font-size: 1rem;
  color: #2F6F68;
  font-style: italic;
  margin-bottom: 0.25rem; /* çok az boşluk */
}
	
.ref-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.ref-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.ref-btn-primary {
  background: linear-gradient(135deg, #7c6a9c 0%, #9b8ab8 100%);
  color: white;
  box-shadow: 0 8px 18px -6px rgba(124, 106, 156, 0.2);
}

.ref-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -8px rgba(124, 106, 156, 0.3);
  background: linear-gradient(135deg, #8b7aab 0%, #a798c2 100%);
}

.ref-btn-secondary {
  background: transparent;
  color: #4a3a5c;
  border: 1px solid #d9d0e6;
}

.ref-btn-secondary:hover {
  background: #f7f3fc;
  border-color: #b8a9cc;
  transform: translateY(-2px);
}

/* RIGHT VISUAL */
.ref-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ref-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}

.ref-hero-soft-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(circle at 30% 30%, #e8dff5, #d4c5e8);
  opacity: 0.5;
  filter: blur(20px);
  transform: rotate(-6deg);
  z-index: 1;
}

.ref-hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 30px -12px rgba(90, 70, 120, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.ref-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* thin gradient divider */
.ref-hero-divider {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0.35;
}

/* ===== CARDS SECTION ===== */
.ref-cards-section {
  background: #fbfaff;
  padding: 5rem 0;
}

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

.ref-cards-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 380;
  letter-spacing: -0.01em;
  color: #262236;
  margin-bottom: 3.5rem;
}

.ref-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CARD STYLES */
.ref-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: 1px solid #f0eaf5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 35px -12px rgba(90, 70, 120, 0.12), 0 6px 12px rgba(0, 0, 0, 0.02);
  border-color: #ddd0eb;
}

.ref-card-icon {
  color: #7c6a9c;
  margin-bottom: 1.5rem;
  background: #f3eef9;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ref-card:hover .ref-card-icon {
  background: #e8def5;
}

.ref-card-title {
  font-size: 1.4rem;
  font-weight: 450;
  color: #2b233a;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.ref-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #544e63;
  margin: 0;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .ref-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ref-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ref-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .ref-hero-actions {
    justify-content: center;
  }

  .ref-hero-headline {
    font-size: 2.5rem;
  }

  .ref-hero-visual {
    order: -1;
  }

  .ref-hero-image-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .ref-cards-title {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 480px) {
  .ref-cards-grid {
    grid-template-columns: 1fr;
  }

  .ref-hero-container {
    padding: 3rem 1.5rem;
  }

  .ref-btn {
    padding: 0.75rem 1.5rem;
  }
}

/* ===== YENİ BÖLÜMLER İÇİN SCOPED CSS ===== */
/* HAKKINDA BÖLÜMÜ */
.ref-about-section {
  background: #F8F6F2;
  padding: 6rem 0;
}
.ref-about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ref-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ref-about-image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}
.ref-about-soft-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: #BFD8B8;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  z-index: 1;
}
.ref-about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 30px -10px rgba(10, 15, 44, 0.1);
  border: 4px solid white;
}
.ref-about-title {
  font-size: 2.4rem;
  font-weight: 400;
  color: #0A0F2C;
  margin-bottom: 1.5rem;
}
.ref-about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.ref-about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #0A0F2C;
  font-size: 1.1rem;
}
.ref-about-list li span {
  color: #2F6F68;
  font-size: 1.3rem;
}
.ref-about-text {
  color: #4a4458;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ref-about-quote {
  font-style: italic;
  color: #2F6F68;
  border-left: 4px solid #2F6F68;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

/* SÜREÇ BÖLÜMÜ */
.ref-process-section {
  background: white;
  padding: 6rem 0;
}
.ref-process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ref-process-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 380;
  color: #0A0F2C;
  margin-bottom: 4rem;
}
.ref-process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ref-step-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 1rem;
  transition: transform 0.35s ease;
}
.ref-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #8a73ff 0%, #7B61FF 45%, #A78BFA 100%);
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 18px -8px rgba(123, 97, 255, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  will-change: transform;
}
.ref-step-item h4 {
  color: #0A0F2C;
  margin-bottom: 0.5rem;
}
.ref-step-item p {
  color: #4a4458;
}
.ref-step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 227, 211, 0.35), #E8E3D3, rgba(232, 227, 211, 0.35));
  margin-top: 30px;
}

.ref-step-item:hover .ref-step-number {
  transform: translateY(-4px);
  box-shadow:
    0 16px 26px -10px rgba(123, 97, 255, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
  filter: saturate(1.05);
}

/* REFERANSLAR BÖLÜMÜ */
.ref-testimonials-section {
  background: #F8F6F2;
  padding: 6rem 0;
}
.ref-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ref-testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 380;
  color: #0A0F2C;
  margin-bottom: 4rem;
}
.ref-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.ref-testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 30px -10px rgba(10, 15, 44, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0eaf5;
}
.ref-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px -12px rgba(47, 111, 104, 0.15);
}
.ref-testimonial-quote {
  font-size: 5rem;
  line-height: 1;
  color: #2F6F68;
  opacity: 0.3;
  font-family: serif;
  margin-bottom: -1rem;
}
.ref-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ref-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #BFD8B8;
}
.ref-testimonial-author strong {
  display: block;
  color: #0A0F2C;
}
.ref-testimonial-author span {
  color: #2F6F68;
  font-size: 0.9rem;
}
/* ===== PREMIUM PRICING SECTION (SCOPED) ===== */
.ref-pricing-section {
  position: relative;
  background: linear-gradient(135deg, #7B61FF 0%, #F472B6 100%);
  padding: 5rem 0;
  overflow: hidden;
  isolation: isolate;
}

/* Arka plan dekoratif glow'lar */
.ref-pricing-bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(80px);
  z-index: 0;
}

.ref-pricing-glow-1 {
  top: -100px;
  left: -100px;
  background: rgba(191, 216, 184, 0.25);
}

.ref-pricing-glow-2 {
  bottom: -100px;
  right: -50px;
  background: rgba(123, 97, 255, 0.3);
}

.ref-pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ref-pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ref-pricing-title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ref-pricing-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 350;
}

/* Grid */
.ref-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

/* Kartlar */
.ref-pricing-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 0.3rem;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 100%;
}

.ref-pricing-card-inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 26px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ref-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px -10px rgba(0, 0, 0, 0.25);
}

/* Öne çıkan kart */
.ref-pricing-card-featured {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scale(1.05);
  box-shadow: 0 30px 45px -10px rgba(123, 97, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 3;
}

.ref-pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Rozet */
.ref-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2F6F68, #7B61FF);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.4rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 8px 18px -4px rgba(47, 111, 104, 0.4);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 5;
}

.ref-pricing-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A0F2C;
  margin: 0.5rem 0 1rem 0;
}

.ref-pricing-price {
  margin-bottom: 1rem;
}

.ref-pricing-currency {
  font-size: 1.8rem;
  font-weight: 400;
  color: #2F6F68;
  vertical-align: super;
  margin-right: 0.2rem;
}

.ref-pricing-amount {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: #0A0F2C;
}

.ref-pricing-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4458;
  margin: 0.5rem 0 1.8rem 0;
  flex: 1;
}

/* Buton */
.ref-pricing-btn {
  display: inline-block;
  background: transparent;
  color: #0A0F2C;
  border: 1.5px solid #2F6F68;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.ref-pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -8px rgba(47, 111, 104, 0.3);
  background: #2F6F68;
  color: white;
  border-color: #2F6F68;
}

.ref-pricing-btn-primary {
  background: linear-gradient(135deg, #2F6F68, #7B61FF);
  border: none;
  color: white;
  box-shadow: 0 12px 22px -8px rgba(123, 97, 255, 0.4);
}

.ref-pricing-btn-primary:hover {
  background: linear-gradient(135deg, #3A8078, #8B7AAB);
  color: white;
  box-shadow: 0 18px 28px -10px rgba(123, 97, 255, 0.5);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .ref-pricing-grid {
    gap: 1.5rem;
  }
  
  .ref-pricing-title {
    font-size: 2.4rem;
  }

  .home-reviews-showcase__title {
    font-size: 2.4rem;
  }

  .home-reviews-carousel {
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .ref-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ref-pricing-card-featured {
    grid-column: span 2;
    max-width: 450px;
    margin: 0 auto;
    transform: scale(1.02);
  }
  
  .ref-pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media screen and (max-width: 600px) {
  .ref-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .ref-pricing-card-featured {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .ref-pricing-title {
    font-size: 2rem;
  }

  .home-reviews-showcase__title {
    font-size: 2rem;
  }
  
  .ref-pricing-card-inner {
    padding: 2rem 1.5rem;
  }
}
/* CTA BÖLÜMÜ */
.ref-cta-section {
  background: linear-gradient(135deg, #2F6F68, #7B61FF);
  padding: 5rem 0;
  color: white;
}
.ref-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.ref-cta-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: white;
}
.ref-cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.ref-cta-section .ref-btn-primary {
  background: white;
  color: #2F6F68;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}
.ref-cta-section .ref-btn-primary:hover {
  background: #E8E3D3;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .ref-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ref-about-image-wrapper {
    max-width: 350px;
  }
  .ref-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .ref-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .ref-step-connector {
    display: none;
  }
}

/* ===== SERVİS TANITIM KARTLARI (SCOPED) ===== */
.ref-services-section {
  /* Final computed values kept, duplicates merged */
  background: linear-gradient(180deg, #FDFCFA 0%, #F5F7F2 100%);
  padding: 3rem 0 5rem;
}

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

.ref-services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 380;
  letter-spacing: -0.01em;
  color: #0A0F2C;
  margin-bottom: 3.5rem;
}

.ref-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Kart */
.ref-service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(10, 15, 44, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #E8E3D3;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ref-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 40px -14px rgba(47, 111, 104, 0.12);
  border-color: #BFD8B8;
}

/* Görsel sarmalayıcı */
.ref-service-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 3px solid #BFD8B8;
}

/* Görsel */
.ref-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ref-service-card:hover .ref-service-img {
  transform: scale(1.03);
}

/* İçerik alanı */
.ref-service-content {
  padding: 2rem 1.8rem 2.2rem;
  flex: 1;
}

/* Başlık */
.ref-service-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0A0F2C;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

/* Açıklama metni */
.ref-service-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4a4458;
  margin: 0;
}

.ref-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.ref-service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.65rem;
}

.ref-service-bullet {
  color: #7B61FF;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  opacity: 0.9;
}

/* Sesiones online — lista premium (3 puntos, tono wellness) */
.ref-service-list--premium {
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin-top: 0.35rem;
}

.ref-service-list--premium li {
  align-items: flex-start;
  column-gap: 0.85rem;
}

.ref-service-point-glyph {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(47, 111, 104, 0.95) 0%, rgba(123, 97, 255, 0.85) 100%);
  box-shadow: 0 0 0 3px rgba(191, 216, 184, 0.35);
}

.ref-service-point-body {
  font-size: 1.05rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: #454050;
  font-weight: 400;
}

.ref-service-point-body strong {
  font-weight: 600;
  color: #2f4f52;
  letter-spacing: 0;
}

/* Mobil uyum */
@media screen and (max-width: 768px) {
  .ref-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ref-service-img-wrapper {
    height: 200px;
  }
  
  .ref-service-heading {
    font-size: 1.6rem;
  }
  
  .ref-services-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .ref-service-content {
    padding: 1.5rem 1.2rem 1.8rem;
  }
  
  .ref-service-img-wrapper {
    height: 180px;
  }
}

/* ===== İKİ BÖLÜM ARASI AYRAÇ (SCOPED) ===== */
.ref-section-separation {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ref-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #BFD8B8 20%, 
    #2F6F68 50%, 
    #BFD8B8 80%, 
    transparent 100%);
  opacity: 0.5;
  margin: 1rem 0 2.5rem 0;
}

/* Bölümler arası nefes boşluğu */
.ref-process-section {
  padding-bottom: 3rem; /* üst bölümün alt boşluğu */
}

/* ===== HOMEPAGE: testimonios vitrina (anasayfa — carrusel wp1–wp5) ===== */
.home-reviews-showcase {
  background: linear-gradient(180deg, #fdfcfa 0%, #f5efe6 52%, #faf8f4 100%);
}

.home-reviews-showcase.section-padding {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.home-reviews-showcase .container {
  max-width: min(1240px, 96vw);
  padding-left: clamp(1.25rem, 4vw, 2.25rem);
  padding-right: clamp(1.25rem, 4vw, 2.25rem);
}

.home-reviews-showcase__divider.ref-section-separation {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: 0;
}

/* Encabezado: compacto, alineado al sistema */
.home-reviews-showcase__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
}

/* Tipografía alineada con .ref-pricing-title (color adaptado al fondo claro) */
.home-reviews-showcase__title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #0a0f2c;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Carrusel testimonios — hasta 2 capturas por panel, misma vitrina premium */
.home-reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem) clamp(0.5rem, 1.5vw, 0.85rem);
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.home-reviews-carousel__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  border-radius: 26px;
  outline: none;
  touch-action: pan-y pinch-zoom;
  padding: clamp(0.65rem, 2vw, 1.15rem);
  box-sizing: border-box;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.85) 0%, transparent 55%),
    linear-gradient(180deg, rgba(253, 252, 250, 0.95) 0%, rgba(247, 243, 238, 0.55) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 28px 56px -28px rgba(10, 15, 44, 0.14),
    0 12px 32px -18px rgba(47, 111, 104, 0.08);
}

.home-reviews-carousel__viewport:focus-visible {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 28px 56px -28px rgba(10, 15, 44, 0.14),
    0 0 0 3px rgba(123, 97, 255, 0.22);
}

.home-reviews-carousel__track {
  --home-carousel-index: 0;
  --home-carousel-slides: 3;
  display: flex;
  width: calc(var(--home-carousel-slides) * 100%);
  transform: translateX(calc(var(--home-carousel-index) * (-100% / var(--home-carousel-slides))));
  transition: transform 0.72s cubic-bezier(0.33, 1, 0.28, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews-carousel__track {
    transition-duration: 0.01ms;
  }
}

.home-reviews-carousel__slide {
  flex: 0 0 calc(100% / var(--home-carousel-slides));
  max-width: calc(100% / var(--home-carousel-slides));
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.28, 1);
}

.home-reviews-carousel__slide--active {
  opacity: 1;
}

.home-reviews-carousel__slide-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(0.2rem, 1.5vw, 0.75rem);
  box-sizing: border-box;
}

.home-reviews-carousel__pair {
  --home-reviews-gap: clamp(1rem, 2.75vw, 1.85rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--home-reviews-gap);
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.home-reviews-carousel__pair--single {
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
}

.home-reviews-carousel__slide--single .home-reviews-carousel__pair--single .home-review-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc((100% - var(--home-reviews-gap)) / 2);
}

.home-review-card {
  margin: 0;
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 24px 48px -24px rgba(10, 15, 44, 0.16),
    0 8px 24px -12px rgba(10, 15, 44, 0.07);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.65s cubic-bezier(0.33, 1, 0.28, 1),
    box-shadow 0.65s cubic-bezier(0.33, 1, 0.28, 1);
}

.home-review-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 56px -22px rgba(10, 15, 44, 0.18),
    0 14px 32px -14px rgba(47, 111, 104, 0.1);
}

.home-review-card__frame {
  aspect-ratio: 9 / 16;
  min-height: clamp(268px, 46vh, 520px);
  max-height: min(58vh, 600px);
  background: linear-gradient(168deg, #ffffff 0%, #faf7f3 45%, #f4f0ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.55rem, 1.65vw, 1rem);
  box-sizing: border-box;
}

.home-review-card__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94%, 320px);
  max-height: min(52vh, 560px);
  margin: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
  box-shadow:
    0 16px 48px -16px rgba(10, 15, 44, 0.2),
    0 6px 20px -8px rgba(10, 15, 44, 0.1);
  cursor: zoom-in;
  transition:
    transform 0.65s cubic-bezier(0.33, 1, 0.28, 1),
    box-shadow 0.65s cubic-bezier(0.33, 1, 0.28, 1);
}

.home-reviews-carousel__slide--active .home-review-card__img {
  transform: scale(1.018);
  box-shadow:
    0 22px 56px -18px rgba(10, 15, 44, 0.24),
    0 10px 28px -10px rgba(47, 111, 104, 0.12);
}

.home-reviews-carousel__slide--active .home-review-card:hover .home-review-card__img {
  transform: scale(1.028);
}

.home-reviews-carousel__slide:not(.home-reviews-carousel__slide--active) .home-review-card:hover .home-review-card__img {
  transform: scale(1.006);
}

.home-reviews-carousel__slide--single .home-review-card__img {
  max-width: min(94%, 360px);
}

.home-reviews-carousel__btn {
  grid-row: 1;
  z-index: 2;
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232, 227, 211, 0.95);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0a0f2c;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px -10px rgba(10, 15, 44, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.home-reviews-carousel__btn:hover:not(:disabled) {
  transform: scale(1.06);
  box-shadow: 0 12px 28px -8px rgba(123, 97, 255, 0.22);
}

.home-reviews-carousel__btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.home-reviews-carousel__btn--prev {
  grid-column: 1;
  grid-row: 1;
}

.home-reviews-carousel__btn--next {
  grid-column: 3;
  grid-row: 1;
}

.home-reviews-carousel__dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.home-reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(10, 15, 44, 0.16);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, width 0.28s ease;
}

.home-reviews-carousel__dot[aria-selected="true"] {
  background: linear-gradient(135deg, #2f6f68, #7b61ff);
  width: 22px;
}

.home-reviews-carousel__dot:hover {
  transform: scale(1.12);
}

/* Lightbox (doble clic en imagen del carrusel) */
.home-reviews-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reviews-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.home-reviews-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  cursor: zoom-out;
  background: rgba(10, 15, 44, 0.46);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.home-reviews-lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: min(94vw, 920px);
  max-height: 90vh;
  transform: scale(0.96) translateY(8px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reviews-lightbox.is-open .home-reviews-lightbox__inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.home-reviews-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    0 24px 80px -20px rgba(10, 15, 44, 0.34),
    0 12px 40px -24px rgba(10, 15, 44, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews-lightbox,
  .home-reviews-lightbox__inner {
    transition-duration: 0.01ms;
  }

  .home-review-card {
    transition-duration: 0.01ms;
  }

  .home-review-card:hover {
    transform: none;
  }

  .home-review-card:hover .home-review-card__img {
    transform: none !important;
  }

  .home-reviews-carousel__slide--active .home-review-card__img {
    transform: none !important;
  }

  .home-reviews-carousel__slide {
    opacity: 1;
  }
}

@media screen and (max-width: 900px) {
  .home-reviews-carousel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0.85rem;
    max-width: 100%;
  }

  .home-reviews-carousel__viewport {
    grid-column: 1;
    grid-row: 1;
    border-radius: 22px;
    padding: clamp(0.5rem, 1.5vw, 0.85rem);
  }

  .home-reviews-carousel__btn {
    display: none;
  }

  .home-reviews-carousel__dots {
    grid-column: 1;
    grid-row: 2;
  }

  .home-reviews-carousel__slide-inner {
    max-width: min(680px, 94vw);
    padding: 0 clamp(0.35rem, 4vw, 1rem);
  }

  .home-reviews-carousel__pair {
    gap: clamp(0.65rem, 3vw, 1.15rem);
  }

  .home-review-card__frame {
    min-height: clamp(240px, 44vh, 480px);
    max-height: min(54vh, 560px);
  }

  .home-review-card__img {
    max-width: min(92%, 260px);
    max-height: min(48vh, 520px);
  }

  .home-reviews-carousel__slide--single .home-review-card__img {
    max-width: min(92%, min(340px, 84vw));
  }

  .home-reviews-carousel__slide--single .home-reviews-carousel__pair--single .home-review-card {
    max-width: min(420px, 88vw);
  }
}

.pensamientos-section {
  padding: 56px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 40%, #fdf2f8 100%);
  position: relative;
  overflow: hidden;
}

.pensamientos-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(180,150,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pensamientos-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

.pensamientos-header {
  text-align: center;
  margin-bottom: 64px;
}

.pensamientos-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent, #9b7e6e);
  margin-bottom: 14px;
  padding: 6px 18px;
  border: 1px solid rgba(155,126,110,0.3);
  border-radius: 20px;
}

.pensamientos-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-text, #2c2c2c);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  font-style: italic;
}

.pensamientos-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted, #888);
  font-weight: 400;
  margin: 0;
}

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

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

.p-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.p-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent, #9b7e6e), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.p-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
}

.p-card:hover::after {
  opacity: 1;
}

.p-card-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: inline-block;
  line-height: 1;
}

.p-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading, #1e1e1e);
  margin: 0 0 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.p-bullet {
  display: inline-block;
  margin-right: 6px;
  font-size: 0.95rem;
  vertical-align: middle;
}

.p-card-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--color-body, #555);
  margin: 0;
  font-weight: 400;
}

.situaciones-section {
  padding: 72px 0 80px;
  background: linear-gradient(150deg, #f0f7f2 0%, #e4f0e8 50%, #eef5ee 100%);
  position: relative;
  overflow: hidden;
}

.situaciones-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(120,180,130,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.situaciones-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(100,160,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.situaciones-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Header */
.situaciones-header {
  text-align: center;
  margin-bottom: 60px;
}

.situaciones-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a9068;
  margin-bottom: 16px;
  padding: 6px 20px;
  border: 1px solid rgba(90,144,104,0.3);
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
}

.situaciones-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--color-heading, #1e1e1e);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.situaciones-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: #5a9068;
  margin: 0;
}

/* Grid */
.situaciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

/* Cards */
.s-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 36px 30px 32px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 28px rgba(90,144,104,0.08), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.s-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7dba8f, #a8d5b0);
  border-radius: 20px 20px 0 0;
  opacity: 0.7;
  transition: opacity 0.38s ease;
}

.s-card:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 0 20px 52px rgba(90,144,104,0.15), 0 4px 12px rgba(0,0,0,0.06);
}

.s-card:hover .s-card-accent {
  opacity: 1;
}

/* Card icon */
.s-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
  line-height: 1;
}

/* Card title */
.s-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading, #1e1e1e);
  margin: 0 0 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* List */
.s-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s-card-list li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--color-body, #555);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.s-bullet {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ==============================
   SECTION DIVIDERS (gradient line modifiers)
   ============================== */

.divider-green-from-purple {
  background: linear-gradient(to right, transparent, rgba(150,120,180,0.4), rgba(120,180,130,0.4), transparent);
}

.divider-beige-from-green {
  background: linear-gradient(to right, transparent, rgba(120,180,130,0.4), rgba(200,180,160,0.3), transparent);
}

.divider-beige-fade {
  background: linear-gradient(to right, transparent, rgba(200,180,160,0.3), transparent);
}

/* ==============================
   FAQ SECTION
   ============================== */

.faq-section {
  padding: 72px 0 88px;
  background: #faf8f5;
  position: relative;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent, #9b7e6e);
  margin-bottom: 14px;
  padding: 6px 20px;
  border: 1px solid rgba(155,126,110,0.3);
  border-radius: 20px;
}

.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--color-heading, #1e1e1e);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: 1rem;
  color: var(--color-muted, #888);
  margin: 0;
  font-style: italic;
}

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Each item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading, #1e1e1e);
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--color-accent, #9b7e6e);
}

/* Plus/minus icon */
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent, #9b7e6e);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-accent, #9b7e6e);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              padding 0.35s ease;
  padding: 0 28px;
}

.faq-answer.is-open {
  max-height: 600px;
  padding: 0 28px 26px;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--color-body, #555);
  margin: 0 0 12px;
}

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

/* Top accent line on open item */
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-top: 3px solid var(--color-accent, #9b7e6e);
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.28s ease,
              background 0.2s ease;
  cursor: pointer;
  border: none;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.cta-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.cta-btn--whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
}

.cta-btn--mail {
  background: #ffffff;
  color: var(--color-accent, #9b7e6e);
  border: 1.5px solid rgba(155,126,110,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.cta-btn--mail:hover {
  background: #fdf8f6;
  box-shadow: 0 10px 28px rgba(155,126,110,0.15);
}

@media (max-width: 600px) {
  .cta-button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn {
    justify-content: center;
  }
}

/* ==============================
   MAS TESTIMONIOS SECTION
   ============================== */

.mastesti-section {
  padding: 80px 0 90px;
  background: linear-gradient(150deg, #fdf0f4 0%, #fae8ef 50%, #fdf2f6 100%);
  position: relative;
  overflow: hidden;
}

.mastesti-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(220,150,175,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.mastesti-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.mastesti-header {
  text-align: center;
  margin-bottom: 56px;
}

.mastesti-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b5607e;
  margin-bottom: 14px;
  padding: 6px 20px;
  border: 1px solid rgba(181,96,126,0.28);
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
}

.mastesti-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--color-heading, #1e1e1e);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

@media (max-width: 768px) {
  .mastesti-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.mastesti-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 28px rgba(181,96,126,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.38s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.38s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
}

.mastesti-card:hover {
  transform: translateY(-6px) scale(1.013);
  box-shadow: 0 18px 48px rgba(181,96,126,0.14), 0 4px 12px rgba(0,0,0,0.06);
}

/* Chat bubbles */
.mastesti-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 16px 8px;
  border-radius: 16px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.65;
  color: #2c2c2c;
}

.chat-bubble p {
  margin: 0 0 4px;
}

.chat-time {
  display: block;
  font-size: 0.72rem;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

.chat-received {
  background: #f0f0f0;
  border-radius: 4px 16px 16px 16px;
  align-self: flex-start;
}

.chat-sent {
  background: #dff5e3;
  border-radius: 16px 4px 16px 16px;
  align-self: flex-end;
  text-align: left;
}

/* Author */
.mastesti-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mastesti-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #b5607e;
}

.mastesti-via {
  font-size: 0.8rem;
  color: #aaa;
}

/* ===================================================
   ELEGANT FOOTER — site-footer-elegant
   =================================================== */

/* Wave transition */
.sfe-wave-top {
  display: block;
  line-height: 0;
  margin-bottom: -2px;
  background: transparent;
}

.sfe-wave-top svg {
  display: block;
  width: 100%;
  height: 60px;
}

.site-footer-elegant {
  background: #0A0F2C;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', 'Poppins', sans-serif;
  margin-top: 0;
}

/* Footer inner width — centred; symmetric side padding for equal edge gaps */
.sfe-container {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

/* Top section — 3 equal-width columns, top-aligned */
.sfe-top {
  padding: 3.5rem 0 2.5rem;
}

.sfe-top .sfe-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Equal flex columns + identical horizontal padding inside each column */
.sfe-top .sfe-brand,
.sfe-top .sfe-col {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
}

/* Brand + content columns share the same flex alignment model */
.sfe-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem;
}

.sfe-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sfe-brand-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A78BFA;
  margin: 0;
  padding-top: 0;
  line-height: 1.25;
}

.sfe-brand-name {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  margin: 0.35rem 0 0.6rem;
  letter-spacing: -0.01em;
}

.sfe-brand-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-style: italic;
}

/* Column titles — align with brand column start (same top edge, consistent rhythm) */
.sfe-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2F6F68;
  margin: 0 0 1rem 0;
  padding-top: 0;
  line-height: 1.25;
}

/* Links list */
.sfe-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sfe-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.sfe-links a:hover {
  color: #ffffff;
}

/* Info list */
.sfe-links--info li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.5;
}

/* Contact list */
.sfe-links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.sfe-links--contact a {
  font-size: 0.88rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sfe-contact-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Social icons */
.sfe-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.2rem;
}

.sfe-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
}

.sfe-social-link:hover {
  border-color: #A78BFA;
  color: #A78BFA;
  background: rgba(167, 139, 250, 0.08);
}

/* Divider — same horizontal bounds as .sfe-container */
.sfe-divider-wrap {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.sfe-divider {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,111,104,0.5), rgba(167,139,250,0.5), rgba(47,111,104,0.5), transparent);
}

/* Subfooter */
.sfe-bottom {
  padding: 1.2rem 0;
}

.sfe-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfe-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
  text-align: center;
}

.sfe-dev-link {
  color: rgba(167, 139, 250, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sfe-dev-link:hover {
  color: #A78BFA;
}

.sfe-privacy-link {
  color: rgba(191, 216, 184, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  font-weight: 400;
}

.sfe-privacy-link:hover {
  color: #bfd8b8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .sfe-top .sfe-container {
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }
}

@media screen and (max-width: 768px) {
  .sfe-top .sfe-container {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(1.75rem, 5vw, 2.25rem);
  }
  .sfe-top .sfe-brand,
  .sfe-top .sfe-col {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sfe-container {
    padding-left: clamp(1.25rem, 5vw, 2rem);
    padding-right: clamp(1.25rem, 5vw, 2rem);
  }
  .sfe-divider-wrap {
    padding-left: clamp(1.25rem, 5vw, 2rem);
    padding-right: clamp(1.25rem, 5vw, 2rem);
  }
  .sfe-top {
    padding: 2.75rem 0 2.25rem;
  }
  /* Stack order: brand → información → contacto; centered, readable */
  .site-footer-elegant .sfe-brand,
  .site-footer-elegant .sfe-col {
    align-items: center;
    text-align: center;
  }
  .site-footer-elegant .sfe-brand-name,
  .site-footer-elegant .sfe-brand-tagline {
    text-align: center;
  }
  .site-footer-elegant .sfe-links {
    align-items: center;
  }
  .site-footer-elegant .sfe-links--info li,
  .site-footer-elegant .sfe-links--contact li {
    justify-content: center;
    text-align: center;
  }
  .site-footer-elegant .sfe-links--contact a {
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: 6px;
    -webkit-tap-highlight-color: rgba(167, 139, 250, 0.25);
  }
  .site-footer-elegant .sfe-social {
    justify-content: center;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 600px) {
  .sfe-top {
    padding: 2.5rem 0 2rem;
  }
  .sfe-wave-top svg {
    height: 40px;
  }
}

/* ===================================================
   SCHEDULING CTA + calendar modal (vanilla JS: schedule-calendar.js)
   =================================================== */

.sched-cta {
  background: linear-gradient(135deg, rgba(47, 111, 104, 0.12) 0%, rgba(167, 139, 250, 0.1) 100%);
  border-top: 1px solid rgba(47, 111, 104, 0.12);
  border-bottom: 1px solid rgba(47, 111, 104, 0.15);
  padding: 1rem 0;
}

.sched-cta__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sched-cta__slot {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sched-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.sched-cta__label {
  text-align: center;
}

.sched-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  color: #0a0f2c;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 111, 104, 0.22);
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(10, 15, 44, 0.07);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.35s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: rgba(47, 111, 104, 0.15);
  cursor: pointer;
}

button.sched-cta__link {
  appearance: none;
  -webkit-appearance: none;
}

.sched-cta__link:hover {
  background: #ffffff;
  border-color: rgba(47, 111, 104, 0.38);
  box-shadow: 0 12px 36px rgba(47, 111, 104, 0.14), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

.sched-cta__link:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 3px;
}

.sched-cta__link:active {
  transform: scale(0.99);
}

@media screen and (max-width: 768px) {
  .sched-cta {
    padding: 1rem clamp(1rem, 4vw, 1.5rem);
  }

  .sched-cta__link {
    min-height: 52px;
    padding: 1.05rem 1.35rem;
    font-size: 0.98rem;
    border-radius: 16px;
    max-width: none;
  }

  .sched-cta__icon {
    font-size: 1.25rem;
  }
}

/* ----- Scheduling calendar modal ----- */
body.sched-cal-open {
  overflow: hidden;
}

.sched-cal-root {
  position: fixed;
  inset: 0;
  z-index: 10050;
  pointer-events: none;
}

.sched-cal-root.is-open {
  pointer-events: auto;
}

.sched-cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 44, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.sched-cal-root.is-open .sched-cal-backdrop {
  opacity: 1;
  visibility: visible;
}

.sched-cal-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(100%, 26rem);
  max-height: min(92vh, 42rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fdfcfa 0%, #f5f0ea 100%);
  border: 1px solid rgba(47, 111, 104, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 15, 44, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.sched-cal-root.is-open .sched-cal-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.sched-cal-modal__inner {
  padding: 1.35rem 1.35rem 1.25rem;
  overflow-y: auto;
  max-height: min(92vh, 42rem);
}

.sched-cal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.sched-cal-title {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0f2c;
  letter-spacing: -0.02em;
}

.sched-cal-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.25rem -0.35rem 0 0;
  border: none;
  border-radius: 10px;
  background: rgba(47, 111, 104, 0.08);
  color: #0a0f2c;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sched-cal-close:hover {
  background: rgba(47, 111, 104, 0.18);
}

.sched-cal-close:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-subtitle {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #5c5668;
}

.sched-cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.sched-cal-nav {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 104, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: #2f6f68;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.sched-cal-nav:hover {
  background: #fff;
  border-color: rgba(47, 111, 104, 0.45);
}

.sched-cal-nav:active {
  transform: scale(0.96);
}

.sched-cal-nav:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-month-label {
  flex: 1;
  text-align: center;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0f2c;
  letter-spacing: 0.02em;
}

.sched-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.sched-cal-weekday {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2f6f68;
  text-transform: uppercase;
}

.sched-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  isolation: isolate;
}

.sched-cal-day {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  min-height: 2.35rem;
  max-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3d3848;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.sched-cal-day:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(47, 111, 104, 0.25);
  box-shadow: 0 4px 12px rgba(47, 111, 104, 0.1);
}

.sched-cal-day:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-day--empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.sched-cal-day--disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(208, 210, 218, 0.35) !important;
  color: #9893a3 !important;
  border-color: rgba(208, 210, 218, 0.55) !important;
  box-shadow: none !important;
  transform: none !important;
}

.sched-cal-day--disabled.sched-cal-day--today {
  border-color: rgba(198, 200, 212, 0.65) !important;
  background: rgba(200, 202, 214, 0.35) !important;
  color: #928da0 !important;
}

.sched-cal-day--today {
  border-color: rgba(123, 97, 255, 0.45);
  background: rgba(167, 139, 250, 0.12);
  color: #0a0f2c;
  font-weight: 600;
}

.sched-cal-day--selected {
  z-index: 2;
  background: linear-gradient(160deg, rgba(47, 111, 104, 0.28), rgba(167, 139, 250, 0.22));
  border-color: rgba(47, 111, 104, 0.55);
  color: #0a0f2c;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.65) inset, 0 6px 18px rgba(47, 111, 104, 0.22);
}

.sched-cal-day--today.sched-cal-day--selected {
  border-color: rgba(47, 111, 104, 0.55);
}

.sched-cal-time-wrap {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
}

.sched-cal-time-wrap:not([hidden]) {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(47, 111, 104, 0.22);
  max-height: 560px;
  opacity: 1;
}

.sched-cal-time-heading {
  margin: 0 0 0.75rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f6f68;
}

.sched-cal-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media screen and (min-width: 420px) {
  .sched-cal-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sched-cal-time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid rgba(47, 111, 104, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #3d3848;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  text-align: center;
  line-height: 1.25;
}

.sched-cal-time-slot:hover {
  background: #fff;
  border-color: rgba(47, 111, 104, 0.35);
  box-shadow: 0 4px 12px rgba(47, 111, 104, 0.08);
}

.sched-cal-time-slot:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-time-slot--selected {
  background: linear-gradient(160deg, rgba(47, 111, 104, 0.2), rgba(167, 139, 250, 0.15));
  border-color: rgba(47, 111, 104, 0.5);
  color: #0a0f2c;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 14px rgba(47, 111, 104, 0.15);
}

.sched-cal-booking-slot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(47, 111, 104, 0.2);
  min-height: 0;
}

@keyframes sched-cal-form-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sched-cal-booking-slot:not([hidden]) .sched-cal-form-wrap:not([hidden]) {
  animation: sched-cal-form-in 0.38s ease;
}

.sched-cal-form-heading {
  margin: 0 0 1rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f6f68;
}

.sched-cal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sched-cal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sched-cal-label {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a4456;
}

.sched-cal-req {
  color: #c45c5c;
  font-weight: 600;
}

.sched-cal-input,
.sched-cal-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(47, 111, 104, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #2d2836;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sched-cal-textarea {
  min-height: 4.5rem;
  resize: vertical;
  line-height: 1.45;
}

.sched-cal-input::placeholder,
.sched-cal-textarea::placeholder {
  color: rgba(74, 68, 86, 0.45);
}

.sched-cal-input:hover,
.sched-cal-textarea:hover {
  border-color: rgba(47, 111, 104, 0.35);
}

.sched-cal-input:focus,
.sched-cal-textarea:focus {
  outline: none;
  border-color: rgba(47, 111, 104, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 111, 104, 0.12);
}

.sched-cal-field-error .sched-cal-input,
.sched-cal-field-error .sched-cal-textarea {
  border-color: rgba(196, 92, 92, 0.55);
}

.sched-cal-input-msg {
  margin: 0;
  font-size: 0.75rem;
  color: #b54a4a;
  font-weight: 500;
}

.sched-cal-char-counter {
  display: block;
  text-align: right;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #8c96a5;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.sched-cal-char-counter--warning {
  color: #c77d3a;
}

.sched-cal-char-counter--danger {
  color: #c55c5c;
}

.sched-cal-field--consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(47, 111, 104, 0.06);
  border: 1px solid rgba(47, 111, 104, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sched-cal-field--consent:hover {
  background: rgba(47, 111, 104, 0.08);
  border-color: rgba(47, 111, 104, 0.18);
}

.sched-cal-field--consent.sched-cal-field-error {
  border-color: rgba(196, 92, 92, 0.45);
  background: rgba(255, 248, 248, 0.65);
}

.sched-cal-consent__input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.12rem 0 0;
  accent-color: #2f6f68;
  cursor: pointer;
  border-radius: 4px;
}

.sched-cal-consent__input:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-consent__label {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 400;
  color: #4a4456;
  cursor: pointer;
}

.sched-cal-consent__link {
  color: #2f6f68;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.sched-cal-consent__link:hover {
  color: #25615a;
}

.sched-cal-consent__link:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
  border-radius: 2px;
}

.sched-cal-security-strip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(169, 199, 208, 0.2),
    rgba(191, 216, 184, 0.18)
  );
  border: 1px solid rgba(47, 111, 104, 0.14);
}

.sched-cal-security-strip__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.85;
}

.sched-cal-security-strip__text {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #5a5368;
}

.sched-cal-system-msg {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 500;
  color: #8b4545;
  background: rgba(255, 236, 236, 0.85);
  border: 1px solid rgba(196, 92, 92, 0.22);
}

.sched-cal-submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(160deg, #2f6f68 0%, #25615a 100%);
  color: #fff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(47, 111, 104, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sched-cal-submit:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(47, 111, 104, 0.34);
  transform: translateY(-1px);
}

.sched-cal-submit:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

.sched-cal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.sched-cal-feedback {
  padding: 1rem 1rem 1.1rem;
  border-radius: 12px;
  text-align: center;
}

.sched-cal-feedback--success {
  background: linear-gradient(
    145deg,
    rgba(47, 111, 104, 0.1),
    rgba(167, 139, 250, 0.08)
  );
  border: 1px solid rgba(47, 111, 104, 0.2);
}

.sched-cal-feedback--error {
  background: rgba(255, 248, 248, 0.95);
  border: 1px solid rgba(196, 92, 92, 0.22);
}

.sched-cal-feedback__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.6rem;
  border-radius: 50%;
  background: rgba(47, 111, 104, 0.18);
  color: #1e5650;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.sched-cal-feedback__text {
  margin: 0 0 1rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #3d3848;
}

.sched-cal-feedback--success .sched-cal-feedback__text {
  color: #2a524d;
}

.sched-cal-feedback--error .sched-cal-feedback__text {
  margin-bottom: 0.75rem;
  color: #5c3d3d;
}

.sched-cal-feedback__actions {
  display: flex;
  justify-content: center;
}

.sched-cal-btn-secondary {
  padding: 0.55rem 1.35rem;
  border: 1px solid rgba(47, 111, 104, 0.35);
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f6f68;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sched-cal-btn-secondary:hover {
  background: rgba(47, 111, 104, 0.06);
  border-color: rgba(47, 111, 104, 0.5);
}

.sched-cal-btn-secondary:focus-visible {
  outline: 2px solid #2f6f68;
  outline-offset: 2px;
}

@media screen and (max-width: 768px) {
  .sched-cal-modal {
    width: min(calc(100vw - 2rem), 26rem);
    max-height: min(90vh, 44rem);
    border-radius: 18px;
  }

  .sched-cal-modal__inner {
    padding: 1.15rem 1rem 1rem;
    max-height: min(90vh, 44rem);
  }

  .sched-cal-day {
    min-height: 2.75rem;
    max-height: none;
    aspect-ratio: auto;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .sched-cal-weekday {
    font-size: 0.62rem;
  }

  .sched-cal-time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }

  .sched-cal-time-slot {
    min-height: 3rem;
    font-size: 0.82rem;
    padding: 0.55rem 0.4rem;
  }

  .sched-cal-feedback__text {
    font-size: 0.8rem;
  }

  .sched-cal-field--consent {
    flex-wrap: wrap;
  }

  .sched-cal-char-counter {
    font-size: 0.68rem;
  }
}

/* ——— Privacy policy page ——— */
.privacy-policy-page {
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f6f3 100%);
}

.privacy-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.privacy-meta {
  font-size: 0.85rem;
  color: #7a7288;
  margin: 0 0 0.5rem;
}

.privacy-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: #5c5668;
  margin: 0 0 1.5rem;
}

.privacy-policy-page h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0a0f2c;
  margin: 2rem 0 0.65rem;
}

.privacy-policy-page h2:first-of-type {
  margin-top: 0;
}

.privacy-policy-page p,
.privacy-policy-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a4456;
}

.privacy-policy-page ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.privacy-policy-page a {
  color: #2f6f68;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-policy-page a:hover {
  color: #25615a;
}

@media screen and (max-width: 768px) {
  .privacy-policy-page h2 {
    font-size: 1.15rem;
  }

  .privacy-policy-page p,
  .privacy-policy-page li {
    font-size: 0.9rem;
  }

  .sfe-bottom-inner {
    flex-wrap: wrap;
    padding: 0 0.75rem;
  }
}
