@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Bagel+Fat+One&display=swap');

:root {
  --bg: #F0F4F8;
  --card: #FFFFFF;
  --text: #1A1D23;
  --muted: #6B7280;
  --tint: #00AAFF;
  --tint-dark: #0088DD;
  --tint-light: #E0F4FF;
  --border: #E2E6EA;
  --footer: #060F1A;
  --shadow-sm: 0 2px 8px rgba(0,170,255,0.08);
  --shadow-md: 0 8px 32px rgba(0,170,255,0.12);
  --shadow-lg: 0 20px 60px rgba(0,170,255,0.18);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.badge {
  display: inline-block;
  background: var(--tint-light);
  color: var(--tint);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--tint);
  color: white;
  box-shadow: 0 4px 20px rgba(0,170,255,0.35);
}
.btn-primary:hover {
  background: var(--tint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,170,255,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--tint);
  border: 2px solid var(--tint);
}
.btn-outline:hover {
  background: var(--tint);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.text-center { text-align: center; }
.text-tint { color: var(--tint); }

h1, h2, h3, h4 { line-height: 1.2; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  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 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(0,170,255,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  font-family: 'Bagel Fat One', cursive;
  font-size: 2.2rem;
  color: var(--tint);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.brand:hover { transform: scale(1.05); }

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  color: var(--tint);
  background: var(--tint-light);
}

.nav-cta {
  background: var(--tint);
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: 0 2px 12px rgba(0,170,255,0.3);
}
.nav-cta:hover {
  background: var(--tint-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,170,255,0.4) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero-index {
  background: linear-gradient(135deg, #00aaff 0%, #0077cc 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-index::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-text { color: white; }
.hero-text .badge {
  background: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.store-btn-white {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.store-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.store-btn-outline {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.store-btn-outline:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  position: relative;
}

.phone-mockup {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.phone-mockup img {
  display: block;
  border-radius: 0;
  width: 100%;
}

.phone-mockup.phone-main {
  width: 200px;
  animation: floatMain 5s ease-in-out infinite;
}

.phone-mockup.phone-side {
  width: 170px;
  opacity: 0.85;
  transform: translateY(40px);
  animation: floatSide 5s ease-in-out infinite 0.5s;
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes floatSide {
  0%, 100% { transform: translateY(40px); }
  50% { transform: translateY(24px); }
}

.hero-shapes span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: drift 8s ease-in-out infinite;
}
.hero-shapes span:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -40px; animation-delay: 0s; }
.hero-shapes span:nth-child(2) { width: 180px; height: 180px; bottom: 60px; left: 10%; animation-delay: 2s; }
.hero-shapes span:nth-child(3) { width: 100px; height: 100px; top: 40%; right: 20%; animation-delay: 4s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--tint);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.features-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.features-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-intro p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  position: relative;
}

.feature-phone {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
  overflow: hidden;
}
.feature-phone:hover { transform: scale(1.03) rotate(-1deg); }

.feature-phone img { border-radius: 0; }

.feature-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--tint);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.feature-content .badge { margin-bottom: 1rem; }
.feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.feature-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--tint);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.bento-section { background: var(--bg); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.bento-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tint-light), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tint);
}
.bento-card:hover::before { opacity: 1; }

.bento-card.span-2 { grid-column: span 2; }

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.bento-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  position: relative;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
}

.bento-card.accent {
  background: var(--tint);
  color: white;
  border-color: var(--tint);
}
.bento-card.accent p { color: rgba(255,255,255,0.8); }
.bento-card.accent::before { display: none; }
.bento-card.accent:hover { box-shadow: 0 20px 60px rgba(0,170,255,0.4); }

.app-preview-section {
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  text-align: center;
}

.app-preview-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.preview-phone {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}
.preview-phone:hover { transform: translateY(-10px); }
.preview-phone img { border-radius: 0; display: block; }
.preview-phone.ph-lg { width: 220px; }
.preview-phone.ph-md { width: 190px; transform: translateY(20px); }
.preview-phone.ph-sm { width: 170px; transform: translateY(40px); opacity: 0.85; }

.download-cta {
  background: linear-gradient(135deg, #00aaff 0%, #0055cc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.download-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.download-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.download-cta-inner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.dl-btn-white {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.dl-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.dl-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.dl-btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.dl-btn-icon { font-size: 2rem; }
.dl-btn-text { text-align: left; }
.dl-btn-text span { display: block; font-size: 0.75rem; opacity: 0.7; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.dl-btn-text strong { font-size: 1.1rem; font-weight: 800; }

.faq-section { background: var(--bg); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--tint); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--tint-light);
  color: var(--tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--tint); color: white; }

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.steps-section { background: white; }

.steps-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--tint), transparent);
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,170,255,0.35);
  z-index: 1;
}

.step-content { padding-top: 1rem; }
.step-content h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.step-content p { color: var(--muted); line-height: 1.7; }

.policy-hero {
  background: linear-gradient(135deg, var(--tint) 0%, #0077cc 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.policy-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 0.75rem; }
.policy-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.policy-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  overflow-x: auto;
}

.policy-nav-inner {
  display: flex;
  gap: 0.25rem;
  padding: 0.75rem 2rem;
  white-space: nowrap;
}

.policy-nav-inner a {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s;
}
.policy-nav-inner a:hover, .policy-nav-inner a.active {
  color: var(--tint);
  background: var(--tint-light);
}

.policy-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; }

.policy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.policy-inner h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--tint);
}

.policy-date {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2rem;
}

.policy-inner h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2rem 0 0.5rem;
  color: var(--text);
}

.policy-inner p, .policy-inner li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-inner ul {
  list-style: none;
  margin-bottom: 1rem;
}

.policy-inner ul li {
  padding-left: 1.5rem;
  position: relative;
}

.policy-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--tint);
  font-weight: 700;
}

.policy-inner a { color: var(--tint); font-weight: 600; }

footer {
  background: var(--footer);
  color: white;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .brand { color: var(--tint); display: block; margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--tint); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.footer-badge {
  background: rgba(0,170,255,0.15);
  color: var(--tint);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .hero-grid, .feature-row { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .feature-row.reverse { direction: ltr; }
  .hero-phones { justify-content: center; }
  .feature-phone { max-width: 240px; }
  .feature-list li { justify-content: flex-start; text-align: left; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 1.25rem; }
  
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 0.25rem;
  }
  nav.open a { padding: 0.75rem 1rem; border-radius: 10px; }
  
  .menu-toggle { display: flex; }
  
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  
  .faq-grid { grid-template-columns: 1fr; }
  
  .stats-inner { gap: 2rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { padding: 50px 0 30px; }
  
  .preview-phone.ph-md, .preview-phone.ph-sm { display: none; }
  .preview-phone.ph-lg { width: 260px; }
  
  .phone-mockup.phone-side { display: none; }
  .phone-mockup.phone-main { width: 240px; }
  
  .dl-btn { min-width: 160px; }
  
  .policy-hero h1 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}