/* ============================
   CUSTOM PROPERTIES
   ============================ */
:root {
  --green: #1B8A5C;
  --green-light: #22a870;
  --green-dim: rgba(27, 138, 92, 0.15);
  --gold: #F2C230;
  --gold-dim: rgba(242, 194, 48, 0.15);
  --orange: #FF8030;

  --bg: #080e0a;
  --bg-2: #0e1812;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(27,138,92,0.4);

  --text: #f0f4f1;
  --text-muted: #7a9e8a;
  --text-dim: #4a6657;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;

  --shadow-card: 0 4px 40px rgba(0,0,0,0.4);
  --shadow-green: 0 8px 40px rgba(27,138,92,0.25);

  --font: 'Inter', system-ui, sans-serif;
  --font-arabic: 'Amiri', serif;

  --max-w: 1180px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================
   LAYOUT
   ============================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-alt { background: var(--bg-2); }

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(27,138,92,0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,138,92,0.4);
}
.btn-primary:hover { background: var(--green-light); box-shadow: 0 6px 28px rgba(27,138,92,0.55); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(27,138,92,0.5);
}
.btn-outline:hover { border-color: var(--green); background: var(--green-dim); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(8,14,10,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.3rem;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 8px;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(8,14,10,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border: none; }
.btn-mobile { margin-top: 8px; text-align: center; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--green);
  top: -200px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -100px; right: 100px;
  opacity: 0.12;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(27,138,92,0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-social-proof p { font-size: 0.875rem; color: var(--text-dim); }

.avatars {
  display: flex;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #1B8A5C, #0d5c3a); }
.av2 { background: linear-gradient(135deg, #F2C230, #c9971a); }
.av3 { background: linear-gradient(135deg, #FF8030, #c85e1a); }
.av4 { background: linear-gradient(135deg, #5B8AF2, #3a5dc9); }

/* ============================
   PHONE MOCKUP
   ============================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-frame {
  position: relative;
  width: 280px;
  background: #111;
  border-radius: 48px;
  border: 8px solid #222;
  box-shadow: 0 0 0 1px #333, 0 40px 80px rgba(0,0,0,0.7);
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 32px;
  background: #111;
  border-radius: 0 0 22px 22px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d1f16 0%, #070e09 100%);
  overflow: hidden;
}

.app-screen {
  padding: 48px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-header { text-align: center; }
.app-surah-name {
  font-family: var(--font-arabic);
  font-size: 1.2rem;
  color: var(--gold);
  direction: rtl;
}
.app-progress-label { font-size: 0.65rem; color: var(--text-dim); margin-top: 2px; }

.app-verse-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.app-arabic {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--text);
  text-align: right;
  direction: rtl;
  line-height: 1.8;
}

.app-translation {
  font-size: 0.6rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.app-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.app-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 4px;
}

.app-stats {
  display: flex;
  justify-content: space-around;
}
.app-stat { text-align: center; }
.app-stat-icon { font-size: 0.9rem; }
.app-stat-val { font-size: 0.75rem; font-weight: 700; color: var(--text); }
.app-stat-lbl { font-size: 0.55rem; color: var(--text-dim); }

.app-unlock-btn {
  background: var(--green);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.app-unlock-inner { font-size: 0.65rem; font-weight: 700; color: #fff; }

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(27,138,92,0.2), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============================
   HOW IT WORKS
   ============================ */
.steps {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ============================
   FEATURES GRID
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.feature-card-large { grid-column: span 2; }

.feature-emoji { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.streak-visual {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.streak-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.streak-day span { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; }
.streak-day .dot {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}
.streak-day.active .dot {
  background: linear-gradient(135deg, var(--orange), #ff5a00);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,128,48,0.4);
}

.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(27,138,92,0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ============================
   STRATEGIES
   ============================ */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.strategy-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.strategy-icon { font-size: 1.5rem; margin-bottom: 16px; }
.strategy-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.strategy-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.strategy-example {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(27,138,92,0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* ============================
   PRICING
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(160deg, rgba(27,138,92,0.12), rgba(27,138,92,0.04));
  border-color: rgba(27,138,92,0.4);
  box-shadow: var(--shadow-green);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--green);
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.pricing-period { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.feat-yes { color: var(--text); }
.feat-yes::before { background: var(--green-dim); color: var(--green); }
.feat-no { color: var(--text-dim); text-decoration: line-through; }
.feat-no::before { content: '✕'; background: rgba(255,255,255,0.04); color: var(--text-dim); }

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 32px;
}

/* ============================
   HADITH
   ============================ */
.hadith-section { background: var(--bg); }

.hadith-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
}

.hadith-ornament {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.hadith-arabic {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold);
  direction: rtl;
  line-height: 2;
  margin-bottom: 20px;
}

.hadith-translation {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hadith-source {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: var(--green);
  opacity: 0.15;
  top: -200px; left: 50%; transform: translateX(-50%);
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: var(--gold);
  opacity: 0.08;
  bottom: -100px; right: 10%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.app-store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.cta-sub { font-size: 0.8rem; color: var(--text-dim); margin-top: 16px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); }

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.steps .reveal:nth-child(1) { transition-delay: 0s; }
.steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps .reveal:nth-child(3) { transition-delay: 0.15s; }
.steps .reveal:nth-child(4) { transition-delay: 0.2s; }
.steps .reveal:nth-child(5) { transition-delay: 0.25s; }

.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.25s; }

.strategies-grid .reveal:nth-child(1) { transition-delay: 0s; }
.strategies-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.strategies-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.strategies-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

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

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav > .container > .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .reveal.reveal-right { transform: translateY(24px); }

  .steps {
    flex-direction: column;
  }
  .step-arrow { transform: rotate(90deg); }

  .features-grid { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card-featured { transform: scale(1); }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }

  .hadith-card { padding: 36px 24px; }
  .hadith-arabic { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .phone-mockup { width: 240px; }
  .phone-frame { width: 240px; }
}
