/* ============================================================
   ODKHAAN LANDING PAGE — STYLE.CSS
   Brand: #0D9488 (primary teal), #2DD4BF (light teal),
          #0891B2 (muted blue), #1E293B (dark accent)
   Fonts: Outfit (headings), Inter (body)
   ============================================================ */

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

:root {
  --primary: #0D9488;
  --primary-light: #2DD4BF;
  --muted: #0891B2;
  --accent: #1E293B;
  --accent-light: #475569;
  --bg: #FCFAF7;
  --surface: #FDFCFB;
  --gray-100: #F5F2ED;
  --gray-200: #E7E2D8;
  --gray-400: #A89E8D;
  --gray-600: #5F5547;
  --gray-800: #2A2520;
  --success: #15803D;
  --rose: #BE123C;
  --purple: #7C3AED;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(13,148,136,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--accent);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #0D9488 0%, #2DD4BF 50%, #0891B2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0891B2 0%, #0D9488 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
}

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(3px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(231, 226, 216, 0.6);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E6F4FE 0%, #CCFBF1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.nav-logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(13, 148, 136, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #2DD4BF, #0D9488);
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  bottom: 10%; left: -100px;
  background: radial-gradient(circle, #0891B2, #2DD4BF);
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, #0D9488, transparent);
  animation: floatOrb 12s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: slideUp 0.7s ease-out 0.1s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: slideUp 0.7s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideUp 0.7s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: slideUp 0.7s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}

.stat-item:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 300px;
  background: #1E293B;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(13, 148, 136, 0.2),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  animation: phoneLevitate 4s ease-in-out infinite;
}

@keyframes phoneLevitate {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  height: 560px;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  background: var(--accent);
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}

.phone-header {
  background: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

.phone-tabs-row {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: white;
  overflow: hidden;
}

.phone-tab {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--gray-400);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
}

.phone-tab--active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.phone-feed {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.feed-card {
  background: white;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.feed-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.feed-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed-avatar--teal { background: linear-gradient(135deg, #0D9488, #2DD4BF); color: white; }
.feed-avatar--blue { background: linear-gradient(135deg, #0891B2, #38BDF8); color: white; }

.feed-author { font-size: 10px; font-weight: 600; color: var(--accent); }
.feed-time { font-size: 9px; color: var(--gray-400); }

.feed-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 20px;
}

.feed-badge--blue {
  background: rgba(8, 145, 178, 0.12);
  color: var(--muted);
}

.feed-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.3;
}

.feed-body {
  font-size: 9.5px;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 8px;
}

.feed-actions {
  display: flex;
  gap: 10px;
}

.feed-action {
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 500;
}

.phone-tabbar {
  background: white;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-around;
  padding: 8px 4px 10px;
}

.tab-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}

.tab-icon span {
  font-size: 8px;
  color: var(--gray-400);
  font-weight: 500;
}

.tab-icon--active span {
  color: var(--primary);
  font-weight: 600;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid var(--gray-100);
  animation: phoneLevitate 4s ease-in-out infinite;
}

.float-badge-1 {
  top: 60px; left: -80px;
  animation-delay: 0.5s;
}

.float-badge-2 {
  top: 200px; right: -90px;
  animation-delay: 1s;
}

.float-badge-3 {
  bottom: 120px; left: -70px;
  animation-delay: 1.5s;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(10px); opacity: 0; }
}

/* ===== TRUSTED ===== */
.trusted {
  background: white;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.trusted-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.community-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
}

.community-tag:hover {
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
}

/* ===== SECTION SHARED ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--accent-light);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 0;
  background: var(--bg);
}

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

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D9488, #2DD4BF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.15);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card--large {
  grid-column: span 2;
}

.feature-card--right {
  grid-column: 2 / span 2;
}

.feature-card--matrimony {
  background: linear-gradient(135deg, rgba(190, 18, 60, 0.04) 0%, rgba(251, 113, 133, 0.04) 100%);
  border-color: rgba(190, 18, 60, 0.1);
}

.feature-card--matrimony::before {
  background: linear-gradient(90deg, #BE123C, #FB7185);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--accent-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ftag {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.09);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.ftag--purple {
  background: rgba(124, 58, 237, 0.09);
  color: var(--purple);
  border-color: rgba(124, 58, 237, 0.15);
}

/* ===== COMMUNITY SHOWCASE ===== */
.community-showcase {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 50%, #1E293B 100%);
}

.showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-check {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #2DD4BF;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.value-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Testimonial Cards */
.showcase-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all var(--transition);
}

.showcase-card:hover {
  transform: translateX(6px);
}

.showcase-card--teal {
  background: rgba(13, 148, 136, 0.15);
  border-color: rgba(45, 212, 191, 0.3);
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.sc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-avatar--green { background: linear-gradient(135deg, #15803D, #4ADE80); color: white; }
.sc-avatar--teal { background: linear-gradient(135deg, #0D9488, #2DD4BF); color: white; }
.sc-avatar--rose { background: linear-gradient(135deg, #BE123C, #FB7185); color: white; }

.sc-name { font-weight: 700; font-size: 0.95rem; color: var(--accent); }
.sc-role { font-size: 0.78rem; color: var(--gray-400); }

.showcase-card--teal .sc-name { color: white; }
.showcase-card--teal .sc-role { color: rgba(255,255,255,0.6); }

.sc-quote {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.showcase-card--teal .sc-quote { color: rgba(255,255,255,0.85); }

.sc-rating { font-size: 0.85rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.step-card:hover .step-icon {
  background: rgba(13, 148, 136, 0.06);
  border-color: rgba(13, 148, 136, 0.2);
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--accent-light);
  line-height: 1.65;
}

.step-connector {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--muted));
  opacity: 0.4;
}

.connector-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.5;
}

/* ===== FAMILY TREE SECTION ===== */
.family-section {
  padding: 6rem 0;
  background: var(--bg);
}

.family-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.family-visual {
  display: flex;
  justify-content: center;
}

.tree-diagram {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
}

.tree-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tree-node--root {
  margin-bottom: 1.5rem;
}

.tree-avatar {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--primary);
}

.tree-node--root .tree-avatar {
  width: 60px;
  height: 60px;
  border-width: 3px;
  background: rgba(13, 148, 136, 0.06);
}

.tree-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  line-height: 1.3;
}

.tree-name small {
  display: block;
  font-weight: 400;
  color: var(--gray-400);
  font-size: 9px;
}

.tree-branches {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  border-top: 2px solid var(--primary);
  padding-top: 1rem;
  position: relative;
}

.tree-branches::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  border-top: 2px solid rgba(13,148,136,0.2);
}

.tree-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tree-sub-branches {
  display: flex;
  gap: 1rem;
  border-top: 2px solid rgba(13,148,136,0.3);
  padding-top: 0.75rem;
}

.tree-node--leaf .tree-avatar {
  width: 36px;
  height: 36px;
  border-width: 1.5px;
  border-color: rgba(13,148,136,0.4);
}

.tree-badge-floating {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.family-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.family-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* ===== DOWNLOAD ===== */
.download-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.download-bg-orbs {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D9488 0%, #1E293B 100%);
  pointer-events: none;
}

.dl-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}

.dl-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: #2DD4BF;
  animation: floatOrb 9s ease-in-out infinite;
}

.dl-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  background: #0891B2;
  animation: floatOrb 11s ease-in-out infinite reverse;
}

.download-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dl-logo {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  min-width: 180px;
}

.store-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.store-sub {
  font-size: 0.72rem;
  opacity: 0.75;
  line-height: 1;
}

.store-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.download-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text { color: white; font-size: 1.3rem; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(13,148,136,0.3);
  border-color: rgba(45,212,191,0.4);
  color: #2DD4BF;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: #2DD4BF; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large,
  .feature-card--right {
    grid-column: span 2;
  }
  .feature-card--right {
    grid-column: 1 / span 2;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { order: -1; }

  .phone-frame { width: 260px; }
  .phone-screen { height: 500px; }

  .float-badge-1, .float-badge-3 { left: -50px; }
  .float-badge-2 { right: -60px; }

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .family-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(252, 250, 247, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large,
  .feature-card--right { grid-column: 1; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }

  .float-badge { display: none; }

  .phone-frame { width: 240px; }
  .phone-screen { height: 460px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .download-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
