
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: 'Open Sans', sans-serif;
} */
body {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.alpha-hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* font-family: Arial, Helvetica, sans-serif; */
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(10, 10, 10, 0.9) 46%, rgba(20, 8, 6, 0.82) 100%),
    radial-gradient(circle at 20% 50%, rgba(154, 23, 0, 0.18), transparent 32%),
    radial-gradient(circle at 80% 45%, rgba(154, 23, 0, 0.16), transparent 28%),
    url("images/alpha-hero-bg.jpg") center center / cover no-repeat;
}

.alpha-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.06)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.alpha-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 120px 20px 35px 20px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 28px;
}

.alpha-hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alpha-product-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alpha-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
}

.alpha-glow-1 {
  width: 180px;
  height: 180px;
  background: rgba(154, 23, 0, 0.28);
  left: 40px;
  bottom: 75px;
}

.alpha-glow-2 {
  width: 150px;
  height: 150px;
  background: rgba(154, 23, 0, 0.2);
  right: 45px;
  top: 55px;
}


.alpha-product-main {
  position: relative;
  z-index: 3;
  width: 290px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.55));
}

.alpha-product-back {
  position: absolute;
  z-index: 2;
  width: 190px;
  opacity: 0.85;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.alpha-product-back-left {
  left: 0px;
  top: 108px;
  transform: rotate(-14deg) scale(0.95);
}

.alpha-product-back-right {
  right: 0px;
  top: 108px;
  transform: rotate(14deg) scale(0.95);
}

.alpha-hero-right {
  max-width: 680px;
}

.alpha-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #d65b46;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* HEADER */
.alpha-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.mobile-product{
    display: none;
}
.desktop-product{
    display: block;
}
.alpha-logo {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  z-index: 60;
}

.alpha-logo span {
  color: #971a04;
}

.alpha-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.alpha-nav a {
  color: #eee;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.alpha-nav a:hover {
  color: #9a1700;
}

.alpha-header-icons {
  display: flex;
  gap: 14px;
  font-size: 18px;
  color: #fff;
  align-items: center;
  z-index: 60;
}

.alpha-header-icons span {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* HIDDEN CHECKBOX */
.alpha-menu-toggle {
  display: none;
}

/* HAMBURGER BUTTON */
.alpha-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 60;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.alpha-menu-btn span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 900px) {
  .alpha-header {
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
  }

  .mobile-product{
    display: block;
  }
  .desktop-product{
    display: none;
  }

  .alpha-logo {
    width: auto;
    text-align: left;
    font-size: 21px;
  }

  .alpha-menu-btn {
    display: flex;
  }

  .alpha-header-icons {
    display: none;
    width: auto;
    justify-content: flex-end;
    gap: 10px;
    font-size: 16px;
  }
  .alpha-hero-container {
    padding: 60px 12px 24px 12px;
  }

  .alpha-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .alpha-nav a {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .alpha-nav a:last-child {
    border-bottom: 0;
  }

  /* OPEN MENU */
  .alpha-menu-toggle:checked ~ .alpha-nav {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
  }

  /* ANIMATE HAMBURGER INTO X */
  .alpha-menu-toggle:checked + .alpha-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .alpha-menu-toggle:checked + .alpha-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .alpha-menu-toggle:checked + .alpha-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 575px) {
  .alpha-header {
    padding: 10px 12px;
  }

  .alpha-logo {
    font-size: 18px;
  }

  .alpha-menu-btn {
    width: 38px;
    height: 38px;
  }

  .alpha-menu-btn span {
    width: 18px;
  }

  .alpha-header-icons {
    font-size: 15px;
    gap: 8px;
  }

  .alpha-nav a {
    font-size: 14px;
    padding: 14px 16px;
  }
}

.alpha-hero-right h1 {
  font-size: 50px;
  line-height: 1.13;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.alpha-hero-right h1 span {
  display: block;
  /* color: #9a1700; */
  color: #b31d03;
}
.btn-logos{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    @media (max-width: 900px) {
        justify-content: center;
    }

    @media (max-width: 575px) {
        flex-direction: column;
    }
}
.alpha-certificates img{
    height: 90px;
}

.alpha-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin-bottom: 18px;
}

.alpha-feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.alpha-feature-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(154, 23, 0, 0.34);
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 600;
}

.alpha-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  /* margin-bottom: 22px; */
}

.alpha-btn {
  text-decoration: none;
  min-width: 165px;
  padding: 13px 22px;
  border-radius: 999px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.alpha-btn-primary {
  background: linear-gradient(135deg, #9a1700, #ba2a0f);
  color: #fff;
  box-shadow: 0 10px 22px rgba(154, 23, 0, 0.28);
}

.alpha-btn-primary:hover {
  transform: translateY(-2px);
}

.alpha-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.alpha-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.alpha-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.alpha-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alpha-badge img {
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
}

/* HEADER */
.alpha-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

/* LOGO */
.alpha-logo {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.alpha-logo span {
  /* color: #9a1700; */
  color: #971a04;
}

/* NAV */
.alpha-nav {
  display: flex;
  gap: 22px;
}

.alpha-nav a {
  color: #eee;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.alpha-nav a:hover {
  color: #9a1700;
}

/* ICONS */
.alpha-header-icons {
  /* display: flex; */
  gap: 14px;
  font-size: 18px;
  color: #fff;
}
.alpha-review-ribbon {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 16px;
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(189, 26, 14, 0.35),
    rgba(210, 217, 224, 0.205)
  );

  backdrop-filter: blur(6px);

  max-width: 620px;
}

/* IMAGE */
.alpha-review-img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

/* CONTENT */
.alpha-review-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* STARS */
.alpha-review-stars {
  font-size: 14px;
  color: #ffb400;
  font-weight: 600;
}

.alpha-review-stars span {
  color: #ffffff;
  margin-left: 6px;
  font-size: 13px;
}

/* TEXT */
.alpha-review-text {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

/* AUTHOR */
.alpha-review-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.alpha-review-author strong {
  color: #ffffff;
}

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.alpha-header,
.alpha-hero-container,
.alpha-review-ribbon,
.alpha-cta-group,
.alpha-nav {
  min-width: 0;
}

.alpha-review-content {
  min-width: 0;
}

.alpha-review-text {
  word-wrap: break-word;
}

.alpha-top-ribbon {
  position: relative;
  width: 100%;
  text-align: center;

  padding: 14px 16px;

  /* background: linear-gradient(
    135deg,
    #a3220a,
    #7e1607
  ); */
  background-color: #971a04;

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;

  z-index: 9;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* TEXT */
.alpha-top-ribbon p {
  margin: 0;
  line-height: 1.3;
}

.alpha-top-ribbon span {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* CENTER POINTER */
.alpha-top-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #7e1607;
}

/* subtle shine effect (premium look) */
.alpha-top-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0.4;
  pointer-events: none;
}


.alpha-science-section {
  background: #f5f1ee;
  padding: 5px 20px 20px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  @media(max-width: 700px) {
    /* padding: 70px 20px 20px 20px; */
    gap: 0px;
  }
}

.alpha-science-top {
  max-width: 1300px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
}

.alpha-science-badge {
  display: flex;
  justify-content: center;
}

.alpha-science-badge-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(180deg, #191919 0%, #0f0f0f 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  border: 4px solid rgba(163, 34, 10, 0.12);
  text-align: center;
  padding: 18px;
}

.alpha-science-badge-inner span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.alpha-science-badge-inner strong {
  display: block;
  font-size: 38px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.alpha-science-badge-inner small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #d8b9b2;
}

.alpha-science-copy {
  /* max-width: 760px; */
}

.alpha-science-eyebrow {
  color: #a3220a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.alpha-science-copy h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #141414;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.alpha-science-copy p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: #4c4c4c;
}

.alpha-science-showcase {
  position: relative;
  padding: 10px 20px;
   @media (max-width: 480px) {
    padding: 30px 10px;
  }
}

.alpha-science-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  height: 300px;
  /* background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at center, rgba(163, 34, 10, 0.18), rgba(0, 0, 0, 0.06)),
    url("images/alpha-texture-bg.jpg") center center / cover no-repeat; */
  border-radius: 0;
 
}

.alpha-science-card {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 30px rgba(0, 0, 0, 0.16);
  padding: 0px 34px;
  display: grid;
  grid-template-columns: 1.2fr 340px;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(163, 34, 10, 0.08);
}

.alpha-science-card-content {
  /* max-width: 690px; */
}

.alpha-card-mini {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.alpha-science-card-content h3 {
  font-size: 40px;
  line-height: 1;
  color: #111111;
  font-weight: 800;
  margin-bottom: 20px;
}

.alpha-card-text {
  font-size: 19px;
  line-height: 1.6;
  color: #3e3e3e;
  margin-bottom: 24px;
}

.alpha-card-highlight {
  display: inline-block;
  width: 100%;
  /* background: linear-gradient(135deg, #a3220a, #7d1708); */
  background-color: #971a04;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(163, 34, 10, 0.18);
}

.alpha-science-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alpha-science-card-image img {
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.18));
}

/* Responsive */
@media (max-width: 1100px) {
  .alpha-science-copy h2 {
    font-size: 33px;
  }

  .alpha-card-text {
    font-size: 19px;
  }

  .alpha-science-card-content h3 {
    font-size: 46px;
  }

  .alpha-science-card {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 900px) {
  .alpha-science-top {
    grid-template-columns: 1fr;
    /* text-align: center; */
    gap: 22px;
  }

  .alpha-science-copy {
    max-width: 100%;
  }

  .alpha-science-showcase {
    /* padding-top: 20px;
     */
    padding: 20px 0px 0px 0px;
  }

  .alpha-science-showcase::before {
    height: 260px;
  }

  .alpha-science-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 24px 28px;
  }

  .alpha-science-card-content {
    max-width: 100%;
  }

  .alpha-science-card-image img {
    max-width: 240px;
  }
}

@media (max-width: 767px) {
  .alpha-science-section {
    padding: 5px 16px 10px 16px;
  }

  .alpha-science-badge-inner {
    width: 150px;
    height: 150px;
  }

  .alpha-science-badge-inner span {
    font-size: 15px;
  }

  .alpha-science-badge-inner strong {
    font-size: 30px;
  }

  .alpha-science-badge-inner small {
    font-size: 12px;
  }

  .alpha-science-copy h2 {
    font-size: 27px;
  }

  .alpha-science-copy p:last-child {
    font-size: 16px;
    line-height: 1.6;
  }

  .alpha-science-showcase::before {
    height: 220px;
  }

  .alpha-card-mini {
    font-size: 16px;
  }

  .alpha-science-card-content h3 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .alpha-card-text {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .alpha-card-highlight {
    font-size: 16px;
    padding: 14px 14px;
  }

  .alpha-science-card-image img {
    max-width: 200px;
  }
}

@media (max-width: 580px) {
  .alpha-science-card {
    padding: 28px 10px;
  }
}

@media (max-width: 480px) {
  .alpha-science-copy h2 {
    font-size: 23px;
  }

  .alpha-science-card {
    /* padding: 28px 18px 24px; */
    border-radius: 14px;
  }

  .alpha-card-text {
    font-size: 15px;
  }

  .alpha-card-highlight {
    font-size: 15px;
  }
}



/* RESPONSIVE */
@media (max-width: 767px) {
  .alpha-top-ribbon {
    font-size: 15px;
    padding: 12px 10px;
  }

  .alpha-top-ribbon span {
    font-size: 13px;
  }

  .alpha-top-ribbon::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #7e1607;
    bottom: -8px;
  }
}




@media (max-width: 1200px) {
  .alpha-hero-container {
    max-width: 1100px;
    padding: 95px 24px 34px 24px;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
  }

  .alpha-hero-right h1 {
    font-size: 36px;
  }

  .alpha-subtext {
    font-size: 17px;
  }

  .alpha-product-visual {
    max-width: 390px;
    height: 350px;
  }

  .alpha-product-main {
    width: 255px;
  }

  .alpha-product-back {
    width: 170px;
  }

  .alpha-certificates img {
    height: 74px;
  }

  .alpha-review-ribbon {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .alpha-header {
    padding: 14px 18px;
  }

  .alpha-logo {
    font-size: 22px;
  }

  .alpha-nav {
    gap: 16px;
  }

  .alpha-nav a {
    font-size: 14px;
  }

  .alpha-header-icons {
    gap: 10px;
    font-size: 17px;
  }

  .alpha-hero-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 22px;
    padding: 90px 20px 30px 20px;
  }

  .alpha-hero-right h1 {
    font-size: 33px;
    line-height: 1.18;
  }

  .alpha-subtext {
    font-size: 16px;
    line-height: 1.55;
  }

  .alpha-product-visual {
    max-width: 340px;
    height: 320px;
  }

  .alpha-product-main {
    width: 225px;
  }

  .alpha-product-back {
    width: 150px;
  }

  .alpha-product-back-left {
    left: 4px;
    top: 100px;
  }

  .alpha-product-back-right {
    right: 4px;
    top: 100px;
  }

  .alpha-certificates img {
    height: 66px;
  }

  .alpha-btn {
    min-width: 150px;
    padding: 12px 18px;
  }
}

@media (max-width: 900px) {
  /* .alpha-header {
    padding: 12px 16px;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  } */

  /* .alpha-logo {
    font-size: 21px;
    text-align: center;
    width: 100%;
  }

  .alpha-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    width: 100%;
  }

  .alpha-header-icons {
    justify-content: center;
    width: 100%;
  } */

  .alpha-hero {
    min-height: auto;
    padding-top: 8px;
  }

  .alpha-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    /* padding: 125px 18px 34px 18px; */
  }

  .alpha-hero-left {
    order: 1;
  }

  .alpha-hero-right {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
  }

  .alpha-product-visual {
    max-width: 340px;
    height: 310px;
    margin: 0 auto;
  }

  .alpha-product-main {
    width: 215px;
  }

  .alpha-product-back {
    width: 145px;
  }

  .alpha-product-back-left {
    left: 8px;
    top: 95px;
  }

  .alpha-product-back-right {
    right: 8px;
    top: 95px;
  }

  .alpha-hero-right h1 {
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: -0.6px;
  }

  .alpha-subtext {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .alpha-cta-group {
    justify-content: center;
  }

  .alpha-certificates {
    display: flex;
    justify-content: center;
  }

  .alpha-certificates img {
    height: 64px;
    width: auto;
    margin: 0 auto;
  }

  .alpha-review-ribbon {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .alpha-header {
    padding: 12px 14px;
  }

  .alpha-logo {
    font-size: 19px;
  }

  .alpha-nav {
    gap: 10px 14px;
  }

  .alpha-nav a {
    font-size: 13px;
  }

  .alpha-header-icons {
    font-size: 16px;
  }

  .alpha-hero-container {
    /* padding: 122px 16px 28px 16px; */
    gap: 14px;
  }

  .alpha-product-visual {
    height: 280px;
    max-width: 300px;
  }

  .alpha-product-main {
    width: 180px;
  }

  .alpha-product-back {
    width: 118px;
  }

  .alpha-product-back-left {
    left: 8px;
    top: 90px;
  }

  .alpha-product-back-right {
    right: 8px;
    top: 90px;
  }

  .alpha-glow-1 {
    width: 140px;
    height: 140px;
    left: 26px;
    bottom: 58px;
  }

  .alpha-glow-2 {
    width: 115px;
    height: 115px;
    right: 28px;
    top: 45px;
  }

  .alpha-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
  }

  .alpha-hero-right h1 {
    font-size: 28px;
    line-height: 1.16;
    margin-bottom: 14px;
  }

  .alpha-subtext {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .alpha-cta-group {
    gap: 10px;
    margin-bottom: 18px;
  }

  .alpha-btn {
    min-width: 138px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .alpha-certificates img {
    height: 56px;
  }

  .alpha-review-ribbon {
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .alpha-review-img {
    width: 50px;
    height: 50px;
    border-radius: 7px;
    flex-shrink: 0;
  }

  .alpha-review-stars {
    font-size: 13px;
  }

  .alpha-review-stars span {
    font-size: 12px;
  }

  .alpha-review-text {
    font-size: 14px;
    line-height: 1.35;
  }

  .alpha-review-author {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .alpha-header {
    padding: 10px 12px;
  }

  .alpha-logo {
    font-size: 18px;
  }

  .alpha-nav {
    gap: 8px 12px;
  }

  .alpha-nav a {
    font-size: 12.5px;
  }

  .alpha-header-icons {
    gap: 10px;
    font-size: 15px;
  }

  .alpha-hero-container {
    /* padding: 118px 14px 26px 14px; */
  }

  .alpha-product-visual {
    height: 250px;
    max-width: 265px;
  }

  .alpha-product-main {
    width: 160px;
  }

  .alpha-product-back {
    width: 104px;
  }

  .alpha-product-back-left {
    left: 4px;
    top: 82px;
  }

  .alpha-product-back-right {
    right: 4px;
    top: 82px;
  }

  .alpha-glow-1 {
    width: 120px;
    height: 120px;
    left: 24px;
    bottom: 50px;
  }

  .alpha-glow-2 {
    width: 95px;
    height: 95px;
    right: 22px;
    top: 42px;
  }

  .alpha-hero-right h1 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.4px;
  }

  .alpha-subtext {
    font-size: 14px;
    line-height: 1.55;
  }

  .alpha-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .alpha-btn {
    width: 100%;
    min-width: 100%;
  }

  .alpha-certificates img {
    height: 50px;
  }

  .alpha-review-ribbon {
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
  }

  .alpha-review-img {
    width: 46px;
    height: 46px;
  }

  .alpha-review-text {
    font-size: 13.5px;
  }

  .alpha-review-author {
    font-size: 11.5px;
  }
}

@media (max-width: 420px) {
  .alpha-header {
    padding: 10px 10px;
  }

  .alpha-logo {
    font-size: 17px;
  }

  .alpha-nav {
    gap: 8px 10px;
  }

  .alpha-nav a {
    font-size: 12px;
  }

  .alpha-header-icons {
    font-size: 14px;
  }

  .alpha-hero-container {
    /* padding: 116px 12px 24px 12px; */
  }

  .alpha-product-visual {
    height: 228px;
    max-width: 235px;
  }

  .alpha-product-main {
    width: 145px;
  }

  .alpha-product-back {
    width: 95px;
  }

  .alpha-product-back-left {
    left: 2px;
    top: 76px;
  }

  .alpha-product-back-right {
    right: 2px;
    top: 76px;
  }

  .alpha-hero-right h1 {
    font-size: 22px;
  }

  .alpha-subtext {
    font-size: 13.5px;
  }

  .alpha-certificates img {
    height: 44px;
  }

  .alpha-review-ribbon {
    padding: 9px;
    gap: 9px;
  }

  .alpha-review-img {
    width: 42px;
    height: 42px;
  }

  .alpha-review-stars {
    font-size: 12px;
  }

  .alpha-review-stars span {
    font-size: 11px;
  }

  .alpha-review-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .alpha-review-author {
    font-size: 11px;
  }
}


.alpha-guarantee-section {
  /* background: linear-gradient(180deg, #f4f1ef 0%, #ece7e3 100%); */
  padding: 40px 40px;
}

.alpha-guarantee-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  /* border: 1px solid rgba(163, 34, 10, 0.08); */
  /* border-radius: 24px; */
  /* padding: 30px 24px; */
  /* box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08); */
}

.alpha-guarantee-badge-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alpha-guarantee-badge {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #d14a2b 0%, #a3220a 52%, #711505 100%);
  padding: 14px;
  position: relative;
  box-shadow: 0 20px 35px rgba(163, 34, 10, 0.22);
}

.alpha-guarantee-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.24);
}

.alpha-guarantee-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alpha-guarantee-badge-inner::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  background: linear-gradient(135deg, #d14a2b 0%, #a3220a 100%);
  z-index: 0;
}

.alpha-guarantee-top,
.alpha-guarantee-bottom,
.alpha-guarantee-days {
  position: relative;
  z-index: 1;
}

.alpha-guarantee-top,
.alpha-guarantee-bottom {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.alpha-guarantee-top {
  margin-bottom: 14px;
}

.alpha-guarantee-bottom {
  margin-top: 14px;
}

.alpha-guarantee-days {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.alpha-guarantee-content {
  /* max-width: 760px; */
  max-width: 100%;
}

.alpha-guarantee-eyebrow {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #a3220a;
  margin-bottom: 5px;
}

.alpha-guarantee-content h2 {
  font-size: 40px;
  line-height: 1.16;
  font-weight: 800;
  color: #121212;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.alpha-guarantee-content h2 span {
  display: block;
  color: #1b1b1b;
}

.alpha-guarantee-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #404040;
  margin-bottom: 10px;
}

.alpha-guarantee-content p strong {
  color: #1b1b1b;
  font-weight: 800;
}

.alpha-guarantee-actions {
  margin-top: 10px;
}

.alpha-guarantee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #a3220a, #971a04);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(163, 34, 10, 0.2);
  transition: 0.25s ease;
}

.alpha-guarantee-btn:hover {
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 1100px) {
  .alpha-guarantee-wrap {
    grid-template-columns: 240px 1fr;
    gap: 30px;
    padding: 40px 32px;
  }

  .alpha-guarantee-content h2 {
    font-size: 38px;
  }

  .alpha-guarantee-content p {
    font-size: 18px;
  }

  .alpha-guarantee-badge {
    width: 185px;
    height: 185px;
  }

  .alpha-guarantee-days {
    font-size: 36px;
  }

  .alpha-guarantee-top,
  .alpha-guarantee-bottom {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .alpha-guarantee-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }

  .alpha-guarantee-content {
    max-width: 100%;
  }

  .alpha-guarantee-actions {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .alpha-guarantee-section {
    padding: 0px 16px;
  }

  .alpha-guarantee-wrap {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .alpha-guarantee-badge {
    width: 160px;
    height: 160px;
  }

  .alpha-guarantee-days {
    font-size: 30px;
  }

  .alpha-guarantee-top,
  .alpha-guarantee-bottom {
    font-size: 14px;
  }

  .alpha-guarantee-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .alpha-guarantee-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .alpha-guarantee-btn {
    width: 100%;
    max-width: 240px;
    padding: 14px 22px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .alpha-guarantee-content h2 {
    font-size: 24px;
  }

  .alpha-guarantee-content p {
    font-size: 15px;
  }

  .alpha-guarantee-eyebrow {
    font-size: 13px;
  }
}


.alpha-benefits-strip {
  /* background: #f3f1ef; */
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(10, 10, 10, 0.9) 46%, rgba(20, 8, 6, 0.82) 100%),
    radial-gradient(circle at 20% 50%, rgba(154, 23, 0, 0.18), transparent 32%),
    radial-gradient(circle at 80% 45%, rgba(154, 23, 0, 0.16), transparent 28%),
    url("images/alpha-hero-bg.jpg") center center / cover no-repeat;
  padding: 56px 20px;
}

.alpha-benefits-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.alpha-benefits-inner h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
  /* color: #111111; */
  /* color: #7e1607; */
  color: white;
  margin-bottom: 34px;
  letter-spacing: -1px;
}

.alpha-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 48px;
  align-items: center;
}

.alpha-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  /* color: #1b1b1b; */
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.alpha-check {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #971a04, #971a04);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(163, 34, 10, 0.16);
}

@media (max-width: 991px) {
  .alpha-benefits-inner h2 {
    font-size: 44px;
    margin-bottom: 28px;
  }

  .alpha-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .alpha-benefit-item {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .alpha-benefits-strip {
    padding: 44px 16px;
  }

  .alpha-benefits-inner h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 22px;
  }

  .alpha-benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .alpha-benefit-item {
    font-size: 17px;
    gap: 12px;
  }

  .alpha-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 19px;
  }
}




/* packages */

.alpha-packages {
  background: #f4f1ef;
  padding: 70px 20px;
}

.alpha-packages-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.alpha-package-card {
  /* background: #f1eeeb; */
  background-color: white;
  border: 2px solid #d8d2cc;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.alpha-package-card.featured {
  /* background: #f7ecd8; */
  border-color: #c34a14;
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(151, 26, 4, 0.16);
}

.alpha-package-head {
  text-align: center;
  padding: 10px 12px;
}

.alpha-package-head-dark {
  background: #4a4747;
}

.alpha-package-head-red {
  background: #b83a11;
}

.alpha-package-label {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.alpha-package-body {
  position: relative;
  text-align: center;
  padding: 18px 18px 22px;
}

.alpha-package-body-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
}

.alpha-package-body h3 {
  margin: 0 0 2px;
  font-size: 32px;
  line-height: 1;
  color: #2446a8;
  font-weight: 900;
}

.alpha-package-supply {
  margin: 0 0 16px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.alpha-package-save-badge {
  z-index: 40;
  position: absolute;
  right: 20px;
  top: 52px;
  width: 94px;
  height: 94px;
  background: #ef2f1d;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.alpha-package-save-badge-small {
  font-size: 18px;
}

.alpha-package-image {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

.alpha-package-image img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.16));
}

.alpha-package-image.single img {
  width: 145px;
}

.alpha-package-image.two img {
  width: 146px;
  margin-left: -18px;
}

.alpha-package-image.two img:first-child {
  margin-left: 0;
}

.alpha-package-image.four img {
  width: 122px;
  margin-left: -38px;
  z-index: 0;
  position: relative;
}

.alpha-package-image.four img:first-child {
  margin-left: 0;
}

.alpha-package-price {
  margin-bottom: 14px;
  color: #d94a0f;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
}

.alpha-package-price .dollar {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 6px;
}

.alpha-package-price .per {
  font-size: 26px;
  font-weight: 500;
  color: #d94a0f;
  margin-bottom: 9px;
}

.alpha-package-strip {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.alpha-package-strip.gray {
  background: #8a8989;
  color: #fff;
}

.alpha-package-strip.red {
  background: #900700;
}

.alpha-package-strip.green {
  background: #2f9a3f;
}

.alpha-package-strip.navy {
  background: #2d4168;
}

.alpha-package-shipping-note {
  font-size: 14px;
  color: #444;
  font-weight: 700;
  margin: 4px 0 14px;
}

.alpha-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5bb49 0%, #eda02c 100%);
  color: #1a1a1a;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  margin: 8px 0 14px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.35), 0 8px 16px rgba(0,0,0,0.08);
}

.alpha-package-payments {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.alpha-package-payments img {
  height: 40px;
  width: auto;
}

.alpha-package-total {
  font-size: 16px;
  color: #4c4c4c;
  font-weight: 700;
  margin-bottom: 12px;
}

.alpha-package-total .old-price {
  text-decoration: line-through;
  color: #d94a0f;
  opacity: 0.7;
  margin-right: 4px;
}

.alpha-package-total strong {
  color: #222;
  font-size: 18px;
}

.alpha-package-guarantee {
  border: 2px solid #444;
  border-radius: 8px;
  padding: 10px 10px;
  background: #f8f8f8;
}

.alpha-package-guarantee span {
  display: block;
  font-size: 19px;
  color: #111;
  font-weight: 900;
  line-height: 1.25;
}

/* responsive */
@media (max-width: 1024px) {
  .alpha-packages-inner {
    gap: 16px;
  }

  .alpha-package-body h3 {
    font-size: 23px;
  }

  .alpha-package-price {
    font-size: 52px;
  }

  .alpha-package-btn {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .alpha-packages-inner {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .alpha-package-card.featured {
    transform: none;
  }
}

@media (max-width: 480px) {
  .alpha-packages {
    padding: 50px 14px;
  }

  .alpha-package-body {
    padding: 16px 14px 20px;
  }

  .alpha-package-body h3 {
    font-size: 22px;
  }

  .alpha-package-price {
    font-size: 46px;
  }

  .alpha-package-price .dollar {
    font-size: 28px;
  }

  .alpha-package-price .per {
    font-size: 14px;
  }

  .alpha-package-btn {
    min-height: 58px;
    font-size: 18px;
  }

  .alpha-package-image.single img {
    width: 105px;
  }

  .alpha-package-image.two img {
    width: 86px;
  }

  .alpha-package-image.four img {
    width: 66px;
  }

  .alpha-package-save-badge {
    width: 56px;
    height: 56px;
    font-size: 10px;
    right: 14px;
  }
}













/* why */

.alpha-why-section {
  background:
    linear-gradient(180deg, #0c0c0d 0%, #151010 100%);
  padding: 40px 20px;
  color: #ffffff;
}

.alpha-why-container {
  max-width: 1180px;
  margin: 0 auto;
}

.alpha-why-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.8px;
}

.alpha-why-top {
  display: grid;
  grid-template-columns: 1.2fr 360px;
  gap: 42px;
  align-items: start;
  /* margin-bottom: 40px; */
}

.alpha-why-content {
  max-width: 760px;
}

.alpha-why-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 10px;
}

.alpha-why-content h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.alpha-why-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.alpha-why-visual {
  background: linear-gradient(135deg, rgba(163, 34, 10, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(163, 34, 10, 0.35);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.alpha-why-visual img {
  width: 100%;
  max-width: 230px;
  border-radius: 18px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.alpha-why-benefits h3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 22px;
  color: #ffffff;
}

.alpha-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.alpha-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  /* background: rgba(255, 255, 255, 0.03); */
  background: linear-gradient(135deg, rgba(163, 34, 10, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px 18px;
}

.alpha-why-check {
  color: #a3220a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .alpha-why-title {
    font-size: 40px;
  }

  .alpha-why-top {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }

  .alpha-why-content h3,
  .alpha-why-benefits h3 {
    font-size: 32px;
  }

  .alpha-why-intro,
  .alpha-why-desc,
  .alpha-why-item {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .alpha-why-top {
    grid-template-columns: 1fr;
  }

  .alpha-why-content {
    max-width: 100%;
  }

  .alpha-why-visual {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    min-height: 280px;
  }

  .alpha-why-benefits h3 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .alpha-why-section {
    padding: 60px 16px;
  }

  .alpha-why-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .alpha-why-intro {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .alpha-why-content h3,
  .alpha-why-benefits h3 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .alpha-why-desc,
  .alpha-why-item {
    font-size: 15px;
    line-height: 1.65;
  }

  .alpha-why-item {
    padding: 14px 14px;
    gap: 12px;
  }

  .alpha-why-check {
    font-size: 19px;
  }

  .alpha-why-visual {
    min-height: 240px;
    padding: 20px;
  }

  .alpha-why-visual img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .alpha-why-title {
    font-size: 26px;
  }

  .alpha-why-content h3,
  .alpha-why-benefits h3 {
    font-size: 22px;
  }

  .alpha-why-visual {
    min-height: 220px;
  }
}


.alpha-shipping-promo {
  /* background: #a3220a; */
  background-color: #971a04;
  padding: 34px 20px;
  overflow: hidden;
}

.alpha-shipping-promo-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.alpha-shipping-badge {
  width: 130px;
  height: 130px;
  min-width: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #dfbf66 0%, #c79d39 58%, #9b7421 100%);
  padding: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  position: relative;
}

.alpha-shipping-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(70, 38, 0, 0.35);
}

.alpha-shipping-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2d582 0%, #cda245 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #191919;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.alpha-shipping-badge-top,
.alpha-shipping-badge-bottom {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.1;
}

.alpha-shipping-icon {
  font-size: 34px;
  line-height: 1;
  margin: 8px 0;
}

.alpha-shipping-content {
  max-width: 560px;
}

.alpha-shipping-content h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: -0.7px;
}

.alpha-shipping-content h2 span {
  color: #ffd86b;
}

.alpha-shipping-content p {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-transform: capitalize;
}

/* tablet */
@media (max-width: 900px) {
  .alpha-shipping-promo-inner {
    max-width: 760px;
    gap: 20px;
  }

  .alpha-shipping-badge {
    width: 115px;
    height: 115px;
    min-width: 115px;
  }

  .alpha-shipping-badge-top,
  .alpha-shipping-badge-bottom {
    font-size: 12px;
  }

  .alpha-shipping-icon {
    font-size: 28px;
  }

  .alpha-shipping-content h2 {
    font-size: 28px;
  }

  .alpha-shipping-content p {
    font-size: 16px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .alpha-shipping-promo {
    padding: 28px 16px;
  }

  .alpha-shipping-promo-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .alpha-shipping-badge {
    width: 104px;
    height: 104px;
    min-width: 104px;
  }

  .alpha-shipping-badge-top,
  .alpha-shipping-badge-bottom {
    font-size: 11px;
  }

  .alpha-shipping-icon {
    font-size: 24px;
    margin: 6px 0;
  }

  .alpha-shipping-content h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .alpha-shipping-content p {
    font-size: 14px;
    line-height: 1.45;
  }
}



.alpha-faq-section {
  background: #f3f1ef;
  padding: 70px 20px;
}

.alpha-faq-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  @media (max-width: 680px) {
    grid-template-columns: 1fr;
  }
}

.alpha-faq-item {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
}

/* remove default arrow */
.alpha-faq-item summary::-webkit-details-marker {
  display: none;
}

.alpha-faq-item summary {
  list-style: none;
}

.alpha-faq-question {
  position: relative;
  width: 100%;
  padding: 26px 72px 26px 28px;
  cursor: pointer;
  display: block;
}

.alpha-faq-question span {
  color: #000000;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
}

/* plus icon */
.alpha-faq-question::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #143768;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

/* minus icon when open */
.alpha-faq-item[open] .alpha-faq-question::after {
  content: "−";
}

.alpha-faq-answer {
  padding: 0 28px 20px;
}

.alpha-faq-item[open] .alpha-faq-question {
  padding-bottom: 12px;
}

.alpha-faq-item[open] .alpha-faq-answer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 28px;
}

.alpha-faq-answer p {
  color: #111111;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.alpha-faq-answer strong {
  font-weight: 800;
}

@media (max-width: 767px) {
  .alpha-faq-section {
    padding: 50px 16px;
  }

  .alpha-faq-question {
    padding: 20px 54px 20px 18px;
  }

  .alpha-faq-question span {
    font-size: 18px;
  }

  .alpha-faq-question::after {
    right: 18px;
    font-size: 28px;
  }

  .alpha-faq-answer {
    padding: 0 18px 20px;
  }

  .alpha-faq-item[open] .alpha-faq-answer::before {
    margin-bottom: 18px;
  }

  .alpha-faq-answer p {
    font-size: 16px;
    line-height: 1.65;
  }
}



.alpha-testimonials-section {
  background: #f3f1ef;
  padding: 5px 20px 20px 20px;
}

.alpha-testimonials-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.alpha-testimonials-heading {
  text-align: center;
  margin-bottom: 34px;
}

.alpha-testimonials-heading h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.8px;
  margin: 0;
}

.alpha-testimonials-heading h2 span {
  color: #a3220a;
}

.alpha-testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.alpha-testimonial-user {
  text-align: left;
}

.alpha-testimonial-user img {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  border: 2px solid #1b1b1b;
}

.alpha-testimonial-user h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
}

.alpha-testimonial-user p {
  margin: 0;
  font-size: 15px;
  color: #333333;
  line-height: 1.4;
}

.alpha-testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.alpha-testimonial-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: #111111;
}

.alpha-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.alpha-verified {
  font-size: 15px;
  color: #222222;
  letter-spacing: 0.2px;
}

.alpha-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.alpha-stars {
  color: #e5a800;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
}

.alpha-rating-badge {
  background: #1ea84a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* tablet */
@media (max-width: 900px) {
  .alpha-testimonials-heading h2 {
    font-size: 38px;
  }

  .alpha-testimonial-card {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }

  .alpha-testimonial-user img {
    width: 96px;
    height: 96px;
  }

  .alpha-testimonial-text {
    font-size: 17px;
    line-height: 1.65;
  }

  .alpha-verified {
    font-size: 14px;
  }

  .alpha-stars {
    font-size: 22px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .alpha-testimonials-section {
    padding: 20px 16px;
  }

  .alpha-testimonials-heading {
    margin-bottom: 24px;
  }

  .alpha-testimonials-heading h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .alpha-testimonial-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .alpha-testimonial-user {
    text-align: center;
  }

  .alpha-testimonial-user img {
    margin: 0 auto 10px;
  }

  .alpha-testimonial-text {
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }

  .alpha-testimonial-meta {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .alpha-verified {
    font-size: 13px;
  }

  .alpha-stars {
    font-size: 20px;
  }

  .alpha-rating-badge {
    font-size: 11px;
    padding: 5px 8px;
  }
}

.alpha-footer {
  background: linear-gradient(180deg, #0c0c0d 0%, #151010 100%);
  color: #ffffff;
  padding: 60px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.alpha-footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* grid-template-columns: 1.1fr 1.4fr; */
  /* gap: 50px; */
  padding-bottom: 36px;
}

.alpha-footer-brand h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 16px;
  color: #ffffff;
  letter-spacing: -0.8px;
}
.alpha-footer-brand img{
    /* height: 200px; */
}

.alpha-footer-logo-box{
    display: flex;
    align-items: start;
    gap: 10px;

    @media (max-width: 510px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.alpha-footer-brand h2 span {
  color: #a3220a;
}

.alpha-footer-brand p {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 20px;
}

.alpha-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alpha-footer-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(163, 34, 10, 0.14);
  border: 1px solid rgba(163, 34, 10, 0.45);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.alpha-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.alpha-footer-col h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #ffffff;
}

.alpha-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpha-footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.alpha-footer-col ul li a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.25s ease;
}

.alpha-footer-col ul li a:hover {
  color: #ffffff;
}

.alpha-footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.alpha-footer-disclaimer p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 8px;
}

.alpha-footer-bottom {
  margin-top: 8px;
  padding: 18px 20px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.alpha-footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

/* tablet */
@media (max-width: 991px) {
  .alpha-footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .alpha-footer-brand p {
    max-width: 100%;
  }

  .alpha-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 767px) {
  .alpha-footer {
    padding: 46px 16px 0;
  }

  .alpha-footer-top {
    gap: 28px;
    padding-bottom: 26px;
  }

  .alpha-footer-brand h2 {
    font-size: 30px;
  }

  .alpha-footer-brand p {
    font-size: 15px;
    line-height: 1.7;
  }

  .alpha-footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .alpha-footer-col h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .alpha-footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .alpha-footer-disclaimer {
    padding: 18px 0;
  }

  .alpha-footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
  }

  .alpha-footer-bottom {
    padding: 16px 12px 18px;
  }

  .alpha-footer-bottom p {
    font-size: 13px;
  }
}



.alpha-flex {
  display: flex;
  /* flex-direction: ; */
  /* background-color: white; */
  /* column-span: 1fr; */
  gap: 20px;
}





/* ingredients */




.alpha-ingredients {
  /* background: #f4f5f7; */
  padding: 70px 20px;
}

.alpha-ingredients-container {
  max-width: 1180px;
  margin: 0 auto;
}

.alpha-ingredients-heading {
  text-align: center;
  margin-bottom: 34px;
}

.alpha-ingredients-heading h2 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.alpha-ingredients-heading h2 span {
  color: #971a04;
}

.alpha-ingredients-sub {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #5c5c5c;
}

.alpha-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.alpha-ingredient-card {
  /* background: #dfeaf5; */
  background-color: rgb(244, 244, 244);
  border: 1px solid rgb(185, 184, 184);
  
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alpha-ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.alpha-ingredient-image {
  padding: 12px 12px 0;
}

.alpha-ingredient-image img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.alpha-ingredient-content {
  padding: 14px 16px 18px;
  text-align: center;
}

.alpha-ingredient-content h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.alpha-ingredient-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #3e3e3e;
}

.alpha-ingredient-card--featured {
  /* background: linear-gradient(180deg, #171717 0%, #0d0d0d 100%); */
}

.alpha-ingredient-card--featured .alpha-ingredient-content h3 {
  color: #ffffff;
}

.alpha-ingredient-card--featured .alpha-ingredient-content p {
  color: rgba(255, 255, 255, 0.82);
}

.alpha-ingredient-image--product {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 18px; */
}

.alpha-ingredient-image--product img {
  width: auto;
  height: 290px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 12px 20px rgba(151, 26, 4, 0.2));
}

/* tablet */
@media (max-width: 991px) {
  .alpha-ingredients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-ingredients-heading h2 {
    font-size: 34px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .alpha-ingredients {
    padding: 50px 16px;
  }

  .alpha-ingredients-heading {
    margin-bottom: 24px;
  }

  .alpha-ingredients-heading h2 {
    font-size: 28px;
  }

  .alpha-ingredients-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .alpha-ingredients-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .alpha-ingredient-image img {
    height: 190px;
  }

  .alpha-ingredient-image--product img {
    height: 180px;
  }

  .alpha-ingredient-content {
    padding: 14px 14px 16px;
  }

  .alpha-ingredient-content h3 {
    font-size: 15px;
  }

  .alpha-ingredient-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}






/* facts section */
.alpha-facts-section {
  background: linear-gradient(180deg, #0b0b0c 0%, #141010 100%);
  padding: 70px 20px;
  color: #ffffff;
}

.alpha-facts-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 34px;
  align-items: start;
}

.alpha-facts-image-box {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 20px;
}

.alpha-facts-image {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.alpha-facts-content {
  max-width: 760px;
}

.alpha-facts-kicker {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #c42a0d;
  margin-bottom: 10px;
}

.alpha-facts-content h2 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.alpha-facts-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.alpha-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alpha-fact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #971a04;
  border-radius: 12px;
  padding: 16px 16px;
}

.alpha-fact-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.alpha-fact-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.package-card-border {
  border: 2px solid gray !important;
}

/* tablet */
@media (max-width: 950px) {
  .alpha-facts-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .alpha-facts-image-box {
    position: static;
  }

  .alpha-facts-content h2 {
    font-size: 34px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .alpha-facts-section {
    padding: 50px 16px;
  }

  .alpha-facts-content h2 {
    font-size: 28px;
  }

  .alpha-facts-intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .alpha-facts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .alpha-fact-card h3 {
    font-size: 17px;
  }

  .alpha-fact-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}


.footer-ul{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  font-size: 15px;
  list-style-type: none

  
}

@media (max-width: 567px) {
  .footer-ul{
    font-size: 12px;
    flex-direction: column;
    gap: 10px;
  }
}
.footer-ul a{
  color: white;
  text-decoration: none;
}

.disclaim {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
}

