/* ==========================================================
   SUZAN TILKI — COMPLETE DESIGN SYSTEM
   Generated with UI UX Pro Max Skill v2.0
   Category: Women's Life & Mental Wellness Coaching
   Pattern: Hero + Testimonials + CTA (Social Proof Focused)
   Typography: Wellness Calm (Lora + Raleway)
   Palette: Mental Health App / Beauty-Wellness hybrid
   ========================================================== */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary:        #7c5c8a;   /* Deep elegant mauve */
  --primary-hover:  #654a72;
  --primary-light:  #f3edf7;   /* Very soft lavender bg */
  --accent:         #c9806a;   /* Warm terracotta – warm, grounding */
  --accent-hover:   #b56d58;
  --accent-light:   #fdf3f0;

  /* Neutral Surface */
  --bg:             #faf8f5;   /* Warm off-white – organic feel */
  --bg-alt:         #f5f0ec;   /* Slightly darker warm beige */
  --white:          #ffffff;
  --card-bg:        #ffffff;

  /* Typography Colors */
  --text:           #2a2226;   /* Warm near-black */
  --text-light:     #6b5f65;   /* Muted warm grey */
  --text-muted:     #9c8f94;

  /* Borders & Dividers */
  --border:         #e8e0e5;
  --border-light:   #f0eaed;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(124, 92, 138, 0.06);
  --shadow-md:      0 8px 24px rgba(124, 92, 138, 0.10);
  --shadow-lg:      0 20px 48px rgba(124, 92, 138, 0.14);
  --shadow-hover:   0 12px 32px rgba(124, 92, 138, 0.18);

  /* Typography — Wellness Calm (UI UX Pro Max #8) */
  --font-heading:   'Lora', Georgia, serif;          /* Organic, warm, elegant */
  --font-body:      'Raleway', 'Helvetica Neue', sans-serif; /* Refined, light */

  /* Spacing */
  --section-py:     90px;
  --container:      1160px;

  /* Motion */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:     0.28s var(--ease);
  --transition-slow:0.5s var(--ease);

  /* Border Radius */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      28px;
  --radius-xl:      48px;
  --radius-full:    9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition);
}

a:hover { color: var(--primary-hover); }

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

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

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

.bg-light { background-color: var(--bg-alt); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.8;
  font-weight: 400;
}

.lead-text {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-light);
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.site-header:hover {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  gap: 32px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Header CTA group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Lang Switcher */
.lang-switcher a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: all var(--transition);
}

.lang-switcher a.active {
  color: var(--primary);
  opacity: 1;
}

.lang-switcher a:hover { opacity: 1; }

.mobile-only-lang {
  display: none;
}

.desktop-only-lang {
  display: block;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(124, 92, 138, 0.30);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(124, 92, 138, 0.38);
}

.btn-secondary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(201, 128, 106, 0.28);
}

.btn-secondary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201, 128, 106, 0.38);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-header {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 3px 14px rgba(201, 128, 106, 0.28);
}

.btn-header:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 128, 106, 0.38);
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 110px 0 160px;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 138, 0.18) 0%,
    rgba(201, 128, 106, 0.12) 50%,
    rgba(250, 248, 245, 0.30) 100%
  );
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

/* Glassmorphism card */
.hero-content.glass-panel {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 64px 72px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(124, 92, 138, 0.12),
              inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pre-title {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  padding: 6px 18px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.18;
}

.hero-content .subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ── TRUST BADGES ────────────────────────────────────────── */
.trust-badges {
  padding: 36px 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 600;
}

.badges-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.65;
  align-items: center;
  transition: opacity var(--transition);
}

.badges-grid:hover { opacity: 0.85; }

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.01em;
}

.badge-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ── SERVICES OVERLAP ────────────────────────────────────── */
.services-section {
  padding-top: 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.services-grid.overlap-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1060px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: var(--card-bg);
  padding: 44px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}

.service-card.highlight-card {
  border-top-color: var(--accent);
}

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

.card-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .card-icon {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
}

/* Primary Featured Card */
.primary-highlight {
  background: var(--primary);
  border-top-color: rgba(255,255,255,0.4);
  transform: scale(1.04);
  position: relative;
  z-index: 2;
}

.primary-highlight h3 { color: #fff; }
.primary-highlight p  { color: rgba(255,255,255,0.88); }

.primary-highlight .card-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.primary-highlight:hover {
  transform: scale(1.04) translateY(-8px);
  background: var(--primary-hover);
}

.primary-highlight:hover .card-icon {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ── INTRO SECTION ───────────────────────────────────────── */
.intro-section {
  padding: 96px 0 80px;
  background: var(--white);
  border-radius: 56px 56px 0 0;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.02);
}

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

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

.portrait-img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 56px rgba(124, 92, 138, 0.16);
  display: block;
  margin: 0 auto;
  animation: float 7s ease-in-out infinite;
  border: 8px solid var(--white);
  object-fit: cover;
}

.intro-text h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 24px;
}

.highlight-box {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-top: 28px;
}

.highlight-box h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 14px;
}

.highlight-box p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.highlight-box p + p { margin-top: 10px; }

/* ── APPROACH SECTION ────────────────────────────────────── */
.approach-section { padding: var(--section-py) 0; }

.approach-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.approach-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
}

.approach-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.approach-text p strong { color: var(--text); }

.approach-text .btn { margin-top: 12px; }

/* ── METHODOLOGY SECTION ─────────────────────────────────── */
.methodology-section { padding: var(--section-py) 0; }

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  text-align: left;
  margin-top: 16px;
}

.method-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.method-card h3 {
  color: var(--accent);
  font-size: 19px;
  margin-bottom: 14px;
}

.method-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.78;
}

/* ── GALLERY SECTION ─────────────────────────────────────── */
.gallery-section { padding: var(--section-py) 0; }

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ── STEPS SECTION ───────────────────────────────────────── */
.steps-section { padding: var(--section-py) 0; }

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

.step-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
}

/* ── PROBLEMS SECTION ────────────────────────────────────── */
.problems-section { padding: var(--section-py) 0; }

.problems-section h2 { margin-bottom: 12px; }

.problems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.problem-chip {
  background: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--border-light);
  cursor: default;
}

.problem-chip svg { color: var(--primary); flex-shrink: 0; }

.problem-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(124, 92, 138, 0.14);
  border-color: rgba(124, 92, 138, 0.22);
}

/* ── LEAD MAGNET SECTION ─────────────────────────────────── */
.lead-magnet-section {
  padding: var(--section-py) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.lead-magnet-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.lead-magnet-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.lead-magnet-section h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 14px;
}

.lead-text-white {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.75;
}

.newsletter-form {
  display: flex;
  gap: 14px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: box-shadow var(--transition);
}

.newsletter-form input[type="email"]:focus {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.newsletter-form .btn-secondary {
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ── TESTIMONIALS SECTION ────────────────────────────────── */
.testimonials-section { padding: var(--section-py) 0; overflow: hidden; }

.testimonials-swiper {
  padding: 20px 10px 60px !important;
  margin-top: 36px;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.testimonial-card {
  background: var(--white);
  padding: 48px 40px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.stars {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.quote-icon {
  position: absolute;
  top: -4px;
  right: 20px;
  font-size: 120px;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; }

.faq-accordion {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }
.faq-question:focus { outline: none; }

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 24px 24px;
}

/* ── BLOG PREVIEW ────────────────────────────────────────── */
.blog-preview-section { padding: var(--section-py) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 40px auto 0;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}

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

.blog-card-content { padding: 32px; }

.blog-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--text);
  transition: color var(--transition);
}

.blog-card h3 a:hover { color: var(--primary); }

.blog-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.blog-readmore {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.blog-readmore:hover {
  color: var(--primary-hover);
  gap: 10px;
}

.blog-readmore::after {
  content: '→';
  transition: transform var(--transition);
}

/* ── INSTAGRAM GRID ──────────────────────────────────────── */
.insta-section { padding: var(--section-py) 0; }

.insta-section h2 { margin-bottom: 40px; }

.insta-section h2 a {
  color: var(--accent);
  transition: color var(--transition);
}

.insta-section h2 a:hover { color: var(--accent-hover); }

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

.insta-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124, 92, 138, 0.72);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.insta-post:hover img { transform: scale(1.08); }
.insta-post:hover .insta-overlay { opacity: 1; }

.insta-stat {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #654a72 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.cta-section .btn-primary:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
  box-shadow: 0 10px 32px rgba(0,0,0,0.24);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #1e1820;
  color: #fff;
  padding: 44px 0;
  text-align: center;
}

.footer-links { margin-bottom: 20px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  margin: 0 16px;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-copy p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── QUIZ SECTION ────────────────────────────────────────── */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.quiz-btn {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}

.quiz-btn:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(124, 92, 138, 0.12);
  transform: translateY(-2px);
  color: var(--primary);
}

.quiz-step {
  animation: fadeSlideUp 0.45s var(--ease) forwards;
}

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .primary-highlight {
    transform: scale(1);
  }
  .primary-highlight:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-grid .highlight-box { text-align: left; }
  .portrait-img { max-width: 320px; }

  .approach-container {
    grid-template-columns: 1fr;
  }
}

/* Hamburger Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-container {
    height: 72px;
    padding: 0 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 24px;
    border-top: 1px solid var(--border-light);
    display: none;
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .mobile-only-lang {
    display: block;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    width: 100%;
    text-align: center;
  }

  .desktop-only-lang {
    display: none;
  }

  .services-grid.overlap-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-content.glass-panel {
    padding: 40px 28px;
  }

  .gallery-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .insta-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .newsletter-form { flex-direction: column; }

  .cookie-banner { flex-direction: column; text-align: center; }

  .methodology-grid { grid-template-columns: 1fr; }

  .badges-grid { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-content.glass-panel { padding: 32px 20px; }
  .hero-content h1 { font-size: 30px; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-hero {
  padding: 120px 0 80px;
  background: var(--white);
}

.about-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about-hero-text {
  flex: 1.2;
  min-width: 300px;
}

.about-hero-image-wrapper {
  flex: 0.8;
  min-width: 300px;
}

.about-title {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 24px;
  color: var(--primary);
}

.about-lead {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 500;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-light);
}

.about-highlight {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.qual-chips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.qual-chip {
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--border-light);
}

.qual-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.qual-icon {
  color: var(--accent);
}

@media (max-width: 991px) {
  .about-hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .about-highlight {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    padding: 12px 0;
  }
}

/* ── FLOATING WIDGETS ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  color: #fff;
}

.floating-quiz-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  left: 24px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.floating-quiz-btn:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: var(--primary-hover);
}

.floating-quiz-btn .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  z-index: 1001;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  font-family: var(--font-body);
}

.floating-quiz-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Quiz Modal Styles */
.quiz-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.3s ease;
}

.quiz-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
}

.quiz-close:hover {
  color: var(--primary);
}

/* ── PREFERS REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .portrait-img { animation: none; }
}
