/* ============================================
   ICE ALERT - Main Stylesheet
   Clean Modern Design
   ============================================ */

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent-red: #ef4444;
  --accent-green: #22c55e;
  --accent-blue: #3b82f6;
  --border-color: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--text-primary);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.logo:hover {
  color: var(--text-primary);
}

.logo-img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #f97316 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

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

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2px;
}

.lang-btn {
  padding: 0.35rem 0.7rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem 1.5rem;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

/* Language toggle buttons - ALWAYS visible */
.lang-btn[data-lang="en"],
.lang-btn[data-lang="es"] {
  display: inline-block !important;
}

/* Default: Show EN, Hide ES */
span[data-lang="en"] { display: inline !important; }
span[data-lang="es"] { display: none !important; }
p[data-lang="en"], h1[data-lang="en"], h2[data-lang="en"], h3[data-lang="en"] { display: block !important; }
p[data-lang="es"], h1[data-lang="es"], h2[data-lang="es"], h3[data-lang="es"] { display: none !important; }
div[data-lang="en"] { display: block !important; }
div[data-lang="es"] { display: none !important; }
a[data-lang="en"]:not(.lang-btn) { display: inline !important; }
a[data-lang="es"]:not(.lang-btn) { display: none !important; }

/* Spanish mode: Show ES, Hide EN */
body.lang-es span[data-lang="en"] { display: none !important; }
body.lang-es span[data-lang="es"] { display: inline !important; }
body.lang-es p[data-lang="en"], body.lang-es h1[data-lang="en"], body.lang-es h2[data-lang="en"], body.lang-es h3[data-lang="en"] { display: none !important; }
body.lang-es p[data-lang="es"], body.lang-es h1[data-lang="es"], body.lang-es h2[data-lang="es"], body.lang-es h3[data-lang="es"] { display: block !important; }
body.lang-es div[data-lang="en"] { display: none !important; }
body.lang-es div[data-lang="es"] { display: block !important; }
body.lang-es a[data-lang="en"]:not(.lang-btn) { display: none !important; }
body.lang-es a[data-lang="es"]:not(.lang-btn) { display: inline !important; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.btn-donate {
  background: var(--accent-red);
  color: white;
}

.btn-donate:hover {
  background: #dc2626;
  color: white;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: 
    /* Dot grid */
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, #08080a 0%, #050506 100%);
  background-size: 24px 24px, 100% 100%;
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

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

.section-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.page-header {
  padding: 9rem 2rem 3.5rem;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.page-header p {
  color: var(--text-secondary);
  margin-top: 0.6rem;
  font-size: 1rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Grid pattern */
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    /* Subtle gradient */
    linear-gradient(180deg, rgba(20, 20, 25, 1) 0%, rgba(5, 5, 5, 1) 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.3), transparent);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-text h1 span {
  color: var(--accent-red);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.hero-download {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-download .store-btn {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 1.4rem;
  transition: all 0.25s ease;
}

.hero-download .store-btn i {
  font-size: 1.5rem;
}

.hero-download .store-btn span {
  font-size: 1rem;
  font-weight: 500;
}

.hero-download .store-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Full store buttons (with "Download on" text) */
.store-btn-full .store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-full .store-btn-text span {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 400;
}

.store-btn-full .store-btn-text strong {
  font-size: 1rem;
  font-weight: 500;
}

.hero-donate {
  margin-top: 1.5rem;
}

.donate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.donate-link:hover {
  color: var(--accent-red);
  background: rgba(239, 68, 68, 0.08);
}

.donate-link i {
  color: var(--accent-red);
  font-size: 0.75rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}

/* ============================================
   PHONE MOCKUPS - iPhone Style
   ============================================ */

.phones-showcase {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  background: #1c1c1e;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 40px rgba(0,0,0,0.4);
}

.phone-mockup.phone-main {
  width: 220px;
}

.phone-mockup.phone-side {
  width: 180px;
  opacity: 0.9;
}

.phone-screen {
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-main .phone-screen {
  height: 440px;
}

.phone-side .phone-screen {
  height: 360px;
}

/* Dynamic Island */
.phone-island {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-main .phone-island {
  width: 90px;
  height: 28px;
}

/* Status Bar */
.phone-status-bar {
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.phone-time {
  color: white;
}

.phone-icons {
  display: flex;
  gap: 4px;
  color: white;
  font-size: 0.65rem;
}

/* Phone Content */
.phone-body {
  height: calc(100% - 44px);
  display: flex;
  flex-direction: column;
}

/* Report Screen */
.screen-report {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 1rem;
}

.report-btn-mock {
  width: 100px;
  height: 100px;
  background: linear-gradient(145deg, #f55 0%, #d33 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.phone-main .report-btn-mock {
  width: 120px;
  height: 120px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.report-btn-mock i {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.phone-main .report-btn-mock i {
  font-size: 2rem;
}

.report-btn-mock span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.phone-main .report-btn-mock span {
  font-size: 0.7rem;
}

.report-hint {
  margin-top: 0.75rem;
  font-size: 0.55rem;
  color: var(--text-muted);
}

/* Map Screen */
.screen-map {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Main streets */
    linear-gradient(90deg, transparent 46%, rgba(255,255,255,0.18) 46%, rgba(255,255,255,0.18) 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(255,255,255,0.18) 46%, rgba(255,255,255,0.18) 54%, transparent 54%),
    /* Secondary streets */
    linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 24%, transparent 24%),
    linear-gradient(0deg, transparent 20%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 24%, transparent 24%),
    linear-gradient(90deg, transparent 76%, rgba(255,255,255,0.08) 76%, rgba(255,255,255,0.08) 80%, transparent 80%),
    linear-gradient(0deg, transparent 76%, rgba(255,255,255,0.08) 76%, rgba(255,255,255,0.08) 80%, transparent 80%),
    /* Base map color - blue tint */
    linear-gradient(180deg, #1e3a50 0%, #152535 100%);
  background-size: 50px 50px, 50px 50px, 50px 50px, 50px 50px, 50px 50px, 50px 50px, 100% 100%;
}

/* Add some "buildings" blocks */
.map-bg::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 8%;
  width: 28%;
  height: 22%;
  background: rgba(100,140,180,0.25);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.map-bg::after {
  content: '';
  position: absolute;
  bottom: 18%;
  right: 12%;
  width: 32%;
  height: 28%;
  background: rgba(100,140,180,0.2);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.map-alert {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-alert-halo {
  width: 50px;
  height: 50px;
  background: rgba(239, 68, 68, 0.25);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-halo 2s ease-in-out infinite;
}

@keyframes pulse-halo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.map-alert-pin {
  width: 24px;
  height: 24px;
  background: var(--accent-red);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: white;
  position: relative;
  z-index: 2;
}

.map-alert.a1 { top: 20%; left: 25%; }
.map-alert.a2 { top: 50%; left: 65%; }
.map-alert.a3 { top: 70%; left: 30%; }

.map-user {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 22px;
  height: 22px;
  background: var(--accent-green);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: white;
  z-index: 5;
}

.map-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-badge i {
  color: var(--accent-red);
  font-size: 0.4rem;
}

/* Settings Screen */
.screen-settings {
  flex: 1;
  background: #000;
  padding: 0.75rem;
}

.settings-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 0 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.5rem;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.setting-row:last-child {
  border-bottom: none;
}

.setting-name {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.setting-val {
  font-size: 0.55rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.toggle-switch {
  width: 32px;
  height: 18px;
  background: var(--accent-green);
  border-radius: 9px;
  position: relative;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
}

/* Tab Bar */
.phone-tabs {
  height: 50px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.5rem;
}

.tab-item i {
  font-size: 0.9rem;
}

.tab-item.active {
  color: var(--accent-red);
}

/* ============================================
   FEATURE CARDS
   ============================================ */

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

.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.feature-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.feature-icon.red { 
  color: var(--accent-red); 
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.feature-icon.green { 
  color: var(--accent-green); 
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.feature-icon.purple { 
  color: #a855f7; 
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
}

.feature-icon.cyan { 
  color: #22d3ee; 
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
}

.feature-icon.orange { 
  color: #f97316; 
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================
   STEPS
   ============================================ */

.steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: calc(1.5rem + 50px);
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-red);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   PRIVACY
   ============================================ */

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.shield-icon {
  width: 120px;
  height: 120px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-green);
  margin: 0 auto;
}

.privacy-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.privacy-list li i {
  color: var(--accent-green);
  margin-top: 3px;
  font-size: 0.75rem;
}

/* ============================================
   DOWNLOAD
   ============================================ */

.download-content {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.download-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.download-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text-primary);
  transition: all 0.2s;
}

.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: var(--text-primary);
}

.store-btn i {
  font-size: 1.3rem;
}

.store-btn span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   SUPPORT CARD
   ============================================ */

.support-card {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.support-icon {
  width: 56px;
  height: 56px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  color: var(--accent-red);
}

.support-card h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.support-card p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

/* ============================================
   LEGAL
   ============================================ */

.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.legal-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section li {
  padding: 0.25rem 0;
}

.highlight-box {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}

.highlight-box p {
  color: var(--accent-green);
  margin: 0;
  font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.5) 100%);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .privacy-list {
    text-align: left;
  }
}

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

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .phones-showcase {
    flex-direction: column;
    gap: 1rem;
  }

  .phone-mockup.phone-side {
    display: none;
  }

  .phone-mockup.phone-main {
    width: 200px;
  }

  .phone-main .phone-screen {
    height: 400px;
  }

  .section {
    padding: 3rem 1.5rem;
  }

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

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  .hero-download {
    flex-direction: column;
    align-items: center;
  }

  .hero-download .store-btn {
    width: 100%;
    max-width: 220px;
  }
}
