:root {
  --primary: #ff7a00;
  --primary-hover: #e06a00;
  --secondary: #fff4ec;
  --text-main: #222;
  --text-light: #555;
  --bg-color: #fffaf6;
  --card-bg: rgba(255, 255, 255, 0.85);
  --border-radius: 16px;
  --glass-shadow: 0 8px 32px 0 rgba(255, 122, 0, 0.1);
  --green: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Typography elements */
h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 800;
}

h1.headline {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 20px;
}

h1.headline span {
  color: var(--primary);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-sm,
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  background: var(--primary-hover);
}

.btn-secondary {
  background: #fff;
  color: var(--text-main);
  padding: 14px 28px;
  border: 2px solid #ddd;
}

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

.btn-large {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
}

.btn-sm {
  background: #d6336c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fffaf6 0%, #ffe9d6 100%);
  padding: 50px 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100vh;
}

.hero-content {
  max-width: 640px;
  width: 100%;
  margin-bottom: 60px;
  z-index: 2;
  word-wrap: break-word;
}

.urgency-badge {
  display: block;
  margin: 0 auto 20px;
  width: fit-content;
  background: #ffe3e3;
  color: #d63333;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.subheadline {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 15px;
  margin-bottom: 40px;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .hero-features-list {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.hero-feature-item i {
  background: #fff0e6;
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
}

.offer-highlight {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.trust-badge {
  font-weight: 600;
  color: #f39c12;
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .trust-badge {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
  }
}

/* Hero Image & Floating UI */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 129, 75, 0.15) 40%, transparent 20%);
  z-index: 0;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  z-index: 1;
  position: relative;
  border-radius: 20px;
}

/* Glassmorphism Floating Cards */
.floating-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glass-shadow);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.icon-box {
  background: #e0f7fa;
  color: #00bcd4;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.icon-box.green {
  background: #e8f5e9;
  color: var(--green);
}

.fl-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.fl-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

.fl-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

.fl-1 {
  top: -5%;
  left: 2%;
  animation-delay: 0s;
}

.fl-2 {
  bottom: 15%;
  right: 2%;
  animation-delay: 2s;
}

.fl-3 {
  top: 40%;
  right: 2%;
  animation-delay: 1s;
  padding: 8px;
}

/* Problems Faced Section */
.problems-section {
  background: #fffaf6;
  padding: 100px 20px;
}

.problems-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #e67e22;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.3px;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-item {
  background: #fff;
  padding: 30px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.problem-item i {
  width: 50px;
  height: 50px;
  background: #fff0f0;
  color: #ff4d4d;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 5px;
}

.problem-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}

.problem-callout {
  background: #fff;
  padding: 35px 40px;
  border-radius: 24px;
  display: inline-block;
  max-width: 800px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 10px 35px rgba(255, 122, 0, 0.1);
  position: relative;
  text-align: left;
}

.problem-callout::before {
  content: '💡';
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 1.5rem;
  background: #fff;
  padding: 5px;
}

.problem-callout p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Sections Common */
section {
  padding: 70px 20px;
  text-align: center;
}

/* What You Get */
.features-grid {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feat-icon {
  width: 60px;
  height: 60px;
  background: #fff4ec;
  color: var(--primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: 0.3s;
}

.feature-card:hover .feat-icon {
  background: var(--primary);
  color: #fff;
}

/* Why RKDEMY */
.why-rkdemy {
  background: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-rkdemy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  opacity: 0.5;
  z-index: 0;
}

.why-rkdemy .section-title,
.why-rkdemy .why-quote-box,
.why-rkdemy .benefit-list {
  position: relative;
  z-index: 1;
}

.why-quote-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px;
  max-width: 800px;
  margin: 0 auto 50px;
  box-shadow: 0 15px 45px rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.1);
  position: relative;
}

.why-quote-box i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 25px;
}

.why-quote-box p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.benefit-list {
  list-style: none;
  text-align: left;
  max-width: 550px;
  margin: 0 auto;
}

.benefit-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-weight: 500;
}

.benefit-list li i {
  color: var(--green);
  font-size: 1.4rem;
}

/* App Experience */
.app-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background: #fff;
  padding: 80px 20px;
}

.app-info {
  max-width: 640px;
  width: 100%;
  text-align: left;
}

.app-heading {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  text-align: inherit;
  line-height: 1.3;
}

.app-heading span {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-subtext {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.6;
}

.app-features {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}

.app-info .btn-primary {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}

.app-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffaf6;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.1);
}

.app-features span i {
  font-size: 1.2rem;
  color: var(--primary);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #222;
  border-radius: 40px;
  border: 12px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #333;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: 0.3s;
  display: block;
}

.screen-img:hover {
  transform: scale(1.02);
}

/* Offer Section */
.offer-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
  color: white;
  padding: 80px 20px;
}

.offer-section h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.pricing-card {
  background: white;
  color: var(--text-main);
  border-radius: 20px;
  padding: 40px 20px 30px;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.discount-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d63333;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(214, 51, 51, 0.4);
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.price-now {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 5px;
  line-height: 1;
}

.price-now .subtext {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  text-decoration: line-through;
}

.trial-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 25px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 800;
  align-items: center;
  color: #333;
}

.time-box {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 12px 10px;
  border-radius: 12px;
  min-width: 65px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.time-box small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.colon {
  color: #ccc;
  margin: 0 2px;
}

.cta-pulse {
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

/* Testimonials */
.social-proof {
  background: var(--bg-color);
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 40px;
}

.slider-btn {
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--primary);
  font-size: 1rem;
  transition: 0.3s;
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  width: 100%;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 4px solid var(--primary);
  flex: 0 0 calc(100% - 10px);
  scroll-snap-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.st-avatar {
  width: 45px;
  height: 45px;
  background: #e0f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #00bcd4;
}

.st-details h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.st-details span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.result-claim {
  background: #e8f5e9;
  color: #27ae60;
  padding: 16px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.12);
  margin-top: 30px;
  border: 1px solid rgba(39, 174, 96, 0.15);
  line-height: 1.4;
  max-width: 90%;
}

@media (max-width: 600px) {
  .result-claim {
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 16px;
  }
}

/* Final CTA */
.final-cta {
  padding: 80px 20px 120px;
  background: linear-gradient(180deg, #fff 0%, #fff4ec 100%);
}

.final-cta p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

.urgency-text {
  color: #d63333 !important;
  font-weight: 700 !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

/* Sticky CTA - Floating Pill */
.sticky-cta {
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: auto;
  min-width: 260px;
  max-width: 85%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 100px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 999;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta .btn-primary {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

/* Exit Intent Popup */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  box-sizing: border-box;
}

.exit-popup-overlay.show {
  display: flex;
  opacity: 1;
}

.exit-popup {
  background: white;
  padding: 40px 20px;
  border-radius: 24px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.exit-popup-overlay.show .exit-popup {
  transform: scale(1);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #aaa;
  transition: 0.3s;
}

.close-popup:hover {
  color: #333;
}

.exit-popup h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.exit-popup p {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }

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

  .hero-image-wrapper {
    max-width: 700px;
  }

  .fl-1 {
    left: -5%;
  }

  .fl-2 {
    right: -5%;
  }

  .fl-3 {
    right: -2%;
  }

  .testimonial-slider {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 5%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
  }

  .hero-content {
    align-items: flex-start;
    margin-bottom: 0;
    padding-right: 40px;
  }

  h1.headline {
    font-size: 3.5rem;
  }

  .cta-group {
    justify-content: flex-start;
  }

  .urgency-badge {
    margin-left: 0;
  }

  h2 {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }

  .hero-image-wrapper {
    max-width: 750px;
  }

  .app-experience {
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    padding: 100px 20px;
  }

  .app-info {
    text-align: left;
  }

  .app-features {
    justify-content: flex-start;
  }

  .offer-section {
    padding: 100px 20px;
  }
}

/* Coverage Section */
.coverage-section {
  background: var(--bg-color);
  padding: 70px 20px;
  text-align: center;
}

.coverage-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.coverage-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 500;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 30px;
}

@media (min-width: 600px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8eaf0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.coverage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 14px;
}

.coverage-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f39c12;
  margin-bottom: 6px;
}

.coverage-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

.coverage-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  font-style: italic;
  margin-top: 10px;
}

/* Who Must Download Section */
.who-must-download {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}

.who-must-download h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 30px;
}

.wmd-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wmd-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wmd-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.wmd-item i {
  color: #f39c12;
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
}

.wmd-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

/* How It Works Section */
.how-it-works {
  background: var(--bg-color);
  padding: 80px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 50px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hiw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hiw-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}

.hiw-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #d63333;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(214, 51, 51, 0.4);
}

.hiw-step p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

/* Trusted by Lakhs of Students Section */
.trusted-stats {
  background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
  padding: 80px 20px;
  text-align: center;
}

.trusted-stats h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 40px;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f7f8fc;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
}

/* Urgency Text Styling - High Visibility */
.urgency-text {
  display: inline-block;
  background: #fff9c4;
  color: #d32f2f;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.3);
  animation: urgent-pulse 2s infinite;
}

@keyframes urgent-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15); }
  50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(211, 47, 47, 0.25); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15); }
}