: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; scroll-padding-top: 96px; }

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); }
.pill-outline-dark {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #E2E8F0;
  box-shadow: none;
}
.pill-outline-dark:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  filter: none;
  transform: translateY(-2px);
}

/* 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: auto;
  padding-top: 56px;
  padding-bottom: 40px;
  background: var(--hero-gradient); 
  display: flex; align-items: flex-start; 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);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-fact {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.hero-fact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.hero-fact__value {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}

.expectation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.expectation-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.urgency-note {
  margin: 0 0 26px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-area-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #D1FAE5;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.14);
}

.service-area-proof {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-area-proof__title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-area-proof__note {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-area-map {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-area-map:hover {
  transform: translateY(-2px);
  border-color: #86EFAC;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.28);
}

.service-area-map__image {
  width: 100%;
  height: auto;
  display: block;
}

.service-area-map__meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proof-shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--card-shadow);
}

.proof-shot--wide {
  grid-column: span 2;
}

.proof-shot__media {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  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%);
}

.proof-shot__media--wide {
  aspect-ratio: 16 / 9;
}

.proof-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 32px rgba(15, 23, 42, 0.12))
    drop-shadow(0 6px 14px rgba(15, 23, 42, 0.06));
}

.proof-shot__media--photo {
  padding: 0;
}

.proof-shot__media--photo picture,
.proof-shot__media--photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.proof-shot__media--photo img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.proof-shot__body {
  padding: 18px 20px 22px;
}

.proof-shot__body strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.proof-shot__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.proof-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proof-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.proof-card--accent {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 24px 56px -18px rgba(15, 23, 42, 0.34);
}

.proof-review-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-review-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.28);
}

.proof-badge-list {
  display: grid;
  gap: 14px;
}

.proof-badge-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proof-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-badge-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.proof-badge-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.proof-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 20px 0 18px;
}

.proof-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.proof-checklist li::before {
  content: '✓';
  color: #6ee7b7;
  font-weight: 700;
  margin-top: 1px;
}

/* Section Transitions */
section { position: relative; z-index: 1; }
section[id] { scroll-margin-top: 96px; }

/* 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 {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  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 {
  aspect-ratio: 5 / 4;
}
/* Taller split strip (e.g. tent detail page) */
.unit-card-media--split.unit-card-media--hero {
  aspect-ratio: auto;
  min-height: 0;
}
.unit-card-media--hero .unit-card-media__cell {
  padding: clamp(14px, 3vw, 22px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
}
.unit-card-media--split:not(.unit-card-media--hero) {
  aspect-ratio: 2 / 1;
}
.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; }

.testimonial-context {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
}

.testimonial-context strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-context span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid #E2E8F0;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

/* 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%);
  pointer-events: none;
}
.contact-section > .lg-grid,
.contact-mini-form-wrap {
  position: relative;
  z-index: 1;
}
.contact-mini-form-wrap input,
.contact-mini-form-wrap textarea,
.contact-mini-form-wrap button {
  pointer-events: auto;
}
.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;
}

.inquiry-steps {
  margin: 22px 0 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-steps__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.inquiry-step-list {
  display: grid;
  gap: 12px;
}

.inquiry-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.inquiry-step__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.14);
  color: #6EE7B7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.inquiry-step strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.inquiry-step span {
  display: block;
  color: #94A3B8;
  font-size: 0.8rem;
  line-height: 1.6;
}

.quote-template-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.quote-template-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.quote-template__message {
  white-space: pre-line;
  background: #0F172A;
  color: #E2E8F0;
  border-radius: 18px;
  padding: 18px;
  font-size: 0.88rem;
  line-height: 1.75;
}

.copy-template-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #D1FAE5;
  background: #ECFDF5;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.copy-template-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -16px rgba(15, 23, 42, 0.28);
  border-color: #6EE7B7;
}

.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; }

.mobile-cta-bar {
  display: none;
}

.desktop-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 180;
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #0F172A;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.desktop-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.34);
}
.contact-mini-form-wrap input::placeholder,
.contact-mini-form-wrap textarea::placeholder {
  color: #94A3B8;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
#contact-form {
  position: relative;
}

/* 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.18rem; font-weight: 700; letter-spacing: -0.02em;
}
.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
  color: var(--muted); font-size: 0.8rem; font-weight: 500;
  text-decoration: none; padding: 7px 9px; border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.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;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  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(auto-fit, minmax(260px, 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;
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.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%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  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%);
}

/* Homepage package promo cards (Basic / Standard) */
.package-promo-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  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;
}

.package-promo-media picture,
.package-promo-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.package-promo-media img {
  object-fit: contain;
  object-position: center bottom;
}

/* Live catalog cards (API-driven) */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 320px));
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.catalog-grid--packages {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-grid--primary {
  margin-bottom: 48px;
}

.units-bundles-block {
  margin-top: 8px;
  padding-top: 40px;
  border-top: 1px solid #E2E8F0;
}

.units-bundles-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 24px;
}

.catalog-sublabel {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.units-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.units-header-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.units-header-intro .label {
  margin-bottom: 0;
}

.section-units-primary {
  padding: 48px 24px 72px;
}

.section--compact {
  padding: 72px 24px;
}

.trust-chip--light {
  color: var(--ink);
}

.trust-dot--light {
  background: #ECFDF5;
  border-color: rgba(16, 185, 129, 0.2);
}

.hero-facts--light {
  margin-top: 32px;
}

.hero-facts--light .hero-fact {
  background: #F8FAFC;
  border-color: #E2E8F0;
  backdrop-filter: none;
}

.hero-facts--light .hero-fact__label {
  color: var(--muted);
}

.hero-facts--light .hero-fact__value {
  color: var(--ink);
}

.cta-note--light {
  color: var(--muted);
}

.expectation-strip--light {
  margin-bottom: 0;
}

.expectation-pill--light {
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: var(--ink);
  backdrop-filter: none;
}

.urgency-note--light {
  color: var(--muted);
  margin-top: 0;
}

@media (min-width: 1100px) {
  .catalog-grid--packages {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-grid .unit-card-media {
  overflow: hidden;
}

.catalog-grid .unit-card-media > .catalog-card-img {
  width: 100%;
  height: 100%;
  display: block;
}

.catalog-card-img {
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

.catalog-card-img--crop {
  object-fit: cover;
}

.catalog-card-img--fit {
  object-fit: contain;
  background: transparent;
}

.catalog-hero-img {
  object-fit: contain;
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
  background: transparent;
}

.product-hero-frame .catalog-hero-img {
  width: 100%;
  height: 100%;
}

.units-grid .unit-card > img.catalog-card-img,
.package-promo-media .catalog-card-img,
.unit-card-media .catalog-card-img {
  width: 100%;
  height: 100%;
}

.catalog-card-body {
  padding: 18px;
}

.catalog-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.catalog-card-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.catalog-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.catalog-card-link--videoke {
  color: #7c3aed;
}

.catalog-card-price {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.catalog-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.catalog-card-cta-messenger {
  display: block;
  text-align: center;
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  background: #0f172a;
  color: #fff;
  transition: filter 0.2s;
}

.catalog-card-cta-messenger:hover {
  filter: brightness(1.08);
}

.catalog-card-link--secondary {
  justify-content: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
}

.anchor-alias {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#units {
  position: relative;
}

.units-header-compact {
  text-align: center;
  margin-bottom: 28px;
}

.units-header-compact__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.units-header-compact__sub {
  color: var(--ink);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 8px;
  line-height: 1.6;
}

.units-rates-line {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.catalog-sublabel--singles {
  margin-top: 36px;
}

.units-footer-cta {
  text-align: center;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.pill--dark {
  background: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.proof-cro-head {
  text-align: center;
  margin-bottom: 28px;
}

.proof-cro-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.proof-cro-head p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.proof-cro-layout {
  display: grid;
  gap: 24px;
}

.proof-gallery--cro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* `display:grid` on .proof-gallery overrides the UA [hidden] rule — keep static fallback out of layout when live gallery renders */
#proof-gallery-static[hidden],
#live-proof-gallery-wrap:has(#live-proof-gallery:not(:empty)) #proof-gallery-static {
  display: none !important;
}

.proof-cro-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.proof-cro-reviews__grid .testi {
  margin: 0;
}

.proof-cro-reviews__grid .testi p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 12px 0;
  line-height: 1.65;
}

.proof-cro-reviews__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.proof-cro-reviews .proof-review-stack {
  margin-bottom: 16px;
}

.booking-steps-cro {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-steps-cro li {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.booking-steps-cro strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.why-cro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.faq-cro-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.faq-cro-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
}

.faq-cro-item dt {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.faq-cro-item dd {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.booking-policy-grid--cro {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-area-cro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #ecfdf5);
  border: 1px solid #d1fae5;
  border-radius: 24px;
  padding: 28px;
}

.service-area-map--cro {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.service-area-map--cro img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-link--desktop-only {
  /* visible on desktop */
}

@media (max-width: 768px) {
  .proof-gallery--cro {
    grid-template-columns: 1fr;
  }

  .service-area-cro {
    grid-template-columns: 1fr;
  }

  .section-units-primary {
    padding: 36px 20px 44px !important;
  }
}

@media (min-width: 900px) {
  .proof-cro-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.catalog-card--package {
  display: flex;
  flex-direction: column;
  border-color: var(--brand);
}

.catalog-card--featured {
  border-color: var(--brand);
  box-shadow: 0 16px 40px -8px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.catalog-card-promo-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 22px 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.catalog-card--featured .catalog-card-promo-header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.catalog-card-promo-name {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.catalog-card-promo-sub {
  font-size: 0.85rem;
  opacity: 0.9;
}

.catalog-card-promo-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.catalog-card--featured .catalog-card-promo-badge {
  background: var(--brand);
}

.catalog-card-body--package {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-price {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.catalog-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.catalog-card-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-card-cta {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, filter 0.2s;
}

.catalog-card-cta--view {
  margin-top: auto;
  background: var(--brand-light);
  color: var(--brand-dark);
}

.catalog-card--featured .catalog-card-cta--view {
  background: var(--brand);
  color: #fff;
}

.catalog-card-cta--book {
  margin-top: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 0.82rem;
}

/* Package detail & product pages */
.package-hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px -12px rgba(15, 23, 42, 0.14);
  aspect-ratio: 16 / 10;
  width: 100%;
  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;
}

.package-hero-media picture,
.package-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.package-hero-media .catalog-hero-img {
  object-fit: contain;
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

#packages-hub-flyer {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pkg-hub-media--empty {
  min-height: 140px;
}

.product-hero-frame {
  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%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px -12px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-frame picture,
.product-hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.content-figure {
  margin: 0;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3 / 4;
}

.content-figure picture,
.content-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.related-card-promo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-package-visual {
  min-height: 0;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.premium-package-visual picture,
.premium-package-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.unit-card-media picture,
.unit-card-media__cell picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.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; }

/* Packages hub — compact compare grid (wedding-event-package-lipa-batangas.html) */
#catalog-packages-grid.units-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

#catalog-packages-grid .pkg-hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#catalog-packages-grid .pkg-hub-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 148px;
  overflow: hidden;
  flex-shrink: 0;
  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%);
}

#catalog-packages-grid .pkg-hub-media picture,
#catalog-packages-grid .pkg-hub-media img {
  width: 100%;
  height: 100%;
  display: block;
}

#catalog-packages-grid .pkg-hub-media img {
  object-fit: cover;
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

#catalog-packages-grid .unit-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 18px 18px;
}

#catalog-packages-grid .pkg-hub-head {
  flex: 1 1 auto;
  min-height: 7.25rem;
  margin-bottom: 0;
}

#catalog-packages-grid .unit-info h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  line-height: 1.2;
  min-height: 1.2em;
}

#catalog-packages-grid .unit-subtitle {
  font-size: 0.8125rem;
  margin-bottom: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#catalog-packages-grid .unit-price {
  font-size: 1.35rem;
  margin: 10px 0 8px;
  flex-shrink: 0;
}

#catalog-packages-grid .unit-features {
  font-size: 0.8125rem;
  margin: 0 0 12px;
  flex: 1 1 auto;
}

#catalog-packages-grid .unit-features li {
  padding: 2px 0;
  line-height: 1.35;
}

#catalog-packages-grid .pkg-hub-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.pkg-hub-title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 1100px) {
  #catalog-packages-grid.units-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  #catalog-packages-grid .pkg-hub-media {
    max-height: 132px;
  }
}

@media (max-width: 639px) {
  #catalog-packages-grid.units-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #catalog-packages-grid .pkg-hub-media {
    max-height: 168px;
  }
}

/* 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: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Inline footers (pages not using .footer-logo wrapper) */
img.brand-logo-footer {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Contact page hero — large circular mark */
.brand-logo-showcase {
  width: min(260px, 65vw);
  height: min(260px, 65vw);
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.footer-tagline { color: #94A3B8; font-size: 0.84rem; }
.footer-copy { color: #64748B; font-size: 0.75rem; }

/* Homepage / contact footer */
.site-footer {
  background: #000;
  padding: 36px 24px 28px;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-footer__brand-tagline {
  font-size: 0.72rem;
  color: #94A3B8;
  max-width: 220px;
  line-height: 1.3;
  margin-top: 4px;
}
.site-footer__location {
  color: #CBD5E1;
  font-size: 0.84rem;
}
.site-footer__copy {
  color: #64748B;
  font-size: 0.75rem;
}
.site-footer-nav {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.site-footer-nav a {
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}
.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__brand-tagline {
    max-width: none;
  }
}
.site-footer__link {
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}
.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #6EE7B7;
  text-decoration: underline;
}

/* Phase 1 — delivery guide, package compare, policies, videoke promo */
.videoke-promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #DDD6FE;
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 55%, #ECFDF5 100%);
  box-shadow: 0 16px 40px -16px rgba(124, 58, 237, 0.18);
}
.videoke-promo-banner__media {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
}
.videoke-promo-banner__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.videoke-promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6D28D9;
  margin-bottom: 10px;
}
.videoke-promo-banner h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--ink);
}
.videoke-promo-banner p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.videoke-promo-banner__price {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #6D28D9;
  margin-bottom: 16px;
}
.videoke-promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.videoke-promo-banner__actions .pill {
  background: #7C3AED;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.videoke-promo-banner__actions .pill-outline-dark {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #E2E8F0;
  box-shadow: none;
}
.videoke-promo-banner__actions .pill-outline-dark:hover {
  border-color: #7C3AED;
  color: #6D28D9;
}

.package-compare-shell {
  margin-top: 0;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
}
.package-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.package-compare-table caption {
  caption-side: top;
  text-align: left;
  padding: 20px 22px 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.package-compare-table th,
.package-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #E2E8F0;
  vertical-align: top;
  text-align: left;
}
.package-compare-table thead th {
  background: #ECFDF5;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.package-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.package-compare-table .compare-highlight {
  background: #F0FDF4;
  font-weight: 600;
  color: var(--brand-dark);
}
.package-compare-footnote {
  padding: 16px 22px 20px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.delivery-guide-card {
  border: 1px solid #D1FAE5;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px -16px rgba(16, 185, 129, 0.12);
}
.delivery-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.delivery-guide-table th,
.delivery-guide-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #E2E8F0;
  text-align: left;
  vertical-align: top;
}
.delivery-guide-table thead th {
  background: #ECFDF5;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.delivery-guide-table tbody tr:last-child td {
  border-bottom: none;
}
.delivery-guide-note {
  padding: 16px 20px 20px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}
.delivery-guide-note strong {
  color: var(--ink);
}

.delivery-formula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.delivery-formula-pill {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.delivery-formula-pill__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.delivery-formula-pill__value {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.35;
}
.delivery-formula-equation {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  margin-bottom: 20px;
  line-height: 1.5;
}

.delivery-calc {
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px;
  background: #F8FAFC;
  margin-bottom: 20px;
}
.delivery-calc__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}
.delivery-calc__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.delivery-calc label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1 1 180px;
}
.delivery-calc input,
.delivery-calc select {
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.delivery-calc__result {
  flex: 1 1 200px;
  min-height: 72px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #D1FAE5;
  padding: 14px 16px;
}
.delivery-calc__result-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.delivery-calc__result-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.delivery-calc__result-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.45;
}

.delivery-section-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.delivery-section-stack h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.booking-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.booking-policy-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
}
.booking-policy-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.booking-policy-card p,
.booking-policy-card ul {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.booking-policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.booking-policy-card li {
  margin-bottom: 6px;
}

.review-card--attributed {
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}
.review-card--attributed .review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.8rem;
  color: var(--muted);
}
.review-card--attributed .review-card__name {
  font-weight: 600;
  color: var(--ink);
}
.review-card--attributed .review-card__source {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}
.review-card--attributed .review-card__source:hover {
  text-decoration: underline;
}
.reviews-cta-row {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* 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); }

/* Contact form success → Messenger CTA */
.contact-form-success {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #D1FAE5;
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
}
.contact-form-success[hidden],
#contact-form[hidden] {
  display: none !important;
}
.contact-form-success__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}
.contact-form-success__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.contact-form-success__btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  background: #0084FF !important;
  color: #fff !important;
  border: none;
}
.contact-form-success__again {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
  align-self: flex-start;
}
.contact-form-success__again:hover {
  color: var(--ink);
}
.contact-mini-form-wrap .contact-form-success {
  border-color: rgba(110, 231, 183, 0.35);
  background: rgba(15, 23, 42, 0.55);
}
.contact-mini-form-wrap .contact-form-success__title {
  color: #F8FAFC;
}
.contact-mini-form-wrap .contact-form-success__text {
  color: #94A3B8;
}
.contact-mini-form-wrap .contact-form-success__again {
  color: #94A3B8;
}
.contact-mini-form-wrap .contact-form-success__again:hover {
  color: #E2E8F0;
}


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

@media (max-width: 1120px) {
  .navbar { padding: 12px 18px; }
  .nav-links { gap: 10px; }
  .nav-links li a { font-size: 0.78rem; padding: 6px 7px; }
  .nav-cta { font-size: 0.8rem !important; padding: 11px 18px !important; }
}

@media (max-width: 980px) {
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
  .lg-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Hero: stop it ballooning on narrow desktop-mode viewports */
  .hero { min-height: 0 !important; max-height: 80vh; padding-top: 72px !important; padding-bottom: 28px !important; }
  .section-units-primary { padding: 40px 24px 48px !important; }
  .section--compact { padding: 48px 24px !important; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 24px; }
  .expectation-strip { gap: 8px; }
  .expectation-pill { width: 100%; justify-content: flex-start; }
  .proof-gallery { grid-template-columns: 1fr; }
  .proof-shot--wide { grid-column: auto; }
  .proof-shot__media { aspect-ratio: 4 / 3; }
  .proof-shot__media--wide { aspect-ratio: 3 / 2; }
  .proof-card { padding: 24px; }
  .testimonial-context { flex-direction: column; }
  .testimonial-tags { justify-content: flex-start; }
  .quote-template-card { padding: 22px; }
  .copy-template-btn { width: 100%; }
  .inquiry-step { gap: 10px; }
  .videoke-promo-banner { grid-template-columns: 1fr; padding: 22px; }
  .videoke-promo-banner__media { order: -1; }
  .package-compare-table { font-size: 0.82rem; }
  .package-compare-table th,
  .package-compare-table td { padding: 12px 14px; }
  .delivery-guide-table { font-size: 0.82rem; }
  .delivery-guide-table th,
  .delivery-guide-table td { padding: 12px 14px; }

  /* 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; }

  #toast { bottom: calc(112px + env(safe-area-inset-bottom)); }

  .fab { display: none; }

  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.96) 30%, #F8FAFC 100%);
  }

  .mobile-cta-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar__primary,
  .mobile-cta-bar__secondary {
    min-height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
  }

  .mobile-cta-bar__primary {
    flex: 1;
    gap: 10px;
    background: #0084FF;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 132, 255, 0.26);
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .mobile-cta-bar__secondary {
    width: 52px;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: var(--ink);
    flex-shrink: 0;
  }

  .desktop-sticky-cta,
  .desktop-only-fab {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .desktop-sticky-cta {
    display: inline-flex;
  }
}

/* Phase 5 — revenue engineering UI */
.pill-sm {
  font-size: 0.8rem;
  padding: 10px 20px;
}

.upsell-bar {
  padding: 48px 24px 0;
  background: var(--surface);
}

.upsell-bar__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 18px;
  border: 2px solid var(--brand);
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 55%);
  box-shadow: var(--card-shadow);
}

.upsell-bar__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.upsell-bar__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.upsell-bar__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.upsell-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.offer-ladder {
  padding: 0 24px 80px;
  background: var(--surface);
}

.offer-ladder__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-ladder__head {
  text-align: center;
  margin-bottom: 28px;
}

.offer-ladder__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 8px 0 10px;
}

.offer-ladder__sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.offer-ladder__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.offer-ladder__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.offer-ladder__card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(16, 185, 129, 0.2);
}

.offer-ladder__card--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
  box-shadow: 0 16px 40px -12px rgba(16, 185, 129, 0.18);
}

.offer-ladder__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
}

.offer-ladder__tier-label {
  font-size: 0.72rem;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-ladder__teaser {
  flex: 1 1 auto;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(4 * 1.45 * 0.78rem);
}

.offer-ladder__teaser--empty {
  min-height: calc(4 * 1.45 * 0.78rem);
}

.offer-ladder__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}

.offer-ladder__package {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.offer-ladder__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
}

.offer-ladder__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.partner-page {
  padding: 56px 24px 100px;
  background: var(--surface);
}

.partner-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: var(--card-shadow);
}

.partner-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.partner-card p,
.partner-card li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.partner-card ul {
  margin: 12px 0 0 20px;
}

.partner-tool label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.partner-tool input {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font: inherit;
}

.partner-link-output {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
}

.partner-link-output input {
  flex: 1 1 220px;
  min-width: 0;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .upsell-bar__inner {
    padding: 20px;
  }

  .upsell-bar__actions {
    width: 100%;
  }

  .upsell-bar__actions .pill {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@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%; aspect-ratio: 16 / 10; }
  .proof-shot__media { aspect-ratio: 4 / 3; }
  .proof-shot__media--wide { aspect-ratio: 3 / 2; }
  .proof-shot__media:not(.proof-shot__media--photo) { padding: 18px; }
  .proof-card { padding: 20px; }
}

/* ── Live Gallery (hydrated from /api/site-data) ─────────────────────────── */
.live-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.live-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0;
}

.live-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.live-gallery__item:hover img {
  transform: scale(1.03);
}

.live-gallery__item figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  background: #fff;
}

.live-gallery:empty {
  display: none;
}

#live-proof-gallery:empty {
  display: none;
}

#live-proof-gallery:not(:empty) {
  display: grid;
}

@media (max-width: 640px) {
  .live-gallery {
    grid-template-columns: 1fr;
  }
}

/* ── Blog pages ───────────────────────────────────────────────────────────── */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.blog-breadcrumb a:hover,
.blog-breadcrumb a:focus-visible {
  color: var(--ink);
}

.blog-page {
  padding: 120px 24px 80px;
  background: var(--surface);
  min-height: 60vh;
}

.blog-page--post {
  padding-top: 0;
}

.blog-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-page__header .label {
  margin-bottom: 12px;
}

.blog-page__intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.35);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--brand-light);
}

.blog-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card__meta {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 16px;
}

.blog-empty svg {
  width: 56px;
  height: 56px;
  opacity: 0.45;
  margin-bottom: 16px;
}

.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.blog-post__figure {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-post__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post__header {
  margin-bottom: 32px;
}

.blog-post__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--ink);
  line-height: 1.2;
}

.blog-post__date {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-post__tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-post__tag {
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.blog-content > *:first-child {
  margin-top: 0;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 2em 0 0.75em;
}

.blog-content h2 { font-size: 1.5rem; font-weight: 700; }
.blog-content h3 { font-size: 1.25rem; font-weight: 700; }
.blog-content h4 { font-size: 1.1rem; font-weight: 600; }

.blog-content p,
.blog-content ul,
.blog-content ol {
  margin: 0 0 1.25em;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.4em;
}

.blog-content li {
  margin-bottom: 0.4em;
}

.blog-content a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover,
.blog-content a:focus-visible {
  color: var(--brand);
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em 0;
}

.blog-content blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--brand);
  background: #fff;
  border-radius: 0 12px 12px 0;
  color: var(--muted);
}

.blog-content pre,
.blog-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.blog-content pre {
  overflow-x: auto;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  margin: 1.5em 0;
}

.blog-content :not(pre) > code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-content__empty {
  color: var(--muted);
  font-style: italic;
}

.blog-post__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}

.blog-back-link:hover,
.blog-back-link:focus-visible {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-not-found {
  padding: 140px 24px 80px;
  background: var(--surface);
  min-height: 60vh;
  text-align: center;
}

.blog-not-found__inner {
  max-width: 520px;
  margin: 0 auto;
}

.blog-not-found h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--ink);
}

.blog-not-found p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .blog-page {
    padding-top: 110px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

