/* =============================================
   MN Cable — Custom Styles
   Complements Tailwind CSS utility classes
   ============================================= */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary:   #0284c7;
  --primary-d: #0369a1;
  --cyan:      #06b6d4;
  --dark:      #0f172a;
  --body-bg:   #f8fafc;
  --card-bg:   #ffffff;
  --text-muted:#64748b;
  --border:    #e2e8f0;
  --radius:    14px;
  --shadow-sm: 0 2px 12px rgba(2,132,199,.08);
  --shadow-md: 0 8px 32px rgba(2,132,199,.14);
  --shadow-lg: 0 20px 60px rgba(2,132,199,.18);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--body-bg);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 10px 0;
}
.nav-logo img { height: 52px; width: auto; }
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: .9rem;
  color: var(--dark);
  transition: color .2s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width .3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 99px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
#mobile-menu.open { display: flex; }
#mobile-menu .nav-link { font-size: 1rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(2,132,199,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(2,132,199,.45); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-badge {
  display: inline-block;
  background: #e0f2fe;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: .95rem;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f7ff 0%, #f0f9ff 50%, #e8f4fd 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(2,132,199,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}
.hero-title span { color: var(--primary); }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; }

/* floating stats */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 600;
}
.stat-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }

/* hero image blob */
.hero-blob {
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 100%);
  border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%; }
  33%      { border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%; }
  66%      { border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; }
}

/* MN Cable brand name in hero */
.brand-name-hero {
  display: inline-block;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #0f172a 0%, #0284c7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding: 0 6px;
}
.brand-name-hero::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #06b6d4);
  border-radius: 99px;
}

/* Hero network SVG animation */
.hero-network-icon {
  width: 300px;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* partner strip */
.partner-strip {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 32px;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-muted);
}
.partner-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* =============================================
   SERVICES
   ============================================= */
#services { background: #fff; }
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.service-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: #e0f7ff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: background .25s;
}
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--cyan)); }
.service-card:hover .service-icon-wrap svg { filter: brightness(0) invert(1); }

/* =============================================
   FEATURES
   ============================================= */
#features { background: #f0f9ff; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-bullet {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.feature-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.feature-img-placeholder {
  width: 100%; min-height: 420px;
  background: linear-gradient(135deg, #bae6fd, #e0f2fe);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--primary);
  font-weight: 600;
}

/* =============================================
   PRICING
   ============================================= */
#pricing { background: #fff; }
.pricing-toggle {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}
.pricing-toggle button {
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
  background: transparent;
  color: var(--text-muted);
  transition: all .2s;
}
.pricing-toggle button.active { background: var(--primary); color: #fff; box-shadow: 0 2px 10px rgba(2,132,199,.3); }

.plan-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.plan-card.popular {
  background: linear-gradient(160deg, #0284c7 0%, #0ea5e9 50%, #06b6d4 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.plan-card.popular:hover { transform: scale(1.05) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price sup { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.plan-card.popular .plan-price sup { color: rgba(255,255,255,.8); }
.plan-price span[data-monthly] { font-size: inherit; font-weight: inherit; opacity: 1; }
.plan-price span:not([data-monthly]) { font-size: .95rem; font-weight: 500; opacity: .6; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.plan-card.popular .plan-feature { border-bottom-color: rgba(255,255,255,.15); }
.plan-feature:last-child { border-bottom: none; }
.check-icon { color: #22c55e; font-size: 1rem; flex-shrink: 0; }
.plan-card.popular .check-icon { color: #a7f3d0; }
.plan-btn { margin-top: auto; padding-top: 20px; }
.plan-card.popular .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.plan-card.popular .btn-primary:hover { background: #f0f9ff; }

/* =============================================
   COVERAGE
   ============================================= */
#coverage {
  background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#coverage::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-placeholder {
  min-height: 380px;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
}
.coverage-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why { background: #f8fafc; }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.why-icon {
  width: 56px; height: 56px;
  background: #e0f2fe;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background .25s;
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--cyan)); }
.why-card:hover .why-icon svg { filter: brightness(0) invert(1); }

/* =============================================
   FAQ
   ============================================= */
#faq { background: #fff; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  text-align: left;
  color: var(--dark);
  gap: 12px;
}
.faq-question:hover { background: #f8fafc; }
.faq-icon {
  width: 28px; height: 28px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  color: var(--primary);
  font-weight: 700; font-size: .9rem;
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: #f0f9ff; }
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   NEWSLETTER CTA
   ============================================= */
#newsletter {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  color: #fff;
}
.newsletter-input-wrap {
  display: flex;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-size: .9rem;
  color: #fff;
  font-family: inherit;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-input-wrap button {
  flex-shrink: 0;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border: none;
  padding: 12px 26px;
  cursor: pointer;
  font-family: inherit;
  font-size: .88rem;
  border-radius: 50px;
  margin: 4px;
  transition: transform .2s, box-shadow .2s;
}
.newsletter-input-wrap button:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
}
.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.footer-link {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-link:hover { color: var(--cyan); }
.footer-heading {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
  font-size: 1rem;
}
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-divider {
  border-color: rgba(255,255,255,.08);
  margin: 32px 0;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-btn-group {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex; flex-direction: column;
  gap: 12px; z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  font-size: 1.3rem;
  border: none;
  color: #fff;
}
.float-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.float-wa  { background: #25D366; }
.float-tel { background: var(--primary); }
.float-top { background: #0f172a; font-size: 1rem; }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  transform: translateY(24px) scale(.97);
  transition: transform .3s;
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-muted);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: #fee2e2; color: #ef4444; }

.modal-plan-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: #e0f2fe;
  color: var(--primary);
  font-size: .82rem; font-weight: 700;
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .83rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(2,132,199,.12); }
.form-input::placeholder { color: #94a3b8; }
textarea.form-input { resize: vertical; min-height: 80px; }

.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.modal-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

/* =============================================
   ANIMATIONS (Scroll-in)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-blob { width: 420px; height: 420px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-links-desktop { display: none !important; }
  .hero-blob { width: 320px; height: 320px; }
  .plan-card.popular { transform: scale(1); }
  .plan-card.popular:hover { transform: translateY(-6px); }
  .modal-box { padding: 28px 20px; }
  .float-btn-group { bottom: 20px; right: 16px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .newsletter-input-wrap { flex-direction: column; border-radius: 16px; }
  .newsletter-input-wrap button { margin: 0 4px 4px; }
}
