/* =========================================
   SPEEDLIGHT ISP — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --navy:    #0A1628;
  --navy2:   #0d1f3c;
  --cyan:    #00C2FF;
  --cyan2:   #00e5ff;
  --yellow:  #FFD600;
  --white:   #FFFFFF;
  --gray:    #F5F7FA;
  --gray2:   #e2e8f0;
  --text:    #1a2b4a;
  --muted:   #64748b;
  --card-bg: #FFFFFF;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(0,194,255,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #007bff);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,194,255,.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,194,255,.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
}

.btn-outline:hover {
  background: var(--cyan);
  color: var(--white);
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg { height: 38px; width: auto; }

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.nav-logo-text .speed { color: var(--white); }
.nav-logo-text .light { color: var(--cyan); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover { color: var(--cyan); background: rgba(0,194,255,.08); }

.nav-links .btn-login {
  background: var(--cyan);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 8px;
  transition: all .2s;
}

.nav-links .btn-login:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  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: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(0,194,255,.15);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  padding: 14px 16px;
  border-radius: 10px;
  transition: all .2s;
}

.mobile-menu a:hover { color: var(--cyan); background: rgba(0,194,255,.08); }

.mobile-menu .btn-login-m {
  margin-top: 8px;
  text-align: center;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 700;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,194,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,214,0,.08) 0%, transparent 50%),
    linear-gradient(135deg, #060e1c 0%, #0A1628 50%, #0d2040 100%);
}

/* Speed streaks */
.streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.streak {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  animation: streakMove var(--dur, 3s) linear var(--delay, 0s) infinite;
}

.streak.yellow {
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

@keyframes streakMove {
  0%   { opacity: 0; transform: translateX(-100%); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(120vw); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glowing orb */
.hero-orb {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 50vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero-orb svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: .5px;
}

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

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .speed-text {
  background: linear-gradient(90deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .light-text {
  color: var(--yellow);
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.7);
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.stat-item { }

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* =========================================
   FEATURES STRIP
   ========================================= */

.features-strip {
  background: var(--navy2);
  padding: 0;
}

.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: solid;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(0,194,255,.04); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* =========================================
   LAYANAN (SERVICES / PACKAGES)
   ========================================= */

.layanan { background: var(--gray); }

.layanan-header { text-align: center; margin-bottom: 56px; }
.layanan-header .section-sub { margin: 0 auto; }

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

.package-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,194,255,.15);
  border-color: var(--cyan);
}

.package-card.featured {
  border-color: var(--cyan);
  transform: scale(1.04);
}

.package-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.package-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}

.package-header::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: rgba(0,194,255,.08);
  border-radius: 50%;
}

.package-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.package-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.package-speed {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.speed-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.speed-unit {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.package-body {
  padding: 28px 32px 32px;
}

.package-price {
  margin-bottom: 24px;
}

.price-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
}

.price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.package-features li .check {
  width: 20px;
  height: 20px;
  background: rgba(0,194,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-features li .check svg {
  width: 12px;
  height: 12px;
  stroke: var(--cyan);
}

.pkg-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* =========================================
   PROMO SECTION
   ========================================= */

.promo { background: var(--white); }

.promo-header { margin-bottom: 48px; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promo-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform .25s;
}

.promo-card:hover { transform: translateY(-4px); }

.promo-card:first-child {
  grid-column: 1 / -1;
  min-height: 280px;
}

.promo-bg {
  position: absolute;
  inset: 0;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.promo-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.promo-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .5px;
  transition: gap .2s;
}

.promo-link:hover { gap: 10px; }

/* =========================================
   TENTANG KAMI (ABOUT)
   ========================================= */

.about { background: var(--navy); overflow: hidden; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,194,255,.15);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-card-top {
  background: linear-gradient(135deg, rgba(0,194,255,.15) 0%, rgba(0,100,255,.1) 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.about-logo-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-logo-large svg { width: 80px; height: 80px; }

.about-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}

.about-brand-name .speed { color: var(--white); }
.about-brand-name .light { color: var(--cyan); }

.about-card-stats {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}

.about-stat {
  padding: 20px 16px;
  text-align: center;
  background: rgba(10,22,40,.6);
}

.about-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--cyan);
}

.about-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  line-height: 1.4;
}

/* Floating badge */
.about-float-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 16px;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,214,0,.3);
}

.about-float-badge .big {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.about-float-badge .small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* About text */
.about-text .section-title { color: var(--white); }
.about-text .section-sub { color: rgba(255,255,255,.6); }

.about-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-point-icon svg { width: 22px; height: 22px; }

.about-point-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-point-body p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* =========================================
   CTA BANNER
   ========================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--cyan) 0%, #0057ff 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
}

.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: #0057ff;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: #060e1c;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand { }

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

.footer-logo svg { height: 36px; width: auto; }

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 20px;
}

.footer-logo-text .speed { color: var(--white); }
.footer-logo-text .light { color: var(--cyan); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.social-btn svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.7); }
.social-btn:hover svg { stroke: var(--navy); }

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer-links a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}

.footer-bottom-links a:hover { color: var(--cyan); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .feature-item:last-child { border-bottom: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card:first-child { grid-column: auto; }
  .hero-orb { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
