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

:root {
  --red: #C0392B;
  --red-dark: #922B21;
  --green: #27AE60;
  --green-dark: #1E8449;
  --gold: #F39C12;
  --cream: #FFF8F0;
  --dark: #2C1810;
  --text: #3D2B1F;
  --text-light: #6B5B50;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--dark);
}
.nav-logo { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-logo svg { width: 44px; height: 44px; }
.nav-brand span { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.25rem; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-weight: 500; font-size: 0.92rem;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  position: absolute; left: 4px;
  transition: all .3s;
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ── PAGE HEADER (non-home pages) ── */
.page-header {
  padding: 140px 24px 60px;
  background: linear-gradient(135deg, #1a4731 0%, #2d6b4f 40%, #1a4731 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: 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='1'%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");
}
.page-header-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-header .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
}
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── HERO (home only) ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a4731 0%, #2d6b4f 40%, #1a4731 100%);
  position: relative; overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(243,156,18,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.1) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 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='1'%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");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 24px; color: rgba(255,255,255,0.9);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all .25s; border: none; cursor: pointer;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(192,57,43,0.4); }
.btn-outline { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center; color: var(--white);
  max-width: 380px; width: 100%;
}
.hero-card-logo { margin-bottom: 24px; }
.hero-card-logo svg { width: 120px; height: 120px; }
.hero-card h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.hero-stat strong { display: block; font-size: 1.3rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ── HOME PREVIEW CARDS ── */
.home-tiles { padding: 80px 24px; background: var(--white); }
.home-tiles-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px;
}
.home-tile {
  display: block; padding: 32px 24px; border-radius: 16px;
  background: var(--cream); text-decoration: none; color: var(--text);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.home-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.home-tile-icon { font-size: 2rem; margin-bottom: 14px; }
.home-tile h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.home-tile p { color: var(--text-light); font-size: 0.9rem; }
.home-tile-arrow { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 600; font-size: 0.9rem; }

/* ── SECTIONS (shared) ── */
.section { padding: 80px 24px; background: var(--white); }
.section-alt { background: var(--cream); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--red); margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark); margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ── FEATURES ── */
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 32px;
}
.feature-card {
  background: var(--cream);
  border-radius: 16px; padding: 36px 28px;
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.fi-green { background: rgba(39,174,96,0.12); }
.fi-red { background: rgba(192,57,43,0.12); }
.fi-gold { background: rgba(243,156,18,0.12); }
.fi-blue { background: rgba(41,128,185,0.12); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── PRODUCTS ── */
.products-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.pi-1 { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.pi-2 { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.pi-3 { background: linear-gradient(135deg, #ffeaa7, #dfe6e9); }
.pi-4 { background: linear-gradient(135deg, #fab1a0, #ffeaa7); }
.pi-5 { background: linear-gradient(135deg, #c7ecee, #dff9fb); }
.pi-6 { background: linear-gradient(135deg, #e8daef, #fadbd8); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.product-info p { color: var(--text-light); font-size: 0.85rem; }

/* ── REVIEWS ── */
.reviews { padding: 80px 24px; background: var(--dark); color: var(--white); }
.reviews .section-tag { color: var(--gold); }
.reviews .section-header h2 { color: var(--white); }
.reviews .section-header p { color: rgba(255,255,255,0.6); }
.reviews-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--white);
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-source { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.rating-badge { text-align: center; margin-bottom: 48px; }
.rating-badge .big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 800; color: var(--gold);
}
.rating-badge .stars { font-size: 1.5rem; color: var(--gold); display: block; margin: 4px 0; }
.rating-badge .count { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ── LOCATION ── */
.location-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.location-map {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  height: 400px;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-info { padding: 20px 0; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  background: rgba(39,174,96,0.1);
}
.info-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.info-item p { color: var(--text-light); font-size: 0.9rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 6px 0; font-size: 0.9rem; color: var(--text-light); }
.hours-table td:first-child { font-weight: 600; color: var(--text); width: 120px; }
.open-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(39,174,96,0.1); color: var(--green);
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.open-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

/* ── CTA ── */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center; color: var(--white);
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 24px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-brand svg { width: 48px; height: 48px; margin-bottom: 16px; }
.footer-brand p { max-width: 300px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.9rem;
  padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.5); font-size: 1.2rem; transition: color .2s; text-decoration: none; }
.social-links a:hover { color: var(--gold); }

/* ── TOP-UPS ── */
.topups-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1200px; margin: 0 auto 56px;
}
.topups-intro h3 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 800; margin-bottom: 16px; line-height: 1.1; color: var(--dark);
}
.topups-intro p { color: var(--text-light); font-size: 1rem; margin-bottom: 16px; }
.topups-features { list-style: none; display: grid; gap: 14px; }
.topups-features li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; }
.topups-features .check {
  background: var(--green); color: var(--white); width: 24px; height: 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
}
.topup-widget {
  max-width: 1200px; margin: 0 auto;
  background: var(--cream); border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
}
.topup-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 28px; }
.step {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem; color: var(--text-light); font-weight: 500;
}
.step.active { border-color: var(--red); color: var(--dark); font-weight: 600; }
.step.done { border-color: var(--green); color: var(--green); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
  background: rgba(0,0,0,0.06); color: var(--text-light);
}
.step.active .step-num { background: var(--red); color: var(--white); }
.step.done .step-num { background: var(--green); color: var(--white); }
.carriers-live { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.carrier-pick {
  background: var(--white); border: 2px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 16px 8px; text-align: center;
  cursor: pointer; transition: all .2s; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.carrier-pick:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.06); }
.carrier-pick.selected { border-color: var(--red); background: #fff5f3; box-shadow: 0 8px 16px rgba(192,57,43,0.15); }
.carrier-pick img { width: 100%; height: 50px; object-fit: contain; }
.carrier-pick .nm { font-size: 11px; font-weight: 600; color: var(--text-light); line-height: 1.2; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.plan-pick {
  background: var(--white); border: 2px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 20px 16px; cursor: pointer;
  transition: all .2s; text-align: left;
}
.plan-pick:hover { border-color: var(--red); transform: translateY(-2px); }
.plan-pick.selected { border-color: var(--red); background: #fff5f3; }
.plan-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: var(--dark); }
.plan-price { font-size: 1.2rem; font-weight: 700; color: var(--red); }
.plan-meta { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.topup-section { display: none; }
.topup-section.active { display: block; }
.topup-section h4 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 800; margin-bottom: 14px; color: var(--dark);
}
.topup-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; color: var(--red); cursor: pointer;
  font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; padding: 0;
}
.topup-back:hover { text-decoration: underline; }
.topup-msg { padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; font-weight: 500; }
.topup-msg.err { background: #fef0ee; color: #9a2418; border: 1px solid #f5c1bb; }
.topup-msg.ok { background: #ecf7ef; color: #1a6534; border: 1px solid #b6dfc1; }
.topup-msg.info { background: #eef2f7; color: #345268; border: 1px solid #c5d3e0; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.checkout-section { margin-bottom: 28px; }
.checkout-section h5 {
  font-size: 1rem; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.06); color: var(--dark);
}
.we-accept { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-light); }
.brands { display: flex; gap: 6px; }
.brand {
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input, #card-element {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  background: var(--white); transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--red); }
#card-element { padding: 14px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.summary-card {
  background: var(--dark); border-radius: 16px; padding: 28px; color: var(--white);
  position: sticky; top: 88px;
}
.summary-card h5 { color: var(--white); border-bottom-color: rgba(255,255,255,0.1); }
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.summary-line .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.5); }
.summary-line .val { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.summary-line.total { border-bottom: none; padding-top: 14px; }
.summary-line.total .val { font-size: 1.2rem; color: var(--gold); }
.terms { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin: 16px 0 12px; line-height: 1.5; }
.agree-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; cursor: pointer;
}
.agree-row input { margin-top: 3px; accent-color: var(--red); }
.topup-submit {
  width: 100%; padding: 14px; border: none; border-radius: 10px;
  background: var(--red); color: var(--white); font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
}
.topup-submit:hover:not(:disabled) { background: var(--red-dark); }
.topup-submit:disabled { opacity: .5; cursor: not-allowed; }
.complete-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  max-width: 520px; margin: 0 auto; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.complete-head { text-align: center; margin-bottom: 20px; }
.complete-head h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); }
.complete-head .sub { color: var(--text-light); font-size: 0.9rem; }
.complete-status {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; background: #ecf7ef; border-radius: 10px; margin-bottom: 20px;
  color: #1a6534; font-weight: 600;
}
.check-circle { font-size: 1.2rem; }
.complete-plan { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 16px; }
.complete-tx h4 { font-size: 0.9rem; margin-bottom: 8px; }
.complete-tx .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.complete-receipt { margin-top: 16px; font-size: 0.85rem; color: var(--text-light); text-align: center; }
.complete-actions { margin-top: 20px; text-align: center; }
.btn-secondary {
  background: var(--cream); color: var(--dark); border: 1px solid rgba(0,0,0,0.1);
  padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover { background: var(--white); border-color: var(--red); }
.skeleton {
  height: 80px; border-radius: 12px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── GALLERY ── */
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}
.gallery-item {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-item-info { padding: 18px 20px; }
.gallery-item-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.gallery-item-info p { color: var(--text-light); font-size: 0.85rem; }

@media (max-width: 880px) { .topups-intro { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 780px) {
  .carriers-live { grid-template-columns: repeat(3, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .topup-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px; align-items: flex-start;
  }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 320px; margin: 0 auto; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
