/* ========================================
   URFIA Landing Page - Premium Storage Jar
   Design System & Global Styles
   v5 — Responsive & Mobile Perfection Bugfixes:
   1. Centered Nav Logo on Mobile
   2. Trust Cards Grid (2x2 on Mobile)
   3. Centered Star Icon SVGs
   4. Clean 2-Col Mobile Benefits Grid
   5. Mobile Product Specs (Image Top, Specs Below)
   6. Clean 2-Col Mobile Use Case Grid
   7. Fixed Non-Stretched Testimonial Avatars
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors - Warm, Natural Palette */
  --cream:        #FAF6F1;
  --cream-dark:   #F0EAE0;
  --beige:        #E8DFD3;
  --beige-dark:   #D4C8B8;
  --warm-white:   #FDFCFA;
  --soft-brown:   #8B7355;
  --soft-brown-light: #A6936F;
  --soft-brown-dark:  #6B5740;
  --olive:        #7A8B6F;
  --olive-light:  #95A688;
  --olive-dark:   #5E6B54;
  --charcoal:     #3A3530;
  --charcoal-light: #5A544D;
  --text-primary: #2E2A25;
  --text-secondary: #6B6560;
  --text-muted:   #9A948E;
  --white:        #FFFFFF;
  --shadow-color: rgba(58, 53, 48, 0.08);
  --shadow-medium: rgba(58, 53, 48, 0.12);
  --shadow-strong: rgba(58, 53, 48, 0.18);

  /* Urgency / Sale colors */
  --coral:        #D4735E;
  --coral-light:  #E8976A;
  --coral-dark:   #B85A48;
  --coral-bg:     #FFF5F2;
  --sale-red:     #C0392B;
  --sale-red-light: #E74C3C;
  --gold:         #D4A853;
  --gold-light:   #E6C478;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 5.5rem;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 50px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-slow:   0.5s var(--ease-smooth);

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--olive);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.story__content{
    display: flex;
    flex-direction: column;
}

.story__content .section-label{
    align-self: center;
}

.story__content .story__title{
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-label {
  justify-content: center;
}

/* ---------- Animations ---------- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 115, 94, 0.35); }
  50%      { box-shadow: 0 4px 30px rgba(212, 115, 94, 0.65), 0 0 0 10px rgba(212, 115, 94, 0.12); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.08s; }
.animate-on-scroll.delay-2 { transition-delay: 0.16s; }
.animate-on-scroll.delay-3 { transition-delay: 0.24s; }
.animate-on-scroll.delay-4 { transition-delay: 0.32s; }
.animate-on-scroll.delay-5 { transition-delay: 0.4s; }
.animate-on-scroll.delay-6 { transition-delay: 0.48s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--soft-brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
}

.btn--primary:hover {
  background: var(--soft-brown-dark);
  box-shadow: 0 6px 28px rgba(139, 115, 85, 0.4);
  transform: translateY(-2px);
}

.btn--urgency {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sale-red) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.4rem;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(212, 115, 94, 0.4);
  letter-spacing: 0.01em;
}

.btn--urgency:hover {
  background: linear-gradient(135deg, var(--sale-red) 0%, #9E2B1E 100%);
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.55);
}

.btn--secondary {
  background: transparent;
  color: var(--soft-brown);
  border: 1.5px solid var(--beige-dark);
}

.btn--secondary:hover {
  border-color: var(--soft-brown);
  background: rgba(139, 115, 85, 0.06);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.05rem 2.6rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ========================================
   TOP PROMO BAR & STICKY NAV
   ======================================== */
.promo-bar {
  background: linear-gradient(90deg, var(--sale-red) 0%, var(--coral) 50%, var(--sale-red) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 102;
}

.promo-bar strong {
  font-weight: 700;
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.promo-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  padding: 0.8rem 0;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(232, 223, 211, 0.5);
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 0.6rem 0;
  border-bottom-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.nav__logo span {
  color: var(--olive);
}

.nav__cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 50%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(122, 139, 111, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  animation: slideInLeft 0.8s var(--ease-smooth);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(122, 139, 111, 0.1);
  color: var(--olive-dark);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(122, 139, 111, 0.2);
  width: fit-content;
  max-width: 100%;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.hero__title em {
  font-style: italic;
  color: var(--olive);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.hero__price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero__price-sale {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sale-red);
  font-family: var(--font-display);
}

.hero__price-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  background: var(--sale-red);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.18);
  border-radius: 0;
  overflow: visible;
}

.hero__price-badge::before,
.hero__price-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

.hero__price-badge::before {
  left: -5px;
}

.hero__price-badge::after {
  right: -5px;
}

.hero__urgency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--coral-bg);
  border: 1px solid rgba(212, 115, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.hero__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sale-red);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__urgency-text {
  font-size: 0.85rem;
  color: var(--coral-dark);
  font-weight: 500;
}

.hero__urgency-text strong {
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: var(--space-md);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero__trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--olive);
}

.hero__visual {
  position: relative;
  animation: slideInRight 0.8s var(--ease-smooth);
}

.hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 50px var(--shadow-medium);
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__float-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: .9rem 1rem;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: .7rem;
  animation: float 4s ease-in-out infinite;
}

.hero__float-icon {
  width: 40px;
  height: 40px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

.hero__float-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  flex-shrink: 0;
}

.hero__float-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__float-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__sold-card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: .85rem 1rem;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: float 5s ease-in-out infinite 1s;
}

.hero__sold-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 115, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero__sold-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__sold-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--coral);
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof {
  background: var(--cream);
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  padding: var(--space-md) 0;
}

.social-proof__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.social-proof__item {
  text-align: center;
}

.social-proof__number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.social-proof__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   TRUST GUARANTEE CARDS
   ======================================== */
.trust-cards {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
}

.trust-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.trust-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border: 1px solid var(--beige);
  transition: all var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-color);
  border-color: var(--olive-light);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.6rem;
  background: linear-gradient(135deg, rgba(122, 139, 111, 0.12), rgba(139, 115, 85, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.trust-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.trust-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
  padding: var(--space-2xl) 0;
  background: var(--warm-white);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.problem__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--beige);
}

.problem__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 115, 85, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--soft-brown);
}

.problem__card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  flex-shrink: 0;
}

.problem__card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.problem__card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.solution__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.solution__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-color);
}

.solution__image img {
  width: 100%;
}

.solution__content {
    padding-left: 0;
  }

.solution__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.solution__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.solution__item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  margin-top: 2px;
}

.solution__item-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  flex-shrink: 0;
}

.solution__item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.solution__item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: var(--space-2xl) 0;
  background: var(--warm-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.benefit__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.benefit__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-color: var(--beige);
}

.benefit__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(122, 139, 111, 0.12) 0%, rgba(139, 115, 85, 0.08) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  color: var(--olive);
  flex-shrink: 0;
}

.benefit__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
}

.benefit__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  width: 100%;
}

.benefit__card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  width: 100%;
}

/* ========================================
   PRODUCT DETAIL SECTION
   ======================================== */
.product-detail {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.product-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-color);
}

.product-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
}

.spec__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

.spec__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========================================
   USE CASE SECTION
   ======================================== */
.usecase {
  padding: var(--space-2xl) 0;
  background: var(--warm-white);
}

.usecase__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.usecase__item {
  text-align: center;
  padding: var(--space-sm) 0.6rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.usecase__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.usecase__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.4rem;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.usecase__item h4 {
  font-size: 0.85rem;
  font-weight: 600;
}

.usecase__item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   FEATURE DETAIL SECTION
   ======================================== */
.features {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.features__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-color);
}

.features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature__item {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
}

.feature__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--olive);
}

.feature__item-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  flex-shrink: 0;
}

.feature__item h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.feature__item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ========================================
   STORY SECTION
   ======================================== */
.story {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.story__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.story__highlight {
  background: linear-gradient(135deg, rgba(122, 139, 111, 0.08), rgba(139, 115, 85, 0.06));
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.story__highlight p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

.story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-color);
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial {
  padding: var(--space-2xl) 0;
  background: var(--warm-white);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--beige);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--olive-light);
}

.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--olive);
  background: rgba(122, 139, 111, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.testimonial__verified svg {
  width: 12px;
  height: 12px;
}

.testimonial__photo-box {
  width: 100%;
  aspect-ratio: 1 / 1;          /* menjadikan persegi */
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid var(--beige);
}

.testimonial__photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.testimonial__card:hover .testimonial__photo-box img {
  transform: scale(1.04);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.testimonial__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonial__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  border-top: 1px dashed var(--beige-dark);
  padding-top: 0.6rem;
}

/* FIX 7: TESTIMONIAL AVATAR PERFECT CIRCLE (NO STRETCHING) */
.testimonial__avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--olive-light), var(--soft-brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ========================================
   COUNTDOWN TIMER BANNER
   ======================================== */
.countdown {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--sale-red) 100%);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
}

.countdown__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.countdown__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.countdown__label strong {
  color: var(--gold-light);
  font-weight: 800;
}

.countdown__timer {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.countdown__block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  min-width: 65px;
  text-align: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.countdown__unit {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
  display: block;
}

.countdown__sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   BUNDLE PRICING SECTION
   ======================================== */
.bundle-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.bundle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: stretch;
}

.bundle__card {
  background: var(--warm-white);
  border: 2px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bundle__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px var(--shadow-medium);
}

.bundle__card.best-seller {
  border-color: var(--sale-red);
  background: linear-gradient(180deg, var(--coral-bg) 0%, var(--warm-white) 35%);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.15);
}

.bundle__card.best-seller:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(192, 57, 43, 0.3);
}

.bundle__ribbon {
  width: 100%;
  background: linear-gradient(90deg, var(--sale-red), var(--coral-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.45rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.2);
}

.bundle__inner-padding {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bundle__img-banner {
  width: 100%;
  aspect-ratio: 4 / 3; /* ganti dari height: 135px */
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  position: relative;
  border: 1px solid var(--beige);
  flex-shrink: 0;
}

.bundle__img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease-smooth);
}

.bundle__card:hover .bundle__img-banner img {
  transform: scale(1.05);
}

.bundle__img-badge {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  background: rgba(58, 53, 48, 0.85);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.bundle__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.bundle__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.bundle__sizes {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.bundle__size-tag {
  background: rgba(122, 139, 111, 0.12);
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.bundle__pricing {
  margin-bottom: 0.8rem;
}

.bundle__price-original {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle__price-sale {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sale-red);
  display: block;
  margin: 0.1rem 0;
}

.bundle__price-save {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--coral-bg);
  color: var(--sale-red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.bundle__card .btn {
  width: 100%;
  margin-top: auto;
}

.bundle__stock-box {
  margin-top: 0.8rem;
  text-align: left;
}

.bundle__stock-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sale-red);
}

.bundle__stock-bar {
  width: 100%;
  height: 7px;
  background: rgba(192, 57, 43, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.3rem;
}

.bundle__stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--sale-red));
  border-radius: 4px;
}

.bundle__subtrust {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.faq__list {
  max-width: 750px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq__item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq__item.active {
  border-color: var(--olive-light);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
}

.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--olive);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq__answer-inner {
  padding: 0 1.3rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-brown-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(122, 139, 111, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.final-cta__title em {
  font-style: italic;
  color: var(--coral-light);
}

.final-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 115, 94, 0.2);
  border: 1px solid rgba(212, 115, 94, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--coral-light);
  font-weight: 600;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.final-cta .btn--urgency {
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
}

.final-cta .btn--secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.final-cta__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.final-cta__trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--olive-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-lg) 0;
  background: var(--charcoal);
  text-align: center;
}

.footer__text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-float__tooltip {
  background: var(--white);
  color: var(--text-primary);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--shadow-medium);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  color: var(--white);
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
  width: 30px;
  height: 30px;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 1rem;
  box-shadow: 0 -4px 30px var(--shadow-medium);
  z-index: 97;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta__inner {
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  gap: 0.6rem ;
  width: 100% ;
  flex-direction: row ; /* pastikan tidak column */
}

.mobile-cta__price {
  flex: 0 0 auto ;
  white-space: nowrap ;
}

.mobile-cta__price-original {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.mobile-cta__price-sale {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.mobile-cta__price-sale .price-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--sale-red);
}

.mobile-cta .btn {
  flex: 0 0 auto ;
  padding: 0.6rem 1rem ;
  font-size: 0.8rem ;
  white-space: nowrap ;
  width: auto ;
  margin: 0 ;
}

/* ========================================
   RESPONSIVE & SMARTPHONE BREAKPOINTS
   ======================================== */
@media (max-width: 768px) {


  /* FIX: Hero Heading Mobile */
.hero__title{
  text-align: center;
}

.hero__subtitle{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__badge {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
  /* FIX 1: Center Nav Logo on Smartphone */
  .nav__inner {
    justify-content: center !important;
  }

  .nav__logo {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .nav__cta {
    display: none !important;
  }

  /* FIX 2: Trust Cards 2x2 Grid on Mobile (No Stretched Lonjong) */
  .trust-cards__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .trust-card {
    padding: 0.85rem 0.5rem !important;
  }

  .trust-card__icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.15rem !important;
    margin-bottom: 0.4rem !important;
  }

  .trust-card__title {
    font-size: 0.82rem !important;
  }

  .trust-card__desc {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  /* FIX 4: Benefits Grid on Mobile (Clean 2-Column Grid) */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .benefit__card {
    padding: 0.9rem 0.6rem !important;
  }

  .benefit__icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 0.5rem !important;
  }

  .benefit__icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .benefit__card h3 {
    font-size: 0.88rem !important;
    margin-bottom: 0.25rem !important;
  }

  .benefit__card p {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
  }

  /* FIX 5: Product Specs on Mobile (Image TOP, Specs UNDERNEATH) */
  .product-detail__grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .product-detail__image {
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }

  .product-detail__specs {
    width: 100% !important;
    gap: 0.6rem !important;
  }

  .spec__item {
    padding: 0.75rem 0.9rem !important;
  }

  .spec__icon {
    width: 34px !important;
    height: 34px !important;
  }

  /* FIX 6: Use Case Grid on Mobile (Clean 2-Column Grid) */
  .usecase__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .usecase__item {
    padding: 0.75rem 0.5rem !important;
  }

  .usecase__icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem !important;
  }

  .usecase__item h4 {
    font-size: 0.82rem !important;
  }

  .usecase__item p {
    font-size: 0.72rem !important;
  }

  /* FIX 7: Testimonial Avatar Non-Stretched Circle */
  .testimonial__avatar {
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .mobile-cta {
    display: block;
  }

  .whatsapp-float {
    bottom: 5.5rem;
    right: 1rem;
  }

  .whatsapp-float__btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float__btn svg {
    width: 26px;
    height: 26px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .bundle__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .bundle__card.best-seller {
    transform: none;
    order: -1;
  }

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

    /* FIX 8: Hero Price Mobile */
  .hero__price{
    flex-direction:column;
    align-items:center;
    gap:0;
  }

  .hero__price-original{
    margin: 0;
    line-height: 1;
  }

  .hero__price-sale{
    margin-top: 0.15rem;
    margin-bottom: .75rem;
    font-size: 1.9rem; /* opsional */
    line-height: 1.1;
  }

  .hero__price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  background: var(--sale-red);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.18);
  border-radius: 0;
  position: relative;
}

.hero__price-badge::before,
.hero__price-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
}

.hero__price-badge::before {
  left: -5px;
}

.hero__price-badge::after {
  right: -5px;
}

  .hero__urgency{
    margin-top: 0;
  }

  .hero__urgency{
    justify-content:center;
    text-align:center;
}

.hero__urgency-dot{
    display:none;
}

/* FIX: Hide Promo Bar Dot on Mobile */
.promo-bar__dot {
  display: none;
}
/* FIX: Promo Bar Mobile */
.promo-bar__inner {
  gap: 0.3rem;
}

/* FIX Animasi FLoating */
.hero__float-card{
    left:4%;
    bottom:4%;

    padding:.75rem .9rem;
    gap:.55rem;
}

.hero__sold-card{
    right:4%;
    top:4%;

    padding:.75rem .9rem;
    gap:.55rem;
}

.hero__float-icon,
.hero__sold-icon{
    width:32px;
    height:32px;
}

.hero__float-text,
.hero__sold-text{
    font-size:.68rem;
}

.hero__float-value,
.hero__sold-value{
    font-size:.82rem;
}


.mobile-cta {
    display: block;   /* muncul di mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.7rem 1rem;
    box-shadow: 0 -4px 30px var(--shadow-medium);
    z-index: 97;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
  }

.mobile-cta.visible {
    transform: translateY(0);
  }

.mobile-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    flex-direction: row;
  }

.mobile-cta__price {
    flex: 0 0 auto;
    white-space: nowrap;
  }

.mobile-cta__price-sale {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
  }

.mobile-cta__price-sale .price-highlight {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--sale-red);
  }

.mobile-cta .btn {
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    width: auto;
    margin: 0;
  }
}

/* Desktop: bundle tengah (best-seller) 5% lebih besar */
@media (min-width: 1024px) {
  .bundle__card.best-seller {
    z-index: 2;
    transform-origin: center center;
  }

  /* Saat animasi selesai (class visible aktif) */
  .bundle__card.best-seller.visible {
    transform: translateY(0) scale(1.05);
  }

  /* Hover tetap smooth */
  .bundle__card.best-seller:hover {
    transform: translateY(-5px) scale(1.05);
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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


/* Reset warna default untuk teks "Mulai Dari" */
.hero__price-sale {
  color: var(--text-primary);      /* hitam/abu sesuai tema */
  font-family: var(--font-display);   /* opsional, sesuaikan */
}

.mobile-cta__price-sale {
  color: var(--text-primary);
  font-family: var(--font-display);
}

/* Warna merah khusus untuk angka */
.price-highlight {
  color: var(--sale-red);          /* atau #C0392B langsung */
  font-family: var(--font-display); /* biar tetap seperti sebelumnya */
}

.nav__logo-img {
  height: 30px;      /* Ubah angka ini sesuai keinginan */
  width: auto;
  display: block;
}

