/* ===== Local Fonts ===== */
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap; src: url('assets/fonts/Inter-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-style: normal; font-display: swap; src: url('assets/fonts/Inter-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: swap; src: url('assets/fonts/Inter-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: swap; src: url('assets/fonts/Inter-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-weight: 800; font-style: normal; font-display: swap; src: url('assets/fonts/Inter-ExtraBold.ttf') format('truetype'); }

/* ===== Image Protection ===== */
img, canvas {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

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

:root {
  --primary: #6852f4;
  --primary-dark: #5a43ef;
  --gradient-start: #ff6ec4;
  --gradient-end: #7873f5;
  --text-dark: #1f2c33;
  --text-gray: #5a6872;
  --text-light: #8a9aa5;
  --bg-white: #ffffff;
  --bg-light: #f7fafd;
  --bg-dark: #0d0d1a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(104, 82, 244, 0.08);
  --shadow-lg: 0 20px 60px rgba(104, 82, 244, 0.15);
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
}

.btn-back {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.2s;
}

.btn-back:hover {
  opacity: 0.7;
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* Nav Social Icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-gray);
  transition: color 0.2s;
}

.nav-social a:hover {
  color: var(--primary);
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Toggle Slider */
.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1.5px solid #e0e0e0;
  border-radius: 25px;
  padding: 3px;
  gap: 0;
}

.lang-toggle .lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  transition: left 0.3s ease;
  z-index: 0;
}

.lang-toggle button {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
}

.lang-toggle button.active {
  color: white;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(180deg, #ede9fe 0%, #f5f3ff 40%, #ffffff 100%);
}

.hero-content {
  min-height: calc(100vh - 72px);
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(120, 115, 245, 0.12) 0%, rgba(255, 110, 196, 0.06) 40%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 24px;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(104, 82, 244, 0.35);
}

.btn-secondary {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.7;
}

/* Phone Mockup */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  height: 580px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 40px;
  padding: 6px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(104, 82, 244, 0.1);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f0f2ff, #f7fafd);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.screen-header {
  display: flex;
  gap: 6px;
  padding: 20px 20px 12px;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(104, 82, 244, 0.3);
}

.screen-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.chat-layer {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.8s ease;
}

.chat-layer.fade-out {
  opacity: 0;
}

.videocall-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.videocall-layer.show {
  opacity: 1;
}

.videocall-layer img,
.videocall-layer canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-bubble {
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 80%;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.chat-bubble.left {
  background: white;
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-bubble.right {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble:nth-child(1) { animation-delay: 0.3s; }
.chat-bubble:nth-child(2) { animation-delay: 0.8s; }
.chat-bubble:nth-child(3) { animation-delay: 1.3s; }

.video-call-icon {
  align-self: center;
  font-size: 3rem;
  margin-top: 16px;
  animation: fadeInUp 0.6s ease 1.8s forwards;
  opacity: 0;
  background: white;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(104, 82, 244, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Pause Feature Section ===== */
.pause-content {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.pause-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.pause-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.pause-content > p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 48px;
}

.pause-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pause-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(104, 82, 244, 0.35);
  animation: pausePulse 2.5s ease-in-out infinite;
}

.pause-icon-wrap svg {
  width: 44px;
  height: 44px;
  color: white;
}

@keyframes pausePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 12px 40px rgba(104, 82, 244, 0.35); }
  50% { transform: scale(1.08); box-shadow: 0 16px 50px rgba(104, 82, 244, 0.45); }
}

.pause-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pause-tags span {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid rgba(104, 82, 244, 0.15);
  box-shadow: 0 2px 12px rgba(104, 82, 244, 0.06);
}

@media (max-width: 920px) {
  .pause-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 544px) {
  .pause-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .pause-content h2 {
    font-size: 1.7rem;
  }

  .pause-content > p {
    font-size: 1rem;
  }

  .pause-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .pause-icon-wrap svg {
    width: 36px;
    height: 36px;
  }

  .pause-tags span {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}

/* ===== Value Section ===== */
.value-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-top: -40px;
  margin-bottom: 60px;
}

.store-ratings {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-light);
  padding: 28px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(104, 82, 244, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.store-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.store-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.store-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
}

/* ===== Features Section ===== */
.features-section {
  padding: 120px 0;
  background: var(--bg-light);
}

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

.feature-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(104, 82, 244, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(104, 82, 244, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(120, 115, 245, 0.1), rgba(255, 110, 196, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== Reviews / Stats Section ===== */
.reviews-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 40px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
  min-width: 160px;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-card p {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1040 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 115, 245, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 110, 196, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.btn-store:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(104, 82, 244, 0.3);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.contact-header p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(104, 82, 244, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(120, 115, 245, 0.1), rgba(255, 110, 196, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.contact-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(120, 115, 245, 0.08), rgba(255, 110, 196, 0.08));
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(120, 115, 245, 0.15), rgba(255, 110, 196, 0.15));
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  padding: 40px 0;
}

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

.footer-left p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 920px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .phone-mockup {
    width: 260px;
    height: 500px;
  }

  .nav-social {
    gap: 8px;
  }

  .nav-social svg {
    width: 16px;
    height: 16px;
  }

  .lang-toggle button {
    padding: 5px 12px;
    font-size: 0.75rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 544px) {
  html {
    font-size: 15px;
  }

  .nav-container {
    height: 60px;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-content {
    padding: 40px 16px 60px;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-description br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }

  .phone-mockup {
    width: 220px;
    height: 420px;
    border-radius: 30px;
    padding: 5px;
  }

  .phone-mockup::before {
    width: 90px;
    height: 22px;
  }

  .phone-screen {
    border-radius: 22px;
  }

  .chat-bubble {
    font-size: 0.78rem;
    padding: 10px 14px;
  }

  .video-call-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .section-title {
    font-size: 1.5rem;
    padding: 0 8px;
  }

  .section-title br {
    display: none;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-top: -40px;
  }

  .value-section,
  .features-section,
  .reviews-section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .store-ratings {
    flex-direction: column;
    align-items: center;
  }

  .store-card {
    width: 100%;
    max-width: 340px;
    padding: 20px 24px;
  }

  .stats-grid {
    gap: 0;
    flex-wrap: nowrap;
  }

  .stat-card {
    padding: 16px 10px;
    flex: 1;
  }

  .stat-number {
    font-size: 1.6rem;
    min-width: auto;
  }

  .stat-suffix {
    font-size: 0.9rem;
  }

  .stat-card p {
    font-size: 0.78rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

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

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

  .contact-section {
    padding: 60px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-text h1 {
    font-size: 4.5rem;
  }

  .phone-mockup {
    width: 340px;
    height: 640px;
  }
}
