:root {
  /* Premium Palette */
  --brand:       hsl(161, 84%, 39%);
  --brand-light: hsl(161, 84%, 92%);
  --brand-dark:  hsl(161, 84%, 25%);
  --accent:      hsl(161, 100%, 75%);
  
  --ink:         hsl(224, 47%, 12%);
  --muted:       hsl(215, 16%, 47%);
  --surface:     hsl(210, 40%, 98%);
  --glass:       rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);
  --card-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.08);
  --hero-gradient: radial-gradient(circle at 80% 20%, hsl(161, 84%, 15%), hsl(224, 47%, 8%));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body { 
  font-family: 'DM Sans', system-ui, sans-serif; 
  background: var(--surface); 
  color: var(--ink); 
  overflow-x: hidden;
  line-height: 1.6;
}

.display { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }

/* Progress Bar */
#progress { 
  position: fixed; top: 0; left: 0; height: 4px; 
  background: linear-gradient(to right, var(--brand), var(--accent)); 
  z-index: 9999; width: 0; transition: width .1s linear; 
}

/* Navbar */
nav { 
  position: sticky; top: 0; z-index: 100; 
  background: var(--glass); 
  backdrop-filter: blur(20px) saturate(180%); 
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08); 
  transition: all 0.3s ease;
}

.nav-link { 
  color: var(--muted); font-size: 0.875rem; font-weight: 500; 
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
}
.nav-link:hover { color: var(--brand-dark); background: rgba(16, 185, 129, 0.08); }

/* Buttons */
.pill { 
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
  font-size: 0.875rem; font-weight: 600; padding: 12px 28px; 
  border-radius: 99px; border: none; cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}
.pill:hover { 
  transform: translateY(-2px) scale(1.02); 
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  filter: brightness(1.1);
}
.pill:active { transform: translateY(0) scale(0.98); }

.pill-lg { font-size: 1rem; padding: 16px 36px; }
.pill-outline { 
  background: rgba(255, 255, 255, 0.1); 
  border: 1.5px solid rgba(255, 255, 255, 0.3); 
  color: #fff; 
  backdrop-filter: blur(8px);
}
.pill-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; }

.pill-blue { background: #0084FF; box-shadow: 0 4px 14px 0 rgba(0, 132, 255, 0.3); }

/* Chips */
.label { 
  display: inline-block; font-size: 0.75rem; font-weight: 700; 
  letter-spacing: 0.05em; text-transform: uppercase; 
  color: var(--brand-dark); background: var(--brand-light); 
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px; 
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Hero */
.hero { 
  min-height: min(100svh, 900px); 
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--hero-gradient); 
  display: flex; align-items: center; position: relative; 
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -10%; 
  width: 60%; height: 60%; 
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  z-index: 0;
}

.trust-chip { 
  display: inline-flex; align-items: center; gap: 10px; 
  font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); 
  padding: 8px 0;
}
.trust-dot { 
  width: 32px; height: 32px; border-radius: 12px; 
  background: rgba(255, 255, 255, 0.1); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center; 
  flex-shrink: 0; backdrop-filter: blur(4px);
}

/* Section Transitions */
section { position: relative; z-index: 1; }

/* Cards */
.card { 
  background: #fff; 
  border: 1px solid rgba(15, 23, 42, 0.06); 
  border-radius: 28px; padding: 40px 32px; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  position: relative;
  box-shadow: var(--card-shadow);
}
.card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
  border-color: var(--brand);
}

.icon-box { 
  width: 56px; height: 56px; border-radius: 18px; 
  display: flex; align-items: center; justify-content: center; 
  flex-shrink: 0; transition: transform 0.3s ease;
}
.card:hover .icon-box { transform: scale(1.1) rotate(5deg); }

.check-row { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); padding: 6px 0; }
.check-dot { 
  width: 22px; height: 22px; border-radius: 50%; 
  background: var(--brand-light); 
  display: flex; align-items: center; justify-content: center; 
  flex-shrink: 0; color: var(--brand-dark);
}

/* Why cards */
.why-card { 
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.05); 
  border-radius: 24px; padding: 28px 24px; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.03);
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px -6px rgba(0,0,0,0.08); }

/* Phone mockups - Enhanced */
.phone-stage { perspective: 1200px; }
.phone { 
  /* border-radius is ~20% of width so it scales proportionally */
  width: 220px; aspect-ratio: 9/19.5; 
  background: #0F172A; border-radius: 44px; padding: 10px; 
  box-shadow: 
    0 50px 100px -20px rgba(0,0,0,0.5), 
    0 0 0 2px rgba(255,255,255,0.1) inset,
    0 0 20px rgba(16, 185, 129, 0.1); 
  flex-shrink: 0; position: relative; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone::after {
  content: ''; position: absolute; bottom: 8px; left: 50%; 
  transform: translateX(-50%); width: 40px; height: 4px; 
  background: rgba(255,255,255,0.2); border-radius: 99px;
}
.phone::before { 
  content: ''; position: absolute; top: 18px; left: 50%; 
  transform: translateX(-50%); width: 76px; height: 24px; 
  background: #0F172A; border-radius: 99px; z-index: 10; 
}
.phone-screen { 
  width: 100%; height: 100%; border-radius: 34px; 
  overflow: hidden; background: #f1f5f9; 
}
.phone:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 10 !important; }

/* Unit card */
.unit-card { 
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.06); 
  border-radius: 24px; overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
}
.unit-card:hover { 
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15); 
  transform: translateY(-6px);
  border-color: var(--brand);
}
.unit-card img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.unit-card:hover img { transform: scale(1.06); }

/* Product strip — light studio-style backdrop for transparent PNGs */
.unit-card-media {
  height: 190px;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 92% 78% at 50% 68%, rgba(255, 255, 255, 0.72) 0%, transparent 58%),
    linear-gradient(168deg, #f4f6f9 0%, #eceff4 38%, #e3e8ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 28px);
  position: relative;
}
/* Videoke card: subtle violet tint, same treatment as other product PNGs */
.unit-card-media--videoke {
  background:
    radial-gradient(ellipse 92% 78% at 50% 68%, rgba(255, 255, 255, 0.78) 0%, transparent 58%),
    linear-gradient(168deg, #f5f3ff 0%, #ede9fe 40%, #e4e0f5 100%);
}
.unit-card-media.unit-card-media--compact {
  height: 200px;
}
/* Taller split strip (e.g. tent detail page) */
.unit-card-media--split.unit-card-media--hero {
  height: auto;
  min-height: 260px;
}
.unit-card-media--hero .unit-card-media__cell {
  padding: clamp(14px, 3vw, 22px);
  min-height: 260px;
  height: 260px;
  box-sizing: border-box;
}
.unit-card-media--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 110% 88% at 50% 82%, rgba(255, 255, 255, 0.5) 0%, transparent 56%),
    linear-gradient(168deg, #f4f6f9 0%, #eceff4 45%, #e3e8ef 100%);
}
.unit-card-media__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2.5vw, 18px);
  min-height: 0;
  position: relative;
}
.unit-card-media__cell:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14%;
  bottom: 14%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.07) 35%, rgba(15, 23, 42, 0.07) 65%, transparent 100%);
}
.unit-card-media img,
.unit-card-media__cell img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 14px 32px rgba(15, 23, 42, 0.12))
    drop-shadow(0 6px 14px rgba(15, 23, 42, 0.06));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}
.unit-card:hover .unit-card-media img,
.unit-card:hover .unit-card-media__cell img {
  filter:
    drop-shadow(0 20px 40px rgba(15, 23, 42, 0.14))
    drop-shadow(0 8px 18px rgba(15, 23, 42, 0.08));
}
@media (prefers-reduced-motion: reduce) {
  .unit-card img,
  .unit-card-media img,
  .unit-card-media__cell img {
    transition: none;
  }
  .unit-card:hover img,
  .unit-card:hover .unit-card-media img,
  .unit-card:hover .unit-card-media__cell img {
    transform: none;
    filter:
      drop-shadow(0 14px 32px rgba(15, 23, 42, 0.12))
      drop-shadow(0 6px 14px rgba(15, 23, 42, 0.06));
  }
}

/* Testimonial */
.testi { 
  background: #fff; border: 1px solid rgba(15, 23, 42, 0.05); 
  border-radius: 24px; padding: 32px; 
  box-shadow: 0 8px 30px -4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.testi:hover { transform: scale(1.02); }
.stars { color: #FBBF24; font-size: 1rem; letter-spacing: 3px; }

/* Contact */
.contact-section { 
  background: linear-gradient(135deg, hsl(224, 47%, 10%) 0%, hsl(224, 47%, 18%) 100%); 
  position: relative; overflow: hidden;
}
.contact-section::after {
  content: ''; position: absolute; bottom: -10%; left: -5%; 
  width: 40%; height: 40%; 
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
}
.contact-card { 
  background: rgba(255, 255, 255, 0.06); 
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12); 
  border-radius: 32px; padding: 40px; 
  color: rgba(255, 255, 255, 0.9);
}
.contact-card h2 {
  color: #fff; font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.8); line-height: 1.7;
}

.messenger-big { 
  display: flex; align-items: center; gap: 20px; 
  background: #0084FF; color: #fff; border-radius: 22px; 
  padding: 22px 28px; font-size: 1.1rem; font-weight: 600; 
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px -5px rgba(0, 132, 255, 0.4);
}
.messenger-big:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px -5px rgba(0, 132, 255, 0.5); }

/* FAB */
.fab { 
  position: fixed; bottom: 32px; right: 32px; 
  width: 64px; height: 64px; 
  background: #0084FF; border-radius: 20px; 
  display: flex; align-items: center; justify-content: center; 
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.4); 
  z-index: 200; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.fab:hover { transform: scale(1.1) rotate(5deg); border-radius: 24px; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* Navbar (refactored) */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
  color: var(--muted); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; padding: 8px 12px; border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links li a:hover { color: var(--brand-dark); background: rgba(16, 185, 129, 0.08); }
.nav-active { color: var(--brand-dark) !important; font-weight: 600 !important; }
.nav-cta { font-size: 0.875rem !important; }
.nav-toggle {
  display: none; padding: 8px; border-radius: 10px;
  border: 1px solid #E2E8F0; background: #fff; cursor: pointer;
  font-size: 1.4rem; line-height: 1;
}

/* Mobile menu (refactored) */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  padding: 0 24px 20px;
  border-top: 1px solid #F1F5F9;
  z-index: 9998;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 12px 0 0; margin: 0; }
.mobile-menu ul li a {
  display: block; padding: 10px 0; border-bottom: 1px solid #F1F5F9;
  color: var(--ink); text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--brand-dark); }
.mobile-menu ul li:last-child a {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 12px 28px;
  border-radius: 99px; border: none;
  background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-menu ul li:last-child a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Buttons (refactored) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.875rem; font-weight: 600; padding: 12px 28px;
  border-radius: 99px; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-secondary {
  background: #fff; color: var(--ink);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

/* Page Hero (sub-pages) */
.page-hero {
  padding: 120px 0 60px;
  background: var(--hero-gradient);
  color: #fff; text-align: center;
}
.page-hero h1 {
  font-family: 'Sora', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 700px; margin: 0 auto;
}
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--brand-dark); background: var(--brand-light);
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Product page */
.product-hero {
  padding: 120px 0 60px;
  background: var(--hero-gradient);
  color: #fff; text-align: center;
}
.product-hero h1 {
  font-family: 'Sora', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px;
}
.product-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 700px; margin: 0 auto;
}
.product-detail { padding: 80px 0; }
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.product-image img {
  width: 100%; border-radius: 24px;
  box-shadow: 0 20px 48px -8px rgba(16, 185, 129, 0.13);
}
.product-info h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; margin-bottom: 16px;
}
.product-info p { color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.product-specs {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 0.9rem;
}
.product-specs th {
  text-align: left; padding: 10px 16px 10px 0;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  white-space: nowrap;
}
.product-specs td {
  padding: 10px 16px; color: var(--muted);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.product-pricing {
  background: var(--brand-light); border-radius: 16px;
  padding: 20px 24px; margin: 24px 0;
}
.product-pricing h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.product-pricing p { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.pricing-hint { font-size: 0.85rem !important; }
.pricing-hint a { color: var(--brand-dark); font-weight: 600; }
.availability-note {
  font-size: 0.8rem; color: var(--muted); margin-top: 12px;
  text-align: center;
}

/* Also Available */
.also-available { padding: 80px 0; background: #fff; }
.also-available h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; margin-bottom: 32px; text-align: center;
}
.also-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.also-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px; padding: 20px;
  text-decoration: none; color: var(--ink);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.also-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -6px rgba(0,0,0,0.08);
  border-color: var(--brand);
}
.also-card img { width: 80px; height: 80px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }
.also-card strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.also-card span { display: block; font-size: 0.8rem; color: var(--muted); }
.also-card em { display: block; font-size: 0.8rem; color: var(--brand-dark); font-style: normal; font-weight: 600; margin-top: 6px; }

/* Contact page extras */
.contact-logo { width: 120px; margin-bottom: 24px; }
.contact-details { list-style: none; padding: 0; margin: 16px 0; }
.contact-details li { padding: 8px 0; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-tip { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 16px; }

/* Units section (packages) */
.units-section { padding: 80px 0; }
.units-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.unit-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--brand); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 99px; z-index: 2;
}
.unit-badge--best { background: #F59E0B; }
.unit-card {
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.unit-card:hover {
  border-color: var(--brand);
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15);
}
/* Package grid only — avoid breaking index product showcase (.unit-card-media) */
.units-grid .unit-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.unit-info { padding: 24px; }
.unit-info h3 { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.unit-subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.unit-price {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 800; color: var(--brand-dark); margin-bottom: 12px;
}
.price-note { font-size: 0.75rem; font-weight: 400; color: var(--muted); }
.unit-features {
  list-style: none; padding: 0; margin: 0 0 20px;
  font-size: 0.9rem; color: var(--muted);
}
.unit-features li { padding: 4px 0; }
.unit-features li::before { content: '✓ '; color: var(--brand); font-weight: 700; }
.unit-card--featured { border: 2px solid var(--brand); }
.unit-card--featured .unit-badge { background: #F59E0B; }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0; font-size: 0.85rem; color: var(--muted);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.breadcrumb a { color: var(--brand-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Package detail page */
.package-hero { padding: 80px 0; }
.package-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.package-image img {
  width: 100%; border-radius: 24px;
  box-shadow: 0 20px 48px -8px rgba(16, 185, 129, 0.13);
}
.package-info h1 {
  font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px;
}
.package-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--brand-dark); background: var(--brand-light);
  padding: 6px 16px; border-radius: 99px; margin-bottom: 16px;
}
.package-price-block {
  background: var(--brand-light); border-radius: 16px;
  padding: 20px 24px; margin: 24px 0;
}
.price-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.package-price {
  font-family: 'Sora', sans-serif; font-size: 2rem;
  font-weight: 800; color: var(--brand-dark);
}

/* Package breakdown */
.package-breakdown { padding: 80px 0; background: #fff; }
.package-breakdown h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; margin-bottom: 32px; text-align: center;
}
.breakdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.breakdown-item {
  text-align: center; padding: 32px 24px;
  background: var(--surface); border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.breakdown-qty {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--brand-dark);
  margin-bottom: 8px;
}
.breakdown-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.breakdown-item span { font-size: 0.85rem; color: var(--muted); }

/* Info sections */
.why-choose, .service-coverage { padding: 80px 0; }
.why-choose h2, .service-coverage h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; margin-bottom: 16px;
}
.why-choose p, .service-coverage p {
  color: var(--muted); line-height: 1.6; margin-bottom: 16px; max-width: 800px;
}

/* Package CTA */
.package-cta {
  padding: 80px 0; text-align: center;
  background: var(--hero-gradient); color: #fff;
}
.package-cta h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; margin-bottom: 12px;
}
.package-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* Compare packages */
.compare-packages { padding: 60px 0; text-align: center; }
.compare-packages h2 {
  font-family: 'Sora', sans-serif; font-size: 1.25rem;
  font-weight: 700; margin-bottom: 24px;
}
.compare-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer (refactored) */
.footer {
  background: #000; padding: 36px 24px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
  font-family: 'Sora', sans-serif; font-size: 1.2rem;
  font-weight: 700; letter-spacing: -0.02em;
}
.footer-logo img { height: 36px; width: auto; border-radius: 8px; }
.footer-tagline { color: #475569; font-size: 0.84rem; }
.footer-copy { color: #334155; font-size: 0.75rem; }

/* Animations */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.fa { animation: float 6s ease-in-out infinite; }
.fb { animation: float 7s ease-in-out infinite 1s; }
.fc { animation: float 5.5s ease-in-out infinite .5s; }

@keyframes reveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.visible { animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Toast Notification */
#toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 500; z-index: 10000; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }


@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .nav-toggle { display: none !important; }
}

@media (max-width: 768px) {
  .lg-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Hero: stop it ballooning on narrow desktop-mode viewports */
  .hero { min-height: 0 !important; padding-top: 100px !important; padding-bottom: 80px !important; }

  /* Refactored navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* Refactored grids */
  .product-layout, .package-layout { grid-template-columns: 1fr; gap: 32px; }
  .units-grid { grid-template-columns: 1fr; gap: 24px; }
  .also-grid { grid-template-columns: 1fr; gap: 16px; }
  .breakdown-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Refactored sections */
  .page-hero { padding: 100px 0 48px; }
  .product-hero { padding: 100px 0 48px; }
  .package-hero { padding: 60px 0; }
  .product-detail { padding: 60px 0; }
  .also-available { padding: 60px 0; }
  .units-section { padding: 60px 0; }
  .package-breakdown { padding: 60px 0; }
  .why-choose, .service-coverage { padding: 60px 0; }
  .package-cta { padding: 60px 0; }
  .compare-packages { padding: 48px 0; }

  section { padding-top: 64px !important; padding-bottom: 64px !important; }

  /* Phone 180px → border-radius ≈ 36px (20% of width) */
  .phone { width: 180px; border-radius: 36px; }
  .phone-screen { border-radius: 27px; }
  .phone::before { top: 14px; width: 60px; height: 18px; }
  .phone::after  { bottom: 7px; width: 32px; height: 3px; }

  .phone-stage { height: 420px !important; }
  .phone-left  { left: 10px !important; top: 30px !important; }
  .phone-right { right: 10px !important; top: 60px !important; }
}

@media (max-width: 480px) {
  /* Phone 150px → border-radius ≈ 30px (20% of width) */
  .phone { width: 150px; border-radius: 30px; }
  .phone-screen { border-radius: 22px; }
  .phone::before { top: 12px; width: 50px; height: 15px; }
  .phone::after  { bottom: 6px; width: 28px; height: 3px; }

  .phone-stage { height: 340px !important; }
  .phone-left  { left: 0px !important; }
  .phone-right { right: 0px !important; }

  .also-card { flex-direction: column; text-align: center; }
  .also-card img { width: 100%; height: 140px; }
}

