/* Modern CSS Reset & General Styling */
:root {
  --navy-dark: #0B132B;
  --navy-medium: #1C2541;
  --navy-light: #3A506B;
  --mustard-primary: #FFB703;
  --mustard-dark: #CA8A04;
  --mustard-light: #FEF08A;
  --cream-bg: #FDFBF7;
  --cream-card: #FAF6ED;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #F8FAFC;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Lenis handles smooth scrolling */
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  background-color: var(--navy-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--mustard-primary);
  z-index: 1000;
  width: 0%;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-medium);
  border: 2px solid var(--navy-dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--mustard-primary);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.4s ease;
}

.logo-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--mustard-primary);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--mustard-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-btn {
  background-color: var(--mustard-primary);
  color: var(--navy-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 183, 3, 0.3);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  background-color: var(--white);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =====================================================
   FIXED FULLSCREEN BACKGROUND CONTAINER
   ===================================================== */
.fixed-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.bg-slide.slide-1 {
  z-index: 1;
  opacity: 1;
}

.bg-slide.slide-2 {
  z-index: 2;
}

.bg-slide.slide-3 {
  z-index: 3;
}

.bg-slide.slide-4 {
  z-index: 4;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 19, 43, 0.5) 0%, rgba(11, 19, 43, 0.75) 100%);
  z-index: 10;
  transition: background 0.8s ease;
  pointer-events: none;
}

/* Adapted overlays for light-ish background steps if needed */
.bg-overlay.light {
  background: linear-gradient(to bottom, rgba(11, 19, 43, 0.4) 0%, rgba(11, 19, 43, 0.6) 100%);
}

/* =====================================================
   SIDE DOT INDICATORS
   ===================================================== */
.scrolly-dots {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 100;
}

.dot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.dot-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.dot-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.dot::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.dot:hover {
  opacity: 0.9;
}

.dot:hover .dot-label {
  opacity: 0.8;
  transform: translateX(0);
}

.dot.active {
  opacity: 1;
}

.dot.active .dot-num {
  color: var(--mustard-primary);
  opacity: 1;
}

.dot.active::after {
  background-color: var(--mustard-primary);
  border-color: var(--mustard-primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

/* =====================================================
   NORMAL SCROLL CONTENT
   ===================================================== */
.scroll-content {
  position: relative;
  width: 100%;
  z-index: 20;
}

.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  box-sizing: border-box;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
}

/* Alignments */
.align-left .section-inner {
  justify-content: flex-start;
}

.align-right .section-inner {
  justify-content: flex-end;
}

.align-center .section-inner {
  justify-content: center;
}

/* Card design values */
.text-card {
  width: 100%;
  max-width: 560px;
  background-color: rgba(11, 19, 43, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-premium);
}

.text-card.hero-card {
  max-width: 650px;
  background-color: rgba(11, 19, 43, 0.78);
  border-color: rgba(255, 255, 255, 0.05);
}

.text-card.card-mustard {
  background-color: rgba(253, 251, 247, 0.9);
  border-color: rgba(202, 138, 4, 0.15);
  box-shadow: 0 30px 60px rgba(11, 19, 43, 0.15);
}

/* Hero Content */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(255, 183, 3, 0.1);
  color: var(--mustard-primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 183, 3, 0.2);
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 550px;
  font-family: var(--font-body);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--mustard-primary);
  color: var(--navy-dark);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.25);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Scroll indicator mouse */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.indicator-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.indicator-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.indicator-mouse .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--mustard-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite ease-in-out;
}

/* Card Content Details */
.activity-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 183, 3, 0.25);
  margin-bottom: -5px;
  display: block;
}

.activity-num.num-mustard {
  color: rgba(202, 138, 4, 0.18);
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(255, 183, 3, 0.1);
  color: var(--mustard-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 183, 3, 0.15);
}

.activity-badge.badge-mustard {
  background-color: rgba(202, 138, 4, 0.1);
  color: var(--mustard-dark);
  border: 1px solid rgba(202, 138, 4, 0.15);
}

.card-title {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--white);
}

.text-mustard-title {
  color: var(--navy-dark) !important;
}

.card-desc {
  font-size: 1.02rem;
  margin-bottom: 30px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
}

.text-mustard-desc {
  color: rgba(11, 19, 43, 0.8) !important;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(255, 183, 3, 0.1);
  color: var(--mustard-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-icon.icon-mustard {
  background-color: rgba(202, 138, 4, 0.1);
  color: var(--mustard-dark);
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.card-mustard .feature-text h4 {
  color: var(--navy-dark);
}

.feature-text p {
  font-size: 0.88rem;
}

.card-mustard .feature-text p {
  color: rgba(11, 19, 43, 0.7);
}

.text-card:not(.card-mustard) .feature-text p {
  color: rgba(255, 255, 255, 0.6);
}

.parent-tip {
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--mustard-primary);
  border-radius: 0 16px 16px 0;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
}

.tip-mustard {
  background-color: rgba(11, 19, 43, 0.03) !important;
  border-left-color: var(--mustard-dark) !important;
  color: var(--navy-dark) !important;
}

.text-mustard {
  color: var(--mustard-primary);
}

.text-mustard-dark {
  color: var(--mustard-dark);
}

/* Navbar Adapt overrides for light mode */
body.light-nav .logo {
  color: var(--navy-dark);
}
body.light-nav .nav-link {
  color: rgba(11, 19, 43, 0.7);
}
body.light-nav .nav-link:hover {
  color: var(--navy-dark);
}
body.light-nav .navbar.scrolled {
  background-color: rgba(253, 251, 247, 0.85);
  border-bottom: 1px solid rgba(11, 19, 43, 0.05);
}

/* =====================================================
   TESTIMONIALS STYLING
   ===================================================== */
.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.testi-item {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--mustard-primary);
  border-radius: 0 16px 16px 0;
  text-align: left;
}

.testi-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.testi-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mustard-primary);
}

/* =====================================================
   PRICING & BUY SECTION
   ===================================================== */
.buy-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  align-items: start;
}

.pricing-card {
  background: rgba(28, 37, 65, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.buy-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 183, 3, 0.15);
  color: var(--mustard-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 183, 3, 0.2);
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.price-old {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.price-new {
  font-size: 2.5rem;
  color: var(--mustard-primary);
  font-weight: 800;
  font-family: var(--font-display);
}

.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.usp-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.purchase-form input {
  padding: 14px 20px;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.direct-buy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

.buy-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--mustard-primary);
  color: var(--navy-dark);
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: var(--font-display);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.35);
  text-transform: uppercase;
}

.buy-now-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.delivery-notice {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
  font-family: var(--font-body);
}

.notif-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.guarantee-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.guarantee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  font-weight: 600;
}

.text-shield {
  color: #10B981;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.animate-pulse {
  animation: heartPulse 1.2s infinite ease-in-out;
  display: inline-block;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-container {
  background: rgba(11, 19, 43, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.faq-section-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-quest {
  font-size: 1.05rem;
  color: var(--mustard-primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-ans {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-family: var(--font-body);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: rgba(6, 11, 25, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
  text-align: left;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-top: 16px;
  font-family: var(--font-body);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--mustard-primary);
  color: var(--navy-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.2);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

/* =====================================================
   PURCHASE NOTIFICATION POP-UP
   ===================================================== */
.purchase-notification {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: rgba(28, 37, 65, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  pointer-events: none;
  transform: translateX(-150%) scale(0.9);
  opacity: 0;
  will-change: transform, opacity;
  max-width: 330px;
  text-align: left;
}

.notif-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.15);
  color: var(--mustard-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
}

.notif-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.notif-title span {
  color: var(--mustard-primary);
}

.notif-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
}

.notif-time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-family: var(--font-body);
}

/* =====================================================
   RESPONSIVENESS AND MOBILE ADAPTATION
   ===================================================== */
@media (max-width: 992px) {
  .scrolly-dots {
    display: none;
  }
  
  .content-section {
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .section-inner {
    padding: 0 24px;
    justify-content: center !important;
  }

  .text-card {
    max-width: 100%;
    padding: 32px 28px;
  }

  .buy-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 8px;
  }
  
  .purchase-notification {
    left: 24px;
    right: 24px;
    bottom: 20px;
    max-width: none;
    width: calc(100% - 48px);
    transform: translateY(150%) scale(0.9);
  }
}

@media (max-width: 576px) {
  .nav-container, .footer-container {
    padding: 0 20px;
  }
  
  .nav-links {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .logo {
    font-size: 1.25rem;
  }

  .cta-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .pricing-card {
    padding: 28px 20px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .faq-container {
    padding: 28px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  
  .text-card {
    padding: 24px 20px;
  }

  .card-title {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .card-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .pricing-title {
    font-size: 1.35rem;
  }

  .price-new {
    font-size: 1.9rem;
  }

  .purchase-notification {
    padding: 10px 14px;
    gap: 12px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }

  .notif-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .notif-title {
    font-size: 0.8rem;
  }

  .notif-text {
    font-size: 0.72rem;
  }

  .notif-time {
    font-size: 0.65rem;
  }
}

