/* ========================================
   GUIANDO NO JAPÃO — CEREJEIRAS 🌸
   Sakura Season Landing Page
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Sakura Palette — adapted from brand purple */
  --sakura: #E8729A;
  --sakura-light: #F7C5D6;
  --sakura-lighter: #FFF0F5;
  --sakura-dark: #D94F8B;
  --sakura-deep: #B83B73;

  /* Brand Purple (maintained) */
  --primary: #8B2A8B;
  --primary-light: #C9A3D6;
  --primary-dark: #451d4d;
  --primary-darker: #2D1233;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #FFFBFD;
  --gray-50: #FDF5F8;
  --gray-100: #F5ECF0;
  --gray-200: #E8D9E0;
  --gray-300: #D1C0CA;
  --gray-400: #9E8A95;
  --gray-500: #736370;
  --gray-600: #4A3C48;
  --gray-700: #2D2530;
  --gray-800: #1A151C;
  --gray-900: #0D0A0E;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(139, 42, 139, 0.06);
  --shadow-md: 0 4px 12px rgba(139, 42, 139, 0.08);
  --shadow-lg: 0 8px 24px rgba(139, 42, 139, 0.12);
  --shadow-xl: 0 16px 48px rgba(139, 42, 139, 0.16);
  --shadow-sakura: 0 8px 32px rgba(232, 114, 154, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-800);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--gray-500);
  line-height: 1.7;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sakura);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 253, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 114, 154, 0.12);
  transition: var(--transition-base);
}

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

.logo img {
  height: 80px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--sakura);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  letter-spacing: 0.01em;
}

.btn-sakura {
  background: linear-gradient(135deg, var(--sakura) 0%, var(--sakura-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 114, 154, 0.35);
}

.btn-sakura:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232, 114, 154, 0.45);
}

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

.btn-outline-sakura:hover {
  background: var(--sakura-lighter);
  border-color: var(--sakura);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

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

/* ========================================
   BADGES
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.badge-sakura {
  background: linear-gradient(135deg, rgba(232, 114, 154, 0.15), rgba(139, 42, 139, 0.1));
  color: var(--sakura-dark);
}

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

.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;

  /* mantém seu degradê base */
  background: linear-gradient(135deg, var(--primary-darker) 0%, #3a1542 40%, #4a2050 100%);
}

/* IMAGEM */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./hero-bg.jpg") center/cover no-repeat;
  opacity: 0.35;
  filter: saturate(1.2);
  z-index: 0;
  pointer-events: none;
}

/* OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 18, 51, 0.6) 0%,
    rgba(45, 18, 51, 0.3) 40%,
    rgba(45, 18, 51, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* CONTEÚDO SEMPRE ACIMA */
.hero .container,
.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero h1 .serif {
  color: var(--sakura-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
  color: var(--sakura-light);
}

/* ========================================
   PETAL RAIN ANIMATION (CSS-only)
   ======================================== */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -30px;
  width: 14px;
  height: 14px;
  background: radial-gradient(ellipse at 30% 30%, #FFB7D1 0%, #F2A6C2 50%, #E8729A 100%);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: petal-fall linear infinite;
  filter: blur(0.3px);
}

@keyframes petal-fall {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(0deg) scale(0.8);
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(120px) translateY(100vh) rotate(720deg) scale(0.4);
  }
}

.petal:nth-child(1) {
  left: 8%;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 12px;
  height: 12px;
}

.petal:nth-child(2) {
  left: 22%;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 16px;
  height: 16px;
}

.petal:nth-child(3) {
  left: 38%;
  animation-duration: 11s;
  animation-delay: 4s;
  width: 10px;
  height: 10px;
}

.petal:nth-child(4) {
  left: 52%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 14px;
  height: 14px;
}

.petal:nth-child(5) {
  left: 66%;
  animation-duration: 13s;
  animation-delay: 3s;
  width: 12px;
  height: 12px;
}

.petal:nth-child(6) {
  left: 78%;
  animation-duration: 16s;
  animation-delay: 5s;
  width: 18px;
  height: 18px;
}

.petal:nth-child(7) {
  left: 90%;
  animation-duration: 12s;
  animation-delay: 2.5s;
  width: 11px;
  height: 11px;
}

.petal:nth-child(8) {
  left: 15%;
  animation-duration: 14s;
  animation-delay: 6s;
  width: 13px;
  height: 13px;
}

.petal:nth-child(9) {
  left: 45%;
  animation-duration: 11s;
  animation-delay: 7s;
  width: 15px;
  height: 15px;
}

.petal:nth-child(10) {
  left: 70%;
  animation-duration: 15s;
  animation-delay: 3.5s;
  width: 10px;
  height: 10px;
}

.petal:nth-child(11) {
  left: 33%;
  animation-duration: 13s;
  animation-delay: 8s;
  width: 12px;
  height: 12px;
}

.petal:nth-child(12) {
  left: 82%;
  animation-duration: 14s;
  animation-delay: 1.5s;
  width: 16px;
  height: 16px;
}

/* ========================================
   COUNTDOWN SECTION (Bold Redesign)
   ======================================== */
.countdown-section {
  background: linear-gradient(135deg, #1a0a1e 0%, var(--primary-darker) 40%, #3a1542 80%, #1a0a1e 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(232, 114, 154, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 70% 60%, rgba(139, 42, 139, 0.1) 0%, transparent 60%);
  animation: countdown-shimmer 8s ease-in-out infinite alternate;
}

@keyframes countdown-shimmer {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, -20px);
  }
}

.countdown-wrapper {
  position: relative;
  text-align: center;
  z-index: 2;
}

.countdown-header {
  margin-bottom: var(--space-xl);
}

.countdown-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-sm);
  animation: pulse-dot 2s ease infinite;
}

.countdown-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.countdown-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 114, 154, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  min-width: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sakura-light), var(--sakura), var(--primary-light));
  opacity: 0.8;
}

.countdown-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 114, 154, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 114, 154, 0.2);
}

.countdown-number {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(232, 114, 154, 0.4);
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--sakura-light);
  text-transform: uppercase;
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sakura);
  opacity: 0.6;
  animation: blink-colon 1s steps(1) infinite;
  margin-top: -1rem;
}

@keyframes blink-colon {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.15;
  }
}

.countdown-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.01em;
}

.countdown-btn {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 60px rgba(37, 211, 102, 0.15);
  }
}

/* ========================================
   BENEFITS SECTION (Por que cerejeiras?)
   ======================================== */
.benefits-section {
  background: var(--off-white);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 114, 154, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sakura-light), var(--sakura), var(--primary-light));
  opacity: 0;
  transition: var(--transition-base);
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sakura-lighter), rgba(232, 114, 154, 0.12));
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--sakura);
  margin: 0 auto var(--space-md);
}

.benefit-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--gray-800);
}

.benefit-card p {
  font-size: 0.9375rem;
}

/* ========================================
   PAIN POINTS (Dores → Solução)
   ======================================== */
.pain-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--sakura-lighter) 100%);
}

.pain-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 114, 154, 0.08);
  transition: var(--transition-base);
}

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

.pain-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pain-icon.worry {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}

.pain-icon.solution {
  background: rgba(232, 114, 154, 0.1);
  color: var(--sakura);
}

.pain-content h4 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.pain-content p {
  font-size: 0.9375rem;
}

.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sakura-light), var(--sakura));
  border-radius: 50%;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
  align-self: center;
}

.pain-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.pain-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
}

/* ========================================
   ITINERARY / EXPERIENCES
   ======================================== */
.experience-section {
  background: linear-gradient(180deg, var(--primary-darker) 0%, #3a1542 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 114, 154, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.experience-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 114, 154, 0.3);
  box-shadow: 0 12px 40px rgba(232, 114, 154, 0.15);
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.experience-card-content {
  padding: var(--space-lg);
}

.experience-card h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.experience-card .location {
  font-size: 0.8125rem;
  color: var(--sakura-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}

.experience-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: var(--off-white);
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(232, 114, 154, 0.1), transparent);
}

.about-content {
  padding-left: var(--space-xl);
}

.about-highlight {
  background: linear-gradient(135deg, rgba(232, 114, 154, 0.06), rgba(139, 42, 139, 0.04));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--sakura);
}

.about-highlight p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(232, 114, 154, 0.12);
}

.founder-name {
  font-weight: 600;
  color: var(--sakura);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--sakura-lighter) 0%, var(--gray-50) 100%);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 114, 154, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '🌸';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  opacity: 0.3;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sakura-light);
}

.testimonial-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.testimonial-info p {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 114, 154, 0.08);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(232, 114, 154, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--sakura);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sakura-lighter);
  border-radius: 50%;
  font-size: 0.875rem;
  color: var(--sakura);
  flex-shrink: 0;
  transition: var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-darker) 0%, #3a1542 50%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 8 Q38 18 30 25 Q22 18 30 8Z' fill='rgba(232,114,154,0.04)'/%3E%3C/svg%3E") repeat;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(232, 114, 154, 0.15);
  border: 1px solid rgba(232, 114, 154, 0.3);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--sakura-light);
}

.cta-urgency i {
  animation: pulse-dot 2s ease infinite;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand img {
  height: 60px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.footer-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sakura-light);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sakura-light);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--sakura);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .grid-2 {
    gap: var(--space-2xl);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero-content {
    text-align: center;
    max-width: none;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .pain-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .pain-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .about-content {
    padding-left: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .countdown-boxes {
    gap: var(--space-sm);
  }

  .countdown-box {
    min-width: 70px;
    padding: var(--space-md) var(--space-sm);
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .countdown-section {
    padding: var(--space-xl) 0;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .petal-container {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
}