/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:        #0c1f3f;
  --navy-mid:    #1a3560;
  --navy-light:  #2a4a7f;
  --orange:      #f97316;
  --orange-deep: #ea6608;
  --orange-glow: rgba(249,115,22,.18);
  --green:       #16a34a;
  --green-light: #dcfce7;
  --cream:       #fef7ee;
  --warm-50:     #fff8f0;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(12,31,63,.1);
  --shadow-lg:   0 12px 40px rgba(12,31,63,.15);
  --shadow-xl:   0 24px 64px rgba(12,31,63,.2);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font-display:'Bricolage Grotesque', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --transition:  .28s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  color: var(--orange-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(249,115,22,.25);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--radius-md); }

/* animate-on-scroll */
.aos { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }
.aos-delay-4 { transition-delay: .4s; }
.aos-delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-brand span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-menu a { display: block; padding: 10px 12px; font-weight: 500; color: var(--gray-800); border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: var(--gray-50); color: var(--orange); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1e3d6e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 66px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 70% 50%, rgba(249,115,22,.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: 60px 0;
}

.hero-copy { padding-right: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.4);
  color: #fbbf24;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  animation: fadeInDown .7s ease both;
}
.hero-badge svg { flex-shrink: 0; }

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeInUp .7s .1s ease both;
}
.hero-h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
  animation: fadeInUp .7s .2s ease both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp .7s .3s ease both;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
}
.hero-pill svg { color: #4ade80; flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  animation: fadeInUp .7s .4s ease both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInUp .7s .5s ease both;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: .82rem; color: rgba(255,255,255,.75); }
.hero-proof-text strong { color: var(--white); }

.hero-stars { display: flex; gap: 2px; margin-bottom: 2px; }
.hero-stars svg { color: #fbbf24; }

.hero-visual {
  position: relative;
  animation: fadeInRight .8s .2s ease both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  aspect-ratio: 4/3;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -18px; left: -20px; animation-delay: 0s; }
.hero-float-card.card-2 { top: -18px; right: -20px; animation-delay: 1.5s; }
.hero-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon.orange { background: #fff7ed; }
.hero-float-icon.green  { background: var(--green-light); }
.hero-float-title { font-size: .78rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hero-float-sub   { font-size: .7rem; color: var(--gray-400); }

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
#trust-bar {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 10;
}
.trust-strip {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.05); }
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.trust-label { font-size: .82rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.trust-desc  { font-size: .73rem; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════ */
#benefits {
  padding: 96px 0;
  background: var(--white);
}
.benefits-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}
.benefits-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.benefits-header p { color: var(--gray-600); margin-top: 14px; font-size: .97rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.benefit-icon.blue   { background: #eff6ff; color: #3b82f6; }
.benefit-icon.orange { background: #fff7ed; color: var(--orange); }
.benefit-icon.green  { background: var(--green-light); color: var(--green); }
.benefit-icon.purple { background: #f5f3ff; color: #7c3aed; }
.benefit-icon.red    { background: #fef2f2; color: #ef4444; }
.benefit-icon.teal   { background: #f0fdf4; color: #0d9488; }

.benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(249,115,22,.1), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .accent { color: var(--orange); }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ═══════════════════════════════════════════════
   PRODUCTS / VARIANTS
═══════════════════════════════════════════════ */
#products {
  padding: 96px 0;
  background: var(--cream);
}
.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.products-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.products-header p { color: var(--gray-600); margin-top: 14px; }

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.product-tab {
  padding: 8px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.product-tab:hover,
.product-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.product-card.hidden { display: none; }

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
}
.product-badge.green { background: var(--green); }
.product-badge.navy  { background: var(--navy); }

.product-body { padding: 20px; }
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.spec-chip {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.product-price .orig {
  font-size: .82rem;
  color: var(--gray-400);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 6px;
  font-family: var(--font-body);
}
.product-cta { display: flex; gap: 8px; }
.product-cta .btn { flex: 1; font-size: .83rem; padding: 10px 14px; }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
#gallery {
  padding: 96px 0;
  background: var(--white);
}
.gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.gallery-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.gallery-header p { color: var(--gray-600); margin-top: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,31,63,0);
  transition: background var(--transition);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { background: rgba(12,31,63,.25); }

/* lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonials {
  padding: 96px 0;
  background: var(--warm-50);
}
.testi-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.testi-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.testi-header p { color: var(--gray-600); margin-top: 14px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { color: #fbbf24; }
.testi-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,.8); }
.testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--gray-100);
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-card.featured .testi-quote { color: rgba(255,255,255,.1); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-card.featured .testi-name { color: var(--white); }
.testi-loc { font-size: .78rem; color: var(--gray-400); }
.testi-card.featured .testi-loc { color: rgba(255,255,255,.5); }
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: var(--green);
  font-weight: 600;
}
.testi-card.featured .testi-verified { color: #4ade80; }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
#pricing {
  padding: 96px 0;
  background: var(--white);
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.pricing-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.pricing-header p { color: var(--gray-600); margin-top: 14px; }

.pricing-offer {
  background: linear-gradient(135deg, var(--navy), #1a3560);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pricing-offer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.2) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-offer::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.25);
  border: 1px solid rgba(249,115,22,.4);
  color: #fbbf24;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.offer-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.offer-title .accent { color: var(--orange); }

.offer-desc { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.65; margin-bottom: 28px; }

.offer-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.offer-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.offer-perk svg { color: #4ade80; flex-shrink: 0; }

.offer-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.offer-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}
.offer-price-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  min-width: 200px;
}
.offer-from { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.offer-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.offer-price small { font-size: 1rem; font-weight: 400; }
.offer-unit { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.offer-discount {
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-top: 12px;
}
.offer-countdown {
  margin-top: 16px;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.countdown-label { font-size: .7rem; color: rgba(255,255,255,.5); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.countdown-timer { display: flex; gap: 8px; justify-content: center; }
.cd-unit {
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 8px 10px;
  min-width: 44px;
  text-align: center;
}
.cd-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}
.cd-label { font-size: .6rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .04em; }
.cd-sep {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq {
  padding: 96px 0;
  background: var(--gray-50);
}
.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.faq-header .section-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.faq-header p { color: var(--gray-600); margin-top: 14px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-question {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  transform: rotate(180deg);
}
.faq-icon svg { transition: color var(--transition); }
.faq-item.open .faq-icon svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: .88rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
#final-cta {
  padding: 96px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-inner .section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.65; }
.final-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img { height: 36px; width: auto; border-radius: 6px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand-name span { color: var(--orange); }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--orange); color: var(--white); }

.footer-col-title {
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════ */
#wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.wa-btn:hover {
  background: #20bd5b;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.wa-tooltip {
  background: var(--white);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}
#wa-fab:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   PANDUAN TENDA LIPAT
═══════════════════════════════════════════════ */
#panduan {
  padding: 80px 0;
  background: var(--gray-50);
}

.panduan-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.panduan-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.panduan-article h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.panduan-article h3:first-child { margin-top: 0; }

.panduan-article p {
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 10px;
}

.panduan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
  padding-left: 4px;
}

.panduan-list li {
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.panduan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.panduan-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.panduan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.panduan-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.panduan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.panduan-card li {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.panduan-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn:not(.btn-wa-small) { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 0 60px;
    gap: 32px;
  }
  .hero-copy { padding-right: 0; order: 1; }
  .hero-visual { order: 2; }
  .hero-float-card.card-1 { left: 0; bottom: -10px; }
  .hero-float-card.card-2 { right: 0; top: -10px; }

  .trust-item { flex: 1 1 160px; padding: 14px 16px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .pricing-offer {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .offer-visual { order: -1; }
  .offer-price-box { padding: 20px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .panduan-grid {
    grid-template-columns: 1fr;
  }
  .panduan-sidebar { position: static; }
}

@media (max-width: 480px) {
  .hero-ctas .btn-xl   { width: 100%; }
  .final-cta-btns .btn { width: 100%; }
  .offer-ctas .btn     { width: 100%; }

  .trust-item { flex: 1 1 140px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }

  #wa-fab { bottom: 16px; right: 16px; }
}
