/* TheRealConnect — Redesigned Light Mumbai Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --bg: #faf8f5;
  --bg-white: #ffffff;
  --bg-warm: #f5f0e8;
  --bg-card: #ffffff;
  --bg-glass: rgba(255,255,255,0.85);
  --border: rgba(0,0,0,0.08);
  --text: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #9a9ab0;
  --accent: #2563eb;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gold: #d97706;
  --coral: #e11d48;
  --green: #059669;
  --purple: #7c3aed;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 70px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-brand-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
}
.nav-brand-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.nav-brand-text span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; text-decoration: none; transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.3); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #fdf4e8 50%, #fce7e7 100%);
}
.hero-bg {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: url('/static/img/mumbai_hero.png') center bottom / cover no-repeat;
  opacity: 0.25;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-white); border: 1px solid var(--border);
  font-size: 13px; color: var(--teal); font-weight: 600;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; text-decoration: none; transition: var(--transition);
  border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(13,148,136,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,148,136,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: var(--bg-white); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* Hero Card */
.hero-visual { position: relative; }
.hero-card {
  width: 100%; max-width: 420px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border);
  padding: 24px; box-shadow: var(--shadow-lg);
  animation: slideUp 0.8s ease-out;
}
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-card-title { font-size: 14px; font-weight: 700; }
.hero-card-badge { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.search-preview {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px; color: var(--text-secondary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.search-preview .icon { color: var(--teal); font-size: 16px; }
.cp-preview-item {
  display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 8px; transition: var(--transition); background: var(--bg-white);
}
.cp-preview-item:hover { border-color: var(--teal); }
.cp-avatar { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #fff; }
.cp-info { flex: 1; }
.cp-name { font-size: 14px; font-weight: 600; }
.cp-meta { font-size: 11px; color: var(--text-muted); }
.cp-tag { padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.cp-tag.p1 { background: rgba(5,150,105,0.1); color: var(--green); }
.cp-tag.p2 { background: rgba(245,158,11,0.1); color: var(--gold); }

/* ===================== TRUSTED BY ===================== */
.trusted-by { padding: 40px 24px; background: var(--bg-white); border-bottom: 1px solid var(--border); }
.trusted-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trusted-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.trusted-logos {
  display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.logo-item {
  font-size: 18px; font-weight: 800; color: var(--text-muted);
  letter-spacing: -0.5px; opacity: 0.5; transition: var(--transition);
}
.logo-item:hover { opacity: 1; color: var(--text); }

/* ===================== STATS ===================== */
.stats { padding: 60px 24px; background: linear-gradient(135deg, #f0f9f4, #f0f7ff); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ===================== PLATFORM PILLARS ===================== */
.platform { padding: 80px 24px; background: var(--bg-white); }
.platform-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.15);
  font-size: 12px; color: var(--teal); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar-card {
  padding: 28px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.pillar-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-number { font-size: 48px; font-weight: 900; color: rgba(13,148,136,0.06); position: absolute; top: 8px; right: 16px; line-height: 1; }
.pillar-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.pillar-icon.discover { background: rgba(37,99,235,0.08); }
.pillar-icon.engage { background: rgba(5,150,105,0.08); }
.pillar-icon.communicate { background: rgba(124,58,237,0.08); }
.pillar-icon.analyze { background: rgba(217,119,6,0.08); }
.pillar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== FEATURE SECTIONS ===================== */
.feature-section { padding: 80px 24px; }
.feature-section.alt-bg { background: linear-gradient(135deg, #fdf4e8, #f0f7ff); }
.feature-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.feature-section-inner.reverse { direction: rtl; }
.feature-section-inner.reverse > * { direction: ltr; }
.feature-content .section-tag { margin-bottom: 16px; }
.feature-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.feature-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-check { width: 24px; height: 24px; border-radius: 6px; background: rgba(5,150,105,0.1); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feature-list-item div { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.feature-list-item strong { color: var(--text); display: block; margin-bottom: 2px; }

/* Feature Visuals */
.visual-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.score-card-visual { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); background: var(--bg); }
.score-row.ipc { background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.15); }
.score-badge { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #fff; flex-shrink: 0; }
.score-badge.p1 { background: linear-gradient(135deg, #0d9488, #059669); }
.score-badge.p2 { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.score-badge.p3 { background: linear-gradient(135deg, #94a3b8, #64748b); }
.score-badge.ipc-badge { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.score-name { flex: 1; font-weight: 600; font-size: 14px; }
.score-count { font-weight: 800; font-size: 14px; color: var(--teal); }

/* Chat Visual */
.chat-visual { display: flex; flex-direction: column; }
.chat-header-vis { padding: 14px 16px; background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff; font-weight: 700; font-size: 14px; border-radius: var(--radius) var(--radius) 0 0; margin: -24px -24px 16px; }
.chat-thread { display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; max-width: 85%; }
.chat-bubble.sent { background: var(--teal); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-bubble.received { background: var(--bg); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-status { font-size: 11px; color: var(--text-muted); text-align: right; }

/* Pipeline Visual */
.pipeline-visual { }
.pipe-title { font-weight: 700; margin-bottom: 16px; font-size: 14px; }
.pipe-row { margin-bottom: 8px; }
.pipe-stage { padding: 10px 14px; border-radius: 8px; color: #fff; font-size: 13px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.pipe-stage strong { font-weight: 800; }

/* ===================== DATA SECTION ===================== */
.data-section { padding: 80px 24px; background: linear-gradient(135deg, #0f172a, #1e293b); color: #f1f5f9; }
.data-inner { max-width: 1200px; margin: 0 auto; }
.data-section .section-header { margin-bottom: 48px; }
.data-section .section-tag { background: rgba(13,148,136,0.2); border-color: rgba(13,148,136,0.3); }
.data-section .section-header h2 { color: #f1f5f9; }
.data-flow { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.data-step { text-align: center; padding: 28px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); flex: 1; min-width: 180px; transition: var(--transition); }
.data-step:hover { background: rgba(255,255,255,0.1); border-color: rgba(13,148,136,0.3); transform: translateY(-4px); }
.data-icon { font-size: 32px; margin-bottom: 12px; }
.data-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #f1f5f9; }
.data-step p { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.data-arrow { font-size: 24px; color: var(--teal); font-weight: 800; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 80px 24px; background: var(--bg-white); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.step-card {
  text-align: center; padding: 28px 20px; border-radius: var(--radius);
  background: var(--bg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff;
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-secondary); }

/* ===================== PRICING ===================== */
.pricing { padding: 80px 24px; background: linear-gradient(135deg, #f0f7ff, #fdf4e8); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.token-explainer { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 48px; }
.token-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; transition: var(--transition);
}
.token-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.token-icon { font-size: 28px; margin-bottom: 8px; }
.token-action { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.token-cost { font-size: 18px; font-weight: 800; color: var(--teal); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.price-card { padding: 32px; border-radius: var(--radius); background: var(--bg-white); border: 1px solid var(--border); transition: var(--transition); position: relative; }
.price-card.featured { border-color: var(--teal); box-shadow: var(--shadow); }
.price-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-name { font-size: 13px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; margin: 12px 0 4px; }
.price-amount span { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-muted); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 16px; }
.price-btn { display: block; width: 100%; padding: 13px; border-radius: 10px; text-align: center; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); border: none; cursor: pointer; }
.price-btn.primary { background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff; }
.price-btn.secondary { background: var(--bg); border: 1px solid var(--border); color: var(--text); }
.price-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===================== PIXELDO PARTNER ===================== */
.pixeldo-section { padding: 80px 24px; background: var(--bg-white); }
.pixeldo-inner { max-width: 1200px; margin: 0 auto; }
.pixeldo-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.pixeldo-card {
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text);
  border: 1px solid var(--border); transition: var(--transition); display: block;
}
.pixeldo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.pixeldo-preview {
  height: 160px; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pixeldo-badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 6px;
  background: rgba(0,0,0,0.5); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.pixeldo-play {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff;
  backdrop-filter: blur(4px); transition: var(--transition); border: 2px solid rgba(255,255,255,0.3);
}
.pixeldo-card:hover .pixeldo-play { background: rgba(255,255,255,0.35); transform: scale(1.15); }
.pixeldo-info { padding: 14px 16px; background: var(--bg-white); }
.pixeldo-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.pixeldo-info p { font-size: 12px; color: var(--text-muted); margin: 0; }
.pixeldo-cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px; border-radius: var(--radius); background: linear-gradient(135deg, #f0f7ff, #fdf4e8);
  border: 1px solid var(--border);
}
.pixeldo-cta-content { flex: 1; }
.pixeldo-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pixeldo-logo {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e11d48, #f97316); font-size: 20px; font-weight: 900; color: #fff;
}
.pixeldo-brand strong { font-size: 18px; display: block; }
.pixeldo-brand span { font-size: 12px; color: var(--teal); font-weight: 600; }
.pixeldo-cta-content p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* ===================== CTA ===================== */
.cta {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; position: relative; overflow: hidden;
}
.cta::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: url('/static/img/mumbai_hero.png') center bottom / cover no-repeat; opacity: 0.1;
}
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.cta p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 12px; font-size: 16px; font-weight: 700;
  background: #fff; color: var(--teal); text-decoration: none;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 12px; font-size: 16px; font-weight: 700;
  background: transparent; color: #fff; text-decoration: none; border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition); cursor: pointer;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===================== FOOTER ===================== */
.footer { padding: 40px 24px; background: var(--bg-white); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 12px; color: var(--text-muted); }
