@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-yellow: #FFD200;
  --primary-yellow-hover: #e6bd00;
  --yellow-glow: rgba(255, 210, 0, 0.4);
  --dark-bg: #090D14;
  --dark-card: #121824;
  --dark-text: #111827;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --bg-page: #F1F5F9;
  --bg-card: #FFFFFF;
  --payme-green: #00BA88;
  --click-blue: #0073FF;
  --paynet-orange: #FF5A00;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --pop-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: #E2E8F0;
  color: var(--dark-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow-x: hidden;
}

/* App Viewport Container (Matches mobile screenshot perfectly, centered cleanly on desktop) */
.app-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: #FFFFFF;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  body {
    padding: 24px 0;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
  }
  .app-container {
    border-radius: 36px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 0 8px #1e293b;
  }
}

/* ================= HEADER ================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #182234;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-hexagon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-hexagon svg,
.logo-hexagon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 210, 0, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 32px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-btn span {
  display: block;
  height: 3.5px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.nav-dropdown {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #182234;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.35);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 49;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-yellow);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 20px 18px 0;
  background: #182234;
  overflow: hidden;
}

.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-yellow);
  color: #000;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 210, 0, 0.4);
  margin-bottom: 12px;
  animation: pulseBadge 2.5s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.badge-online svg {
  width: 13px;
  height: 13px;
  fill: #000;
}

.hero-title {
  font-family: var(--font-heading);
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-title-main {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  display: block;
  font-size: 33px;
  font-weight: 900;
  color: #FFD200;
  text-shadow: 
    -1.5px -1.5px 0 #000,  
     1.5px -1.5px 0 #000,
    -1.5px  1.5px 0 #000,
     1.5px  1.5px 0 #000,
     0 3px 0 #000,
     0 6px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.5px;
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 18px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  max-width: 250px;
  position: relative;
  z-index: 5;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon-circle {
  width: 28px;
  height: 28px;
  background: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.feature-icon-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.feature-item-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.2;
}

/* Hero Visual Composition */
.hero-visual-wrap {
  position: relative;
  margin-top: -20px;
  margin-left: -18px;
  margin-right: -18px;
  margin-bottom: 0;
}

.hero-laptop-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* Handwritten script stickers */
.sticker-kelajak {
  position: absolute;
  top: 30px;
  right: 18px;
  transform: rotate(8deg);
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
  line-height: 1.1;
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.sticker-kelajak::after {
  content: "";
  display: block;
  width: 85%;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 4px;
  margin-left: auto;
  margin-top: 2px;
  transform: rotate(-2deg);
}

.sticker-mug {
  position: absolute;
  bottom: 25px;
  right: 14px;
  font-family: var(--font-script);
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.15;
  text-align: center;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

/* ================= 5 MODULES / APPS ROW ================= */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0 16px 18px;
}

.app-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 10px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  border-color: #CBD5E1;
}

.app-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.app-card:hover .app-icon {
  transform: scale(1.08);
}

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

.app-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.2px;
}

/* ================= PRICING & SPECIAL OFFER CARD ================= */
.pricing-card-wrap {
  padding: 0 16px 16px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.pricing-left {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 17px;
  font-weight: 700;
  color: #94A3B8;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.old-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 3px;
  background: #EF4444;
  border-radius: 2px;
  transform: rotate(-4deg);
}

.current-price {
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.current-price span {
  font-size: 20px;
  font-weight: 700;
}

.special-offer-btn {
  background: var(--primary-yellow);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.special-offer-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(255, 210, 0, 0.55);
}

.gift-icon svg {
  width: 26px;
  height: 26px;
  fill: #000;
}

.special-offer-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.offer-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.arrow-circle {
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
}

.arrow-circle svg {
  width: 12px;
  height: 12px;
  fill: #FFF;
}

/* ================= PAYMENT METHOD SELECTOR ================= */
.payment-section {
  padding: 4px 16px 20px;
  background: #F8FAFC;
  border-top: 1px dashed #E2E8F0;
  border-bottom: 1px dashed #E2E8F0;
  margin-bottom: 20px;
}

.payment-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #1E293B;
  margin: 12px 0 14px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.payment-method-card {
  height: 52px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.payment-method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.payment-method-card.active {
  border-width: 2.5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Payme Card */
.payme-card {
  border-color: #E2E8F0;
  background: #FFFFFF;
}
.payme-card.active {
  border-color: #00BA88;
  background: #F0FDF4;
  box-shadow: 0 6px 16px rgba(0, 186, 136, 0.12);
}

/* Click Card */
.click-card {
  border-color: #E2E8F0;
  background: #FFFFFF;
}
.click-card.active {
  border-color: #0073FF;
  background: #F0F9FF;
  box-shadow: 0 6px 16px rgba(0, 115, 255, 0.12);
}

/* Paynet Card */
.paynet-card {
  border-color: #E2E8F0;
  background: #FFFFFF;
}
.paynet-card.active {
  border-color: #00BA88;
  background: #F0FDF4;
  box-shadow: 0 6px 16px rgba(0, 186, 136, 0.12);
}

/* Coming Soon Badge for Payme & Paynet */
.payment-method-card.coming-soon {
  position: relative;
  background: #FAFAFA;
  border-color: #E2E8F0;
}

.payment-method-card.coming-soon:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.payment-method-card.coming-soon .official-logo-img {
  opacity: 0.85;
}

.badge-coming-soon {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-size: 8.5px;
  font-weight: 800;
  padding: 1.5px 7px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
  pointer-events: none;
  z-index: 2;
  border: 1px solid #FFFFFF;
  text-transform: uppercase;
}

/* Official Logo Images */
.official-logo-img {
  height: 30px;
  max-width: 92%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.payment-method-card:hover .official-logo-img {
  transform: scale(1.05);
}

.payme-img {
  height: 28px;
}

.click-img {
  height: 34px;
  max-width: 92%;
}

.paynet-img {
  height: 27px;
  mix-blend-mode: multiply;
}

/* Active checkmark pin */
.check-pin {
  position: absolute;
  top: -8px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #0F172A;
  color: #FFD200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-method-card.active .check-pin {
  transform: scale(1);
}

.check-pin svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Payment Summary Row */
.payment-sum-bar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  margin-bottom: 14px;
}

.sum-icon svg {
  width: 18px;
  height: 18px;
  fill: #0F172A;
}

.sum-highlight {
  font-weight: 900;
  color: #0F172A;
  font-size: 16px;
}

/* CTA Button */
.btn-buy-course {
  width: 100%;
  background: var(--primary-yellow);
  color: #000000;
  border: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 210, 0, 0.45);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-buy-course:hover {
  background: #f7cb00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 210, 0, 0.55);
}

.btn-buy-course:active {
  transform: translateY(1px);
}

.cart-icon svg {
  width: 22px;
  height: 22px;
  fill: #000;
}

.cta-arrow {
  width: 26px;
  height: 26px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.cta-arrow svg {
  width: 13px;
  height: 13px;
  fill: #FFFFFF;
}

/* ================= VIDEO LESSONS PREVIEW ================= */
.videos-section {
  padding: 0 16px 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

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

.video-card {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #1E293B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.4);
  transform: scale(1.05);
}

.video-card-word .video-bg {
  background: radial-gradient(circle at center, #1e40af 0%, #0f172a 100%);
}

.video-card-excel .video-bg {
  background: radial-gradient(circle at center, #15803d 0%, #0f172a 100%);
}

.video-card-ppt .video-bg {
  background: radial-gradient(circle at center, #c2410c 0%, #0f172a 100%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-align: center;
  z-index: 2;
}

.video-app-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
}

.badge-word { background: #0078D4; }
.badge-excel { background: #107C41; }
.badge-ppt { background: #D83B01; }

.lock-circle {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  color: #FFFFFF;
}

.lock-circle svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.lock-msg {
  color: #FFFFFF;
  font-size: 7.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #CBD5E1;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 4px;
}

/* ================= TELEGRAM GRADUATES BANNER ================= */
.graduates-banner-wrap {
  padding: 0 16px 20px;
}

.graduates-banner {
  background: #E8F2FF;
  border: 1px solid #D0E4FF;
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 115, 255, 0.05);
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-icon {
  width: 38px;
  height: 38px;
  background: #0073FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.banner-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.banner-text-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #0056C7;
  line-height: 1.2;
}

.banner-text-desc {
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  line-height: 1.2;
  margin-top: 1px;
}

.btn-telegram {
  background: #0088CC;
  color: #FFFFFF;
  border: none;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
  transition: all 0.2s ease;
}

.btn-telegram:hover {
  background: #0077b5;
  transform: translateY(-1px);
}

.btn-telegram svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ================= 3 KEY BENEFITS ROW ================= */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 16px 26px;
  position: relative;
}

.benefit-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 4px;
}

.benefit-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #E2E8F0;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: #0F172A;
}

.benefit-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

/* ================= FOOTER ================= */
.footer {
  background: #0B0F19;
  color: #FFFFFF;
  position: relative;
  padding: 24px 20px 20px;
  margin-top: auto;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD200 0%, #FF9900 50%, #FFD200 100%);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-title {
  color: #FFFFFF;
  font-size: 17px;
}

.footer-logo .logo-subtitle {
  color: #94A3B8;
  font-size: 10px;
}

.footer-slogan {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--primary-yellow);
  text-align: right;
  line-height: 1.1;
  position: relative;
}

.footer-slogan::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background: var(--primary-yellow);
  margin-left: auto;
  margin-top: 3px;
  transform: rotate(-1.5deg);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 14px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94A3B8;
  text-transform: uppercase;
}

.footer-dot {
  color: var(--primary-yellow);
  font-size: 14px;
}

/* ================= MODAL DIALOGS ================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: #FFFFFF;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-shadow);
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-backdrop.open .modal-sheet {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #64748B;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
}

.modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-summary-box {
  background: #F1F5F9;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: #0073FF;
  box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.15);
}

.modal-btn-submit {
  background: var(--primary-yellow);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255, 210, 0, 0.4);
  transition: all 0.2s ease;
}

.modal-btn-submit:hover {
  background: #f5c800;
  transform: translateY(-1px);
}

/* Success State */
.success-card {
  text-align: center;
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  background: #10B981;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: #0F172A;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: toastIn 0.3s ease forwards;
}

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

/* ================= PAID USER TOP BANNER ================= */
.paid-user-banner {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
  color: #ffffff;
  padding: 12px 18px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  border-bottom: 2px solid #34d399;
  animation: slideDownBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownBanner {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.paid-user-banner .banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.paid-user-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.paid-user-banner .banner-badge {
  font-size: 19px;
  display: inline-block;
  animation: bounceHand 1.5s infinite;
}

@keyframes bounceHand {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.paid-user-banner .banner-btn {
  background: #C6F432;
  color: #041426;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  animation: pulseNeonBtn 2s infinite;
}

@keyframes pulseNeonBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 244, 50, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(198, 244, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 244, 50, 0);
  }
}

.paid-user-banner .banner-btn:hover {
  background: #d9fb5a;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .paid-user-banner {
    padding: 10px 12px;
  }
  .paid-user-banner .banner-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .paid-user-banner .banner-content {
    font-size: 13.5px;
    justify-content: center;
  }
  .paid-user-banner .banner-btn {
    font-size: 13px;
    padding: 7px 16px;
    width: 100%;
    justify-content: center;
  }
}

