/* ==========================================================================
   FastDays Landing Page Stylesheet
   Designed with Apple Neo-Minimalism & Warm Emotional Memory Palettes
   ========================================================================== */

:root {
  /* Brand Primary & Accents */
  --primary: #FF5E62;
  --primary-rgb: 255, 94, 98;
  --primary-hover: #E0484C;
  --secondary: #FF9966;
  --secondary-rgb: 255, 153, 102;
  --accent-purple: #7F00FF;
  --accent-purple-light: #E0C3FC;
  --accent-blue: #3B82F6;
  --accent-amber: #F59E0B;
  --accent-green: #10B981;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #FF5E62 0%, #FF758C 50%, #FF9966 100%);
  --grad-purple: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%);
  --grad-soft: linear-gradient(180deg, #FFF7F5 0%, #FFFFFF 100%);
  --grad-card-glow: linear-gradient(135deg, rgba(255, 94, 98, 0.08) 0%, rgba(255, 153, 102, 0.04) 100%);
  --grad-dark-hero: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);

  /* Neutrals */
  --bg: #FAFAF9;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F5F5F4;
  --border: #E7E5E4;
  --border-focus: #FF5E62;

  --text-main: #1C1917;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  --text-inverse: #FFFFFF;

  /* Elevation / Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 16px -2px rgba(28, 25, 23, 0.08), 0 2px 6px -1px rgba(28, 25, 23, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(28, 25, 23, 0.10), 0 4px 12px -2px rgba(28, 25, 23, 0.05);
  --shadow-glow: 0 12px 30px rgba(255, 94, 98, 0.28);
  --shadow-card-hover: 0 20px 40px -12px rgba(255, 94, 98, 0.16);

  /* Layout & Geometry */
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   Typography & Badges
   ========================================================================== */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 94, 98, 0.1);
  border: 1px solid rgba(255, 94, 98, 0.2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header .section-tag {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 94, 98, 0.38);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-card-subtle);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.app-store-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transition: transform var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
  transform: translateY(-3px);
  background: #1E293B;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
  color: #FFFFFF;
}

.app-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.app-btn-text .subtext {
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-btn-text .store-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration-normal) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 94, 98, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  border: none;
  background: transparent;
}

.lang-btn:hover {
  color: var(--text-main);
}

.lang-btn.active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform var(--duration-fast), opacity var(--duration-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--grad-soft);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blur-1 {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 98, 0.18) 0%, rgba(255, 153, 102, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.bg-blur-2 {
  position: absolute;
  top: 35%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(127, 0, 255, 0.12) 0%, rgba(224, 195, 252, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-top: 20px;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat-item .stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Hero Visual / Interactive Live D-Day Card
   ========================================================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(255, 94, 98, 0.2);
  border: 8px solid #1E293B;
}

.phone-notch {
  width: 110px;
  height: 22px;
  background: #1E293B;
  border-radius: 0 0 14px 14px;
  margin: -16px auto 14px;
}

.app-screen-mockup {
  background: #FAFAF9;
  border-radius: 26px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Live Interactive Anniversary Cards in Mockup */
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 6px;
}

.mockup-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.mockup-header-action {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.dday-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease);
}

.dday-card:hover {
  transform: scale(1.02);
}

.dday-card-featured {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 94, 98, 0.35);
  border: none;
}

.dday-card-featured .dday-title {
  color: #FFFFFF;
}

.dday-card-featured .dday-date {
  color: rgba(255, 255, 255, 0.85);
}

.dday-card-featured .dday-count {
  color: #FFFFFF;
}

.dday-card-featured .dday-unit {
  color: rgba(255, 255, 255, 0.9);
}

.dday-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.dday-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.dday-badge-tag.lunar {
  background: rgba(127, 0, 255, 0.1);
  color: var(--accent-purple);
}

.dday-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.dday-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dday-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.dday-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.dday-count {
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1;
  color: var(--primary);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.dday-unit {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Floating Badges outside Mockup */
.floating-widget-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-widget-pill.top-left {
  top: 12%;
  left: -40px;
}

.floating-widget-pill.bottom-right {
  bottom: 8%;
  right: -30px;
  animation-delay: 2s;
}

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

.pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pill-icon.love { background: #FFE4E6; color: #E11D48; }
.pill-icon.lunar { background: #EDE9FE; color: #7C3AED; }

.pill-text .pill-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pill-text .pill-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

/* ==========================================================================
   Features Bento Grid
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: #FFFFFF;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 94, 98, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

.bento-card.highlight {
  background: var(--grad-card-glow);
  border-color: rgba(255, 94, 98, 0.3);
}

.bento-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.bento-icon-box.coral { background: rgba(255, 94, 98, 0.12); color: var(--primary); }
.bento-icon-box.purple { background: rgba(127, 0, 255, 0.12); color: var(--accent-purple); }
.bento-icon-box.blue { background: rgba(59, 130, 246, 0.12); color: var(--accent-blue); }
.bento-icon-box.amber { background: rgba(245, 158, 11, 0.12); color: var(--accent-amber); }
.bento-icon-box.green { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.bento-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-preview-box {
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}

/* ==========================================================================
   Lunar & Group Spotlight Sections
   ========================================================================== */
.spotlight-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.spotlight-grid.reverse {
  direction: rtl;
}

.spotlight-grid.reverse > * {
  direction: ltr;
}

.spotlight-text h2 {
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 20px;
}

.spotlight-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.spotlight-card-visual {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* ==========================================================================
   Widgets Showcase
   ========================================================================== */
.widgets-section {
  padding: 100px 0;
  background: #FFFFFF;
  text-align: center;
}

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

.widget-box {
  background: #0F172A;
  color: #FFFFFF;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  text-align: left;
  transition: transform var(--duration-normal) var(--ease);
}

.widget-box:hover {
  transform: translateY(-6px);
}

.widget-box.widget-sm {
  max-width: 240px;
  margin: 0 auto;
}

.widget-box.widget-md {
  grid-column: span 2;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

.widget-header-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  font-weight: 700;
}

.widget-main-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 6px;
  color: #F8FAFC;
}

.widget-days-big {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Testimonials / Reviews
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.review-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reviewer-info .role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  padding: 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color var(--duration-fast);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--duration-normal) var(--ease), background var(--duration-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 94, 98, 0.15);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease), padding var(--duration-normal) var(--ease);
  padding: 0 8px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Download CTA Section
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-banner {
  background: var(--grad-primary);
  border-radius: 36px;
  padding: 70px 48px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(255, 94, 98, 0.45);
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 70px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.875rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   Legal Document Layout (Privacy & Terms)
   ========================================================================== */
.legal-page-header {
  padding-top: 130px;
  padding-bottom: 50px;
  background: var(--grad-soft);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.legal-page-header h1 {
  font-size: 2.5rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.legal-page-header .last-updated {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-content-container {
  max-width: 820px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.legal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p, .legal-content li {
  font-size: 1rem;
  color: #44403C;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-box {
  background: rgba(255, 94, 98, 0.06);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-store-badge-group {
    justify-content: center;
  }

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

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

  .bento-card.col-span-2 {
    grid-column: span 2;
  }

  .spotlight-grid, .spotlight-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .bento-grid, .reviews-grid, .widget-cards-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.col-span-2 {
    grid-column: span 1;
  }

  .widget-box.widget-md {
    grid-column: span 1;
  }

  .floating-widget-pill {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .app-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: 1.85rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .phone-mockup-frame {
    padding: 10px;
    border-width: 6px;
    border-radius: 28px;
  }

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

  .spotlight-text h2 {
    font-size: 1.75rem;
  }
}
