:root {
  --ink: #0e1b1f;
  --ink-soft: #264249;
  --sand: #f7f1e4;
  --paper: #fffdf9;
  --accent: #d97706;
  --accent-2: #0b7da2;
  --accent-3: #f3bb4b;
  --ok: #0e9f6e;
  --shadow: 0 14px 34px rgba(4, 17, 24, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #fff8ef 0%, #f2ece0 42%, #e8e3d8 100%);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

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

.top-bar {
  background: linear-gradient(92deg, #081b24 10%, #094155 55%, #0b7da2 100%);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
  background:
    linear-gradient(130deg, rgba(10, 17, 24, 0.9), rgba(8, 28, 38, 0.8)),
    url("./Assets/GreekManAbs1-3x2.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(243, 187, 75, 0.2), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe1a6;
  margin-bottom: 0.85rem;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  color: #d9ebf3;
  max-width: 60ch;
  font-size: 1.14rem;
}

.hero-visual {
  max-width: 480px;
  justify-self: center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
  animation: riseIn 900ms ease-out;
}

.hero-cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--accent-3), var(--accent));
  color: #201105;
  box-shadow: 0 12px 22px rgba(217, 119, 6, 0.35);
}

.btn-secondary {
  background: #ecf8ff;
  color: #04445a;
  box-shadow: 0 10px 20px rgba(11, 125, 162, 0.25);
}

.btn .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.trust-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  color: #ecf7fb;
  display: grid;
  gap: 0.45rem;
}

.trust-points li::before {
  content: "\2713 ";
  color: #80ffcc;
  font-weight: 700;
}

.social-proof {
  padding: 3rem 0;
}

.social-proof h2,
.benefits h2,
.faq h2,
.cta-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.social-proof > p {
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.photo-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  display: grid;
  place-items: center;
}

.photo-grid figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.photo-grid figure.is-centered img {
  object-position: center center;
}

.promise {
  padding: 0 0 3rem;
}

.promise-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
}

.promise-wrap div {
  padding: 2rem;
}

.promise-wrap h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.promise-wrap p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.promise-wrap img {
  height: 100%;
  object-fit: cover;
}

.benefits {
  padding: 0 0 3rem;
}

.metabolism {
  margin-top: 1.4rem;
}

.metabolism h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 0.4rem;
}

.metabolism p {
  margin-top: 0.8rem;
  color: #2f4e58;
  font-size: 1.08rem;
  max-width: 78ch;
}

.benefit-cards {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-cards article {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ffffff, #f4fbff);
  border: 1px solid rgba(11, 125, 162, 0.16);
  box-shadow: 0 8px 20px rgba(6, 33, 44, 0.08);
}

.benefit-cards h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.benefit-cards p {
  color: #38555e;
}

.cta-block {
  background: linear-gradient(140deg, #052736, #0a5068 68%, #0b7da2);
  color: #fff;
  padding: 3rem 0;
}

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

.cta-wrap p {
  margin: 0.65rem auto 0;
  max-width: 72ch;
  color: #d9f2fc;
}

.cta-wrap .hero-cta-row {
  justify-content: center;
}

.faq {
  padding: 3rem 0 6.5rem;
}

.faq details {
  margin-top: 0.8rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(4, 60, 78, 0.12);
  padding: 0.95rem 1rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.faq p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

footer {
  background: #061a23;
  color: #bedae6;
  padding: 1.2rem 0 5.8rem;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.footer-wrap a {
  color: #7ed5fb;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.55rem;
  background: rgba(5, 23, 31, 0.92);
  backdrop-filter: blur(8px);
}

.sticky-cta .btn {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero-content,
  .promise-wrap,
  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    max-width: 390px;
  }

  .promise-wrap img {
    max-height: 420px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .top-bar {
    font-size: 0.86rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .sticky-cta {
    grid-template-columns: 1fr;
  }
}
