/* =========================================================
   Noted - Day Planner | Main Stylesheet
   Holokraft Consulting Services (OPC) Pvt Ltd
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --primary:        #335C4A;
  --primary-dark:   #264538;
  --primary-light:  #4A7A62;
  --secondary:      #F8F7F2;
  --accent:         #6E8B74;
  --accent-light:   #E8F0EA;
  --text-dark:      #1A1A1A;
  --text-body:      #3D3D3D;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --white:          #FFFFFF;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.12);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width:      1200px;
  --nav-height:     72px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p  { color: var(--text-body); line-height: 1.75; }

.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.75rem; }
.fw-500       { font-weight: 500; }
.fw-600       { font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

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

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8     { gap: 8px; }
.gap-12    { gap: 12px; }
.gap-16    { gap: 16px; }
.gap-24    { gap: 24px; }
.gap-32    { gap: 32px; }

/* ── Section Labels ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.nav-brand-tagline { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover { background: var(--accent-light); color: var(--primary); }
.nav-link.active { color: var(--primary); background: var(--accent-light); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--accent-light); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 12px 16px; font-size: 1rem; }
.mobile-menu-cta { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(51,92,74,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(51,92,74,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--accent-light);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: var(--radius-sm); }

/* Google Play Badge */
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(51,92,74,0.35);
}
.play-badge:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(51,92,74,0.4);
}
.play-badge-icon { width: 28px; height: 28px; flex-shrink: 0; }
.play-badge-text { display: flex; flex-direction: column; line-height: 1; }
.play-badge-sub { font-size: 0.65rem; font-weight: 400; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.05em; }
.play-badge-name { font-size: 1rem; font-weight: 700; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-sm { padding: 24px; border-radius: var(--radius-md); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--primary); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: linear-gradient(160deg, #F0F7F3 0%, var(--secondary) 60%, #EEF5F1 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(51,92,74,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,139,116,0.07) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title { margin-bottom: 20px; }
.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(51,92,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-phone {
  position: relative;
  z-index: 1;
}
.phone-mockup {
  width: 280px;
  background: var(--text-dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
}
.phone-notch {
  width: 100px; height: 26px;
  background: var(--text-dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}
.phone-notch::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: #1A1A2E;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.phone-screen {
  background: var(--secondary);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
}
.phone-app-bar {
  background: var(--primary);
  padding: 16px 18px 12px;
  color: white;
}
.phone-app-bar-title { font-size: 0.85rem; font-weight: 700; }
.phone-app-bar-date  { font-size: 0.65rem; opacity: 0.8; margin-top: 2px; }
.phone-content { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.phone-task {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.phone-task-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-task-check.done { background: var(--primary); }
.phone-task-check.todo { border: 2px solid var(--border); }
.phone-task-text { font-size: 0.65rem; font-weight: 500; }
.phone-task-text.done { text-decoration: line-through; color: var(--text-light); }
.phone-timeline-label { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.phone-time-slot {
  background: var(--white);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-time { font-size: 0.58rem; font-weight: 700; color: var(--primary); min-width: 32px; }
.phone-event { background: var(--accent-light); border-radius: 6px; padding: 4px 8px; flex: 1; }
.phone-event-title { font-size: 0.6rem; font-weight: 600; color: var(--primary); }

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  animation: float-card 6s ease-in-out infinite;
}
.floating-card-1 { top: 10%; left: -30px; animation-delay: 0s; }
.floating-card-2 { bottom: 15%; right: -20px; animation-delay: 3s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-icon { width: 34px; height: 34px; background: var(--accent-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon svg { width: 18px; height: 18px; stroke: var(--primary); stroke-width: 2; fill: none; }
.fc-label { font-size: 0.7rem; color: var(--text-muted); }
.fc-value { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

/* ── Features Grid ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Feature Spotlight (alternating layout) ─────────────── */
.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-spotlight:last-child { border-bottom: none; }
.feature-spotlight.reverse .feature-spot-visual { order: -1; }
.feature-spot-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-spot-image {
  width: 100%;
  max-width: 380px;
  background: var(--secondary);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-spot-content .section-label { margin-bottom: 14px; }
.feature-spot-content h3 { margin-bottom: 16px; }
.feature-spot-content p  { margin-bottom: 24px; color: var(--text-muted); }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.feature-list-item .check {
  width: 20px; height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list-item .check svg { width: 11px; height: 11px; stroke: var(--primary); stroke-width: 2.5; fill: none; }

/* ── Why Choose Section ─────────────────────────────────── */
.why-choose { background: var(--primary); padding: 96px 0; position: relative; overflow: hidden; }
.why-choose::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.why-choose .section-label { background: rgba(255,255,255,0.15); color: var(--white); }
.why-choose .section-title { color: var(--white); }
.why-choose .section-subtitle { color: rgba(255,255,255,0.75); }
.why-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,0.15); }
.why-card-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 { color: var(--white); margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ── App Screenshots ─────────────────────────────────────── */
.screenshots-section { background: var(--secondary); padding: 96px 0; }
.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  -webkit-overflow-scrolling: touch;
}
.screenshots-scroll::-webkit-scrollbar { height: 4px; }
.screenshots-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.screenshot-item {
  flex-shrink: 0;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 9/19;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  position: relative;
}
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  padding: 20px;
  text-align: center;
}
.screenshot-placeholder svg { width: 36px; height: 36px; stroke: var(--text-light); stroke-width: 1.5; fill: none; }
.screenshot-placeholder span { font-size: 0.75rem; font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--secondary); }
.faq-question-text { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); flex: 1; }
.faq-icon {
  width: 24px; height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--primary); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -200px; left: -100px;
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; stroke: white; stroke-width: 2; fill: none; stroke-linecap: round; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-tagline { font-style: italic; font-size: 0.825rem; color: var(--accent); }

.footer-col h5 { color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #F0F7F3 0%, var(--secondary) 100%);
  padding: calc(var(--nav-height) + 64px) 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.page-hero-meta { margin-top: 16px; font-size: 0.825rem; color: var(--text-light); }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-body { padding: 72px 0 96px; }
.legal-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-toc {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 56px;
  border: 1px solid var(--border-light);
}
.legal-toc h4 { margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.legal-toc ol { counter-reset: toc; padding-left: 0; }
.legal-toc ol li { counter-increment: toc; display: flex; gap: 10px; margin-bottom: 8px; }
.legal-toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  min-width: 24px;
  margin-top: 2px;
}
.legal-toc ol li a { font-size: 0.875rem; color: var(--text-body); }
.legal-toc ol li a:hover { color: var(--primary); }

.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-light);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.legal-section h2 { font-size: 1.4rem; margin-bottom: 18px; }
.legal-section h3 { font-size: 1.1rem; margin-bottom: 12px; margin-top: 24px; color: var(--text-dark); }
.legal-section p  { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.legal-section ul {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-body);
}
.legal-section ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.legal-highlight {
  background: var(--accent-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight p { margin: 0; font-size: 0.9rem; }

/* ── Support Page ─────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.support-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.support-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.support-card-icon svg { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.support-card h4 { margin-bottom: 8px; }
.support-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.support-steps { display: flex; flex-direction: column; gap: 10px; }
.support-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
}
.step-num {
  width: 22px; height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-light);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.contact-info-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.contact-info-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(51,92,74,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Delete Account Page ─────────────────────────────────── */
.delete-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.delete-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: box-shadow var(--transition);
}
.delete-step:hover { box-shadow: var(--shadow-sm); }
.delete-step-num {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.delete-step-content h4 { margin-bottom: 4px; font-size: 0.95rem; }
.delete-step-content p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
}
.data-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); vertical-align: top; }
.data-table tr:nth-child(even) td { background: var(--secondary); }
.badge-deleted  { background: #FEE2E2; color: #DC2626; padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.badge-retained { background: #FEF9C3; color: #CA8A04; padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.badge-anon     { background: #DCFCE7; color: #16A34A; padding: 3px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }

/* ── About Page ──────────────────────────────────────────── */
.team-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-stat-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
}
.team-stat-value { font-size: 2.2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; margin-bottom: 6px; }
.team-stat-label { font-size: 0.85rem; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; color: var(--text-muted); }

.roadmap { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 32px; }
.roadmap::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent-light) 100%);
}
.roadmap-item {
  position: relative;
  padding: 0 0 36px 28px;
}
.roadmap-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.roadmap-item.future::before { background: var(--accent-light); border-color: var(--white); box-shadow: 0 0 0 2px var(--accent); }
.roadmap-quarter { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.roadmap-item h4 { margin-bottom: 6px; font-size: 0.95rem; }
.roadmap-item p  { font-size: 0.85rem; color: var(--text-muted); }

/* ── Animations ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Utility ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-light); margin: 0; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.bg-secondary { background: var(--secondary); }
.bg-white { background: var(--white); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-primary { background: var(--accent-light); color: var(--primary); }
.badge-success  { background: #DCFCE7; color: #16A34A; }
.badge-warning  { background: #FEF9C3; color: #CA8A04; }
.badge-future   { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
}
.alert-info { background: var(--accent-light); border: 1px solid rgba(51,92,74,0.15); color: var(--primary-dark); }
.alert-warning { background: #FEF9C3; border: 1px solid #FDE68A; color: #92400E; }
.alert svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 1px; }

/* ── Scroll Top Button ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; stroke: white; stroke-width: 2.5; fill: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .feature-spotlight { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }

  .floating-card-1, .floating-card-2 { display: none; }
  .phone-mockup { width: 220px; }

  .feature-spotlight { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feature-spotlight.reverse .feature-spot-visual { order: unset; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-stat-grid { grid-template-columns: repeat(2, 1fr); }

  .section-pad { padding: 64px 0; }
  .hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .play-badge { width: 100%; max-width: 260px; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .team-stat-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .cta-banner, .scroll-top { display: none !important; }
  .legal-body { padding: 24px 0; }
  .page-hero { padding: 24px 0; }
  body { font-size: 13px; }
  a { color: var(--text-dark); }
}

/* ── Preloader ───────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.preloader.done { opacity: 0; pointer-events: none; }
.preloader-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader-pulse 1.2s ease-in-out infinite;
}
.preloader-icon svg { width: 30px; height: 30px; stroke: white; stroke-width: 2; fill: none; stroke-linecap: round; }
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.7; }
}
