/* ── Subly Design Tokens & System ──────────────────────── */
:root {
  --primary: #FF6B00;
  --primary-hover: #FF8533;
  --primary-glow: rgba(255, 107, 0, 0.45);
  --primary-subtle: rgba(255, 107, 0, 0.12);
  --amber: #FF9F43;
  --bg-dark: #07090E;
  --bg-card: rgba(18, 24, 38, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 107, 0, 0.35);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Global ────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ── Ambient Background Glows ──────────────────────────── */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.22) 0%, rgba(255, 159, 67, 0.08) 50%, transparent 80%);
}

.glow-bottom {
  bottom: 200px;
  right: -100px;
  width: 550px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
}

/* ── Navigation ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 9, 14, 0.75);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(-4deg);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFF, #FFA048);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.nav-btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover {
  color: var(--text-main);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: #FFF;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.nav-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.icon-download {
  width: 16px;
  height: 16px;
}

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-subtle);
  border: 1px solid rgba(255, 107, 0, 0.3);
  font-size: 12px;
  font-weight: 600;
  color: #FFB370;
  margin-bottom: 24px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #FF7B1A 0%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  animation: btn-sweep 4s infinite ease-in-out;
}

@keyframes btn-sweep {
  0% { left: -100%; }
  35%, 100% { left: 160%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-subtext {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-maintext {
  font-size: 16px;
  font-weight: 700;
}

/* Trust Row */
.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ── 3D Mascot Interactive Hero ────────────────────────── */
.hero-mascot-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}

/* Speech Bubble */
.speech-bubble {
  background: rgba(24, 30, 44, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 107, 0, 0.4);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 107, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: bubble-bob 3s ease-in-out infinite alternate;
}

.speech-bubble:hover {
  transform: scale(1.06);
  border-color: var(--primary);
}

.bubble-arrow {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(24, 30, 44, 0.95);
  border-right: 1px solid rgba(255, 107, 0, 0.4);
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
}

@keyframes bubble-bob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Mascot 3D Card */
.mascot-card {
  position: relative;
  width: 360px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  cursor: pointer;
}

.mascot-halo {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.35) 0%, rgba(255, 159, 67, 0.1) 60%, transparent 80%);
  filter: blur(40px);
  animation: pulse-halo 4s infinite ease-in-out;
  pointer-events: none;
}

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

.mascot-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.65));
  animation: mascot-levitate 4s infinite ease-in-out;
  user-select: none;
  -webkit-user-drag: none;
}

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

/* Floating Status Badges on Mascot */
.mascot-floating-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(18, 24, 38, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.badge-top-left {
  top: 30px;
  left: -20px;
  animation: badge-drift-1 5s infinite ease-in-out alternate;
}

.badge-bottom-right {
  bottom: 20px;
  right: -20px;
  animation: badge-drift-2 5s infinite ease-in-out alternate;
}

@keyframes badge-drift-1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes badge-drift-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* ── Section Headers ───────────────────────────────────── */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

/* ── Interactive Phone Demo ────────────────────────────── */
.demo-card-container {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 360px;
  background: #0D111A;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 20px 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.15);
  position: relative;
}

.phone-speaker {
  width: 70px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0 auto 16px;
}

.sim-screen {
  background: #F8FAFC;
  border-radius: 28px;
  padding: 20px 16px;
  color: #0F172A;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sim-greeting {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}

.sim-title {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.sim-badge {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Trial Items in Phone */
.trial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.trial-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #FFF;
  flex-shrink: 0;
}

.bg-netflix { background: #E50914; }
.bg-spotify { background: #1DB954; }
.bg-prime { background: #00A8E1; }

.trial-info {
  flex: 1;
}

.trial-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trial-name {
  font-size: 14px;
  font-weight: 700;
}

.trial-price {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.trial-status {
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
}

.trial-status.danger { color: #DC2626; }
.trial-status.warn { color: #D97706; }
.trial-status.normal { color: #16A34A; }

.btn-sim-cancel {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sim-cancel:hover {
  background: var(--primary);
  color: #FFF;
}

.sim-stat-box {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: #FFF;
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  font-size: 11px;
  color: #94A3B8;
}

.stat-value {
  font-size: 16px;
  font-weight: 800;
  color: #FFB347;
}

/* ── Features Grid ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.1);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Download Card ─────────────────────────────────────── */
.download-card {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.9), rgba(12, 16, 26, 0.95));
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.download-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.download-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0;
}

.download-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.download-meta-list {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.download-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* QR Code */
.qr-container {
  display: flex;
  justify-content: center;
}

.qr-box {
  background: #FFF;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#qrCanvas {
  display: block;
  margin: 0 auto 12px;
}

.qr-scan-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 60px 24px 40px;
  background: #05060A;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Responsive Helpers ────────────────────────────────── */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* ── Mobile Sticky Download Bar ────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 14, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 107, 0, 0.35);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-app-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.sticky-app-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #FFF;
  line-height: 1.2;
}

.sticky-app-sub {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

.btn-sticky-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #FFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-sticky-download:active {
  transform: scale(0.96);
}

/* ── Mobile Install Guide Cards ────────────────────────── */
.mobile-install-guide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.install-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: left;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
}

.step-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1.4;
}

/* ── Responsive Breakpoints ────────────────────────────── */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions, .trust-row {
    justify-content: center;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-bar {
    display: flex;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  /* Section Spacing on Mobile */
  .hero {
    padding: 36px 16px 54px;
  }

  .section {
    padding: 56px 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Mobile Navbar */
  .nav-container {
    padding: 12px 16px;
  }

  .nav-links a:not(.nav-btn) {
    display: none;
  }

  .nav-btn {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }

  /* Hero Actions on Mobile */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 32px;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mascot on Mobile */
  .hero-mascot-container {
    margin-top: 10px;
  }

  .mascot-card {
    width: 280px;
    height: 290px;
  }

  .mascot-img {
    width: 240px;
    height: 240px;
  }

  .mascot-halo {
    width: 220px;
    height: 220px;
  }

  .mascot-floating-badge {
    padding: 6px 12px;
    font-size: 11px;
  }

  .badge-top-left {
    left: -8px;
    top: 8px;
  }

  .badge-bottom-right {
    right: -8px;
    bottom: 8px;
  }

  .speech-bubble {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Phone Simulator on Mobile */
  .phone-frame {
    width: 100%;
    max-width: min(330px, 92vw);
    border-radius: 30px;
    padding: 14px 10px;
  }

  .sim-screen {
    border-radius: 22px;
    padding: 14px 12px;
  }

  .trial-item {
    padding: 10px;
    gap: 10px;
  }

  .trial-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 8px;
  }

  .trial-name {
    font-size: 13px;
  }

  .trial-price {
    font-size: 12px;
  }

  .btn-sim-cancel {
    padding: 4px 8px;
    font-size: 10px;
  }

  /* Features Grid on Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-desc {
    font-size: 13px;
  }

  /* Download Card on Mobile */
  .download-card {
    padding: 28px 18px;
    border-radius: 22px;
    gap: 28px;
  }

  .download-title {
    font-size: 26px;
  }

  .download-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .download-meta-list {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .download-btn-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .download-btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer on Mobile */
  .footer {
    padding: 40px 18px 90px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .badge-pill {
    padding: 6px 12px;
    font-size: 11px;
    max-width: 100%;
    text-align: center;
  }

  .badge-text {
    line-height: 1.3;
  }

  .mascot-card {
    width: 250px;
    height: 260px;
  }

  .mascot-img {
    width: 210px;
    height: 210px;
  }

  .mascot-halo {
    width: 190px;
    height: 190px;
  }

  .badge-top-left {
    left: -4px;
    top: 4px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .badge-bottom-right {
    right: -4px;
    bottom: 4px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .phone-frame {
    max-width: 100%;
    border-radius: 26px;
    padding: 12px 8px;
  }

  .btn-maintext {
    font-size: 14px;
  }

  .btn-subtext {
    font-size: 10px;
  }

  .btn-lg {
    padding: 14px 20px;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .download-card {
    padding: 24px 14px;
  }

  .download-title {
    font-size: 23px;
  }
}

