:root {
  --navy: #153f67;
  --navy-dark: #0f3559;
  --orange: #f5a623;
  --green: #28a745;
  --green-dark: #1f8c3a;
  --cream: #f9f1e6;
  --ink: #2b2b2b;
  --muted: #6b7280;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

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

body {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
  padding-top: 70px;
}

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

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

ul {
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.fas::before {
  font-weight: 700;
  margin-left: 0.25rem;
}

.fa-arrow-right::before,
.fa-angle-right::before {
  content: ">";
}

.fa-star::before {
  content: "*";
}

.fa-lock::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0;
  margin-right: 0.35rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2'><rect x='5' y='11' width='14' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>")
    no-repeat center;
  background-size: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Lato", sans-serif;
  color: var(--navy);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row > [class*="col-"] {
  padding: 0.75rem;
}

.col-12 {
  width: 100%;
}

.col-10 {
  width: 83.3333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.6667%;
}

.col-7 {
  width: 58.3333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.6667%;
}

.col-4 {
  width: 33.3333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.6667%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.text-blue {
  color: var(--navy);
}

.text-yellow {
  color: var(--orange);
}

.text-success {
  color: var(--green);
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background: #ffffff;
}

.bg-light {
  background: var(--cream);
}

.bg-dark {
  background: var(--navy);
  color: #ffffff;
}

.bg-blue {
  background: #e9f0f7;
}

.rounded {
  border-radius: var(--radius);
}

.rounded-circle {
  border-radius: 999px;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow);
}

.h-100 {
  height: 100%;
}

.fw-bold {
  font-weight: 700;
}

.shadow {
  box-shadow: var(--shadow);
}

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

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

.justify-content-center {
  justify-content: center;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-md-center {
  justify-content: center;
}

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

.align-items-end {
  align-items: flex-end;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-nowrap {
  white-space: nowrap;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

/* Spacing */
.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 0.75rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.my-2 {
  margin: 0.5rem 0;
}

.my-3 {
  margin: 1rem 0;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.p-0 {
  padding: 0;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.py-1 {
  padding: 0.25rem 0;
}

.py-2 {
  padding: 0.5rem 0;
}

.py-3 {
  padding: 1rem 0;
}

.py-5 {
  padding: 3rem 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* Header */
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 0;
  background: #ffffff;
  z-index: 10;
}

.fixed-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--orange);
}

.fixed-top img {
  margin-left: 2rem;
  height: 70px;
  display: block;
}

.trynow {
  position: fixed;
  right: 2rem;
  top: 1.5rem;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 12;
}

.trynow:hover {
  background: var(--green-dark);
}

.nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.nav li a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.nav-pills li a:hover {
  background: #eef3f8;
}

.nav-justified {
  width: 100%;
  justify-content: space-around;
}

.nav a {
  font-weight: 600;
  color: var(--navy);
}

.nav a:hover {
  color: #0a2e4d;
}

/* Hero */
#prod-description {
  padding-top: 1rem;
}

.prod-description h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.prod-description p {
  color: #313131;
}

.riskfree {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.riskfree:hover {
  background: var(--green-dark);
}

.secure-text {
  color: #707070;
  font-size: 0.9rem;
}

#list-icons .bg-white {
  padding: 1.2rem 0.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: 12px;
}

#list-icons p {
  font-size: 0.85rem;
}

#list-icons .row.justify-content-md-center {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#list-icons .row.justify-content-md-center > .col-5 {
  width: auto;
  padding: 0;
}

#list-icons .row.justify-content-md-center > .col-5:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(220px, 90%);
}

#list-icons img {
  width: 48px;
}

#headline h2 {
  font-size: 1.9rem;
  line-height: 1.35;
  font-weight: 800;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

#headline p {
  color: #3a3a3a;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--cream);
  margin: 0 auto;
}

.arrow2 {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--navy);
  margin: 0 auto;
}

/* Ingredients */
#ingredients-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 1.25rem;
  align-items: center;
}

#ingredients-section > [class*="col-"] {
  padding: 0;
  width: auto;
  max-width: none;
}

#ingredients-section img {
  width: 180px;
  height: 180px;
  max-width: none;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

#ingredients-section h4 {
  color: #b13b2f;
  font-size: 1.2rem;
}

#ingredients-section p {
  color: #2d2d2d;
}

/* Bonuses */
#bullets h1 {
  font-size: 2rem;
}

#bullets .bg-white {
  box-shadow: var(--shadow);
}

#bullets .bg-white.p-0 {
  border-radius: 16px;
  overflow: hidden;
}

#bullets .bg-dark {
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#bullets .bg-dark h2,
#bullets .bg-dark h4 {
  color: #ffffff;
}

.border-left {
  border-left: 1px solid #e2e2e2;
}

.border-2 {
  border-width: 2px;
}

.card-body-darker {
  background: #f5f7fb;
}

/* Guarantee section */
#moneyback {
  background: var(--navy);
  color: #ffffff;
}

#moneyback h2 {
  color: var(--orange);
  font-size: 2.2rem;
}

#moneyback p {
  color: #ffffff;
}

#ATC-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: space-around;
  text-align: center;
  gap: 1rem;
}

#ATC-section img {
  width: 72px;
  height: 72px;
  padding: 0.4rem;
  background: #f2f5f9;
  border-radius: 999px;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #f2f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  box-shadow: var(--shadow);
}

.benefit-icon::before {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-money::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8'/><path d='M12 8v8'/><path d='M9 10h6'/><path d='M9 14h6'/></svg>");
}

.icon-truck::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='8' width='12' height='6' rx='1'/><path d='M15 10h4l2 2v2h-6z'/><circle cx='7' cy='16' r='2'/><circle cx='17' cy='16' r='2'/></svg>");
}

.icon-percent::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='2'/><circle cx='16' cy='16' r='2'/><path d='M7 17l10-10'/></svg>");
}

.icon-badge::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8'/><path d='M8.5 12l2.5 2.5 4.5-5'/></svg>");
}

.icon-nobill::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='7' width='16' height='10' rx='2'/><path d='M4 10h16'/><path d='M6 18l12-12'/></svg>");
}

/* FAQ */
#faq h2 {
  color: var(--navy);
}

#faq h3 {
  color: var(--orange);
}

#accordion {
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.border {
  border: 1px solid #e3e3e3;
}

.card-deck {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card-deck .card {
  flex: 1 1 280px;
  max-width: 340px;
}

/* Footer */
#main-footer {
  background: var(--navy-dark);
  color: #ffffff;
}

#main-footer h6 {
  color: #ffffff;
}

#main-footer p,
#main-footer a {
  color: #e6eef5;
  font-size: 0.9rem;
}

#main-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

#main-footer ul li {
  list-style: none;
}

/* Responsive */
@media (min-width: 768px) {
  .col-md-2 {
    width: 16.6667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333%;
  }
  .col-md-8 {
    width: 66.6667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333%;
  }
  .col-md-11 {
    width: 91.6667%;
  }

  .d-md-block {
    display: block;
  }

  .d-md-none {
    display: none;
  }

  #ingredients-section {
    grid-template-columns: 240px 1fr;
    justify-items: start;
    text-align: left;
    gap: 2.2rem;
  }

  #ingredients-section img {
    width: 200px;
    height: 200px;
  }

  #list-icons .row.justify-content-md-center {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #list-icons .row.justify-content-md-center > .col-5:last-child {
    grid-column: auto;
    width: auto;
  }

  #ATC-section {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .p-md-2 {
    padding: 0.5rem;
  }

  .p-md-3 {
    padding: 1rem;
  }

  .p-md-4 {
    padding: 1.5rem;
  }

  .p-md-5 {
    padding: 3rem;
  }

  .pb-md-3 {
    padding-bottom: 1rem;
  }

  .pb-md-0 {
    padding-bottom: 0;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem;
  }

  .pb-md-5 {
    padding-bottom: 3rem;
  }

  .mt-md-0 {
    margin-top: 0;
  }

  .mt-md-3 {
    margin-top: 1rem;
  }

  .mt-md-4 {
    margin-top: 1.5rem;
  }

  .mt-md-5 {
    margin-top: 3rem;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem;
  }

  .m-md-2 {
    margin: 0.5rem;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem;
  }

  .mb-md-3 {
    margin-bottom: 1rem;
  }
  .mb-md-5 {
    margin-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    width: 16.6667%;
  }
  .col-lg-4 {
    width: 33.3333%;
  }
  .col-lg-5 {
    width: 41.6667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-8 {
    width: 66.6667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333%;
  }
  .col-lg-11 {
    width: 91.6667%;
  }

  .d-lg-block {
    display: block;
  }

  .d-lg-none {
    display: none;
  }

  .pl-lg-3 {
    padding-left: 1rem;
  }

  .mt-lg-4 {
    margin-top: 1.5rem;
  }

  .mb-lg-5 {
    margin-bottom: 3rem;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 100px;
  }

  .fixed-top img {
    margin-left: 1rem;
  }

  .nav {
    gap: 1rem;
  }

  .trynow {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 104px;
  }

  .container {
    width: min(96vw, 560px);
  }

  .row > [class*="col-"] {
    padding: 0.5rem;
  }

  .fixed-top {
    padding: 0.5rem 0;
  }

  .fixed-top img {
    height: 56px;
    margin: 0 auto;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .prod-description h2 {
    font-size: 2rem;
  }

  .prod-description h4 {
    font-size: 0.95rem;
  }

  .prod-description p {
    font-size: 0.98rem;
  }

  .riskfree {
    width: min(320px, 90%);
    justify-content: center;
    margin: 0 auto;
    font-size: 0.98rem;
    padding: 0.65rem 1.4rem;
  }

  .secure-text {
    font-size: 0.82rem;
  }

  #headline h2 {
    font-size: 1.55rem;
  }

  #headline p {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  h4 {
    font-size: 1rem;
  }

  #list-icons .bg-white {
    padding: 0.9rem 0.6rem;
  }

  #list-icons img {
    width: 44px;
  }

  #ingredients-section img {
    width: 160px;
    height: 160px;
    max-width: 100%;
  }

  #ingredients-section h4 {
    font-size: 1.05rem;
  }

  #ingredients-section p {
    font-size: 0.95rem;
  }

  #bullets .bg-dark {
    padding: 0.85rem;
  }

.border-left {
  border-left: none;
  border-top: 1px solid #e2e2e2;
}
}

.cookie-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Montserrat", "Lato", sans-serif;
}

.cookie-popup.is-visible {
  display: flex;
}

.cookie-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 53, 89, 0.6);
}

.cookie-popup__card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem 2.2rem 2rem;
  width: min(520px, 92vw);
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 53, 89, 0.35);
  animation: popupFloat 0.45s ease-out;
}

.cookie-popup__pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff4e1;
  color: #c66a00;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.cookie-popup__card h2 {
  margin: 1rem 0 0.6rem;
  font-size: 1.7rem;
  color: var(--navy);
}

.cookie-popup__card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.cookie-popup__cta {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, #f5a623, #f08f00);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 22px rgba(240, 143, 0, 0.3);
  width: 100%;
}

.cookie-popup__cta:hover {
  transform: translateY(-2px);
}

.cookie-popup__close {
  margin-top: 0.75rem;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-popup__fineprint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #9aa0a6;
}

@keyframes popupFloat {
  from {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .cookie-popup__card {
    padding: 2rem 1.5rem 1.6rem;
  }

  .cookie-popup__card h2 {
    font-size: 1.4rem;
  }
}
