/* ==========================================================================
   OnlyFilipinas - Web Design System & Stylesheet
   Brand Aesthetic: Athletic Minimalism & Island Vibrancy
   Typography: Lexend (Headings) & Inter (Body)
   Primary Color: #22C55E (Lexend Green)
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --primary: #22C55E;
  --primary-hover: #16A34A;
  --primary-dark: #15803D;
  --primary-light: #F0FDF4;
  --primary-border: #BBF7D0;
  --primary-gradient: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  --accent-gold: #F59E0B;
  --accent-red: #EF4444;
  --accent-blue: #3B82F6;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;

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

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 12px 30px -4px rgba(34, 197, 94, 0.35);
  --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.08);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::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: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, textarea, select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.brand-logo .accent {
  color: var(--primary);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: var(--transition-fast);
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px -4px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--white);
  color: var(--slate-800);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-outline:hover {
  border-color: var(--slate-300);
  background-color: var(--slate-100);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.hero-badge .pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #10B981 0%, #22C55E 50%, #16A34A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ==========================================================================
   CSS Phone Mockup (Athletic Minimalist Discovery Deck)
   ========================================================================== */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone-device {
  width: 320px;
  height: 640px;
  background-color: #111827;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1),
              inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: var(--transition-normal);
  animation: floatPhone 6s ease-in-out infinite alternate;
}

.phone-device:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotateY(-6deg) rotateX(4deg); }
  100% { transform: translateY(-16px) rotateY(-3deg) rotateX(2deg); }
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #020617;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Phone Island Notch */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background-color: #000;
  border-radius: var(--radius-full);
  z-index: 50;
}

/* Card Mockup Inside Phone */
.mockup-card {
  position: relative;
  flex: 1;
  margin: 10px;
  margin-top: 36px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%),
              url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=600&auto=format&fit=crop&q=80') center/cover;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.mockup-story-bars {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 4px;
}

.story-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.story-bar.active {
  background: var(--white);
}

.mockup-user-info {
  margin-bottom: 12px;
}

.mockup-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mockup-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.mockup-badge {
  background-color: var(--primary);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mockup-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-bottom: 10px;
}

.mockup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mockup-chip {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Action Dock Inside Phone */
.mockup-dock {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 8px 10px 14px;
}

.dock-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dock-btn.pass { color: #EF4444; }
.dock-btn.superlike { color: #3B82F6; width: 40px; height: 40px; }
.dock-btn.like { color: #22C55E; }
.dock-btn.rewind { color: #F59E0B; width: 40px; height: 40px; }

/* Floating Glow Card Over Mockup */
.floating-match-pill {
  position: absolute;
  top: 18%;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--slate-100);
  animation: floatMatch 5s ease-in-out infinite alternate;
}

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

.floating-match-pill .match-heart {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.floating-match-pill .match-text h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-900);
}

.floating-match-pill .match-text p {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Features / Value Pillars Section
   ========================================================================== */
.section {
  padding: 90px 0;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.6;
}

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.feature-icon-box.green { background-color: var(--primary-light); color: var(--primary); }
.feature-icon-box.blue { background-color: #EFF6FF; color: #3B82F6; }
.feature-icon-box.gold { background-color: #FFFBEB; color: #F59E0B; }
.feature-icon-box.purple { background-color: #FAF5FF; color: #A855F7; }
.feature-icon-box.rose { background-color: #FFF1F2; color: #F43F5E; }
.feature-icon-box.emerald { background-color: #ECFDF5; color: #059669; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   Passions & Lifestyle Showcase
   ========================================================================== */
.passions-section {
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

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

.passions-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cloud-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.cloud-pill:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   Trust, Safety & Integrity Section
   ========================================================================== */
.safety-box {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: var(--white);
}

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

.safety-box h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.safety-box p {
  color: var(--slate-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.safety-points {
  display: grid;
  gap: 18px;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.safety-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.safety-item p {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-bottom: 0;
}

/* ==========================================================================
   Google Play Closed Beta Callout
   ========================================================================== */
.beta-card {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.beta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.beta-card p {
  font-size: 1.1rem;
  color: var(--slate-700);
  max-width: 600px;
  margin: 0 auto 32px;
}

.beta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 36px;
}

.beta-step-item {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-sm);
}

.beta-step-item .step-num {
  width: 26px;
  height: 26px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.beta-step-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.beta-step-item p {
  font-size: 0.82rem;
  color: var(--slate-600);
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  cursor: pointer;
}

.faq-question svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--slate-500);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 26px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--slate-900);
  color: var(--slate-400);
  padding: 70px 0 30px;
  border-top: 1px solid var(--slate-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--slate-400);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--slate-800);
  font-size: 0.85rem;
}

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

.footer-legal-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   Legal & Store Compliance Layouts (Privacy, Terms, Delete Account)
   ========================================================================== */
.legal-page {
  padding: 60px 0 100px;
  background-color: var(--white);
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}

.legal-header .badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-dark);
  background-color: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 10px;
}

.legal-header .meta {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.legal-content {
  max-width: 820px;
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 20px;
  display: grid;
  gap: 8px;
}

.legal-box {
  background-color: var(--slate-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  margin: 24px 0;
}

.legal-box p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--slate-700);
}

/* ==========================================================================
   Account Deletion Web Portal Form
   ========================================================================== */
.deletion-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 30px;
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-300);
  background-color: var(--white);
  color: var(--slate-900);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.form-help {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 6px;
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--accent-red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background-color: #DC2626;
  transform: translateY(-1px);
}

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .mockup-wrapper {
    margin-top: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .passions-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .beta-steps {
    grid-template-columns: 1fr;
  }

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

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

  .safety-box {
    padding: 36px 24px;
  }
}
