/* ============================================
   QuranPal Landing Page v2 - Figma Design
   ============================================ */

/* CSS Variables - From Figma */
:root {
  /* Colors */
  --bg-primary: #F0EAE3;
  --bg-secondary: #E4DED8;
  --text-primary: #2A2A2A;
  --text-secondary: rgba(42, 42, 42, 0.7);
  --btn-primary: #034431;
  --btn-primary-text: #F0EAE3;
  --btn-accent: #DBAD00;
  --btn-black: #090909;
  --border-light: rgba(42, 42, 42, 0.12);

  /* Typography - Inter Display */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;

  /* Spacing */
  --container-padding: 171px;
  --section-gap: 50px;
}

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

html {
  overflow-x: hidden;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1484px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  background: rgba(42, 42, 42, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
}

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

.nav-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

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

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--btn-primary);
  color: var(--btn-primary-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 68, 49, 0.3);
}

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

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 2000;
  padding: 24px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-close svg {
  width: 100%;
  height: 100%;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
}

.mobile-cta {
  margin-top: 16px;
  justify-content: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 1113px;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  z-index: 1;
}

/* Background Layer */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  width: 110%;
  height: 110vh;
  left: -5%;
  top: -5%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.75;
  animation: softBreathe 12s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes softBreathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.8;
  }
}

/* Shiny overlay effect */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 1s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 150%;
  }
}

.hero-bg-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 290px;
  background: linear-gradient(180deg,
    rgba(240, 234, 227, 0) 19.45%,
    rgba(240, 234, 227, 0.23) 41.65%,
    #F0EAE3 77.82%
  );
  pointer-events: none;
  z-index: 2;
}

/* Circular vignette fade */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to right, #F0EAE3 0%, transparent 20%, transparent 80%, #F0EAE3 100%),
    radial-gradient(
      ellipse 80% 80% at 50% 50%,
      transparent 30%,
      rgba(240, 234, 227, 0.4) 60%,
      #F0EAE3 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Watermark */
.hero-watermark {
  display: none;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 110px;
  min-height: 100vh;
}

/* Left Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 680px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: 100px;
}

.hero-badge span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--text-primary);
}

/* All Headlines - APA Title Case Format */
.hero-headline,
.why-headline,
.fits-headline,
.action-headline,
.science-headline,
.ai-coach-headline,
.community-headline,
.normal-day-headline,
.perfect-for-headline,
.pricing-headline,
.ready-headline,
.not-teaching-title {
  text-transform: capitalize;
}

/* Headline */
.hero-headline {
  font-weight: 600;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  margin: 0;
  margin-top: 6px;
}

/* Subtitle */
.hero-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  max-width: 500px;
  margin-top: 6px;
}

.hero-subtitle em {
  font-style: italic;
}

/* Store Buttons */
.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  box-sizing: border-box;
}

.store-button {
  display: block;
  text-decoration: none;
  width: 172px;
  height: 63px;
  border-radius: 40px;
  background: var(--btn-black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 1;
  min-width: 0;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.store-button-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 0 20px;
}

.store-icon {
  width: 24px;
  height: 24px;
  color: white;
  flex-shrink: 0;
}

.play-icon {
  width: 22px;
  height: 24px;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-label {
  font-size: 10px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.store-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

/* Tags */
.hero-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.hero-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-secondary);
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Phone Mockups */
.hero-phones {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translateY(-44%);
  width: 55%;
  max-width: 900px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phones-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  object-position: center;
}

/* ============================================
   Why QuranPal Section
   ============================================ */

.why-section {
  position: relative;
  padding: 80px 0 120px;
  background: #F0EAE3;
  z-index: 10;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-headline {
  font-weight: 600;
  font-size: 54px;
  line-height: 80px;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.why-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 auto;
  max-width: 511px;
}

/* Cards Container */
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1484px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Card Base */
.why-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 730px;
  min-width: 300px;
  background: #F5F5F5;
  border: 1px solid rgba(42, 42, 42, 0.06);
  border-radius: 32px;
  padding: 32px 36px 28px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

/* Desktop only - why cards */
@media (min-width: 993px) {
  .why-card {
    min-height: 0;
    padding-bottom: 24px;
  }

  .why-highlight {
    margin-top: 10px;
  }
}

/* Left Card Content */
.why-card-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #2A2A2A;
  margin: 0 0 24px 0;
}

/* Quote Wrapper */
.why-quote-wrapper {
  position: relative;
  width: 100%;
  max-width: 614px;
  margin-bottom: 36px;
}

.why-quote-image {
  width: 100%;
  max-width: 614px;
  height: auto;
  object-fit: contain;
}

.why-maybe {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #6E6E6E;
  margin: 0 0 12px 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  width: 100%;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.why-x {
  color: #C45C5C;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.why-bold {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #2A2A2A;
  margin: 0 0 4px 0;
}

.why-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0 0 24px 0;
}

.why-highlight {
  font-weight: 600;
  font-size: 34px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #1B4332;
  margin: 0;
}

/* Right Card - Phone */
.why-card-phone {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(42, 42, 42, 0.06);
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
}

.why-phone-image {
  width: 100%;
  max-width: 553px;
  height: auto;
  object-fit: contain;
  border-radius: 59px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ============================================
   Not Another Teaching App Section
   ============================================ */

.not-teaching-section {
  position: relative;
  padding: 0 24px;
  margin-bottom: 80px;
}

.not-teaching-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1484px;
  height: 650px;
  margin: 0 auto;
  padding: 60px 70px;
  background: #1B4332;
  border-radius: 32px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Pattern */
.not-teaching-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.25;
  pointer-events: none;
}

/* Fade edges on all four sides */
.not-teaching-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 20%,
    rgba(27, 67, 50, 0.5) 60%,
    #1B4332 100%
  );
  pointer-events: none;
}

/* Left Column: Static Image + Widget Stack */
.not-teaching-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 20px 0;
  width: 45%;
  min-width: 450px;
}

.not-teaching-title {
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  color: #F0EAE3;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

/* Right Column: Title + Description + Features */
.not-teaching-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.not-teaching-desc {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  margin: 0 0 0 0;
  width: 100%;
  max-width: 532px;
  height: auto;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Phone Mockup */
.not-teaching-phone {
  position: absolute;
  top: 290px;
  left: 70px;
  width: 100%;
  max-width: 473px;
  height: auto;
  z-index: 5;
}

/* Gradient overlay for cards area */
.not-teaching-container::before {
  content: '';
  position: absolute;
  top: 380px;
  display: none;
  left: 0;
  width: 100%;
  max-width: 580px;
  height: 300px;
  background: linear-gradient(180deg, rgba(27, 67, 50, 0) 0%, rgba(27, 67, 50, 0.9) 50%, #1B4332 100%);
  pointer-events: none;
  z-index: 6;
}

.phone-screen {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* Static Feature Card + Floating Widget Stack Container */
.static-feature-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.static-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(27, 67, 50, 0) 0%, rgba(27, 67, 50, 0.9) 80%, #1B4332 100%);
}

.static-feature-img {
  width: 100%;
  height: auto;
  /* border-radius: 24px; */
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); */
  display: block;
  margin: 0 auto;
}

/* Widget Stack - Floating on Static Image */
.widget-stack {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  max-width: 590px;
  height: 280px;
  z-index: 10;
  overflow: visible;
}

.widget-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  outline: none;
  display: block;
}

.widget-card.card-exit {
  opacity: 0 !important;
  transform: translateY(-40px) scale(1) !important;
  filter: blur(3px) !important;
}

/* Cards Stack Carousel */
.not-teaching-cards-stack {
  position: absolute;
  top: 60px;
  left: 100px;
  width: 100%;
  max-width: 480px;
  height: 520px;
  z-index: 5;
}

/* Static Features Card */
.stack-card.card-features {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 10;
}

/* Scrolling Cards Container */
.cards-carousel {
  position: absolute;
  top: 220px;
  left: -30px;
  width: 100%;
  max-width: 450px;
  height: 280px;
}

/* Notification Cards - Stacked Effect */
.notification-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
}

/* Card 1: Features Card */
.card-features {
  z-index: 5;
}

.card-features .card-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #1B4332;
  margin-bottom: 20px;
}

.card-features-grid {
  display: flex;
  gap: 16px;
}

.feature-tile {
  flex: 1;
  background: linear-gradient(145deg, #E8F5E9 0%, #F5F5F5 100%);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.feature-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-tile-icon.green {
  background: rgba(27, 67, 50, 0.1);
  color: #1B4332;
}

.feature-tile-icon.orange {
  background: rgba(219, 173, 0, 0.15);
  color: #B8860B;
}

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

.feature-tile-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-tile-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #1B4332;
}

.feature-tile-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  color: #666;
}

.feature-tile-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  color: #999;
}

/* Card 2: Remember Card */
.card-remember {
  top: 0;
  left: 30px;
  width: calc(100% - 30px);
  max-width: 420px;
  z-index: 4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.card-remember-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-remember-icon {
  width: 44px;
  height: 44px;
  background: #F5F5F5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-remember-icon svg {
  width: 22px;
  height: 22px;
  color: #666;
}

.card-remember-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-remember-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  color: #888;
}

.card-remember-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #1B4332;
}

.card-remember-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.card-time-ago {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: #1B4332;
}

.card-time-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  color: #888;
}

/* Card 3: Surah Card */
.card-surah {
  top: 68px;
  left: 10px;
  width: calc(100% - 10px);
  max-width: 440px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-surah-icon {
  width: 40px;
  height: 40px;
  background: #F5F5F5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-surah-icon svg {
  width: 20px;
  height: 20px;
  color: #888;
}

.card-surah-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-surah-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #1B4332;
}

.card-surah-continue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF8E7;
  border-radius: 20px;
  padding: 6px 12px;
  width: fit-content;
}

.card-surah-continue svg {
  width: 10px;
  height: 10px;
  color: #B8860B;
}

.card-surah-continue span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: #1B4332;
}

/* Card 4: Progress Card */
.card-progress {
  top: 126px;
  left: -10px;
  width: calc(100% + 10px);
  max-width: 460px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-progress-icon {
  width: 36px;
  height: 36px;
  background: #F5F5F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-progress-icon svg {
  width: 18px;
  height: 18px;
  color: #888;
}

.card-progress-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  color: #666;
}

/* Card 5: Focus Card */
.card-focus {
  top: 178px;
  left: -30px;
  width: calc(100% + 30px);
  max-width: 480px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1B4332;
}

.card-focus-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-focus-icon svg {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
}

.card-focus-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: #FFFFFF;
}

/* Cards Auto-scroll Animation - Disabled for now */
@keyframes cardsScroll {
  0%, 22% {
    transform: translateY(0);
  }
  25%, 47% {
    transform: translateY(-68px);
  }
  50%, 72% {
    transform: translateY(-126px);
  }
  75%, 97% {
    transform: translateY(-178px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Animation disabled - uncomment to enable
.cards-carousel {
  animation: cardsScroll 8s ease-in-out infinite;
}
*/

/* Features Grid */
.not-teaching-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 30px;
  width: 100%;
  max-width: 672px;
  height: auto;
  margin-top: 30px;
}

.feature-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 30px;
  width: 100%;
  max-width: 672px;
  height: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 321px;
  max-width: 321px;
  height: auto;
  flex-shrink: 0;
}

.feature-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
}

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

.feature-dash {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #EFEAE4;
  flex-shrink: 0;
}

.feature-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  display: flex;
  align-items: center;
}

.feature-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #F0EAE3;
  margin: 0;
  padding-left: 24px;
  white-space: nowrap;
}

/* ============================================
   How QuranPal Fits Section
   ============================================ */

.fits-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.fits-header {
  text-align: center;
  margin-bottom: 60px;
}

.fits-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 80px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 16px;
  white-space: nowrap;
}

.fits-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 513px;
}

.fits-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1483px;
  height: auto;
  margin: 0 auto;
}

.fits-card {
  position: relative;
  width: 100%;
  max-width: 481px;
  flex: 1 1 300px;
  min-width: 280px;
  height: auto;
  background: rgba(42, 42, 42, 0.06);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 32px;
  padding: 30px;
}

/* Desktop only - fits cards */
@media (min-width: 993px) {
  .fits-card {
    min-height: 0;
    height: auto;
  }
}

.fits-card-icon {
  width: 30px;
  height: 31px;
  color: #1B4332;
}

.fits-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1B4332;
}

.fits-card-content {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* Desktop only - fits-card content */
@media (min-width: 993px) {
  .fits-card-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 16px;
  }
}

.fits-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.fits-card-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

/* ============================================
   See QuranPal in Action Section
   ============================================ */

.action-section {
  position: relative;
  padding: 100px 24px;
  background: var(--bg-primary);
  overflow: hidden;
}

.action-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.action-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: lighten;
}

.action-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 290px;
  background: linear-gradient(180deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.action-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 290px;
  background: linear-gradient(0deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.action-gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 520px;
  background: linear-gradient(90deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.action-gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 545px;
  background: linear-gradient(270deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.action-header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.action-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 80px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 20px;
}

.action-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 513px;
}

.action-phones {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px;
}

.action-phones-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 350px 140px rgba(0, 0, 0, 0.01))
          drop-shadow(0px 197px 118px rgba(0, 0, 0, 0.05))
          drop-shadow(0px 87px 87px rgba(0, 0, 0, 0.09))
          drop-shadow(0px 22px 48px rgba(0, 0, 0, 0.1));
}

/* Phone Slider */
.phone-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: 820px;
  perspective: 1000px;
}

.phone-slide {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 40px;
  overflow: hidden;
}

.phone-slide img {
  width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.15));
}

/* Center position - prominent */
.phone-slide[data-position="center"] {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

/* Left position */
.phone-slide[data-position="left"] {
  z-index: 1;
  transform: translateX(-320px) scale(0.85);
  opacity: 0.7;
  filter: brightness(0.9) saturate(0.8);
}

/* Right position */
.phone-slide[data-position="right"] {
  z-index: 1;
  transform: translateX(320px) scale(0.85);
  opacity: 0.7;
  filter: brightness(0.9) saturate(0.8);
}

/* Hidden position (for 4th slide) */
.phone-slide[data-position="hidden"] {
  z-index: 0;
  transform: translateX(0) scale(0.6);
  opacity: 0;
  pointer-events: none;
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1B4332;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-right {
  right: 0;
}

.action-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   Built on Science Section
   ============================================ */

.science-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.science-header {
  text-align: center;
  margin-bottom: 60px;
}

.science-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 24px;
  max-width: 900px;
}

.science-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 800px;
}

.science-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1483px;
  margin: 0 auto 40px;
}

.science-card {
  position: relative;
  width: 100%;
  max-width: 363px;
  flex: 1 1 280px;
  min-width: 250px;
  height: auto;
  background: rgba(42, 42, 42, 0.06);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 32px;
  padding: 30px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

/* Desktop only - science cards */
@media (min-width: 993px) {
  .science-card {
    min-height: 0;
    height: auto;
  }

  .science-card-content {
    position: relative;
    margin-top: auto;
  }
}

.science-card-icon {
  width: 30px;
  height: 31px;
  flex-shrink: 0;
}

.science-card-icon svg {
  width: 100%;
  height: 100%;
}

.science-card-content {
  position: relative;
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.science-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.science-card-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.science-footer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.science-footer-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #898989;
  margin: 0;
}

.science-footer-text strong {
  font-weight: 500;
  color: #2A2A2A;
}

/* ============================================
   AI Memory Coach Section
   ============================================ */

.ai-coach-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.ai-coach-header {
  text-align: center;
}

.ai-coach-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 24px;
  max-width: 596px;
}

.ai-coach-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 720px;
}

/* What AI Does Card */
.ai-does-card {
  width: 100%;
  max-width: 600px;
  flex: 1 1 300px;
  min-width: 280px;
  height: auto;
  min-height: 408px;
  border-radius: 24px;
  background-color: #1B4332;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.ai-does-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 24px;
}

.ai-does-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(179.3deg, rgba(3, 68, 49, 0) 41.13%, rgba(3, 68, 49, 0.84) 77.15%, rgba(3, 68, 49, 0.91) 82.36%, rgba(3, 68, 49, 0.95) 88.13%, #034431 95.77%);
  pointer-events: none;
  border-radius: 24px;
}

.ai-does-header {
  width: 100%;
  height: 95px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.ai-does-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  margin: 0;
}

.ai-does-icon {
  width: 28px;
  height: 28px;
}

.ai-does-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 184px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.ai-does-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ai-does-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ai-does-list span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* AI Cards Container */
.ai-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

/* What AI Doesn't Card */
.ai-doesnt-card {
  width: 100%;
  max-width: 600px;
  flex: 1 1 300px;
  min-width: 280px;
  height: auto;
  min-height: 408px;
  border-radius: 24px;
  background: rgba(42, 42, 42, 0.06);
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.ai-doesnt-header {
  width: 100%;
  height: 95px;
  background: rgba(42, 42, 42, 0.04);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  box-sizing: border-box;
}

.ai-doesnt-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.ai-doesnt-icon {
  width: 28px;
  height: 28px;
}

.ai-doesnt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 184px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-doesnt-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ai-doesnt-x {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ai-doesnt-list span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ai-coach-footer {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #898989;
  margin: 40px auto 0;
  white-space: nowrap;
}

/* ============================================
   Community Section
   ============================================ */

.community-section {
  padding: 80px 24px;
  background: var(--bg-primary);
}

.community-container {
  position: relative;
  width: 100%;
  max-width: 1484px;
  height: 668px;
  margin: 0 auto;
  background: #1B4332;
  border-radius: 32px;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.community-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 315px;
  background: linear-gradient(179.3deg, rgba(3, 68, 49, 0) 41.13%, rgba(3, 68, 49, 0.84) 61.62%, rgba(3, 68, 49, 0.91) 68.78%, rgba(3, 68, 49, 0.95) 77.78%, #034431 95.77%);
  pointer-events: none;
}

.community-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  height: 100%;
  box-sizing: border-box;
}

.community-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #EFEAE4;
  margin: 0 0 24px 0;
}

.community-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #EFEAE4;
  margin: 0 0 50px 0;
  max-width: 532px;
}

.community-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 40px;
}

.community-card {
  width: 100%;
  max-width: 325px;
  flex: 1 1 250px;
  min-width: 200px;
  height: auto;
  border-radius: 18px;
  padding: 12px 12px 16px 12px;
  background: rgba(239, 234, 228, 0.04);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

/* Desktop only - community cards */
@media (min-width: 993px) {
  .community-card {
    min-height: 0;
    height: auto;
  }
}

.community-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.community-card-icon {
  width: 20px;
  height: 21px;
  flex-shrink: 0;
}

.community-card-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.community-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  margin: 0;
}

.community-card-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #D4AF37;
  margin: 0;
}

.community-card-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #EFEAE4;
  margin: 0;
  padding-left: 32px;
}

.community-footer {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(239, 234, 228, 0.74);
  margin: 0;
  white-space: nowrap;
}

/* ============================================
   A Normal Day with QuranPal Section
   ============================================ */

.normal-day-section {
  padding: 80px 24px;
  background: var(--bg-primary);
}

.normal-day-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1484px;
  min-height: auto;
  margin: 0 auto;
  background: rgba(42, 42, 42, 0.06);
  border: 1px solid rgba(42, 42, 42, 0.07);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 32px;
  overflow: hidden;
}

.normal-day-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  animation: softBreathe 12s ease-in-out infinite;
}

/* Shiny effect for normal day section */
.normal-day-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 1s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.normal-day-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 30% 50%, rgba(240, 234, 227, 0.95) 0%, rgba(240, 234, 227, 0.7) 40%, rgba(240, 234, 227, 0) 70%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

.normal-day-content {
  position: relative;
  z-index: 2;
  padding: 55px 45px;
  width: 100%;
  max-width: 700px;
}

.normal-day-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  color: #2A2A2A;
  margin: 0 0 18px 0;
  width: 100%;
  max-width: 562px;
}

.normal-day-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0 0 50px 0;
  width: 100%;
  max-width: 600px;
}

.normal-day-times {
  position: relative;
  width: 100%;
  max-width: 691px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.time-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 691px;
}

.time-icon {
  width: 50px;
  height: 50px;
  background: rgba(42, 42, 42, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.time-icon svg {
  width: 20px;
  height: 21px;
}

.time-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: 627px;
  flex: 1;
}

.time-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.time-desc {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
  max-width: 479px;
}

.normal-day-buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 12px;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 40px;
}

.normal-day-phones {
  position: relative;
  z-index: 2;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 50px;
}

.normal-day-phones-image {
  width: 100%;
  max-width: 830px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.15));
}

/* ============================================
   Who QuranPal is Perfect For Section
   ============================================ */

.perfect-for-section {
  position: relative;
  padding: 100px 24px;
  background: var(--bg-primary);
  overflow: hidden;
}

.perfect-for-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.perfect-for-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: lighten;
}

.perfect-for-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 290px;
  background: linear-gradient(180deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.perfect-for-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 290px;
  background: linear-gradient(0deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.perfect-for-gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 520px;
  background: linear-gradient(90deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.perfect-for-gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 545px;
  background: linear-gradient(270deg, #F0EAE3 0%, rgba(240, 234, 227, 0.23) 41.65%, rgba(240, 234, 227, 0) 100%);
  z-index: 1;
}

.perfect-for-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.perfect-for-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 20px;
}

.perfect-for-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 720px;
}

.perfect-for-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1484px;
  margin: 0 auto;
}

.perfect-for-card {
  position: relative;
  width: 100%;
  max-width: 363px;
  flex: 1 1 280px;
  min-width: 250px;
  height: auto;
  background: rgba(42, 42, 42, 0.06);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 32px;
  padding: 30px;
  box-sizing: border-box;
}

/* Desktop only - perfect-for cards */
@media (min-width: 993px) {
  .perfect-for-card {
    min-height: 0;
    height: auto;
  }
}

.perfect-for-icon {
  width: 30px;
  height: 30px;
}

.perfect-for-icon svg {
  width: 100%;
  height: 100%;
}

.perfect-for-content {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* Desktop only - perfect-for content */
@media (min-width: 993px) {
  .perfect-for-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 16px;
  }
}

.perfect-for-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.perfect-for-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

/* ============================================
   Simple, Honest Pricing Section
   ============================================ */

.pricing-section {
  position: relative;
  padding: 100px 24px;
  background: var(--bg-primary);
}

.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto 20px;
}

.pricing-subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 720px;
}

.pricing-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1484px;
  margin: 0 auto;
}

.pricing-card {
  width: 100%;
  max-width: 484px;
  flex: 1 1 300px;
  min-width: 280px;
  background: rgba(42, 42, 42, 0.06);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 32px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Desktop only - pricing cards */
@media (min-width: 993px) {
  .pricing-card {
    min-height: 0;
    height: auto;
  }
}

.pricing-card-featured {
  background: #1B4332;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.12);
}

.pricing-card-featured .pricing-card-top {
  border-bottom-color: rgba(239, 234, 228, 0.2);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pricing-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  margin: 0;
}

.pricing-card-featured .pricing-plan-name {
  color: #EFEAE4;
}

.pricing-plan-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #2A2A2A;
  margin: 0;
}

.pricing-card-featured .pricing-plan-tagline {
  color: rgba(239, 234, 228, 0.9);
}

.pricing-toggle-icon {
  width: 24px;
  height: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.05em;
  color: #2A2A2A;
}

.pricing-card-featured .pricing-amount {
  color: #EFEAE4;
}

.pricing-period {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: rgba(42, 42, 42, 0.7);
}

.pricing-card-featured .pricing-period {
  color: rgba(239, 234, 228, 0.7);
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 20px;
  gap: 10px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pricing-btn-outline {
  background: transparent;
  border: 1.5px solid #1B4332;
  color: #2A2A2A;
}

.pricing-btn-outline:hover {
  background: rgba(27, 67, 50, 0.05);
}

.pricing-btn-primary {
  background: #DBAD00;
  border: none;
  color: #2A2A2A;
}

.pricing-btn-primary:hover {
  background: #c49c00;
}

.pricing-card-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: rgba(42, 42, 42, 0.74);
  margin: 0;
}

.pricing-card-featured .pricing-features-label {
  color: rgba(239, 234, 228, 0.74);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-features li span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
}

.pricing-card-featured .pricing-features li span {
  color: #EFEAE4;
}

/* ============================================
   Ready CTA Section
   ============================================ */

.ready-section {
  position: relative;
  padding: 100px 24px 40px;
  background: var(--bg-primary);
}

.ready-container {
  position: relative;
  max-width: 1484px;
  height: 508px;
  margin: 0 auto;
  background: rgba(42, 42, 42, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ready-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/Background_hero_v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: lighten;
  pointer-events: none;
  animation: softBreathe 12s ease-in-out infinite;
}

.ready-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200, 200, 200, 0) 0%, rgba(180, 180, 180, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.ready-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 696px;
  text-align: center;
}

.ready-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #2A2A2A;
  margin: 0;
}

.ready-subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2A2A2A;
  margin: 0;
  max-width: 750px;
}

.ready-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  max-width: 100%;
  box-sizing: border-box;
}

.store-button-dark {
  background: #090909;
  border-color: #090909;
}

.store-button-dark .store-text .store-label,
.store-button-dark .store-text .store-name {
  color: #FFFFFF;
}

.store-button-dark .store-icon {
  color: #FFFFFF;
}

/* ============================================
   Footer Section
   ============================================ */

.footer {
  padding: 20px 24px;
  background: var(--bg-primary);
}

.footer-container {
  max-width: 1485px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2A2A2A;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #2A2A2A;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 100px;
}

.footer-copyright {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: rgba(42, 42, 42, 0.7);
  margin: 0;
}

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

/* Large Desktop (1440px and below) */
@media (max-width: 1440px) {
  :root {
    --container-padding: 100px;
  }

  .hero-content {
    width: 550px;
    max-width: 550px;
  }

  .hero-headline {
    font-size: 60px;
    line-height: 68px;
  }

  .hero-phones {
    left: 52%;
    width: 58%;
    max-width: 550px;
  }

  .hero-watermark {
    top: 500px;
  }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
  :root {
    --container-padding: 60px;
  }

  .hero-content {
    width: 450px;
    max-width: 450px;
  }

  .hero-headline {
    font-size: 52px;
    line-height: 58px;
  }

  .hero-phones {
    left: 40%;
    width: 60%;
    max-width: 750px;
  }

  .hero-tags {
    flex-wrap: wrap;
    width: auto;
  }
  .footer-legal {
    margin-left: 40px;
  }
}

/* Medium Desktop (1024px - 1350px) - Not Teaching Section Fix */
@media (max-width: 1350px) and (min-width: 1025px) {
  .not-teaching-container {
    height: 550px;
  }

  .not-teaching-right {
    justify-content: space-between;
    height: 100%;
  }

  .not-teaching-desc {
    margin-bottom: 0;
  }

  .not-teaching-features {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .not-teaching-phone {
    position: absolute;
    top: auto;
    bottom: -20px;
    left: 30px;
    max-width: 350px;
  }

  .not-teaching-cards-stack {
    top: 80px;
    left: 30px;
    max-width: 380px;
    height: 380px;
  }

  .stack-card {
    max-width: 360px;
  }

  .not-teaching-container::before {
    display: none;
  }
}

/* Small Desktop / Large Tablet (1024px and below) */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta:not(.mobile-cta) {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    min-height: auto;
    gap: 16px;
  }

  .hero-content {
    align-items: center;
    padding-top: 120px;
    width: 100%;
    max-width: 100%;
  }

  .hero-headline {
    font-size: 42px;
    line-height: 48px;
  }

  .hero-subtitle {
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-tags {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-phones {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
    justify-content: center;
    transform: translateY(0);
  }

  .hero-phones-image {
    object-position: center;
    width: 100%;
    height: auto;
  }

  .hero-watermark {
    display: none;
  }

  /* Not Teaching Section - 1024px */
  .not-teaching-section {
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .not-teaching-container {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 30px;
    gap: 24px;
  }

  .not-teaching-container::before {
    display: none;
  }

  .not-teaching-left {
    width: 100%;
    min-width: unset;
    align-items: center;
    text-align: center;
    padding: 20px 0 160px;
    order: 1;
  }

  .static-feature-card {
    max-width: 340px;
  }

  .widget-stack {
    max-width: 360px;
    height: 240px;
    bottom: 0;
  }

  .not-teaching-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
  }

  .not-teaching-right {
    width: 100%;
    align-items: center;
    display: contents;
  }

  .not-teaching-desc {
    text-align: center;
    max-width: 600px;
    font-size: 14px;
    line-height: 22px;
    order: 3;
    margin-bottom: 20px;
    width: 100%;
  }

  .not-teaching-phone {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    display: block;
    order: 2;
  }

  .not-teaching-cards-stack {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 0 auto 20px;
    order: 2;
  }

  .stack-card {
    max-width: 330px;
    margin: 0 auto;
  }

  .card-features {
    padding: 16px;
  }

  .card-features-grid {
    gap: 12px;
  }

  .feature-tile {
    padding: 14px 12px;
  }

  .not-teaching-features {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 24px 60px;
    order: 4;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
    align-items: start;
  }

  .feature-row {
    display: contents;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: auto;
  }

  .feature-header {
    justify-content: flex-start;
  }

  .feature-text {
    padding-left: 0;
    text-align: left;
  }

  /* Fits Cards - 1024px */
  .fits-cards {
    align-items: stretch;
  }

  .fits-card {
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
    padding: 20px;
  }

  .fits-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 12px;
  }

  /* Science Cards - 1024px */
  .science-cards {
    align-items: stretch;
  }

  .science-card {
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
    padding: 20px;
  }

  .science-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 12px;
  }

  /* Perfect For Cards - 1024px */
  .perfect-for-cards {
    align-items: stretch;
  }

  .perfect-for-card {
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
    padding: 20px;
  }

  .perfect-for-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 12px;
  }

  /* Community Cards - 1024px */
  .community-section {
    padding: 40px 20px 60px;
  }

  .community-container {
    height: auto;
    min-height: auto;
    padding-bottom: 80px;
  }

  .community-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .community-card {
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    width: 100%;
    max-width: 450px;
    padding: 16px;
  }

  .community-card-text {
    font-size: 14px;
    line-height: 20px;
  }

  .community-footer {
    position: relative;
    bottom: auto;
    padding: 20px;
    margin-top: 20px;
  }

  /* Pricing Cards - 1024px */
  .pricing-cards {
    align-items: stretch;
  }

  .pricing-card {
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
  }

  /* Why Cards - 1024px */
  .why-card {
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
  }
  .footer-legal {
    margin-left: 0;
  }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
  :root {
    --container-padding: 40px;
  }

  /* Hide line breaks on tablet - let text flow naturally */
  br {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta:not(.mobile-cta) {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Not Teaching Section - Tablet */
  .not-teaching-container {
    flex-direction: column;
    height: auto;
    padding: 40px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .not-teaching-container::before {
    display: none;
  }

  .not-teaching-left {
    width: 100%;
    align-items: center;
    padding-top: 0;
    order: 1;
  }

  .not-teaching-title {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 0;
  }

  .not-teaching-right {
    width: 100%;
    align-items: center;
    gap: 30px;
    height: auto;
    display: contents;
  }

  .not-teaching-desc {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    order: 3;
  }

  .not-teaching-phone {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 20px auto;
    order: 2;
  }

  .not-teaching-cards-stack {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 320px;
    height: 320px;
    margin: 20px auto;
    order: 2;
  }

  .stack-card {
    max-width: 300px;
  }

  .not-teaching-features {
    width: 100%;
    max-width: 100%;
    height: auto;
    align-items: center;
    gap: 30px;
    order: 4;
  }

  .feature-row {
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .feature-item {
    width: 280px;
    max-width: 280px;
    height: auto;
    flex-shrink: 0;
    align-items: flex-start;
    text-align: left;
  }

  .feature-text {
    padding-left: 34px;
    white-space: normal;
    text-align: left;
  }

  .hero {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero-bg {
    width: 100%;
    min-width: 100%;
    height: 100%;
  }

  .hero-bg-image {
    width: 100%;
    min-width: 100%;
    height: 100%;
  }

  .hero-bg-gradient {
    width: 100%;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 0;
    min-height: auto;
    gap: 16px;
  }

  .hero-content {
    align-items: center;
    padding-top: 120px;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    order: 1;
    display: contents;
  }

  .hero-headline {
    font-size: 42px;
    line-height: 48px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-tags {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }

  .hero-badge {
    order: 1;
    margin-top: 100px;
  }
  .hero-headline { order: 2; }
  .hero-subtitle { order: 3; }

  .hero-phones {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: auto;
    order: 4;
    margin: 10px 0;
    justify-content: center;
  }

  .hero-buttons { order: 5; }
  .hero-tags { order: 6; }

  .hero-phones-image {
    object-position: center;
    width: 100%;
    height: auto;
  }

  .hero-watermark {
    display: none;
  }

  /* Why Section - Tablet */
  .why-card-phone {
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .why-phone-image {
    margin-top: 0;
    border-radius: 0;
  }

  .why-text {
    margin-bottom: 4px;
  }

  .why-highlight {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
  }

  .why-subtitle {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  /* Hide line breaks on mobile - let text flow naturally */
  br {
    display: none;
  }

  :root {
    --container-padding: 16px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-headline {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .store-button {
    width: auto;
    min-width: 140px;
    max-width: 155px;
    flex: 1 1 140px;
    height: 50px;
  }

  .store-button-inner {
    padding: 0 12px;
    gap: 8px;
  }

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

  .hero-tag {
    font-size: 14px;
  }

  .hero-phones {
    max-width: 350px;
  }

  /* Not Teaching Section - Mobile */
  .not-teaching-section {
    padding: 0 16px;
    margin-bottom: 50px;
  }

  .not-teaching-container {
    padding: 32px 20px;
    padding-bottom: 40px;
    border-radius: 24px;
    gap: 24px;
  }

  .not-teaching-title {
    font-size: 28px;
    line-height: 34px;
  }

  .not-teaching-desc {
    font-size: 14px;
    line-height: 22px;
    white-space: normal;
    order: 3;
  }

  .not-teaching-phone {
    max-width: 260px;
    margin: 10px auto;
    order: 2;
  }

  .not-teaching-left {
    padding-bottom: 140px;
    min-width: unset;
  }

  .static-feature-card {
    max-width: 300px;
  }

  .widget-stack {
    max-width: 320px;
    height: 220px;
    bottom: 0;
  }

  .widget-card img {
    border-radius: 16px;
    box-shadow: none;
  }

  .not-teaching-cards-stack {
    max-width: 280px;
    height: 280px;
    margin: 10px auto;
    order: 2;
  }

  .stack-card {
    max-width: 260px;
    padding: 12px;
  }

  .card-features {
    padding: 12px;
  }

  .card-features .card-header {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .card-features-grid {
    gap: 8px;
  }

  .feature-tile {
    padding: 12px 10px;
    gap: 10px;
  }

  .feature-tile-icon {
    width: 36px;
    height: 36px;
  }

  .feature-tile-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-tile-title {
    font-size: 12px;
  }

  .feature-tile-subtitle {
    font-size: 10px;
  }

  .card-remember {
    top: 0;
    left: 0;
  }

  .card-surah {
    top: 50px;
    left: -8px;
  }

  .card-progress {
    top: 96px;
    left: -16px;
  }

  .card-focus {
    top: 140px;
    left: -24px;
  }

  .cards-carousel {
    height: 180px;
    margin-left: 16px;
  }

  @keyframes cardsScroll {
    0%, 22% { transform: translateY(0); }
    25%, 47% { transform: translateY(-50px); }
    50%, 72% { transform: translateY(-96px); }
    75%, 97% { transform: translateY(-140px); }
    100% { transform: translateY(0); }
  }

  .not-teaching-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px 30px;
    order: 4;
    max-width: 100%;
    justify-content: center;
    align-items: start;
  }

  .feature-row {
    display: contents;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  .feature-header {
    justify-content: flex-start;
  }

  .feature-name {
    font-size: 14px;
  }

  .feature-text {
    font-size: 12px;
    padding-left: 0;
    text-align: left;
    white-space: normal;
  }

  .why-section {
    padding: 60px 0 80px;
  }

  .why-headline {
    font-size: 36px;
    line-height: 44px;
  }

  .why-subtitle {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .why-cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .why-card {
    width: 100%;
    max-width: 500px;
    min-height: 0 !important;
    height: auto !important;
    padding: 20px !important;
    justify-content: flex-start;
  }

  .why-text {
    margin-bottom: 4px;
  }

  .why-highlight {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hide card background on phone image for mobile */
  .why-card-phone {
    background: transparent;
    border: none;
    border-radius: 0;
    min-height: 0 !important;
    height: auto !important;
  }

  .why-phone-image {
    margin-top: 0;
    border-radius: 0;
  }

  .hero-badge span {
    font-size: 13px;
  }

  .hero-subtitle {
    font-size: 15px;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .store-button {
    width: auto;
    min-width: 135px;
    max-width: 145px;
    flex: 1 1 135px;
    height: 48px;
  }

  .store-button-inner {
    padding: 0 10px;
    gap: 6px;
  }

  .store-icon {
    width: 20px;
    height: 20px;
  }

  .hero-tags {
    flex-direction: column;
  }

  .hero-tag {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 12px;
  }

  .hero-content {
    padding-top: 100px;
    gap: 16px;
  }

  .hero-badge {
    padding: 8px 12px;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .hero-headline {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .store-button {
    width: auto;
    min-width: 130px;
    max-width: 145px;
    flex: 1 1 130px;
    height: 48px;
  }

  .store-button-inner {
    padding: 0 10px;
    gap: 6px;
  }

  .store-icon {
    width: 18px;
    height: 18px;
  }

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

  .store-label {
    font-size: 9px;
  }

  .hero-tag {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero-phones {
    max-width: 280px;
  }

  /* Not Teaching Section - Small Mobile */
  .not-teaching-container {
    padding: 24px 16px 32px;
  }

  .not-teaching-title {
    font-size: 24px;
    line-height: 30px;
  }

  .not-teaching-desc {
    font-size: 13px;
    line-height: 20px;
    order: 3;
  }

  .not-teaching-phone {
    max-width: 220px;
    order: 2;
  }

  .static-feature-card {
    max-width: 260px;
  }

  .widget-stack {
    max-width: 280px;
    height: 180px;
    bottom: 0;
  }

  .not-teaching-cards-stack {
    max-width: 240px;
    height: 240px;
    margin: 10px auto;
    order: 2;
  }

  .stack-card {
    max-width: 220px;
    padding: 10px;
  }

  .not-teaching-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 16px 20px;
    padding: 0 10px;
    justify-content: center;
    align-items: start;
  }

  .feature-item {
    align-items: flex-start;
    text-align: left;
  }

  .feature-name {
    font-size: 14px;
  }

  .feature-text {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
}

/* ============================================
   Additional Responsive Styles
   ============================================ */

/* Tablet (992px and below) - Additional styles */
@media (max-width: 992px) {
  /* Section Headlines - App format */
  .why-headline,
  .fits-headline,
  .action-headline,
  .science-headline,
  .ai-coach-headline,
  .community-headline,
  .normal-day-headline,
  .perfect-for-headline,
  .pricing-headline,
  .ready-headline {
    font-size: 36px;
    line-height: 1.3;
  }

  /* Fits Section */
  .fits-section {
    padding: 60px 24px;
  }

  .fits-cards {
    flex-wrap: wrap;
    height: auto;
    align-items: stretch;
  }

  .fits-card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 0;
    flex: 1 1 calc(50% - 10px);
    padding: 16px 20px;
  }

  .fits-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
  }

  /* Action Section */
  .action-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .action-gradient-left,
  .action-gradient-right {
    width: 200px;
  }

  /* Science Section */
  .science-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .science-cards {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .science-card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 0;
    flex: 1 1 calc(50% - 10px);
    padding: 16px 20px;
  }

  .science-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
    padding: 0;
  }

  .science-footer-text {
    white-space: normal;
  }

  /* AI Coach Section */
  .ai-coach-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .ai-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .ai-does-card,
  .ai-doesnt-card {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .ai-does-header,
  .ai-doesnt-header {
    width: 100%;
  }

  .ai-does-list,
  .ai-doesnt-list {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 20px;
    padding: 0 22px 22px;
  }

  .ai-coach-footer {
    white-space: normal;
  }

  /* Community Section */
  .community-container {
    height: auto;
    min-height: 600px;
  }

  .community-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .community-subtitle {
    font-size: 16px;
    white-space: normal;
  }

  .community-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .community-card {
    width: 100%;
    max-width: 450px;
    height: auto !important;
    min-height: 0 !important;
    flex: none;
    padding: 16px;
  }

  .community-footer {
    white-space: normal;
    padding: 0 20px;
  }

  /* Normal Day Section */
  .normal-day-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .normal-day-content {
    position: relative;
    width: 100%;
    padding: 40px;
  }

  .normal-day-headline {
    font-size: 40px;
    line-height: 48px;
    width: 100%;
  }

  .normal-day-subtitle {
    width: 100%;
    white-space: normal;
  }

  .normal-day-times {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 30px;
  }

  .time-item {
    width: 100%;
  }

  .time-text {
    width: auto;
    flex: 1;
  }

  .normal-day-buttons {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 40px;
    justify-content: center;
  }

  .normal-day-phones {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px;
  }

  .normal-day-phones-image {
    max-width: 100%;
  }

  /* Perfect For Section */
  .perfect-for-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .perfect-for-cards {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .perfect-for-card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 0;
    flex: 1 1 calc(50% - 10px);
    padding: 16px 20px;
  }

  .perfect-for-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
    padding: 0;
  }

  .perfect-for-gradient-left,
  .perfect-for-gradient-right {
    width: 200px;
  }

  /* Pricing Section */
  .pricing-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .pricing-cards {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .pricing-card {
    width: calc(50% - 10px);
    min-width: 300px;
    min-height: 0;
    height: auto;
    flex: 1 1 calc(50% - 10px);
  }

  /* Ready Section */
  .ready-container {
    height: auto;
    min-height: 400px;
    padding: 60px 40px;
  }

  .ready-headline {
    font-size: 40px;
    line-height: 48px;
  }

  .ready-subtitle {
    white-space: normal;
  }

  /* Footer */
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-legal {
    order: 4;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
}

/* Mobile (768px and below) - Additional styles */
@media (max-width: 768px) {
  /* Section Headlines - App format */
  .why-headline,
  .fits-headline,
  .action-headline,
  .science-headline,
  .ai-coach-headline,
  .community-headline,
  .normal-day-headline,
  .perfect-for-headline,
  .pricing-headline,
  .ready-headline {
    font-size: 28px;
    line-height: 1.3;
  }

  /* Fits Section */
  .fits-section {
    padding: 50px 16px;
  }

  .fits-cards {
    flex-direction: column;
    align-items: center;
  }

  .fits-card {
    width: 100%;
    max-width: 400px;
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    padding: 16px 20px;
  }

  .fits-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
  }

  /* Action Section */
  .action-section {
    padding: 60px 16px;
  }

  .action-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }

  .action-buttons .store-button {
    width: auto;
    min-width: 130px;
    max-width: 145px;
    flex: 1 1 130px;
    height: 48px;
  }

  /* Phone Slider - Tablet */
  .phone-slider {
    height: 580px;
  }

  .phone-slide img {
    width: 300px;
  }

  .phone-slide[data-position="left"] {
    transform: translateX(-200px) scale(0.8);
  }

  .phone-slide[data-position="right"] {
    transform: translateX(200px) scale(0.8);
  }

  /* Science Section */
  .science-section {
    padding: 60px 16px;
  }

  .science-headline {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

  .science-subtitle {
    white-space: normal;
  }

  .science-cards {
    flex-direction: column;
    align-items: center;
  }

  .science-card {
    width: 100%;
    max-width: 400px;
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    padding: 16px 20px;
  }

  .science-card-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
  }

  /* AI Coach Section */
  .ai-coach-section {
    padding: 60px 16px;
  }

  .ai-coach-headline {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

  .ai-coach-subtitle {
    white-space: normal;
  }

  .ai-does-card,
  .ai-doesnt-card {
    padding: 8px;
    overflow: visible;
    min-height: auto;
  }

  .ai-does-header,
  .ai-doesnt-header {
    padding: 0 16px;
    height: auto;
    min-height: 70px;
  }

  .ai-does-list,
  .ai-doesnt-list {
    padding: 0 12px 24px;
  }

  .ai-does-list span,
  .ai-doesnt-list span {
    font-size: 14px;
    line-height: 20px;
  }

  /* Community Section */
  .community-section {
    padding: 50px 16px;
  }

  .community-content {
    padding: 40px 20px;
  }

  .community-headline {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

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

  .community-cards {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    grid-template-columns: none;
  }

  .community-card {
    width: 100%;
    max-width: 400px;
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    padding: 16px;
  }

  .community-container {
    height: auto;
    min-height: auto;
    padding-bottom: 60px;
  }

  .community-footer {
    position: relative;
    bottom: auto;
  }

  /* Normal Day Section */
  .normal-day-section {
    padding: 50px 16px;
  }

  .normal-day-container {
    border-radius: 24px;
  }

  .normal-day-content {
    padding: 30px 20px;
  }

  .normal-day-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .normal-day-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .normal-day-times {
    gap: 30px;
  }

  .time-icon {
    width: 40px;
    height: 40px;
  }

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

  .time-desc {
    font-size: 14px;
  }

  .normal-day-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }

  .normal-day-buttons .store-button {
    width: auto;
    min-width: 130px;
    max-width: 145px;
    flex: 1 1 130px;
    height: 48px;
  }

  .normal-day-phones {
    padding: 20px;
  }

  /* Perfect For Section */
  .perfect-for-section {
    padding: 60px 16px;
  }

  .perfect-for-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .perfect-for-subtitle {
    white-space: normal;
  }

  .perfect-for-cards {
    flex-direction: column;
    align-items: center;
  }

  .perfect-for-card {
    width: 100%;
    max-width: 363px;
    min-height: 0;
    height: auto;
    flex: none;
    padding: 16px;
  }

  .perfect-for-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 8px;
    padding: 0;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 60px 16px;
  }

  .pricing-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing-subtitle {
    white-space: normal;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    padding: 20px;
    padding-bottom: 24px;
  }

  .pricing-amount {
    font-size: 40px;
  }

  /* Ready Section */
  .ready-section {
    padding: 60px 16px 30px;
  }

  .ready-container {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .ready-headline {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

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

  .ready-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }

  .ready-buttons .store-button {
    width: auto;
    min-width: 130px;
    max-width: 145px;
    flex: 1 1 130px;
    height: 48px;
  }

  /* Footer */
  .footer {
    padding: 30px 16px;
  }

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

  .footer-nav {
    gap: 16px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

/* Small Mobile (480px and below) - Additional styles */
@media (max-width: 480px) {
  /* Why Section */
  .why-card {
    height: auto !important;
    min-height: 0 !important;
    flex: none;
    padding: 24px;
  }

  .why-card-title {
    font-size: 18px;
  }

  .why-list li {
    font-size: 14px;
  }

  .why-bold {
    font-size: 18px;
  }

  .why-text {
    font-size: 14px;
    white-space: normal;
    margin-bottom: 4px;
  }

  .why-highlight {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
  }

  .why-phone-image {
    width: 100%;
    margin: 40px auto 0;
    margin-left: 0;
  }

  /* Fits Section */
  .fits-card-title {
    font-size: 18px;
  }

  .fits-card-text {
    font-size: 14px;
  }

  /* Phone Slider - Small Mobile */
  .phone-slider {
    height: 500px;
  }

  .phone-slide img {
    width: 250px;
  }

  .phone-slide[data-position="left"] {
    transform: translateX(-160px) scale(0.78);
  }

  .phone-slide[data-position="right"] {
    transform: translateX(160px) scale(0.78);
  }

  /* Science Section */
  .science-card-title {
    font-size: 18px;
    white-space: normal;
  }

  .science-card-text {
    font-size: 14px;
  }

  /* AI Coach Section */
  .ai-does-title,
  .ai-doesnt-title {
    font-size: 18px;
  }

  /* Community Section */
  .community-card-text {
    font-size: 14px;
  }

  /* Perfect For Section */
  .perfect-for-card {
    min-height: 0;
    height: auto;
    flex: none;
    padding: 16px;
  }

  .perfect-for-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 8px;
    padding: 0;
  }

  .perfect-for-title {
    font-size: 18px;
  }

  .perfect-for-text {
    font-size: 14px;
  }

  /* Pricing Section */
  .pricing-plan-name {
    font-size: 18px;
  }

  .pricing-amount {
    font-size: 36px;
  }

  .pricing-features li span {
    font-size: 14px;
  }

  /* Phone Slider - Mobile */
  .phone-slider {
    height: 440px;
  }

  .phone-slide img {
    width: 210px;
  }

  .phone-slide[data-position="left"] {
    transform: translateX(-120px) scale(0.75);
  }

  .phone-slide[data-position="right"] {
    transform: translateX(120px) scale(0.75);
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 380px) {
  /* Section Headlines - App format */
  .why-headline,
  .fits-headline,
  .action-headline,
  .science-headline,
  .ai-coach-headline,
  .community-headline,
  .normal-day-headline,
  .perfect-for-headline,
  .pricing-headline,
  .ready-headline {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-container {
    padding: 0 10px;
  }

  .hero-headline {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-subtitle {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge span {
    font-size: 11px;
  }

  .store-button {
    width: auto;
    min-width: 120px;
    max-width: 140px;
    flex: 1 1 120px;
    height: 46px;
  }

  .store-button-inner {
    padding: 0 8px;
    gap: 5px;
  }

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

  .store-name {
    font-size: 12px;
  }

  .store-label {
    font-size: 8px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-phones {
    max-width: 240px;
  }

  /* Why Section */
  .why-headline {
    font-size: 28px;
    line-height: 34px;
  }

  .why-cards {
    padding: 0 12px;
    grid-template-columns: 1fr;
  }

  .why-card {
    height: auto !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .why-highlight {
    font-size: 16px;
    line-height: 1.2;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Not Teaching Section */
  .not-teaching-section {
    padding: 0 10px;
  }

  .not-teaching-title {
    font-size: 22px;
    line-height: 28px;
  }

  .not-teaching-features {
    gap: 14px 10px;
    padding: 0 5px;
  }

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

  .feature-text {
    font-size: 11px;
    line-height: 16px;
  }

  /* All section headlines */
  .fits-headline,
  .action-headline,
  .science-headline,
  .ai-coach-headline,
  .community-headline,
  .normal-day-headline,
  .perfect-for-headline,
  .pricing-headline,
  .ready-headline {
    font-size: 26px;
    line-height: 32px;
  }

  /* Pricing */
  .pricing-amount {
    font-size: 32px;
  }

  /* Perfect For Section */
  .perfect-for-card {
    min-height: 0 !important;
    height: auto !important;
    flex: none;
    padding: 14px;
  }

  .perfect-for-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 6px;
    padding: 0;
  }
}
