:root {
  /* Futuristic Stationery Palette - Holographic & Vibrant */
  --primary-color: #c77dff;
  /* Electric Lavender */
  --primary-dark: #9d4edd;
  --secondary-color: #ff7eb3;
  /* Neon Pink */
  --secondary-dark: #ff477e;
  --accent-color: #70e1f5;
  /* Cyan */
  --accent-dark: #00cec9;
  --text-color: #2d3436;
  --heading-color: #6c5ce7;

  /* Background: Clean with subtle futuristic mesh gradient */
  --background-gradient: linear-gradient(135deg, #ffffff 0%, #f8f5ff 50%, #f0f9ff 100%);
  --font-main: 'Outfit', sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--background-gradient);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.5;
  padding-top: 50px;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Top Bar Ticker - Futuristic Black Friday */
.top-bar-ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #ff0080, #7928ca, #ff0080);
  background-size: 200% 100%;
  animation: gradient-move 5s linear infinite;
  color: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(121, 40, 202, 0.4);
}

@keyframes gradient-move {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-content span {
  padding: 0 40px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-content span::before {
  content: '⚡';
  /* Futuristic bolt */
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Background Icons - Futuristic Glow */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.icon-bg {
  position: absolute;
  font-size: 4rem;
  animation: float 8s ease-in-out infinite;
  opacity: 0.4;
  /* Lighter icons */
  /* Neon Glow Effect */
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  color: #ff9ff3;
  font-size: 5rem;
  text-shadow: 0 0 20px rgba(255, 159, 243, 0.4);
}

.icon-2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  color: #54a0ff;
  font-size: 4rem;
  text-shadow: 0 0 20px rgba(84, 160, 255, 0.4);
}

.icon-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
  color: #feca57;
  font-size: 6rem;
  text-shadow: 0 0 20px rgba(254, 202, 87, 0.4);
}

.icon-4 {
  bottom: 30%;
  right: 5%;
  animation-delay: 1s;
  color: #ff6b6b;
  font-size: 4.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.icon-5 {
  top: 45%;
  left: 45%;
  animation-delay: 3s;
  color: #48dbfb;
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(72, 219, 251, 0.4);
}

.icon-6 {
  top: 75%;
  right: 35%;
  animation-delay: 5s;
  color: #1dd1a1;
  font-size: 5rem;
  text-shadow: 0 0 20px rgba(29, 209, 161, 0.4);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

/* Hero Section - IRRESISTIBLE */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  /* Exclusive Hero Background */
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(240, 240, 255, 0.5) 100%);
  position: relative;
}

.main-headline {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* Holographic Gradient Text */
.highlight-text {
  background: linear-gradient(to right, #9d4edd, #ff477e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  filter: drop-shadow(0 2px 5px rgba(157, 78, 221, 0.3));
}

.text-3d {
  text-shadow:
    1px 1px 0 #fff,
    2px 2px 0 #ddd,
    3px 3px 0 #ccc,
    4px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-image-container {
  margin: 30px auto 50px;
  max-width: 850px;
  perspective: 1000px;
}

.hero-mockup {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: none !important;
  box-shadow: none !important;
  transition: transform 0.5s ease;
}

.floating-effect {
  animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* 3D Vibrant Hero Features */
.hero-features span {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  border: 1px solid rgba(199, 125, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-features span:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
  box-shadow: 0 5px 10px rgba(199, 125, 255, 0.1);
}

.hero-features i {
  color: var(--secondary-color);
  font-size: 1.3rem;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.1));
}

/* Hero CTA Button */
.hero-cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff0080, #7928ca);
  color: white;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(121, 40, 202, 0.4);
  transition: all 0.3s ease;
  animation: float-pulse 2s infinite ease-in-out;
  border-bottom: 5px solid #5e17eb;
}

@keyframes float-pulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(121, 40, 202, 0.4);
  }

  50% {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.6);
  }
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(121, 40, 202, 0.5);
}

.hero-cta-button:active {
  transform: translateY(2px);
  border-bottom-width: 2px;
}

/* Headings */
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(to right, #9d4edd, #ff477e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Kits Section */
.kits-section {
  padding: 60px 0;
  background: #fff;
}

.kits-mockup-container {
  text-align: center;
  margin-bottom: 40px;
}

.kits-mockup {
  max-width: 100%;
  max-height: 550px;
  filter: none !important;
  box-shadow: none !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Feature Box - Gradient Border Effect */
.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #555;
  font-size: 1.1rem;
  position: relative;

  /* Gradient Border Trick */
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #c77dff, #ff7eb3, #70e1f5);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(199, 125, 255, 0.15);
}

.icon-3d-effect {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #c77dff, #ff7eb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.1));
}

.feature-note {
  text-align: center;
  font-style: italic;
  color: #666;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  background: #fdfaff;
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  border: 1px dashed #c77dff;
}

/* Bonus Section */
.bonus-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fff, #f8f5ff);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Bonus Card - Stationery Cut Line Effect */
.bonus-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;

  /* Dashed Border "Cut Line" */
  border: 2px dashed #ff7eb3;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.bonus-card:hover {
  transform: translateY(-10px);
  border-color: #c77dff;
  border-style: solid;
  box-shadow: 0 15px 30px rgba(199, 125, 255, 0.15);
}

.bonus-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: none !important;
  border: none !important;
}

.bonus-card h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 800;
}

.bonus-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.price-tag {
  background: #e0f7fa;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  color: #006064;
  font-weight: 700;
  font-size: 0.9rem;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.free-price {
  color: #00b894;
  font-size: 1.1rem;
  font-weight: 900;
}

/* Social Proof */
.social-proof-section {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}

.proof-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 50px;
}

.proof-grid img {
  max-width: 280px;
  width: 100%;
  border-radius: 15px;
  box-shadow: none !important;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.proof-grid img:hover {
  transform: scale(1.02);
}

.results-cta-box {
  background: linear-gradient(135deg, #c77dff, #ff7eb3);
  color: white;
  padding: 40px;
  border-radius: 25px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(199, 125, 255, 0.3);
  text-align: center;
}

/* Offers Section */
.offers-section {
  padding: 80px 0;
  background: #fdfbfb;
}

.offers-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.offer-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transition: transform 0.4s;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card.basic {
  margin-top: 40px;
  border-top: 5px solid #b2bec3;
}

/* Premium Offer - CLEAN WHITE BACKGROUND WITH ROUNDED PURPLE/PINK BORDER */
.offer-card.premium {
  max-width: 480px;
  background: #ffffff !important;
  /* PURE WHITE BACKGROUND */
  transform: scale(1.05);
  z-index: 10;
  position: relative;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 5px 0 #7b2cbf;
  transition: transform 0.4s ease;
}

/* Rounded Gradient Border using ::before */
.offer-card.premium::before {
  content: "";
  position: absolute;
  inset: -4px;
  /* Border thickness */
  border-radius: 29px;
  /* Matches parent + border thickness */
  background: linear-gradient(135deg, #9d4edd, #ff477e);
  /* Purple to Pink gradient */
  z-index: -2;
  /* Behind everything */
}

/* White background layer to cover the gradient inside */
.offer-card.premium::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Covers the entire card */
  border-radius: 25px;
  /* Same as parent */
  background: #ffffff;
  /* Pure white */
  z-index: -1;
  /* Above gradient, below content */
}

/* Removed ::after to prevent internal blur bleeding */

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.offer-card.premium:hover {
  transform: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 5px 0 #7b2cbf;
}

.offer-badge {
  position: absolute;
  top: 30px;
  right: -40px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #2d3436;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 11;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offer-header h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-transform: uppercase;
}

.offer-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.offer-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.4;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-list li i {
  color: var(--secondary-color);
  margin-top: 4px;
}



.premium-image {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: none !important;
  filter: none !important;
}

.price-container {
  text-align: center;
  margin: 30px 0;
}

.offer-price .currency {
  font-size: 1.8rem;
  font-weight: 600;
  vertical-align: top;
  color: #888;
  margin-right: 5px;
}

.offer-price .amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--heading-color);
  letter-spacing: -2px;
  background: linear-gradient(to right, #c77dff, #ff7eb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scarcity-box {
  background: #fff8e1;
  border: 1px solid #ffe0b2;
  color: #e65100;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 8px;
  border-radius: 8px;
  min-width: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.time-unit span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e65100;
}

.time-unit label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #999;
}

.offer-button {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(45deg, #c77dff, #ff7eb3);
  color: white;
  padding: 20px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(199, 125, 255, 0.3);
}

.premium-btn {
  animation: float-pulse 2s infinite ease-in-out;
  background: linear-gradient(45deg, #ff0080, #ff8c00);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
}

.offer-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(199, 125, 255, 0.4);
}

.basic-btn {
  background: linear-gradient(45deg, #b2bec3, #636e72);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.guarantee-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}

.g-item h3 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 800;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #fdfbfb;
  border: 1px solid #f0f0f0;
}

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

.faq-question:hover {
  background: #f8f5ff;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  background: white;
}

.faq-answer p {
  padding: 15px 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

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

/* About Section */
.about-section {
  padding: 80px 0;
  background: #fdfbfb;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 25px;
  box-shadow: none !important;
  filter: none !important;
}

/* Final Guarantee */
.final-guarantee {
  text-align: center;
  padding: 80px 0;
  background: #fff;
}

.guarantee-seal {
  max-width: 180px;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #f9f9f9;
  color: #888;
  text-align: center;
  padding: 50px 0;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

.disclaimer {
  font-size: 0.75rem;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  color: #aaa;
}

/* Responsive Mobile Optimization */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .main-headline {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main-headline {
    font-size: 2.4rem;
  }

  .hero-section {
    padding: 50px 0 20px;
  }

  .offer-card.premium {
    transform: scale(1);
    width: 100%;
  }

  .about-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .offers-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .offer-price .amount {
    font-size: 3.5rem;
  }

  .results-cta-box {
    font-size: 1.4rem;
    padding: 30px;
  }

  .hero-features {
    gap: 10px;
  }

  .hero-features span {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-cta-button {
    font-size: 1.2rem;
    padding: 15px 30px;
  }

  /* Mobile List Adjustment: Remove Scroll & Adjust Font */


  .offer-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .main-headline {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-section {
    padding: 40px 0 20px;
  }

  .hero-features span {
    width: 100%;
    justify-content: center;
  }

  .offer-card {
    padding: 25px 20px;
  }

  .offer-header h3 {
    font-size: 1.6rem;
  }

  .ticker-content span {
    font-size: 0.8rem;
    padding: 0 15px;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bonus-card {
    padding: 20px;
  }

  .offer-button {
    font-size: 1.1rem;
    padding: 18px;
  }

  .time-unit {
    min-width: 55px;
    padding: 5px;
  }

  .time-unit span {
    font-size: 1.3rem;
  }

  .guarantee-seal {
    max-width: 140px;
  }

  .kits-section,
  .bonus-section,
  .social-proof-section,
  .offers-section,
  .faq-section,
  .about-section {
    padding: 50px 0;
  }

  .proof-grid {
    gap: 10px;
  }

  /* Mobile Grid for Kits - Side by Side */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.3;
    justify-content: center;
    min-height: 120px;
  }

  .feature-item i {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  /* Prevent Badge Overflow on Mobile */
  .offer-badge {
    right: -10px;
    padding: 5px 30px;
    font-size: 0.7rem;
    top: 20px;
  }

  .container {
    padding: 0 15px;
  }
}

/* Extra Small Devices (Fold, narrow phones) */
@media (max-width: 360px) {
  .main-headline {
    font-size: 1.5rem;
  }

  .hero-cta-button {
    font-size: 1rem;
    padding: 15px 20px;
    width: 100%;
  }

  .offer-price .amount {
    font-size: 3rem;
  }

  .offer-badge {
    right: -30px;
    padding: 5px 30px;
    font-size: 0.7rem;
  }
}

/* Premium Header Style - High Conversion */
.premium-header-style {
  background: linear-gradient(135deg, #9d4edd, #ff477e);
  margin: -40px -30px 30px -30px;
  padding: 30px 20px;
  border-radius: 25px 25px 0 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.premium-header-style h3 {
  color: white !important;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.premium-header-style h3 i {
  color: #ffd700;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  font-size: 1.6rem;
}

.premium-header-style p {
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 5px;
}

/* Shine Effect */
.premium-header-style::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Hero Headline Image */
.hero-headline-wrapper {
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Guarantee Seal Responsive */
.guarantee-seal {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
}