/* ============================================
   PET TOOTH FAIRY — Magical Design System ✨
   Inspired by Webflow Pet Grooming Template
   Colors from Logo: Gold, Baby Blue, Sky Blue
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Logo Colors */
  --gold:           #F5B731;
  --gold-dark:      #D49A1A;
  --gold-light:     #FCCF5A;
  --purple:         #5BA3C9;
  --purple-dark:    #3D7FA3;
  --purple-light:   #7EC4E0;
  --purple-pale:    #E0F0F8;
  --sky:            #A8D8EA;
  --sky-light:      #D4EEFF;
  --sky-pale:       #EEF7FC;

  /* Neutrals */
  --cream:          #FFF8EC;
  --cream-dark:     #FAF0DD;
  --warm-white:     #FFFDF7;
  --brown:          #3A2A1A;
  --brown-light:    #7A6A5A;
  --brown-lighter:  #B8A898;
  --brown-pale:     #E8E0D6;

  /* Semantic */
  --bg-primary:     var(--cream);
  --bg-card:        var(--warm-white);
  --text-primary:   var(--brown);
  --text-secondary: var(--brown-light);
  --text-muted:     var(--brown-lighter);
  --border-color:   var(--brown-pale);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max:   1200px;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  30px;
  --radius-xl:  40px;
  --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;

  /* Shadows */
  --shadow-soft:  0 4px 20px rgba(58, 42, 26, 0.06);
  --shadow-card:  0 8px 30px rgba(58, 42, 26, 0.08);
  --shadow-hover: 0 12px 40px rgba(91, 163, 201, 0.20);
  --shadow-glow:  0 0 30px rgba(245, 183, 49, 0.3);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --transition-base: 0.3s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-secondary); font-size: 1.05rem; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-badge--purple {
  background: var(--purple-pale);
  color: var(--purple);
}
.section-badge--gold {
  background: rgba(245, 183, 49, 0.15);
  color: var(--gold-dark);
}
.section-badge--sky {
  background: var(--sky-pale);
  color: #3A8FB7;
}

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

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

section {
  padding: var(--section-padding);
  position: relative;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--purple);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.3s;
}
.skip-link:focus { top: 10px; }

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 248, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--purple);
  z-index: 101;
}
.logo img {
  height: 55px;
  width: auto;
}
.site-header.scrolled .logo img {
  height: 45px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  transition: all var(--transition-base);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--purple-pale);
  color: var(--purple);
}

/* Nav CTA */
.nav-phone {
  font-weight: 700;
  color: var(--purple);
  margin-left: 8px;
  font-size: 0.95rem;
}
.nav-cta {
  margin-left: 8px;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--purple-light);
  color: var(--purple);
  font-size: 1.5rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 101;
  transition: all var(--transition-base);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '✨';
  position: absolute;
  right: -30px;
  opacity: 0;
  transition: all 0.4s var(--ease-bounce);
}
.btn:hover::after {
  right: 12px;
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 183, 49, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}
.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 63, 160, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-light);
  color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(170deg, var(--cream) 0%, var(--sky-pale) 50%, var(--purple-pale) 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Sparkle particles */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: sparkleFloat 6s ease-in-out infinite;
}
.hero::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 216, 234, 0.3) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}
.hero::after {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 183, 49, 0.15) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: 3s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--warm-white);
  border: 2px solid var(--gold-light);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 900;
}
.hero h1 .highlight {
  color: var(--purple);
  position: relative;
}
.hero h1 .highlight::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -25px;
  font-size: 1.2rem;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image with Blob */
.hero-image {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  border-radius: var(--radius-blob);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--purple-light) 100%);
  border-radius: var(--radius-blob);
  opacity: 0.3;
  z-index: -1;
  animation: blobMorph 8s ease-in-out infinite;
}

/* Floating sparkle decorations */
.sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkleFloat 4s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.sparkle-1 { top: 5%; right: 10%; animation-delay: 0s; }
.sparkle-2 { top: 40%; right: 3%; animation-delay: 1.5s; font-size: 1rem; }
.sparkle-3 { bottom: 15%; left: 45%; animation-delay: 3s; font-size: 2rem; }
.sparkle-4 { top: 20%; left: 40%; animation-delay: 0.5s; font-size: 0.8rem; }

/* Floating review card */
.hero-review-float {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--warm-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatUpDown 5s ease-in-out infinite;
}
.hero-review-float .stars { color: var(--gold); font-size: 0.9rem; }
.hero-review-float .review-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   WAVE DIVIDERS
   ═══════════════════════════════════════════ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-divider--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--warm-white);
  padding: 50px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-icon--purple { background: var(--purple-pale); }
.trust-icon--gold { background: rgba(245, 183, 49, 0.15); }
.trust-icon--sky { background: var(--sky-pale); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
  background: var(--cream);
  padding: var(--section-padding);
}

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--sky));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.step-card:hover::before { opacity: 1; }

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  color: #fff;
}
.step-card:nth-child(1) .step-number { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.step-card:nth-child(2) .step-number { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.step-card:nth-child(3) .step-number { background: linear-gradient(135deg, var(--sky), #7BC4D9); }

.step-wand {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
  transition: all var(--transition-base);
}
.step-card:hover .step-wand {
  opacity: 1;
  transform: rotate(15deg);
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}
.step-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES / WHAT WE DO
   ═══════════════════════════════════════════ */
.services {
  background: var(--sky-pale);
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-icon--purple { background: var(--purple-pale); }
.service-icon--gold { background: rgba(245, 183, 49, 0.15); }
.service-icon--sky { background: var(--sky-pale); }

.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   ABOUT / STORY SECTION
   ═══════════════════════════════════════════ */
.about-section {
  background: var(--cream);
  padding: var(--section-padding);
}

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

.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.about-image-wrapper::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--purple-pale) 100%);
  border-radius: var(--radius-blob);
  z-index: -1;
  opacity: 0.5;
}

.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PAIN SECTION (emotional hook)
   ═══════════════════════════════════════════ */
.pain-section {
  background: linear-gradient(170deg, #FFF3E0 0%, var(--cream) 100%);
  padding: var(--section-padding);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pain-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.pain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.pain-stat {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.pain-stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.pain-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple);
}
.pain-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   BEFORE & AFTER
   ═══════════════════════════════════════════ */
.before-after {
  background: var(--warm-white);
  padding: var(--section-padding);
}

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

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
  transition: all 0.4s var(--ease-smooth);
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ba-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.ba-card-body {
  padding: 24px;
}
.ba-card-body h3 { margin-bottom: 8px; }

/* ═══════════════════════════════════════════
   URGENCY BANNER
   ═══════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(135deg, #E65100 0%, #BF360C 100%);
  padding: 28px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: 50%;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.urgency-text {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}
.urgency-text strong {
  color: var(--gold-light);
}
.urgency-banner .btn {
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  background: linear-gradient(170deg, var(--purple-pale) 0%, var(--sky-pale) 100%);
  padding: var(--section-padding);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--purple-light);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-secondary);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--purple-pale);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-pet {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing-section {
  background: var(--cream);
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
  border: 2px solid transparent;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.pricing-card:nth-child(1) .pricing-icon { background: var(--sky-pale); }
.pricing-card:nth-child(2) .pricing-icon { background: rgba(245, 183, 49, 0.15); }
.pricing-card:nth-child(3) .pricing-icon { background: var(--purple-pale); }

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple);
  margin: 16px 0;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  text-align: left;
  margin: 24px 0;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--brown-pale);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✨';
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════ */
.areas-section {
  background: var(--sky-pale);
  padding: var(--section-padding);
}

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

.area-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.area-card .area-icon {
  font-size: 2rem;
  margin-bottom: 4px;
  line-height: 1;
}
.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brown-dark, #5c3d2e);
  margin: 0 0 8px 0;
}
.area-card p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted, #888);
  line-height: 1.6;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--purple);
  color: #fff;
}
.area-card:hover h3,
.area-card:hover p {
  color: #fff;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 183, 49, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 216, 234, 0.15) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-section .btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown);
}
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; }
.contact-item a {
  color: var(--purple);
  font-weight: 600;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--brown-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--warm-white);
  color: var(--text-primary);
  transition: all var(--transition-base);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .logo img {
  height: 60px;
  filter: brightness(1.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}
.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--warm-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 12px 20px;
  justify-content: center;
  gap: 12px;
}
.sticky-cta .btn { flex: 1; max-width: 200px; padding: 12px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-smooth);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-15px) rotate(10deg); opacity: 1; }
}

@keyframes blobMorph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

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

@keyframes fairyDust {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-60px) scale(0); opacity: 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 183, 49, 0.3); }
  50% { box-shadow: 0 0 40px rgba(245, 183, 49, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Hero parallax magic */
.hero-magic-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.magic-particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: fairyDust 3s ease-in-out infinite;
}
.magic-particle:nth-child(1) { width: 4px; height: 4px; left: 20%; bottom: 0; animation-delay: 0s; animation-duration: 4s; }
.magic-particle:nth-child(2) { width: 3px; height: 3px; left: 40%; bottom: 0; animation-delay: 1s; animation-duration: 3.5s; }
.magic-particle:nth-child(3) { width: 5px; height: 5px; left: 60%; bottom: 0; animation-delay: 2s; animation-duration: 5s; }
.magic-particle:nth-child(4) { width: 3px; height: 3px; left: 80%; bottom: 0; animation-delay: 0.5s; animation-duration: 3s; }
.magic-particle:nth-child(5) { width: 4px; height: 4px; left: 10%; bottom: 0; animation-delay: 1.5s; animation-duration: 4.5s; }
.magic-particle:nth-child(6) { width: 2px; height: 2px; left: 70%; bottom: 0; animation-delay: 2.5s; animation-duration: 3.8s; }

/* ═══════════════════════════════════════════
   PAGE-SPECIFIC: About Page
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--sky-pale) 100%);
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.15rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card-body {
  padding: 24px;
  text-align: center;
}
.team-card h3 { margin-bottom: 4px; }
.team-card p { font-size: 0.9rem; color: var(--purple); font-weight: 600; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease-smooth);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile First Rewrite
   ═══════════════════════════════════════════ */

/* ─── Tablet Landscape (≤ 1024px) ─── */
@media (max-width: 1024px) {

  /* Hero: empilhar verticalmente e centralizar */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-buttons { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-image  { max-width: 500px; margin: 0 auto; }

  /* Tipografia responsiva */
  h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }

  /* Grids que passam para 2 colunas */
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .ba-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* About / Pain image centralizada */
  .about-image-wrapper,
  .pain-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ─── Tablet Portrait / Mobile (≤ 768px) ─── */
@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  /* ── Mobile Nav Drawer ── */
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease-smooth);
    gap: 0;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .nav-links a {
    display: block;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    min-height: 44px; /* touch target */
  }
  .nav-phone {
    margin: 20px 0 0;
    font-size: 1.1rem;
  }
  .nav-cta {
    margin: 16px 0 0;
    width: 100%;
    text-align: center;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 99;
  }
  .nav-overlay.active { display: block; }

  /* ── Hero Mobile ── */
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-review-float { display: none; }

  /* ── Grids colapsam para 1 coluna ── */
  .steps-grid    { grid-template-columns: 1fr; gap: 24px; }
  .ba-grid       { grid-template-columns: 1fr; gap: 24px; }
  .pain-grid     { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid  { grid-template-columns: 1fr; gap: 24px; }

  /* Areas grid → 2 colunas em tablet */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Pricing: cards lado a lado em telas ~600-768 */
  @media (min-width: 520px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── Footer Mobile ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
  .footer-col ul li { margin-bottom: 0; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* ── Trust Bar Mobile ── */
  .trust-items {
    gap: 24px;
  }

  /* ── Urgency Banner ── */
  .urgency-inner { flex-direction: column; gap: 14px; }
  .urgency-text { font-size: 1rem; }

  /* ── Section headings ── */
  .section-header { margin-bottom: 32px; }
  .section-tag { font-size: 0.75rem; padding: 5px 14px; }

  /* ── CTA Section ── */
  .cta-section { padding: 60px 0; }
  .cta-section p { font-size: 1rem; }

  /* ── Page Hero (about, etc.) ── */
  .page-hero { padding: 130px 0 60px; }
  .page-hero p { font-size: 1rem; }

  /* ── Buttons com touch targets adequados ── */
  .btn {
    min-height: 44px;
    padding: 13px 26px;
  }

  /* ── Sticky Mobile CTA ── */
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 90px; }

  /* ── Redes de reviews ── */
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── Smartphone (≤ 480px) ─── */
@media (max-width: 480px) {
  :root { --section-padding: 50px 0; }

  /* Tipografia ainda menor */
  .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  /* Hero stats empilham */
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-stat-value { font-size: 1.5rem; }

  /* Botões full‑width */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
  .cta-buttons .btn { width: 100%; }

  /* Trust bar empilha */
  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* About features → 1 coluna */
  .about-features { grid-template-columns: 1fr; }

  /* Pain stats → 1 coluna */
  .pain-stats { grid-template-columns: 1fr; }

  /* Areas grid compacta */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .area-card { padding: 20px 16px; }
  .area-card h3 { font-size: 1rem; }
  .area-card p { font-size: 0.82rem; }

  /* Google reviews → 1 coluna  */
  .google-reviews-grid { grid-template-columns: 1fr; }

  /* Service cards padding menor */
  .service-card { padding: 28px 20px; }
  .service-icon { width: 56px; height: 56px; font-size: 1.6rem; }

  /* Step cards padding menor */
  .step-card { padding: 30px 20px; }
  .step-number { width: 50px; height: 50px; font-size: 1.3rem; }

  /* Pricing cards */
  .pricing-card { padding: 30px 20px; }
  .pricing-amount { font-size: 2rem; }
  .pricing-icon { width: 56px; height: 56px; font-size: 1.6rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Contact info */
  .contact-icon { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Footer compacto */
  .footer-brand .logo img { height: 48px; }
  .footer-brand p { font-size: 0.85rem; }
  .site-footer { padding: 40px 0 90px; }

  /* Container padding */
  .container { padding: 0 16px; }
}

/* ─── Mini Phone (≤ 360px) ─── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero { padding: 110px 0 50px; }

  .btn { font-size: 0.85rem; padding: 12px 20px; }
  .btn-lg { font-size: 0.9rem; padding: 14px 24px; }

  .areas-grid { grid-template-columns: 1fr; }
  .step-card { padding: 24px 16px; }
  .pricing-card { padding: 24px 16px; }
  .contact-form { padding: 20px 16px; }

  .section-header h2 { font-size: 1.3rem; }
}

/* ── Google Reviews Section ── */
.google-reviews-summary {
  text-align: center;
}

.google-rating-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.google-logo-icon {
  height: 28px;
  width: auto;
}

.google-rating-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-stars {
  color: #FBBC05;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.google-stars-sm {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.google-rating-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .google-reviews-grid { grid-template-columns: 1fr; }
}

.google-review-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.google-review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.google-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.google-reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.google-reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.google-review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-review-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.google-review-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.google-review-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Testimonial section Google styles */
.testimonial-stars-google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

/* ============================================
   HOW IT WORKS — Process Steps
   ============================================ */

/* Page Hero for Process */
.page-hero--process {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 40%, var(--gold) 100%);
  text-align: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero--process::before {
  content: '🦷';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}
.page-hero--process h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.15;
}
.page-hero--process p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

/* Process Intro */
.process-intro {
  padding: 60px 0 20px;
}
.process-intro__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 2rem;
}
.process-intro__icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--sky-pale);
  border-radius: 50%;
  animation: iconBounce 3s infinite ease-in-out;
}
.process-intro__icons span:nth-child(2) { animation-delay: .3s; }
.process-intro__icons span:nth-child(3) { animation-delay: .6s; }
.process-intro__icons span:nth-child(4) { animation-delay: .9s; }
.process-intro__icons span:nth-child(5) { animation-delay: 1.2s; }

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

.process-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}
.process-intro .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Process Steps Container */
.process-steps {
  padding: 40px 0 60px;
}

/* Individual Step */
.process-step {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--purple) 100%);
  border-radius: 4px 0 0 4px;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Reversed layout */
.process-step--reversed {
  flex-direction: row-reverse;
}
.process-step--reversed::before {
  left: auto;
  right: 0;
  border-radius: 0 4px 4px 0;
}

/* Step Image */
.process-step__image {
  flex: 0 0 380px;
  max-width: 380px;
}
.process-step__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease;
}
.process-step:hover .process-step__image img {
  transform: scale(1.03);
}

/* Step Content */
.process-step__content {
  flex: 1;
  position: relative;
}

/* Step Number */
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(245, 183, 49, 0.35);
  margin-bottom: 12px;
}

/* Step Icon */
.process-step__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Step Title */
.process-step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* Step Description */
.process-step__content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Finale CTA Section */
.process-finale {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sky-pale) 100%);
}
.process-finale__image-wrapper {
  max-width: 320px;
  margin: 0 auto 30px;
}
.process-finale__image {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-card), 0 0 40px rgba(91, 163, 201, 0.15);
  border: 5px solid #fff;
  aspect-ratio: 1;
  object-fit: cover;
}
.process-finale__content {
  max-width: 550px;
  margin: 0 auto;
}
.process-finale__emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}
.process-finale h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 12px;
}
.process-finale p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Responsive: Process Steps ── */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column !important;
    padding: 24px;
    gap: 24px;
  }
  .process-step__image {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .process-step__image img {
    height: 220px;
  }
  .process-step::before {
    width: 100%;
    height: 4px;
    left: 0;
    right: auto;
    border-radius: 4px 4px 0 0;
  }
  .process-finale__image-wrapper {
    max-width: 240px;
  }
}
