/* =====================================================
   MASJAYA — Panel Surya | style.css
   Responsive, SEO-ready, Temu-inspired product layout
   ===================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --blue-900: #0a1628;
  --blue-800: #0d2146;
  --blue-700: #0e3068;
  --blue-600: #0f4a9e;
  --blue-500: #1565c0;
  --blue-400: #1976d2;
  --blue-300: #42a5f5;
  --blue-200: #90caf9;
  --blue-100: #e3f2fd;
  --blue-50:  #f0f7ff;

  --yellow:   #ffc107;
  --yellow-l: #fff8e1;
  --green:    #2e7d32;
  --green-l:  #e8f5e9;
  --red:      #c62828;
  --orange:   #e65100;

  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --black:    #0a0f1e;

  --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1280px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(21,101,192,0.10);
  --shadow-md: 0 8px 40px rgba(21,101,192,0.16);
  --shadow-lg: 0 20px 60px rgba(21,101,192,0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0; font-family: var(--font-body); color: var(--gray-800);
  background: var(--white); font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-main); margin: 0; line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--blue-600); color: white; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announce-bar {
  background: var(--blue-800); color: white; text-align: center;
  padding: 9px 20px; font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
}
.announce-bar a { color: var(--yellow); text-decoration: underline; }
.announce-bar .sep { margin: 0 12px; opacity: 0.4; }

/* =====================================================
   HEADER
   ===================================================== */
header.site {
  position: sticky; top: 0; z-index: 200;
  background: white; border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(21,101,192,0.06);
  transition: box-shadow .25s ease;
}
header.site.scrolled { box-shadow: 0 4px 24px rgba(21,101,192,0.14); }
.header-inner {
  display: flex; align-items: center; gap: 20px; height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-wrap img { height: 40px; width: auto; }
.logo-text { font-family: var(--font-main); font-weight: 800; font-size: 20px; color: var(--blue-700); }

.header-search {
  flex: 1; max-width: 500px; display: flex; align-items: center;
  border: 2px solid var(--blue-400); border-radius: 24px; overflow: hidden; background: var(--blue-50);
}
.header-search input {
  flex: 1; border: 0; background: transparent; padding: 10px 16px;
  font-size: 14px; font-family: inherit; color: var(--gray-800);
}
.header-search input::placeholder { color: var(--gray-400); }
.header-search input:focus { outline: none; }
.header-search button {
  background: var(--blue-500); color: white; border: 0; padding: 10px 20px;
  font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.header-search button:hover { background: var(--blue-600); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px; background: #25d366;
  color: white; padding: 10px 18px; border-radius: 24px; font-size: 14px;
  font-weight: 600; border: 0; box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #128c7e; transform: translateY(-1px); }
.btn-wa svg { width: 18px; height: 18px; }
.btn-quote {
  background: var(--blue-600); color: white; padding: 10px 18px;
  border-radius: 24px; font-size: 14px; font-weight: 600; border: 0;
  box-shadow: var(--shadow);
}
.btn-quote:hover { background: var(--blue-700); }

.burger { display: none; background: none; border: 0; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--blue-700); margin: 4px 0; transition: .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-search, .header-cta .btn-quote { display: none; }
  .burger { display: block; margin-left: auto; }
}

/* Nav */
nav.main-nav {
  background: var(--blue-700); position: sticky; top: 72px; z-index: 190;
}
nav.main-nav ul {
  display: flex; gap: 0; align-items: center; list-style: none;
  overflow-x: auto; scrollbar-width: none;
}
nav.main-nav ul::-webkit-scrollbar { display: none; }
nav.main-nav a {
  display: block; padding: 13px 20px; color: rgba(255,255,255,0.88);
  font-size: 14px; font-weight: 500; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all .18s ease;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--yellow); border-bottom-color: var(--yellow); background: rgba(255,255,255,0.06);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 300; visibility: hidden;
}
.mobile-drawer.open { visibility: visible; }
.drawer-scrim {
  position: absolute; inset: 0; background: rgba(10,22,40,0.6);
  opacity: 0; transition: opacity .25s ease;
}
.mobile-drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; left: 0; height: 100%; width: 300px;
  background: white; padding: 20px; overflow-y: auto;
  transform: translateX(-100%); transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.drawer-close { background: none; border: 0; font-size: 22px; color: var(--gray-600); }
.drawer-nav a {
  display: block; padding: 13px 6px; font-size: 16px; color: var(--blue-700);
  border-bottom: 1px solid var(--gray-100); font-weight: 500;
}
.drawer-nav a:hover { color: var(--blue-500); }
.drawer-wa { margin-top: 20px; }

/* =====================================================
   HERO / PRODUCT DETAIL (Temu-style layout)
   ===================================================== */
.hero-section {
  padding: 28px 0 40px; background: var(--white); position: relative; overflow: hidden;
}
/* floating decorative shapes */
.hero-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; background: var(--blue-100);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px; background: var(--blue-50);
  border-radius: 50%; pointer-events: none; z-index: 0;
}

.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; z-index: 1; }

/* ---- Gallery ---- */
.gallery-col { display: flex; flex-direction: column; gap: 12px; }
.gallery-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--blue-200); background: var(--blue-50); aspect-ratio: 1/1;
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-main:hover img { transform: scale(1.05); }
.gallery-badge {
  position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px;
  border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.badge-sale { background: var(--red); color: white; }
.badge-new  { background: var(--green); color: white; }
.badge-promo { background: var(--yellow); color: var(--black); }

.gallery-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.thumb {
  aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--gray-200); cursor: pointer; background: var(--gray-50);
  transition: border-color .18s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--blue-500); }

/* gallery row 2 — more thumbs */
.gallery-thumbs-b {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}

/* ---- Info Col ---- */
.info-col { display: flex; flex-direction: column; gap: 20px; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.info-brand { font-size: 13px; color: var(--blue-500); font-weight: 600; letter-spacing: 0.03em; }
.info-title { font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.25; color: var(--gray-800); font-family: var(--font-main); }
.info-rating { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }
.rating-count { color: var(--gray-600); }
.info-price {
  background: var(--blue-50); border-radius: var(--radius); padding: 16px 20px;
  border: 1px solid var(--blue-200);
}
.price-label { font-size: 12px; color: var(--gray-600); margin-bottom: 4px; }
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-now { font-family: var(--font-main); font-size: 2rem; font-weight: 800; color: var(--blue-700); }
.price-old { font-size: 15px; text-decoration: line-through; color: var(--gray-400); }
.price-disc { background: var(--red); color: white; padding: 3px 9px; border-radius: 12px; font-size: 12px; font-weight: 700; }
.price-note { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 6px; }

/* variants */
.variant-group { display: flex; flex-direction: column; gap: 8px; }
.variant-label { font-size: 13px; color: var(--gray-600); font-weight: 600; }
.variant-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border: 2px solid var(--gray-200); border-radius: 20px;
  font-size: 13px; cursor: pointer; background: white; color: var(--gray-800);
  transition: all .15s ease;
}
.chip:hover, .chip.active { border-color: var(--blue-500); background: var(--blue-50); color: var(--blue-700); font-weight: 600; }

/* qty */
.qty-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.qty-label { font-size: 13px; color: var(--gray-600); font-weight: 600; }
.qty-ctrl { display: flex; align-items: center; border: 2px solid var(--gray-200); border-radius: 24px; overflow: hidden; }
.qty-btn {
  background: var(--gray-100); border: 0; width: 40px; height: 40px;
  font-size: 18px; font-weight: 700; color: var(--blue-600);
}
.qty-btn:hover { background: var(--blue-100); }
.qty-val { width: 48px; text-align: center; font-size: 15px; font-weight: 600; border: 0; background: none; }
.stock-info { font-size: 13px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* CTA */
.cta-group { display: flex; flex-direction: column; gap: 10px; }
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue-600); color: white; border: 0; padding: 16px;
  border-radius: var(--radius); font-size: 16px; font-weight: 700; font-family: var(--font-main);
  box-shadow: var(--shadow-md); width: 100%;
  transition: background .2s ease, transform .15s ease;
}
.btn-buy:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-buy-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25d366; color: white; border: 0; padding: 16px;
  border-radius: var(--radius); font-size: 15px; font-weight: 700; font-family: var(--font-main);
  width: 100%; box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  transition: background .2s ease, transform .15s ease;
}
.btn-buy-wa:hover { background: #128c7e; transform: translateY(-2px); }
.btn-buy-wa svg, .btn-buy svg { width: 22px; height: 22px; }

/* trust icons */
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 12px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
}
.trust-icon { font-size: 22px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 13px; color: var(--gray-800); }
.trust-text span { font-size: 12px; color: var(--gray-600); }

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; gap: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
}

/* =====================================================
   FLOATING IMAGES (decorative)
   ===================================================== */
.floating-img-wrap {
  position: relative; padding: 60px 0; overflow: hidden;
}
.float-item {
  position: absolute; pointer-events: none;
  animation: floatUpDown 5s ease-in-out infinite;
}
.float-item:nth-child(odd) { animation-direction: reverse; animation-duration: 6s; }
.float-item img { border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0.85; }
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  padding: 14px 0; font-size: 13px; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-500); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-400); }

/* =====================================================
   SECTION BASE
   ===================================================== */
section.content-section { padding: 64px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--blue-800); margin-bottom: 6px;
}
.section-sub { font-size: 15px; color: var(--gray-600); max-width: 56ch; }
.section-head { margin-bottom: 40px; }
.section-head .tag {
  display: inline-block; background: var(--blue-100); color: var(--blue-700);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: 0.04em;
}

/* =====================================================
   PRODUCT GRID (9 items)
   ===================================================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; background: white; box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--blue-50); }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.prod-card:hover .prod-card-img img { transform: scale(1.06); }
.prod-card-badge { position: absolute; top: 10px; left: 10px; }
.prod-card-body { padding: 16px; }
.prod-card-body h3 { font-size: 15px; margin-bottom: 8px; color: var(--gray-800); line-height: 1.4; }
.prod-card-body .spec-row { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 4px; }
.spec-tag { background: var(--blue-100); color: var(--blue-700); padding: 2px 8px; border-radius: 10px; font-size: 12px; font-weight: 500; }
.prod-card-price { display: flex; align-items: center; justify-content: space-between; }
.prod-price-n { font-family: var(--font-main); font-size: 18px; font-weight: 800; color: var(--blue-700); }
.prod-price-s { font-size: 12px; text-decoration: line-through; color: var(--gray-400); }
.prod-btn-wa {
  display: flex; align-items: center; gap: 6px; background: #25d366; color: white;
  border: 0; padding: 8px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-top: 12px; width: 100%; justify-content: center;
}
.prod-btn-wa:hover { background: #128c7e; }

@media (max-width: 760px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* =====================================================
   FEATURES / WHY CHOOSE
   ===================================================== */
.features-section { background: var(--blue-900); color: white; position: relative; overflow: hidden; }
.features-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; background: rgba(21,101,192,0.25);
  border-radius: 50%; pointer-events: none;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px;
  transition: background .22s ease, transform .22s ease;
}
.feature-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; color: var(--yellow); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; }
@media (max-width: 760px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar { background: var(--blue-600); color: white; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .num { font-family: var(--font-main); font-size: 2.4rem; font-weight: 800; color: var(--yellow); }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   FLOATING SECTION (between product and article)
   ===================================================== */
.float-section {
  background: var(--blue-50); padding: 60px 0; position: relative; overflow: hidden;
}
.float-images-row { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.float-card {
  animation: floatUpDown 5s ease-in-out infinite;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 3px solid white;
}
.float-card:nth-child(2) { animation-delay: 1s; animation-duration: 6s; }
.float-card:nth-child(3) { animation-delay: 2s; animation-duration: 4.5s; }
.float-card:nth-child(4) { animation-delay: 0.5s; animation-duration: 5.5s; }
.float-card img { width: 160px; height: 120px; object-fit: cover; }
@media (max-width: 640px) { .float-card img { width: 120px; height: 90px; } }

/* =====================================================
   ARTICLE
   ===================================================== */
.article-section { background: white; }
.article-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.article-body { font-size: 15.5px; line-height: 1.85; color: var(--gray-800); }
.article-body h2 { font-size: 1.6rem; color: var(--blue-800); margin-bottom: 14px; }
.article-body p { margin-bottom: 16px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--blue-700); }
.article-media { position: relative; }
.article-media .main-img {
  border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--blue-200);
  box-shadow: var(--shadow-lg);
}
.article-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.article-media .float-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--blue-600); color: white; padding: 18px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  text-align: center; animation: floatUpDown 4s ease-in-out infinite;
}
.article-media .float-badge strong { display: block; font-size: 26px; font-family: var(--font-main); }
.article-media .float-badge span { font-size: 12px; opacity: 0.85; }
@media (max-width: 820px) {
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-media .float-badge { position: static; display: inline-block; margin-top: 16px; }
}

/* =====================================================
   SPEC TABLE
   ===================================================== */
.spec-section { background: var(--gray-50); }
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.spec-table caption { text-align: left; font-size: 13px; color: var(--gray-600); margin-bottom: 12px; padding: 4px; }
.spec-table thead { background: var(--blue-700); color: white; }
.spec-table thead th { padding: 14px 18px; font-size: 14px; font-weight: 600; text-align: left; }
.spec-table tbody tr:nth-child(even) { background: var(--blue-50); }
.spec-table tbody tr:hover { background: var(--blue-100); }
.spec-table td { padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.spec-table td:first-child { font-weight: 600; color: var(--gray-800); width: 36%; }
.spec-table td:last-child { color: var(--gray-600); }

/* =====================================================
   PROCESS / HOW IT WORKS
   ===================================================== */
.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  text-align: center; padding: 28px 20px; border: 1px solid var(--blue-200);
  border-radius: var(--radius); background: var(--blue-50);
  position: relative;
}
.process-card::after {
  content: '→'; position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%); color: var(--blue-400); font-size: 22px;
}
.process-card:last-child::after { display: none; }
.process-num {
  width: 50px; height: 50px; background: var(--blue-600); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; font-family: var(--font-main);
  margin: 0 auto 16px;
}
.process-card h3 { font-size: 15px; color: var(--blue-800); margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--gray-600); }
@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card::after { display: none; }
}
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-section { background: var(--blue-900); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px;
}
.testi-stars { color: var(--yellow); font-size: 15px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-600);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; font-family: var(--font-main); flex-shrink: 0;
}
.testi-name { font-size: 14px; color: white; font-weight: 600; }
.testi-loc  { font-size: 12px; color: rgba(255,255,255,0.5); }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: 0; padding: 20px 4px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--blue-800); text-align: left; gap: 20px;
  font-family: var(--font-main);
}
.faq-q .ico { font-size: 22px; color: var(--blue-500); flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 20px; font-size: 15px; color: var(--gray-600); max-width: 68ch; }

/* =====================================================
   CONTACT / CTA SECTION
   ===================================================== */
.contact-section { background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: white; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.8); font-size: 15.5px; margin-bottom: 24px; max-width: 44ch; }
.contact-details dt { font-size: 12px; color: var(--yellow); font-weight: 600; margin-top: 14px; }
.contact-details dt:first-child { margin-top: 0; }
.contact-details dd { font-size: 15px; color: white; margin: 4px 0 0; }
.contact-details dd a { color: var(--blue-200); }
.contact-details dd a:hover { color: white; }
.contact-ctas { display: flex; flex-direction: column; gap: 14px; }
.contact-ctas .btn-buy, .contact-ctas .btn-buy-wa { font-size: 16px; padding: 18px; border-radius: var(--radius); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* =====================================================
   FOOTER
   ===================================================== */
footer.site { background: var(--blue-900); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 30ch; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px;
}
.footer-bottom .copy { color: rgba(255,255,255,0.45); }
.footer-sni { display: flex; gap: 14px; }
.sni-badge {
  background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 10px;
  font-size: 11px; color: rgba(255,255,255,0.6);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* =====================================================
   MOBILE STICKY BAR
   ===================================================== */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
  background: white; border-top: 1px solid var(--gray-200); box-shadow: 0 -6px 20px rgba(21,101,192,0.15);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.mobile-sticky a { flex: 1; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; font-family: var(--font-main); display: flex; align-items: center; justify-content: center; gap: 7px; }
.mobile-sticky .s-wa { background: #25d366; color: white; }
.mobile-sticky .s-order { background: var(--blue-600); color: white; }
@media (max-width: 900px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 80px; }
}

/* =====================================================
   FOCUS / A11Y
   ===================================================== */
:focus-visible { outline: 2px solid var(--blue-400); outline-offset: 3px; }
