/*================================================
  Kakebo AI — New Design System
  Brand Colors: Yellow #ffdb00 · Purple/Magenta #ff20cd · Dark Purple #730097
  Theme: Light, warm, modern, positive
==================================================*/

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

/* ─── Design Tokens ─── */
:root {
  /* Brand */
  --yellow:        #ffdb00;
  --yellow-light:  #fff8cc;
  --yellow-dark:   #e6c400;
  --purple:        #ff20cd;
  --purple-dark:   #730097;
  --purple-soft:   #fce7fa;
  --gradient:      linear-gradient(135deg, #ffdb00 0%, #ff20cd 100%);
  --gradient-v:    linear-gradient(180deg, #ffdb00 0%, #ff20cd 100%);

  /* Neutral / Surface */
  --white:         #ffffff;
  --surface:       #fdfcff;
  --surface-alt:   #fff9fe;
  --surface-card:  #ffffff;
  --border:        #ede8f5;
  --border-light:  #f5f0fc;

  /* Text */
  --text:          #1a0a2e;
  --text-muted:    #7a6e8a;
  --text-light:    #b0a8c0;

  /* Status */
  --success:       #22c55e;
  --success-soft:  #dcfce7;

  /* Typography */
  --font-display:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing */
  --section-py:    100px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --radius-pill:   999px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(115,0,151,0.06);
  --shadow-md:     0 8px 32px rgba(115,0,151,0.10);
  --shadow-lg:     0 20px 60px rgba(115,0,151,0.14);
  --shadow-card:   0 4px 24px rgba(115,0,151,0.08);
  --shadow-yellow: 0 8px 24px rgba(255,219,0,0.35);
  --shadow-purple: 0 8px 32px rgba(255,32,205,0.25);

  /* Transitions */
  --transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: transparent; font-family: var(--font-body); }

/* Prevent Iubenda widget & preferences button from causing horizontal overflow on mobile */
#iubenda-cs-banner,
.iubenda-cs-preferences-link,
.iubenda-tp-btn {
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Utility ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: 60px 0; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Full gradient span for hero title lines - spans both lines as one continuous gradient */
.accent-full-gradient {
  display: block;
  background: linear-gradient(135deg, #ffdb00 0%, #ff98e0 50%, #ff20cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 100% 100%;
}
.text-center { text-align: center; }

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-dark);
  background: var(--purple-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,32,205,0.35);
  color: var(--text);
}
.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple-soft);
  transform: translateY(-2px);
  color: var(--purple-dark);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  color: var(--text);
}

/* ─── Scroll-reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────────────────
   LANGUAGE BANNER
─────────────────────────────────────────────────────────── */
#language-banner {
  display: none;
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #1a0a2e 0%, #3d0060 100%);
  backdrop-filter: blur(20px);
  color: white;
  z-index: 10000;
  border-bottom: 1px solid rgba(255,219,0,0.3);
}
.language-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.banner-message {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
}
.language-dropdown {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,219,0,0.15);
  border: 1px solid rgba(255,219,0,0.4);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-display);
  cursor: pointer;
  outline: none;
  min-width: 150px;
}
.language-dropdown option { background: #1a0a2e; }
.banner-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.banner-close:hover { background: rgba(255,255,255,0.2); color: white; }

/* ─────────────────────────────────────────────────────────
   PRELOADER
─────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--yellow);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────────
   BACK TO TOP
─────────────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-purple);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); }

/* ─────────────────────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 20px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.scrolled {
  background: var(--yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo img { height: 42px; }
.navbar-logo:hover { opacity: 0.9; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu a:hover { background: rgba(115,0,151,0.07); color: var(--purple-dark); }
/* Active link styling (overriding inline pill style with underline) */
.nav-menu a[style*="background: rgba(115, 0, 151, 0.07)"] {
  background: transparent !important;
  border-bottom: 2px solid var(--purple-dark) !important;
  border-radius: 0 !important;
  padding-bottom: 4px !important;
  color: var(--purple-dark) !important;
}
.nav-menu a.nav-cta {
  background: var(--purple-dark);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.nav-menu a.nav-cta:hover {
  background: var(--purple);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
  color: white;
}

/* When navbar is transparent (top of page), white text for contrast on dark hero */
.navbar:not(.scrolled) .nav-menu a { color: white; }
.navbar:not(.scrolled) .nav-menu a:hover { background: rgba(255,255,255,0.15); color: white; }
.navbar:not(.scrolled) .nav-menu a.nav-cta { background: var(--yellow); color: var(--text); }
.navbar:not(.scrolled) .nav-menu a.nav-cta:hover { background: white; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar:not(.scrolled) .nav-toggle span { background: white; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─────────────────────────────────────────────────────────
   HERO SECTION
─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #1a0a2e 0%, #3d0060 50%, #730097 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,219,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,32,205,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,219,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-blob 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-blob {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,219,0,0.15);
  border: 1px solid rgba(255,219,0,0.35);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-badge span { font-size: 1rem; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 800;
}
.hero-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-subtitle .strikethrough {
  text-decoration: line-through;
  color: rgba(255,255,255,0.45);
  text-decoration-color: var(--yellow);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-btn {
  display: block;
  transition: var(--transition);
}
.store-btn img { height: 50px; width: auto; border-radius: 10px; }
.store-btn:hover { transform: translateY(-3px); filter: brightness(1.05); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero-app-frame {
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.hero-app-frame img {
  max-height: 540px;
  width: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.4));
}
.hero-app-frame.double-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.hero-app-frame.double-phones img {
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}
.hero-app-frame.double-phones img.phone-left {
  max-height: 500px;
}
.hero-app-frame.double-phones img.phone-right {
  max-height: 560px;
}
.hero-app-frame.double-phones .phone-left {
  position: relative;
  z-index: 1;
  top: 25px;
}
.hero-app-frame.double-phones .phone-right {
  position: relative;
  z-index: 2;
  margin-left: -12%;
  top: -25px;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* Floating chips on hero */
.hero-chip {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  z-index: 3;
  white-space: nowrap;
}
.hero-chip .chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-chip-1 { left: -30px; top: 20%; animation: float 5s ease-in-out infinite 0.5s; }
.hero-chip-2 { right: -20px; bottom: 30%; animation: float 5.5s ease-in-out infinite 1s; }

/* ─── Speech bubbles (voice entry examples) ─── */
.hero-bubble {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text);
  z-index: 3;
  white-space: nowrap;
  max-width: 220px;
}
/* Tail pointing left (for bubbles on the right side) */
.hero-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 22px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid white;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.08));
}
.hero-bubble-1 {
  left: -24px;
  top: 48%;
  animation: float 6s ease-in-out infinite 1.2s;
}
/* bubble-2 tail points right */
.hero-bubble-2::before {
  left: auto;
  right: 22px;
}
.hero-bubble-2 {
  right: -18px;
  bottom: 14%;
  animation: float 6.5s ease-in-out infinite 0.8s;
}

.bubble-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.bubble-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.bubble-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 2px;
}
.bubble-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Reusable Laurel Wreath Components ─── */
.laurel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.laurel-wreath {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.laurel-wreath svg {
  width: 100%;
  height: 100%;
}
.laurel-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.laurel-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.laurel-subtitle {
  font-family: var(--font-body);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────
   SOCIAL PROOF STRIP
─────────────────────────────────────────────────────────── */
.social-proof {
  background: var(--yellow);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof .laurel-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.social-proof .laurel-wreath {
  width: 28px;
  height: 44px;
  color: var(--text); /* Dark purple/black on yellow background */
}
.social-proof .laurel-wreath svg {
  width: 100%;
  height: 100%;
}
.social-proof .laurel-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.social-proof .laurel-title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.social-proof .laurel-subtitle {
  color: rgba(26, 10, 46, 0.7);
  font-family: var(--font-body);
  font-size: 0.68rem;
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.15);
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
─────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--surface-alt);
  padding: var(--section-py) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid transparent;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:nth-child(1) { border-top-color: var(--yellow); }
.testimonial-card:nth-child(2) { border-top-color: #fd6464; }
.testimonial-card:nth-child(3) { border-top-color: var(--purple); }
.testimonial-card:nth-child(4) { border-top-color: #8b68ef; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--yellow-dark);
  font-size: 1rem;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-author span {
  display: block;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}
.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3.5rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────
   KAKEBO SECTION (What is Kakebo)
─────────────────────────────────────────────────────────── */
.kakebo-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.kakebo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.kakebo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.kakebo-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.kakebo-card:hover::before { transform: scaleX(1); }
.kakebo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-bottom-color: transparent; }

.kakebo-number {
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.18;
  position: absolute;
  right: 24px;
  top: 20px;
}
.kakebo-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--purple-soft);
  padding: 10px;
}
.kakebo-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.kakebo-card p { font-size: 0.95rem; }

/* ─────────────────────────────────────────────────────────
   HOW IT HELPS
─────────────────────────────────────────────────────────── */
.how-it-helps {
  background: linear-gradient(160deg, #fce7fa 0%, #fff8cc 100%);
  padding: var(--section-py) 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.how-image {
  position: relative;
}
.how-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: contain;
}
.how-image.double-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 560px;
}
.how-image.double-phones .about-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, #fce7fa 0%, #f7c5f2 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50% 50% 20% 50% / 50% 50% 20% 50%;
}
.how-image.double-phones img {
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  position: relative;
  transition: transform 0.3s ease;
}
.how-image.double-phones img.phone-back {
  max-height: 530px;
  z-index: 1;
  transform: translateX(10%) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.how-image.double-phones img.phone-front {
  max-height: 480px;
  z-index: 2;
  margin-left: -12%;
  transform: translateX(5%);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
}
@media (max-width: 768px) {
  .how-image.double-phones {
    min-height: 420px;
  }
  .how-image.double-phones .about-bg-blob {
    width: 320px;
    height: 320px;
  }
  .how-image.double-phones img.phone-back {
    max-height: 390px;
  }
  .how-image.double-phones img.phone-front {
    max-height: 350px;
  }
}

.how-content h3 { margin-bottom: 20px; }
.how-content > p { margin-bottom: 32px; }

.how-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.how-item-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}
.how-item-icon img { width: 100%; height: 100%; object-fit: contain; }
.how-item-text h6 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.how-item-text p { font-size: 0.9rem; }

/* ─────────────────────────────────────────────────────────
   AWARENESS SECTION (2nd about)
─────────────────────────────────────────────────────────── */
.awareness-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.awareness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.awareness-content h3 { margin-bottom: 20px; }
.awareness-content h3 .highlight { color: var(--purple); }
.awareness-content > p { margin-bottom: 32px; }
.awareness-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.awareness-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.awareness-item:nth-child(2) { border-left-color: var(--purple); }
.awareness-item h6 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.awareness-item p { font-size: 0.9rem; }

.awareness-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: contain;
}
.awareness-image.double-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 600px;
}
.awareness-image.double-phones .about-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 20% 50% 50% 50% / 20% 50% 50% 50%;
}
.awareness-image.double-phones img.phone-single {
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  position: relative;
  z-index: 1;
  max-height: 550px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.18));
}
@media (max-width: 768px) {
  .awareness-image.double-phones {
    min-height: 430px;
  }
  .awareness-image.double-phones .about-bg-blob {
    width: 360px;
    height: 360px;
  }
  .awareness-image.double-phones img.phone-single {
    max-height: 390px;
  }
}

/* ─────────────────────────────────────────────────────────
   FEATURES SECTION
─────────────────────────────────────────────────────────── */
.features-section {
  background: #f7f4ff;
  padding: var(--section-py) 0;
}
.features-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-muted);
  border: 1px solid rgba(115, 0, 151, 0.12);
  box-shadow: var(--shadow-sm);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient) border-box;
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: var(--shadow-purple);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card.free { border-bottom: 5px solid var(--yellow); }
.feature-card.premium { border-bottom: 5px solid var(--purple); }
.feature-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.feature-badge.free { background: var(--yellow-light); color: var(--yellow-dark); }
.feature-badge.premium { background: var(--purple-soft); color: var(--purple-dark); }

.feature-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}
.feature-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.85rem; }
.feature-card.hidden { display: none; }

/* ─────────────────────────────────────────────────────────
   DOWNLOAD CTA
─────────────────────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(135deg, #1a0a2e 0%, #3d0060 60%, #730097 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,219,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.download-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,32,205,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.download-visual img {
  max-height: 380px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}
.download-content h3 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.download-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 420px;
}

/* ─────────────────────────────────────────────────────────
   PRICING SECTION
─────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.free-plan { border: 2px solid var(--yellow); }
.pricing-card.premium-plan {
  background: linear-gradient(160deg, #1a0a2e 0%, #3d0060 100%);
  border: 2px solid var(--purple);
}
.pricing-card.free-plan .plan-tag {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}
.pricing-card.premium-plan .plan-tag {
  background: rgba(255,32,205,0.2);
  color: var(--purple);
}
.plan-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.plan-name {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.pricing-card.free-plan .plan-name { color: var(--text); }
.pricing-card.premium-plan .plan-name { color: white; }
.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-card.free-plan .plan-price { color: var(--text); }
.pricing-card.premium-plan .plan-price { color: var(--yellow); }
.plan-price small { font-size: 1rem; font-weight: 400; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}
.pricing-card.free-plan .plan-feature { color: var(--text-muted); }
.pricing-card.premium-plan .plan-feature { color: rgba(255,255,255,0.82); }
.plan-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
}
.pricing-card.free-plan .plan-feature-icon {
  background: var(--success-soft);
  color: var(--success);
}
.pricing-card.premium-plan .plan-feature-icon {
  background: rgba(255,219,0,0.2);
  color: var(--yellow);
}
.plan-footnote { font-size: 0.75rem; margin-top: 12px; }
.pricing-card.premium-plan .plan-footnote { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a0a2e;
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }

.footer-col h6 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--yellow); }

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin: 0 auto 36px; }
  .store-buttons { justify-content: center; }
  .hero-chip { display: none; }
  .hero-bubble { display: none; }
  .laurels-row { justify-content: center; }
  .hero-blob { display: none; }

  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-image { order: -1; }

  .awareness-grid { grid-template-columns: 1fr; gap: 48px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-visual { order: -1; }
  .download-content p { margin: 0 auto 36px; }
  .pricing-grid { max-width: 640px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kakebo-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 8999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: var(--text) !important;
    display: inline-block;
  }
  .nav-menu a[style*="background: rgba(115, 0, 151, 0.07)"] {
    background: transparent !important;
    border-bottom: 2px solid var(--purple-dark) !important;
    border-radius: 0 !important;
    padding-bottom: 4px !important;
    color: var(--purple-dark) !important;
  }
  .nav-menu a.nav-cta {
    background: var(--purple-dark) !important;
    color: white !important;
    border-radius: var(--radius-pill);
    padding: 12px 32px;
  }
  .nav-menu a.nav-cta:hover {
    background: var(--purple) !important;
    color: white !important;
  }
  .nav-toggle { display: flex; z-index: 9001; }

  .hero { padding: 120px 0 60px; }
  .hero-app-frame img { max-height: 320px; }
  .hero-app-frame.double-phones img.phone-left {
    max-height: 310px;
  }
  .hero-app-frame.double-phones img.phone-right {
    max-height: 345px;
  }
  .hero-app-frame.double-phones .phone-left {
    top: 15px;
  }
  .hero-app-frame.double-phones .phone-right {
    top: -15px;
    margin-left: -15%;
  }

  .social-proof-inner { gap: 24px; }
  .proof-divider { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .language-banner-content { flex-direction: column; align-items: flex-start; }

  .how-item-icon { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn img { height: 44px; }
  .section-header { margin-bottom: 40px; }
  .pricing-card { padding: 36px 28px; }
}

/* ─────────────────────────────────────────────────────────
   BLOG & INNER PAGES
─────────────────────────────────────────────────────────── */.inner-page-banner {
  background: linear-gradient(150deg, #1a0a2e 0%, #3d0060 100%);
  padding: 140px 0 80px;
  color: white;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--yellow);
  overflow: hidden;
}
.inner-page-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 219, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.inner-page-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 32, 205, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.inner-page-banner .container {
  position: relative;
  z-index: 2;
}

.inner-page-banner h1,
.inner-page-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.inner-page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 500;
}
.inner-page-banner .breadcrumb a {
  color: var(--yellow);
  transition: var(--transition);
}
.inner-page-banner .breadcrumb a:hover {
  color: white;
}
.inner-page-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,0.4);
}

/* Blog grid & card styles */
.blog-section {
  padding: 100px 0;
  background: var(--surface);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-soft);
}
.blog-card .blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card .blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}
.blog-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card .read-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple-dark);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card .read-more::after {
  content: "→";
  transition: transform 0.2s ease;
}
.blog-card .read-more:hover {
  color: var(--purple);
}
.blog-card .read-more:hover::after {
  transform: translateX(4px);
}

/* Article detail styles */
.article-detail {
  padding: 100px 0;
  background: var(--surface);
}
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.article-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.article-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.article-content h3, .article-content h4 {
  margin: 32px 0 16px;
  color: var(--text);
}
.article-content h5 {
  margin: 32px 0 16px;
  color: var(--purple-dark);
  font-size: 1.35rem;
  font-weight: 700;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.article-content blockquote {
  border-left: 4px solid var(--purple);
  background: var(--purple-soft);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}
.article-content blockquote p {
  color: var(--purple-dark);
  margin-bottom: 0;
  font-size: 1.1rem;
}
.article-content ul {
  margin: 24px 0 32px 24px;
  list-style: disc;
}
.article-content li {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.article-share {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-share span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}
.article-share .share-links {
  display: flex;
  gap: 12px;
}
.article-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.article-share .share-btn:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────
   FAQ SECTION (ACCORDION)
─────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--surface-alt);
  padding: var(--section-py) 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(255, 32, 205, 0.3);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--purple-dark);
}
.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}
.faq-item.active .faq-icon-box {
  background: var(--purple);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ─── AEO Snippet Bait ─── */
.aeo-snippet-bait {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow-dark);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.aeo-snippet-bait p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.aeo-snippet-bait strong {
  color: var(--purple-dark);
  font-weight: 700;
}
