:root {
  --primary: #FF7597;
  --primary-hover: #F05B80;
  --secondary: #FFE5EC;
  --bg-color: #FAFAF8;
  --text-dark: #2D2D2D;
  --text-gray: #666666;
  --white: #FFFFFF;
  --promo-red: #E63946;
  --border-color: #F2D5D9;
  --gold: #FFB703;
  --shadow-sm: 0 4px 12px rgba(255, 117, 151, 0.08);
  --shadow-md: 0 8px 24px rgba(255, 117, 151, 0.15);
  --shadow-lg: 0 24px 48px rgba(255, 117, 151, 0.12);
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  /* Premium subtle noise texture overlay */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  line-height: 1.6;
  padding-top: 40px; 
  overflow-x: hidden;
}

/* Base Sections */
section, header {
  position: relative;
}

/* Wavy Dividers */
.wave-bottom {
  position: absolute;
  bottom: -1px; /* Overlap slightly to prevent sub-pixel gaps */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}
.wave-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}
@media (min-width: 768px) {
  .wave-bottom svg { height: 80px; }
}

/* Background Utility Classes */
.bg-white { background-color: var(--white); }
.bg-beige { background-color: var(--bg-color); }
.bg-secondary { background-color: var(--secondary); }

/* Container & Typography */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
h1, h2, h3, .font-display {
  font-family: var(--font-display); font-weight: 700; color: var(--text-dark);
}
h2.section-title {
  font-size: 2.4rem; margin-bottom: 20px; line-height: 1.2;
}
.section-subtitle {
  font-size: 1.15rem; color: var(--text-gray); margin-bottom: 48px; margin-top: 0;
}
@media (max-width: 768px) {
  h2.section-title { font-size: 1.8rem; margin-bottom: 32px; }
  .container { padding: 0 20px; }
}

/* Promo Bar */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background-color: var(--promo-red); color: var(--white);
  text-align: center; padding: 10px 16px; font-size: 0.9rem;
  font-weight: 600; z-index: 1000; letter-spacing: 0.5px;
}

/* Buttons */
.cta-button {
  display: inline-block; background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  padding: 18px 36px; border-radius: 50px; text-decoration: none;
  text-align: center; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-md); border: 2px solid var(--primary); cursor: pointer;
}
.cta-button:hover {
  background: var(--primary-hover); border-color: var(--primary-hover);
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
}
.cta-button.outline {
  background: transparent; color: var(--primary);
}
.cta-button.outline:hover { background: var(--secondary); }
.cta-button.full-width { width: 100%; }
.cta-button.large-button { font-size: 1.3rem; padding: 22px 56px; }

/* Hero Section */
.hero {
  background: linear-gradient(150deg, var(--secondary) 0%, rgba(255,253,248,0) 100%);
  padding: 80px 0 40px; 
  text-align: center;
}
.container-hero { max-width: 900px; }
.hero .logo {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px;
}
.logo-img { max-height: 90px; width: auto; object-fit: contain; }
.hero .headline { font-size: 3.5rem; font-weight: 800; -webkit-text-stroke: 1px var(--text-dark); letter-spacing: -1px; line-height: 1.15; margin-bottom: 24px; }
.hero .subhead { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero .badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.badge {
  font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
  color: var(--text-dark); background: var(--white); padding: 12px 24px;
  border-radius: 50px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease;
}
.badge:hover { transform: translateY(-2px); }
.badge svg { color: var(--primary); }

@media (max-width: 768px) {
  .hero { padding: 60px 0 100px; }
  .hero .headline { font-size: 2.2rem; }
  .hero .subhead { font-size: 1.1rem; }
  .cta-button { width: 100%; }
  .badge { width: 100%; justify-content: center; }
}

/* Benefits Section */
.benefits {
  padding: 60px 0 120px;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px; /* Safely restoring normal margin */
}
.benefit-item {
  display: flex; align-items: center; gap: 20px; padding: 24px 32px;
  background: var(--white);
  border-radius: 20px; font-weight: 600; font-size: 1.15rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left; border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(255, 117, 151, 0.04);
}
.benefit-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.check-icon {
  flex-shrink: 0; width: 40px; height: 40px; color: var(--white);
  background: var(--primary); border-radius: 50%; padding: 8px; box-shadow: var(--shadow-sm);
}

/* Gallery Carousel Section */
.gallery {
  padding: 20px 0 140px;
  text-align: center;
}
.carousel-wrapper {
  position: relative; width: 100%; padding: 20px 0; overflow: hidden; white-space: nowrap; margin-top: 24px;
}
.carousel-wrapper::before, .carousel-wrapper::after {
  content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none;
}
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, rgba(255,253,248,0.9) 0%, transparent 100%); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, rgba(255,253,248,0.9) 0%, transparent 100%); }

.carousel-track { 
  display: flex !important; 
  flex-wrap: nowrap !important;
  width: max-content !important; 
  -webkit-animation: marquee 40s linear infinite; 
  animation: marquee 40s linear infinite; 
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-img {
  width: 288px; height: 288px; object-fit: cover; border-radius: 24px;
  display: block; margin-right: 24px; box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.carousel-img:hover { transform: scale(1.03); }

@-webkit-keyframes marquee { 
  0% { -webkit-transform: translateX(0); transform: translateX(0); } 
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
}
@keyframes marquee { 
  0% { -webkit-transform: translateX(0); transform: translateX(0); } 
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
}

/* CTA Intermediary */
.cta-intermediary { padding: 40px 0 120px; }
.cta-intermediary-box {
  background: linear-gradient(135deg, var(--primary) 0%, #D74A6D 100%);
  padding: 60px 40px; border-radius: 40px; margin: 0 auto; max-width: 900px;
  box-shadow: 0 20px 48px rgba(255, 117, 151, 0.25);
  position: relative; z-index: 20;
}
.cta-intermediary-box .section-title {
  color: var(--white); margin-bottom: 40px;
}
.cta-intermediary-box .btn-white {
  background: var(--white); color: var(--primary); border: none; outline: none;
}
.cta-intermediary-box .btn-white:hover {
  background: var(--bg-color); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials {
  padding: 80px 0 120px; 
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: var(--white); padding: 40px 32px; border-radius: 24px;
  box-shadow: var(--shadow-sm); text-align: left; border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1.4rem; margin-bottom: 20px; letter-spacing: 2px; }
.quote { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.25rem; margin-bottom: 24px; color: var(--text-dark); line-height: 1.5; }
.author { font-weight: 600; color: var(--text-gray); font-size: 1rem; }

/* Social Proof (Carousel) */
.social-proof {
  padding: 80px 0 140px;
}
.social-carousel-wrapper {
  position: relative; width: 100%; padding: 20px 0; overflow: hidden; white-space: nowrap; margin-top: 40px;
}
.social-carousel-wrapper::before, .social-carousel-wrapper::after {
  content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none;
}
.social-carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--secondary) 0%, transparent 100%); }
.social-carousel-wrapper::after { right: 0; background: linear-gradient(to left, var(--secondary) 0%, transparent 100%); }

.social-carousel-track {
  display: flex !important; 
  flex-wrap: nowrap !important; 
  width: max-content !important; 
  gap: 24px; padding-left: 24px;
  -webkit-animation: marquee-reverse 60s linear infinite; 
  animation: marquee-reverse 60s linear infinite; 
}
.social-carousel-track:hover { animation-play-state: paused; }

@-webkit-keyframes marquee-reverse { 
  0% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
  100% { -webkit-transform: translateX(0); transform: translateX(0); } 
}
@keyframes marquee-reverse { 
  0% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
  100% { -webkit-transform: translateX(0); transform: translateX(0); } 
}

.social-item {
  position: relative; width: 320px; height: 440px; border-radius: 20px; overflow: hidden;
  flex-shrink: 0 !important; box-shadow: var(--shadow-md); transition: transform 0.3s ease; white-space: normal;
}
.social-item:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(255, 117, 151, 0.2); }
.social-item img { width: 100%; height: 100%; object-fit: cover; }
.fake-comment {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 16px; border-radius: 16px; text-align: left; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border: 1px solid rgba(255,255,255,0.4);
}
.fake-comment strong { display: flex; align-items: center; gap: 6px; font-size: 0.95rem; color: var(--primary); margin-bottom: 6px; font-family: var(--font-display); }
.fake-comment p { font-size: 0.95rem; color: var(--text-dark); margin: 0; line-height: 1.4; }

/* How it Works */
.how-it-works { padding: 80px 0 140px; }
.steps-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; margin-top: 64px; position: relative;
}
@media (min-width: 1024px) {
  .steps-container::before {
    content: ''; position: absolute; top: 60px; left: 10%; right: 10%;
    height: 3px; background: rgba(255, 117, 151, 0.2); z-index: 0; border-radius: 4px;
  }
}
.step-card {
  background: var(--white); border-radius: 24px; padding: 48px 20px 32px;
  position: relative; text-align: center; box-shadow: var(--shadow-sm);
  border: 2px solid transparent; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.step-number {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--secondary); box-shadow: 0 4px 12px rgba(255,117,151,0.3);
}
.step-icon { color: var(--primary); margin-bottom: 24px; display: inline-block; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-dark); }
.step-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; }

/* FAQ Section */
.faq {
  padding: 80px 0 160px; 
}
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.accordion-item {
  border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; background: var(--white);
  transition: box-shadow 0.3s ease;
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-header {
  width: 100%; background: transparent; border: none; padding: 24px 32px; font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; transition: all 0.3s ease; color: var(--text-dark);
}
.accordion-header.active { color: var(--primary); background: rgba(255, 117, 151, 0.05); }
.accordion-header .icon { font-size: 1.8rem; font-weight: 400; line-height: 1; transition: transform 0.3s; color: var(--primary); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--bg-color); }
.accordion-content p { padding: 0 32px 24px 32px; color: var(--text-gray); font-size: 1.05rem; line-height: 1.7; }

/* Guarantee Section */
.guarantee {
  padding: 60px 0 140px; 
}
.guarantee-box {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 64px 48px;
  background: var(--white); border-radius: 32px; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg);
  position: relative; z-index: 20;
}
.guarantee-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 90px; height: 90px; background: var(--secondary); border-radius: 50%;
  margin-bottom: 24px; color: var(--primary); box-shadow: 0 8px 24px rgba(255, 117, 151, 0.2);
}
.guarantee-box .section-title { margin-bottom: 24px; }
.guarantee-box p { font-size: 1.15rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; line-height: 1.8;}

@media (max-width: 768px) {
  .guarantee-box { padding: 40px 24px; border-radius: 24px; }
}

/* Final CTA */
.final-cta {
  padding: 100px 0 160px;
  text-align: center;
}
.final-cta h2 { color: var(--text-dark); font-size: 3rem; margin-bottom: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .final-cta { padding: 80px 0 120px; }
  .final-cta h2 { font-size: 2.2rem; }
}

/* Pricing / Offers Section */
.offers {
  padding: 80px 0 140px;
  background: var(--secondary);
}
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 960px; margin: 0 auto; align-items: stretch;
}
.pricing-card {
  background: var(--white); border-radius: 24px; padding: 48px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; border: 1px solid var(--border-color); transition: transform 0.3s ease; position: relative;
}
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.buyers-count {
  display: inline-block; font-size: 0.85rem; background: var(--secondary); padding: 6px 16px;
  border-radius: 12px; color: var(--primary); font-weight: 600; margin-bottom: 24px;
}
.price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1; }
.pricing-card p { color: var(--text-gray); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.6; }
.includes-list { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.includes-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; color: var(--text-dark); }
.includes-list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--primary); margin-top: 2px; }

.pricing-card.highlight {
  transform: scale(1.05); border: 2px solid var(--primary); box-shadow: var(--shadow-lg); z-index: 2;
}
.popular-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--primary);
  color: var(--white); padding: 8px 24px; border-radius: 30px; font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; white-space: nowrap; box-shadow: 0 4px 12px rgba(255,117,151,0.3);
}
.highlight-price { color: var(--primary); }
.highlight-buyers { background: #FFF1F4; }

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; gap: 48px; }
  .pricing-card.highlight { transform: scale(1); z-index: 1; }
  .pricing-card { padding: 32px 24px; }
}

/* --------------- Popup Upsell --------------- */
.popup-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-content {
  background: var(--white); width: 90%; max-width: 480px; border-radius: 24px;
  padding: 48px 32px; text-align: center; position: relative;
  transform: scale(0.95) translateY(20px); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.popup-overlay.active .popup-content { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 1.8rem; color: var(--text-gray); cursor: pointer; padding: 8px; line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--text-dark); }
.popup-icon {
  width: 80px; height: 80px; background: var(--gold); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--white); box-shadow: 0 8px 24px rgba(255, 183, 3, 0.3);
}
.popup-title { font-size: 1.8rem; margin-bottom: 16px; line-height: 1.2; color: var(--text-dark); }
.popup-text { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 32px; line-height: 1.5; }
.popup-price { color: var(--primary); font-weight: 800; font-size: 1.3rem; }
.popup-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: #16A34A; color: white; font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; padding: 20px 24px; border-radius: 50px; text-decoration: none;
  margin-bottom: 16px; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}
.popup-btn-primary:hover { background: #15803D; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3); color: white; }
.popup-btn-secondary {
  display: block; width: 100%; background: #E5E7EB; color: #4B5563; font-family: var(--font-body);
  font-weight: 600; font-size: 1.05rem; padding: 16px 24px; border-radius: 50px;
  text-decoration: none; transition: all 0.2s ease;
}
.popup-btn-secondary:hover { background: #D1D5DB; color: #374151; }


/* === NEW HERO LAYOUT STYLES === */
.promo-bar {
  background-color: #DA2528;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.promo-date-badge {
  background-color: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 4px;
}
.highlight-magenta {
  color: #e83a73;
}

.hero {
  background: #FAFAF8 !important; 
  background-image: none !important;
  padding: 40px 0 60px;
}
.hero .headline {
  font-size: 2.2rem;
  line-height: 1.25;
  color: #1a202c;
  -webkit-text-stroke: 0;
  text-shadow: none;
  font-weight: 800;
}
.hero .subhead {
  font-size: 1.15rem;
  color: #4b5563;
  margin: 0 auto 32px;
  font-weight: 500;
}
.hero-hero-img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  margin: 0 auto 32px;
  display: block;
}

.steps-vertical-box {
  border: 1px solid #FFD1DC;
  border-radius: 20px;
  padding: 32px;
  max-width: 380px;
  margin: 0 auto 40px;
  background: #FFFFFF;
  text-align: left;
}
.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline-container::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 23px;
  bottom: 23px;
  width: 2px;
  background: #FFD1DC;
  z-index: 1;
}
.timeline-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF0F3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e83a73;
  flex-shrink: 0;
}
.timeline-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e83a73;
}


/* === FOOTER STYLES === */
.site-footer {
  background-color: #FAFAF8;
  color: #4B5563;
  padding: 48px 24px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.site-footer p { margin-bottom: 12px; }
.site-footer .footer-links { margin-bottom: 24px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.site-footer .footer-links a { color: #e83a73; text-decoration: none; font-weight: 600; }
.site-footer .footer-links a:hover { text-decoration: underline; }
.site-footer .disclaimer { max-width: 700px; margin: 0 auto; font-size: 0.75rem; opacity: 0.6; line-height: 1.5; }


/* === URGENCY TIMER STYLES === */
.urgency-timer-container {
  text-align: center;
  margin-bottom: 40px;
}
.urgency-text {
  color: #C29150; /* Golden brown matching the print */
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.time-block {
  background-color: #2b1d16; /* Dark chocolate text block */
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  padding: 16px 20px;
  border-radius: 12px;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
}
.colon {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2b1d16;
  margin-top: -4px;
}
@media (max-width: 768px) {
  .time-block {
    font-size: 1.8rem;
    padding: 12px 16px;
    min-width: 64px;
  }
  .colon {
    font-size: 1.8rem;
  }
  .urgency-text {
    font-size: 1.1rem;
  }
}

/* === SHIMMER BUTTON (Premium Plan CTA) === */
@keyframes shimmer-slide {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.cta-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    #f06292 40%,
    #fff6 50%,
    #f06292 60%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  animation: shimmer-slide 2.4s linear infinite;
  box-shadow: 0 6px 28px rgba(255, 117, 151, 0.45);
}
.cta-shimmer:hover {
  animation-play-state: paused;
  background: var(--primary-hover);
  box-shadow: 0 10px 36px rgba(255, 117, 151, 0.55);
}

/* === THEME CHIPS === */
.theme-chip {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(255,117,151,0.05);
}
.theme-chip:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255,117,151,0.15);
  transform: translateY(-3px);
}
@media (max-width: 480px) {
  .theme-chip { font-size: 0.85rem; padding: 12px 8px; }
}

/* === INITIALS AVATAR === */
.initials-avatar {
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid var(--primary);
}

/* === VALUE PROP SECTION === */
.value-prop {
  padding: 80px 0 100px;
  background: var(--white);
  text-align: center;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--secondary);
  padding: 32px 24px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,117,151,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255,117,151,0.15);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255,117,151,0.1);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.old-price {
  font-size: 1.6rem;
  text-decoration: line-through;
  color: var(--text-gray);
  opacity: 0.6;
  margin-right: 12px;
  font-weight: 500;
  vertical-align: middle;
}

/* === UTILS === */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.files-carousel-wrapper {
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
.files-carousel-wrapper:active { cursor: grabbing; }
