/* ==========================================================================
   D.V.N COLLAGEN CHEWABLE TABLETS - LANDING PAGE STYLES
   Design Theme: Luxury Rose Gold, Champagne Glow & Pearl Glassmorphism
   ========================================================================== */

:root {
  --primary-pink: #ff6b8b;
  --primary-rose: #e63967;
  --rose-dark: #b81d45;
  --rose-light: #ffc2d1;
  --champagne-gold: #f4c478;
  --gold-glow: rgba(244, 196, 120, 0.4);
  
  --bg-dark-1: #120912;
  --bg-dark-2: #1c0d1b;
  --bg-card: rgba(38, 18, 36, 0.65);
  --bg-card-hover: rgba(56, 26, 53, 0.85);
  --glass-border: rgba(255, 182, 193, 0.18);
  --glass-border-active: rgba(244, 196, 120, 0.6);
  
  --text-main: #ffffff;
  --text-muted: #d8c3d2;
  --text-gold: #ffd89b;
  
  --shadow-glow: 0 10px 35px rgba(230, 57, 103, 0.35);
  --shadow-gold: 0 10px 30px rgba(244, 196, 120, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark-1);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #3a1532 0%, #080308 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}

/* 800px LP Frame Wrapper */
.lp-frame {
  width: 100%;
  max-width: 800px;
  background: var(--bg-dark-1);
  border: 1px solid var(--glass-border-active);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(230, 57, 103, 0.2);
  overflow: hidden;
  position: relative;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ffb3c6 50%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--champagne-gold);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230, 57, 103, 0.15);
  border: 1px solid rgba(255, 107, 139, 0.3);
  border-radius: var(--radius-full);
  color: #ff9ebb;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* Container */
.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 182, 193, 0.35);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #b81d45, #e63967, #b81d45);
  background-size: 200% 100%;
  animation: gradientShift 6s infinite alternate;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-bar .timer-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  letter-spacing: 1px;
  color: var(--champagne-gold);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  padding: 16px 0;
  position: relative;
  z-index: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo .logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-pink), var(--champagne-gold));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #120912;
  box-shadow: 0 0 15px rgba(255, 107, 139, 0.5);
}

.brand-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.brand-logo .logo-text span {
  color: var(--primary-pink);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-pink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-rose) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 57, 103, 0.5);
  background: linear-gradient(135deg, #ff85a1 0%, #b81d45 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #f4c478 0%, #e09f3e 100%);
  color: #120912;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 196, 120, 0.5);
}

.pulse-effect {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 0 0 10px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: block;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.headline-img-wrapper {
  width: 100%;
  margin: 0 0 24px 0;
}

.headline-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
}

.badge-item svg {
  color: var(--champagne-gold);
}

.hero-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-cta-box .btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #25d366;
  box-shadow: none;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 20px;
}

.hero-cta-box .btn:hover {
  background: rgba(37, 211, 102, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.hero-rating {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffd166;
  font-size: 1.1rem;
}

.hero-rating span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  text-align: center;
}

.product-img-wrapper {
  position: relative;
  display: inline-block;
}

.product-img-wrapper img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 139, 0.3);
  border: 2px solid rgba(255, 182, 193, 0.3);
  animation: floatImage 4s ease-in-out infinite;
}

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

.floating-tag {
  position: absolute;
  background: rgba(18, 9, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--champagne-gold);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-tag.tag-top {
  top: -15px;
  right: -10px;
}

.floating-tag.tag-bottom {
  bottom: 20px;
  left: -20px;
}

.floating-tag .tag-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 196, 120, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-gold);
}

.floating-tag .tag-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--champagne-gold);
}

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

/* ==========================================================================
   PROBLEM & SOLUTION SECTION
   ========================================================================== */
.section {
  padding: 10px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  padding: 28px;
  border-left: 4px solid var(--primary-pink);
}

.problem-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(230, 57, 103, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Solution Banner */
.solution-box {
  background: linear-gradient(135deg, rgba(230, 57, 103, 0.2) 0%, rgba(244, 196, 120, 0.15) 100%);
  border: 1px solid var(--glass-border-active);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
}

.solution-features svg {
  color: var(--champagne-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   INGREDIENTS SECTION
   ========================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ingredient-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(244, 196, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.ingredient-card .ing-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 15px;
  right: 20px;
}

.ingredient-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--champagne-gold);
  margin-bottom: 8px;
}

.ingredient-card .ing-subtitle {
  font-size: 0.85rem;
  color: var(--primary-pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.ingredient-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LEGALITY & SAFETY BADGE
   ========================================================================== */
.legality-banner {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.legality-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.legality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px 16px;
  flex: 1 1 210px;
  width: 100%;
  max-width: 230px;
  min-height: 220px;
  background: #ffffff !important;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #ffffff;
  color: #120912;
}

.badge-icon-img {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.legality-item .badge-icon {
  width: 54px;
  height: 54px;
  background: rgba(18, 9, 18, 0.08);
  border: 1px solid rgba(18, 9, 18, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #120912;
  font-size: 1.6rem;
}

.legality-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #120912;
}

.legality-item p {
  font-size: 0.88rem;
  color: #444444;
}

.legality-item p strong {
  color: #000000;
  font-weight: 800;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS IMAGE SLIDER
   ========================================================================== */
.testi-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.testi-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.testi-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testi-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4px;
}

.testi-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 18, 37, 0.9);
  color: var(--champagne-gold);
  border: 1px solid var(--champagne-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-btn:hover {
  background: var(--primary-pink);
  color: #ffffff;
  border-color: var(--primary-pink);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background: var(--champagne-gold);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================================================
   PRICING & BUNDLE PACKAGES
   ========================================================================== */
.pricing-section {
  background: radial-gradient(circle at 50% 50%, #32122d 0%, var(--bg-dark-1) 80%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.package-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.package-card.popular {
  border: 2px solid var(--champagne-gold);
  background: linear-gradient(180deg, rgba(56, 23, 53, 0.95) 0%, rgba(38, 14, 35, 0.95) 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f4c478, #e09f3e);
  color: #120912;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.package-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.package-header .desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.package-price {
  text-align: center;
  margin-bottom: 24px;
}

.original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.promo-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--champagne-gold);
  margin: 4px 0;
}

.save-badge {
  display: inline-block;
  background: rgba(76, 217, 100, 0.15);
  color: #4cd964;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.package-features svg {
  color: var(--primary-pink);
}

/* ==========================================================================
   INTERACTIVE ORDER FORM
   ========================================================================== */
.order-form-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--glass-border-active);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--champagne-gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(18, 9, 18, 0.7);
  border: 1px solid rgba(255, 182, 193, 0.2);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.payment-card.active {
  border-color: var(--champagne-gold);
  background: rgba(244, 196, 120, 0.1);
}

.payment-card input[type="radio"] {
  accent-color: var(--champagne-gold);
}

.summary-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--champagne-gold);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--primary-pink);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
  transition: max-height 0.4s ease-in-out;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 60px 0 100px;
  background: #0d060d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ==========================================================================
   FLOATING STICKY CTA (MOBILE)
   ========================================================================== */
.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  background: rgba(18, 9, 18, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--champagne-gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 12px 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
}

.floating-bottom-bar .price-info {
  display: flex;
  flex-direction: column;
}

.floating-bottom-bar .price-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-bottom-bar .price-info strong {
  font-size: 1.15rem;
  color: var(--champagne-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .lp-frame {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .container {
    padding: 0 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-cta-box {
    justify-content: center;
  }

  .solution-box {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .legality-flex {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .legality-item {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 18px 16px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge-item {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .testi-slider-wrapper {
    padding: 0 8px;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .prev-btn { left: -4px; }
  .next-btn { right: -4px; }

  .direct-wa-card {
    padding: 24px 14px !important;
  }

  .direct-wa-card h2 {
    font-size: 1.4rem !important;
  }

  .direct-wa-card p {
    font-size: 0.925rem !important;
  }

  .floating-bottom-bar {
    padding: 10px 14px;
  }

  .floating-bottom-bar .price-info span {
    font-size: 0.68rem;
  }

  .floating-bottom-bar .price-info strong {
    font-size: 0.92rem;
  }

  .floating-bottom-bar .btn {
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }

  .footer {
    padding-bottom: 90px;
  }
}
