/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

@media (min-width: 992px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  width: 100%;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6; /* ✅ FIXED */
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
}

/* =========================
   NAVBAR BASE
========================= */

.glass-nav {
  background:
    linear-gradient(135deg, rgba(7, 39, 28, 0.96), rgba(3, 23, 16, 0.94)),
    radial-gradient(circle at top left, rgba(65, 154, 1, 0.10), transparent 45%);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(65, 154, 1, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

  padding: 0.85rem 0;
}

/* Prevent iPhone horizontal scroll */
body {
  overflow-x: hidden;
}

/* =========================
   BRAND
========================= */

.navbar-brand {
  color: #f4ffe8 !important;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* =========================
   TOGGLER
========================= */

/* --- GLASS NAV (iOS STYLE) --- */
.glass-nav {
  background: #1b3a2d;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
}

/* --- TOUCH-FRIENDLY BUTTON --- */
.navbar-toggler {
  border: none;
  background: #21684e;
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  /* iPhone tap feel */
  transition: transform 0.15s ease, background 0.2s ease;
}

/* Smooth tap (iOS feel) */
.navbar-toggler:active {
  transform: scale(0.92);
  background: #f3f4f6;
}

/* Remove blue tap highlight (iOS fix) */
* {
  -webkit-tap-highlight-color: transparent;
}

/* --- HAMBURGER ICON --- */
.hamburger-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- SMOOTH X ANIMATION (iOS STYLE) --- */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- MOBILE MENU (SLIDE + SOFT) --- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 16px;
    margin-top: 10px;
    padding: 18px;

    /* smooth open */
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Bigger tap targets (important for iPhone) */
  .nav-link {
    padding: 14px 0;
    font-size: 17px;
    text-align: center;
  }

  .navbar-cta a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
  }
}
/* =========================
   MENU (MOBILE COLLAPSE)
========================= */

.navbar-collapse {
  background: linear-gradient(180deg, rgba(5, 34, 24, 0.98), rgba(3, 23, 16, 0.98));
  border: 1px solid rgba(65, 154, 1, 0.12);

  border-radius: 18px;
  margin-top: 1rem;
  padding: 0.85rem;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);

  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* NAV ITEMS */
.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  color: #c7f7a1 !important;
  font-weight: 600;

  padding: 0.85rem 1rem !important;
  border-radius: 12px;

  min-height: 44px;
  display: flex;
  align-items: center;

  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff !important;
  background: rgba(65, 154, 1, 0.14);
}

.nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #419a01, #2f7300);
  box-shadow: 0 8px 20px rgba(65, 154, 1, 0.22);
}

/* =========================
   NAVBAR CTA
========================= */

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  font-weight: 700;

  text-decoration: none;
  border-radius: 999px;

  transition: all 0.25s ease;

  min-height: 44px;
  padding: 12px 18px;

  white-space: nowrap;
}

/* PRIMARY BUTTON */
.btn-gradient {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  border: none;

  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

/* OUTLINE BUTTON */
.btn-outline-warning {
  background: transparent;
  border: 2px solid #f59e0b;
  color: #f59e0b;
}

.btn-outline-warning:hover {
  background: #f59e0b;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

/* ICONS */
.navbar-cta i {
  font-size: 0.9rem;
}

/* =========================
   DESKTOP FIX
========================= */

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    max-height: none;
    overflow: visible;
  }

  .navbar-nav {
    align-items: center;
    gap: 0.45rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }
}

/* =========================
   MOBILE (iPhone SAFE)
========================= */

@media (max-width: 768px) {

  .glass-nav {
    padding: 0.75rem 0;
  }

  .navbar-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-cta a {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 16px;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px !important;
  }
}

/* =========================
   SMALL iPHONE
========================= */

@media (max-width: 480px) {

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .navbar-cta a {
    font-size: 0.95rem;
    padding: 13px 14px;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero {
  margin-top: 35px;
  padding: 5rem 1.5rem;
  background: radial-gradient(circle at center left, #052e1f 0%, #031710 75%);
}

.container {
  max-width: 1100px;
  margin: auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* LEFT SIDE */
.hero__title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero__highlight {
  display: block;
  color: #22c55e;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #d1fae5;
  margin: 20px 0;
}

.hero__benefits {
  list-style: none;
  padding: 0;
}

.hero__benefits li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 16px 30px;
}

.btn--primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
}

.hero__cta {
  margin-top: 10px;
}

/* TRUST TEXT */
.hero__trust {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #a7f3d0;
}

/* RIGHT SIDE */
.hero__media {
  text-align: center;
}

.hero__image {
  max-width: 100%;
  border-radius: 12px;
}

.hero__rating {
  margin-top: 10px;
  color: #fff;
  font-size: 0.9rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }
}
/* =========================
   GUARANTEE / TRUST SECTION
========================= */
.why-choose-section {
  padding: 0 0 60px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  font-family: Jost, sans-serif;
}

.trust-guarantee-area {
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  padding: 3.5rem 1rem;
  text-align: center;
}

.trust-guarantee-area .container {
  max-width: 960px;
  margin: 0 auto;
}

/* HEADER */
.guarantee-header {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.main-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #065f46;
  margin-bottom: 0.6rem;
  font-family: "Poppins", sans-serif;
}

.sub-title {
  font-size: 1.05rem;
  color: #4b5563;
}

/* CARD */
.guarantee-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.12);
  border: 1px solid #d1fae5;
}

.seal-column {
  flex-shrink: 0;
}

.guarantee-seal {
  width: 140px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.text-column {
  text-align: left;
}

.text-column p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}

.text-column strong {
  color: #16a34a;
}

/* BADGE STRIP */
.badges-wrapper {
  margin-top: 1.8rem;
}

.badge-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-grid img {
  max-width: 560px;
  width: 100%;
  opacity: 0.9;
}

/* FOOTER */
.brand-footer-text {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
}

/* =========================
   WHAT IS SECTION
========================= */
.what-is-content {
  padding: 0;
}

.what-is-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 1rem;
}

.what-is-description:first-child {
  font-size: 1.45rem;
  color: #000;
}

/* IMAGE */
.what-is-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.what-is-image-wrapper:hover {
  transform: translateY(-4px);
}

.what-is-image {
  width: 100%;
  border-radius: 16px;
}

/* HIGHLIGHTS */
.what-is-highlights {
  margin: 25px 0;
  padding: 20px;
  background: #033015;
  border: 1px solid #16a34a;
  border-radius: 12px;
}

/* ITEMS */
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #e5e7eb;
  font-weight: 500;
}

.highlight-item i {
  color: #22c55e;
}

/* CTA */
.what-is-cta {
  margin-top: 25px;
}

.order-btn-unique {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  padding: 14px 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(34,197,94,0.3);
  transition: 0.3s;
}

.order-btn-unique:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(34,197,94,0.4);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

  .guarantee-flex {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .text-column {
    text-align: center;
  }

  .guarantee-seal {
    width: 110px;
  }

  .badge-grid img {
    max-width: 220px;
  }

  .what-is-content {
    text-align: center;
  }

  .what-is-description {
    font-size: 1.05rem;
  }

  .highlight-item {
    justify-content: center;
  }

  .order-btn-unique {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 480px) {

  .main-title {
    font-size: 1.5rem;
  }

  .sub-title {
    font-size: 0.95rem;
  }

  .text-column p {
    font-size: 0.95rem;
  }

  .badge-grid img {
    max-width: 180px;
  }
}
.section-header-red {
  background: radial-gradient(circle at 12% 0%, #0a3320 0%, #000000 40%, #020617 100%);
  text-align: center;
  position: relative;
  padding: 1.7rem 0;

  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 30px 10px 24px 14px; 
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  max-width: 980px;
  margin: 1.5rem auto 0.5rem auto;
}

.section-header-red::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(255, 255, 255, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(52, 211, 153, 0.2) 0%,
      transparent 65%
    );
  opacity: 0.8;
  mix-blend-mode: screen;
}

.section-header-red::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -35%;
  width: 60%;
  height: 160%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  transform: skewX(-18deg);
  opacity: 0.75;
}

.section-title-red {
  color: #fef9c3;
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(190, 242, 100, 0.55);
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.045em;
}

.privacy-policy-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.privacy-card {
  background: radial-gradient(circle at top left, #020617 0%, #020617 50%, #020617 100%);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  padding: 1.75rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(16, 185, 129, 0.12),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

.privacy-header {
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.privacy-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e5f9f1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-content {
  position: relative;
  z-index: 1;
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.privacy-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(15, 118, 110, 0.16), transparent 60%);
  border: 1px solid rgba(30, 64, 175, 0.38);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.85);
}

.privacy-item + .privacy-item {
  margin-top: 0.9rem;
}

.privacy-item-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-item p {
  margin: 0;
  color: #cbd5f5;
  font-size: 0.95rem;
}

.privacy-cta-card {
  margin-top: 2rem;
  padding: 1.7rem 1.5rem;
  border-radius: 24px;
  background: radial-gradient(circle at 80% 0%, #16a34a 0%, #14532d 35%, #020617 100%);
  border: 1px solid rgba(74, 222, 128, 0.6);
  box-shadow: 0 16px 40px rgba(21, 128, 61, 0.75);
  color: #ecfdf5;
  position: relative;
  overflow: hidden;
}

.privacy-cta-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 15% 0%,
    rgba(255, 255, 255, 0.25),
    transparent 55%
  );
  mix-blend-mode: screen;
}

.cta-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cta-description {
  position: relative;
  z-index: 1;
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.support-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #bbf7d0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 247, 208, 0.6);
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 0 0 1px rgba(21, 128, 61, 0.6),
              0 10px 25px rgba(15, 23, 42, 0.9);
  transition: all 0.22s ease-out;
}

.support-email:hover {
  color: #022c22;
  background: #bbf7d0;
  transform: translateY(-1px);
}

.privacy-section-title i,
.privacy-item-title i,
.cta-title i {
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.7));
}

@media (max-width: 576px) {
  .section-header-red {
    margin-inline: 0.75rem;
    border-radius: 22px 8px 20px 10px;
  }
  .privacy-card,
  .privacy-cta-card {
    padding: 1.35rem 1.2rem;
  }
}
/* =========================
   HOW IT WORKS SECTION
========================= */
.how-it-works-section {
  background: var(--bg-section);
  padding-bottom: 60px;
}

/* INTRO */
.how-it-works-intro {
  margin-bottom: 2.5rem;
  text-align: center;
}

.intro-text {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CONTENT WIDTH */
.how-it-works-content {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   MECHANISM ITEMS
========================= */
.work-mechanism {
  margin-bottom: 2.5rem;
}

.mechanism-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 15px;
  transition: all 0.25s ease;
}

/* HOVER EFFECT */
.mechanism-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* HEADER */
.mechanism-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mechanism-header i {
  font-size: 1rem;
  color: var(--primary-color);
}

/* TITLE */
.mechanism-header h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: mechanism-header;
  margin: 0;
}

/* DESCRIPTION */
.mechanism-description {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.8;
  margin: 0;
}

/* =========================
   SUMMARY CARD
========================= */
.summary-section {
  margin-top: 25px;
}

.summary-card {
  background: linear-gradient(135deg, #14532d, #052e16);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(34,197,94,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* HEADER */
.summary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.summary-header i {
  font-size: 1.2rem;
  color: #22c55e;
}

/* TITLE */
.summary-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ecfdf5;
  margin: 0;
}

/* TEXT */
.summary-text {
  font-size: 0.95rem;
  color: #d1fae5;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA */
.summary-cta .order-btn-unique {
  display: inline-block;
  background-color: #22c55e;
  color: #052e16;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.summary-cta .order-btn-unique:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

.summary-cta .order-btn-unique:active {
  transform: translateY(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .intro-text {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 10px;
  }

  .mechanism-item {
    padding: 15px;
  }

  .mechanism-header {
    flex-direction: column;
    text-align: center;
  }

  .mechanism-description {
    text-align: center;
  }

  .summary-card {
    padding: 20px;
  }

  .summary-text {
    text-align: center;
  }

  .summary-cta .order-btn-unique {
    width: 100%;
  }
}

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary-color: #22c55e;
  --primary-hover: #16a34a;

  --bg-dark: #02150d;
  --bg-dark-2: #052e16;

  --text-main: #ffffff;
  --text-secondary: #e5e7eb;
  --text-muted: #cbd5d1;

  --border: rgba(255, 255, 255, 0.15);
  --star-color: #fbbf24;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
#testimonials {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
}

/* =========================
   HEADER
========================= */
.section-title-red3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 900;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* =========================
   GRID
========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 850px;
  margin: 2rem auto;
  padding: 0 1.2rem;
}

/* =========================
   REVIEW CARD
========================= */
.review-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.review-item:hover {
  transform: translateY(-4px);
}

/* AVATAR */
.avatar-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* CONTENT */
.review-content {
  flex: 1;
}

/* NAME */
.reviewer-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
}

/* RATING */
.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.review-rating i {
  color: var(--star-color);
  font-size: 0.95rem;
}

.rating-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* REVIEW TEXT */
.review-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

/* =========================
   SUMMARY
========================= */
.reviews-summary {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #064e3b, #022c22);
}

/* STATS */
.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.stat-card {
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #4ade80;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   CTA
========================= */
.reviews-cta {
  text-align: center;
}

.reviews-cta h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.reviews-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* BUTTON */
.order-btn-unique {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: #052e16;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(34,197,94,0.35);
}

.order-btn-unique:hover {
  transform: translateY(-2px);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

  body {
    font-size: 17px; /* iPhone boost */
  }

  .review-item {
    flex-direction: column;
    text-align: center;
  }

  .avatar-image {
    margin: 0 auto;
  }

  .review-rating {
    justify-content: center;
  }

  .review-text {
    font-size: 1.05rem;
  }

  .summary-stats {
    grid-template-columns: 1fr;
  }

  .order-btn-unique {
    width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .section-title-red3 {
    font-size: 1.9rem;
  }

  .review-text {
    font-size: 1.02rem;
  }

  .reviews-cta h3 {
    font-size: 1.3rem;
  }

  .reviews-cta p {
    font-size: 1rem;
  }
}

/* =========================
SECTION BASE
========================= */
.bottles-section {
  background: #eeeeee; /* Light grey background */
  padding: 0 0 60px;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER STRIP */
.section-header-red2 {
  background: #a63117;
  padding: 40px 20px 100px;
  text-align: center;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
}

.bottles-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

/* PRICING GRID */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: -60px auto 0; /* Pulls cards up into the header */
  position: relative;
  z-index: 10;
  padding: 0 15px;
}

/* CARD BASICS */
.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  margin-top: 100px;
  border: 2px solid #b7b7b7;
  overflow: hidden; /* Clips the top strip */
  padding: 0 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card.featured {
  background: #fff8c7; /* Pale yellow */
  border: 2px solid #000000;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TOP STRIPS */
.plan-header-strip {
  background: #7e858c; /* Grey for side cards */
  color: #fff;
  width: 100%;
  padding: 8px 0;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.featured .plan-header-strip {
  background: #0b1a0e; /* Dark green/black for center */
}

/* TEXT STYLES */
.plan-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3e788c; /* Blue-Teal color from image */
  margin: 0;
}

.plan-sub {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  color: #3e788c;
  line-height: 1;
  margin: 15px 0;
}

.price span {
  display: block;
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
}

/* CHECKMARKS */
.save-text {
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.save-text.highlight {
  color: #d13415; /* Red for shipping */
}

/* BUY NOW BUTTON */
.btn-primary-solid {
  background: linear-gradient(to bottom, #fff35d 0%, #f7d34b 100%);
  border: 1px solid #e2c144;
  border-radius: 10px;
  color: #2b6277;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 30px;
  text-decoration: none;
  margin: 20px 0;
  width: 85%;
  box-shadow: 0 4px 0 #d9b83c;
}

.cart-icon {
  background: #72bad4;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 1rem;
}

.secure-payment-img {
  width: 80%;
  max-width: 220px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: -40px;
  }
  .pricing-card.featured {
    transform: none;
  }
}
/* =========================
   BONUS SECTION (FINAL)
========================= */
.bonus-section {
  background: radial-gradient(circle at top, #003322 0%, #0b0b0b 60%, #003322 100%);
  color: #fff;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECTS */
.bonus-section::before,
.bonus-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bonus-section::before {
  top: -60px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,200,87,0.15), transparent 70%);
}

.bonus-section::after {
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
}

/* CONTAINER */
.bonus-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* =========================
   HEADING
========================= */
.bonus-heading {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 35px;
}

.bonus-heading span {
  color: #facc15;
}

/* =========================
   CARDS
========================= */
.bonus-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.bonus-card {
  background: linear-gradient(145deg, rgba(25,25,25,0.95), rgba(10,10,10,0.98));
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  width: 240px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  transition: all 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250,204,21,0.6);
  box-shadow: 0 20px 45px rgba(0,0,0,0.85);
}

/* IMAGE */
.bonus-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* TITLE */
.bonus-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bonus-card-title span {
  display: block;
  font-size: 0.75rem;
  color: #facc15;
}

/* DESCRIPTION */
.bonus-description {
  font-size: 0.8rem;
  color: #cfcfcf;
  line-height: 1.5;
}

/* =========================
   CTA BUTTON
========================= */
.bonus-cta {
  text-align: center;
  margin-top: 30px;
}

.bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: all 0.2s ease;
}

.bonus-btn::after {
  content: "➜";
}

.bonus-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.8);
}

/* =========================
   SHIPPING STRIP
========================= */
.bonus-shipping {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.bonus-shipping span {
  color: #facc15;
  font-weight: 700;
}

.bonus-shipping small {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #bfbfbf;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .bonus-heading {
    font-size: 1.5rem;
  }

  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 100%;
    max-width: 320px;
  }
}
/* =========================
   INGREDIENT HEADER
========================= */
.ingredients-header {
  text-align: center;
  padding: 20px;
  max-width: 980px;
  margin: 30px auto 40px;
  background: #1e4b3c;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.ingredients-header .container {
  padding: 0 1.2rem;
}

/* TITLE */
.ingredients-title {
  color: #facc15;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 30;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.ingredients-title span {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  color: #d1fae5;
  line-height: 1.6;
}

/* SUBTITLE */
.ingredients-subtitle {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================
   INGREDIENT LIST
========================= */
.ingredient-info ul {
  padding-left: 0;
  list-style: none;
}

.ingredient-info li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.ingredient-info li::before {
  content: "✔ ";
  color: #22c55e;
  font-weight: bold;
}

/* =========================
   INTRO CARD
========================= */
.intro-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 12px;
}

.intro-text {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.7;
}

/* =========================
   EVIDENCE GRID
========================= */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD */
.evidence-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.evidence-item:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.15);
}

/* HEADER */
.evidence-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* NUMBER */
.evidence-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.evidence-ingredient-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #064e3b;
}

/* CONTENT */
.evidence-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.evidence-block,
.mechanism-block {
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
}

/* LABELS */
.evidence-label,
.mechanism-label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.evidence-label::before {
  content: "✔ ";
  color: #22c55e;
}

.mechanism-label::before {
  content: "⚡ ";
}

/* TEXT */
.evidence-text,
.mechanism-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

/* =========================
   CONCLUSION
========================= */
.conclusion-card {
  margin-top: 40px;
  background: linear-gradient(135deg, #064e3b, #022c22);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.conclusion-title {
  color: #facc15;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.conclusion-text {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================
   FORMULATION SECTION
========================= */
.formulation-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

.formulation-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 40px;
}

/* STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}

.step-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ingredients-header {
    margin: 20px 12px 30px;
    padding: 18px;
  }

  .intro-card {
    padding: 18px;
  }

  .evidence-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .ingredients-title {
    font-size: 1.5rem;
  }

  .ingredients-title span {
    font-size: 0.9rem;
  }

  .ingredients-subtitle {
    font-size: 0.9rem;
  }
}
/* =========================
   FORMULATION SECTION
========================= */
.formulation-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

/* HEADER */
.formulation-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 40px;
}

/* =========================
   STEPS
========================= */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
  box-shadow: 0 15px 35px rgba(34,197,94,0.15);
}

.step-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: #22c55e;
}

/* =========================
   GUARANTEE SECTION
========================= */
.guarantee-section {
  margin-top: 40px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #064e3b, #022c22);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* FLEX */
.guarantee-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

/* BADGE */
.guarantee-badge-container {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.guarantee-badge-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */
.guarantee-details {
  flex: 1;
}

.guarantee-main-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #facc15;
}

/* POINTS */
.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-point {
  display: flex;
  gap: 10px;
}

/* NUMBER */
.point-number {
  font-weight: 800;
  color: #22c55e;
  min-width: 24px;
}

/* TEXT */
.point-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.point-content strong {
  color: #facc15;
}

/* LINK */
.point-content a {
  color: #22c55e;
  text-decoration: underline;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-badge-container {
    width: 130px;
    height: 130px;
  }

  .guarantee-main-title {
    font-size: 1.5rem;
  }

  .point-content {
    font-size: 0.9rem;
  }
}

/* =========================
APPLE-STYLE BENEFITS SECTION
========================= */
.benefits-section {
  background: #f5f5f7;
  padding: 60px 0;
}

/* HEADER */
.benefits-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

/* INTRO */
.benefits-intro-text {
  max-width: 680px;
  margin: 15px auto 40px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6e6e73;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.benefit-row {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

/* HOVER (subtle Apple feel) */
.benefit-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.benefit-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 1.1rem;
}

/* TEXT */
.benefit-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.5;
}

/* CTA */
.benefits-cta-wrap {
  margin-top: 50px;
}

.benefits-cta-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 25px;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* CTA TEXT */
.benefits-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.benefits-cta-text {
  font-size: 1rem;
  color: #6e6e73;
  margin-bottom: 20px;
}

/* BUTTON (Apple style) */
.benefits-cta-card .btn {
  background: #0071e3;
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.25s ease;
}

.benefits-cta-card .btn:hover {
  background: #005bb5;
  transform: translateY(-1px);
}

/* TRUST TEXT */
.benefits-cta-trust {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #86868b;
}

/* =========================
iPHONE OPTIMIZATION
========================= */
@media (max-width: 480px) {

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-row {
    padding: 16px;
    border-radius: 18px;
  }

  .benefits-heading {
    font-size: 1.6rem;
  }

  .benefits-intro-text {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .benefits-cta-title {
    font-size: 1.3rem;
  }

  .benefits-cta-card .btn {
    width: 100%;
  }
}

/* =========================
FAQ SECTION (DARK STYLE)
========================= */
#faq {
  background: #022d1f;
  padding: 60px 20px;
  color: #fff;
}

/* TITLE */
.section-title-red {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

/* =========================
FAQ ITEM
========================= */
.faq-item {
  margin-bottom: 18px;
}

/* =========================
QUESTION (WHITE PILL)
========================= */
.faq-question {
  background: #ffffff;
  padding: 16px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  transition: all 0.25s ease;
}

/* HOVER EFFECT */
.faq-question:hover {
  transform: translateY(-2px);
}

/* TEXT */
.faq-question h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* =========================
ICON
========================= */
.faq-icon {
  color: #333;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* ROTATE ICON WHEN OPEN */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* =========================
ANSWER (GREEN BG VISIBLE)
========================= */
.faq-answer {
  margin-top: 10px;
}

.faq-answer-content {
  padding: 0 22px 10px;
}

.faq-answer p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* =========================
SMOOTH COLLAPSE (OPTIONAL ENHANCEMENT)
========================= */
.faq-answer.collapse:not(.show) {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

/* =========================
MOBILE (iPhone OPTIMIZED)
========================= */
@media (max-width: 480px) {

  #faq {
    padding: 50px 15px;
  }

  .section-title-red {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 14px 18px;
    border-radius: 30px;
  }

  .faq-question h4 {
    font-size: 1.05rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .section-title-red {
    font-size: 1.6rem;
  }
}
/* =========================
   SECURITY / FINAL CTA
========================= */
.security-cta-section {
  background: #f9fafb;
  padding: 3rem 0 2.5rem;
}

.security-info {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.security-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.security-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.security-content p {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.info-section {
  margin-top: 1rem;
}

.info-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-info {
  margin-top: 0.4rem;
}

.support-email {
  color: #16a34a;
  font-weight: 600;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: underline;
}

/* =========================
   FINAL BANNER & PRODUCT
========================= */
.final-cta-banner {
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.cta-banner-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111827;
}

.final-product-section {
  display: flex;
  justify-content: center;
}

.product-display {
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.product-image-container {
  position: relative;
  display: inline-block;
}

.main-product-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* savings badge */
.savings-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f97316;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.45);
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-amount {
  font-size: 1.1rem;
  font-weight: 800;
}

/* guarantee badge overlay */
.guarantee-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

/* =========================
   GUARANTEE BADGE
========================= */
.guarantee-badge {
  background: #facc15;
  color: #1f2937;

  border-radius: 999px;
  padding: 0.5rem 1rem;
  text-align: center;

  box-shadow: 0 8px 18px rgba(234, 179, 8, 0.45);
}

/* TEXT (MAIN) */
.guarantee-text {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 0.6;
  margin: 0;
}

/* SUBTEXT */
.guarantee-subtext {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.3rem;
  line-height: 0.6;
}

/* BOTTOM TEXT */
.guarantee-bottom {
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.25rem;
  line-height: 0.6;
  opacity: 0.9;
}

/* pricing */
.pricing-display {
  margin: 1.6rem 0 1.2rem;
}

.regular-price,
.special-price {
	
  font-size: 1rem;
  margin-bottom: 01.2rem;
}

.price-label,
.special-label {
  font-weight: 600;
  color: #4b5563;
}

.price-amount {
  text-decoration: line-through;
  color: #9ca3af;
  margin-left: 0.35rem;
}

.special-amount {
  margin-top: 0.25rem;
  font-weight: 800;
  color: #16a34a;
  margin-left: 0.35rem;
}

/* final CTA button */
.final-cta-button {
  margin-top: 0.8rem;
}

.btn-final-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-final-order:hover {
  background: #15803d;
  transform: translateY(1px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.5);
}

/* =========================
   FOOTER
========================= */
.footer-section {
  background: #111827;
  padding: 1.3rem 0;
  text-align: center;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

.legal-link {
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: none;
}

.legal-link:hover {
  color: #f9fafb;
}

.link-separator {
  color: #4b5563;
}

/* disclaimers */
.footer-disclaimers-full {
  background: #020617;
  color: #9ca3af;
  padding: 2rem 0;
}

.footer-disclaimers-full .disclaimer-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-disclaimers-full p {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* bottom bar */
.footer-bottom-centered {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 1.2rem 0 1.5rem;
}

.footer-bottom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  align-items: center;
}

.social-media-rounded {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1f2937;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-link:hover {
  background: #16a34a;
  color: #ffffff;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* =========================
   URGENCY BANNER
========================= */
.urgency-banner {
  color: #f9fafb;
  padding: 0.9rem 0;
  position: sticky;
  bottom: 0;
  z-index: 20;
}

.urgency-banner .btn {
  border-radius: 999px;
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */
#scrollToTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #16a34a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.55);
  z-index: 50;
}

#scrollToTop:hover {
  background: #15803d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .security-card {
    padding: 1.7rem 1.4rem;
  }

  .cta-banner-title {
    font-size: 1.6rem;
  }

  .footer-bottom-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .security-title {
    font-size: 1.3rem;
  }

  .security-content p {
    font-size: 0.92rem;
  }

  .footer-legal-links {
    gap: 0.25rem;
  }

  .legal-link {
    font-size: 0.8rem;
  }

  #scrollToTop {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
}
/* Mobile Specific Adjustments */
@media (max-width: 991.98px) {
    .navbar-cta {
        display: block;
    }
    
    .navbar-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .product-showcase {
        min-height: 350px;
    }
    
    .product-placeholder {
        width: 280px;
        height: 350px;
    }
    
    .floating-badge {
        position: relative;
        margin: 0.5rem;
        position: static;
        display: inline-flex;
    }
    
    .certification-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .btn-hero,
    .btn-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .product-placeholder {
        width: 260px;
        height: 320px;
        padding: 1rem;
    }
    
    .price-display {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cert-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .urgency-banner {
        padding: 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .floating-elements {
        opacity: 0.5;
    }
    
    .floating-element {
        width: 30px !important;
        height: 30px !important;
    }
    
    .product-placeholder {
        width: 240px;
        height: 300px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .certification-card {
        padding: 1.2rem 0.8rem;
    }
    
    .cert-title {
        font-size: 0.9rem;
    }
    
    .cert-description {
        font-size: 1.0rem;
    }
}

/* Desktop Improvements */
@media (min-width: 992px) {
    .navbar-cta {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        display: flex;
        align-items: center;
    }
    
    .navbar-cta .btn {
        width: auto;
        margin-bottom: 0;
    }
    
    .hero-section {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
        margin: 10;
    }
    
    .trust-indicators .row {
        justify-content: start;
    }
    
    .product-glow {
        width: 300px;
        height: 300px;
    }
    
    .product-placeholder {
        width: 350px;
        height: 450px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.navbar-toggler:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: none !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-section {
        background: #fff;
        color: #000;
    }
    
    .btn-hero,
    .btn-cta {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.btn-ripple {
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
}
/* Custom Viewport Height Fix for iOS Safari */
:root {
    --vh: 1vh;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ff5722);
    z-index: 10001;
    width: 0%;
}

/* Smooth Scrolling Toggle */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto; /* Instant jump on mobile to prevent jank */
    }
}

/* Accessibility Focus States */
.user-is-tabbing *:focus {
    outline: 3px solid #ffc107 !important;
    outline-offset: 4px;
}

/* Button Ripple Animation */
@keyframes ripple-animation {
    from { transform: scale(0); opacity: 0.5; }
    to { transform: scale(4); opacity: 0; }
}