/* ENZYLAC WEBSITE */
:root {
  --blue: #0b3c91;
  --blue-mid: #1767b4;
  --blue-light: #28a4e2;
  --blue-dark: #071f68;
  --yellow: #ffd51f;
  --white: #fff;
  --ink: #06357d;
  --text: #17385f;
  --soft: #f4f8ff;
  --border: #d8e6f6;
  --shadow: 0 18px 45px rgba(7, 31, 104, .16);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.5
}

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

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

button {
  font: inherit
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 88px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  background: rgba(6, 43, 117, .9);
  backdrop-filter: blur(16px);
  color: #fff;
}

.brand img {
  width: 150px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-menu a {
  position: relative;
  padding: 33px 0 29px
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s ease
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1)
}

.socials{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  width:auto;
  flex:0 0 auto;
}

.socials a{
  width:36px;
  height:36px;
  flex:0 0 36px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.75);
  border-radius:50%;
  color:#fff;
}

.socials a i{
  font-size:16px;
  line-height:1;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    radial-gradient(circle at 26% 18%, rgba(45, 166, 227, .32) 0 90px, transparent 91px),
    radial-gradient(circle at 76% 19%, rgba(54, 162, 222, .22) 0 170px, transparent 171px),
    linear-gradient(135deg, #173f92 0%, #155fb1 48%, #0d2e82 100%);
}

.hero::before {
  content: "?";
  position: absolute;
  left: -3%;
  bottom: -111px;
  font-size: 1100px;
  font-weight: 900;
  line-height: .8;
  color: rgba(41, 166, 224, .24);
  transform: rotate(-12deg)
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: auto;
  min-height: 760px;
  padding: 70px 6% 50px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 60px
}

.hero-copy {
  max-width: 670px
}

.hero-kicker {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1
}

.hero h1 {
  margin-top: 8px;
  color: var(--yellow);
  font-size: clamp(64px, 7vw, 89px);
  line-height: .92;
  letter-spacing: -.04em
}

.hero-lead {
  max-width: 600px;
  margin-top: 34px;
  font-size: 22px;
  line-height: 1.6
}

.prevention {
  margin-top: 28px
}

.prevention-label {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900
}

.symptom-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 16px
}

.symptom-card {
  text-align: center;
  font-weight: 700;
  font-size: 13px
}

.symptom-icon{
  width:72px;
  height:72px;
  margin:0 auto 12px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  background:#fff;

  box-shadow:0 8px 18px rgba(0,0,0,.13);
}

.symptom-icon img{
  width:48px;
  height:48px;
  object-fit:contain;
  display:block;
}

.dosage-note {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px
}

.dosage-note img {
  width: 110px
}

.dosage-note p {
  font-size: 17px;
  line-height: 1.25
}

.dosage-note strong {
  color: var(--yellow)
}

.hero-art {
  min-height: 600px;
  position: relative
}

.hero-food {
  position: absolute;
  width: min(76%, 650px);
  left: 0%;
  top: 9%;
  z-index: 2;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .3))
}

.hero-food {
  animation: heroFoodSpin 25s linear infinite;
  transform-origin: center center;
}

@keyframes heroFoodSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-pack {
  position: absolute;
  width: min(67%, 590px);
  right: 0;
  bottom: 0%;
  z-index: 3;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .25))
}

.question-mark {
  position: absolute;
  top: -40%;
  right: -200px;
  font-size: 1100px;
  font-weight: 900;
  color: rgba(68, 176, 228, .18);
  line-height: 1;

  transform: rotate(20deg);
  transform-origin: center;
}

/* .hero-note {
  position: absolute;
  top: 6%;
  right: 3%;
  transform: rotate(10deg);
  font-size: 34px;
  font-weight: 800;
  color: rgba(255, 255, 255, .35)
} */

.hero-note-curve{
position:absolute;
width:430px;
height:180px;
top:-1%;
left:18%;
z-index:4;
overflow:visible;
pointer-events:none;
transform:rotate(30deg);
}

.hero-note-curve text{
fill:rgba(255,255,255,.36);
font-size:32px;
font-weight:800;
letter-spacing:.02em;
}

.intro-strip {
  margin: 28px auto;
  width: min(94%, 1440px);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: center;
  gap: 40px;
  border-radius: 26px;
  background: linear-gradient(90deg, #f4f9ff, #e7f3ff);
  box-shadow: 0 10px 28px rgba(12, 69, 140, .08)
}

.intro-copy {
  padding-right: 28px;
  border-right: 1px solid #bdd5ec
}

.intro-copy h2 {
  color: var(--blue);
  font-size: 34px;
  margin-bottom: 14px
}

.intro-copy p {
  line-height: 1.7
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px
}

.benefit-icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border: 2px solid #b7d3f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 26px;
  background: #fff
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.5
}

.presentations {
  padding: 70px 7%;
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(60, 175, 225, .14) 0 170px, transparent 171px),
    linear-gradient(130deg, #1263af, #0c2f88)
}

.presentations h2 {
  font-size: clamp(38px, 4vw, 38px) !important;
}

.section-title {
  text-align: center;
  margin-bottom: 42px
}

.section-title h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1
}

.section-title span {
  display: block;
  width: 58px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--yellow)
}

.section-title p {
  margin-top: 14px;
  font-size: 18px
}

.light-title {
  text-align: left;
  max-width: 1400px;
  margin: 0 auto 26px
}

.light-title p,
.light-title h2 {
  color: #fff
}

.light-title span {
  margin-left: 0
}

.presentation-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  align-items: center;
  gap: 34px
}

.presentation-card {
  text-align: center
}

.presentation-card img {
  max-height: 30  0px;
  margin: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .2))
}

.presentation-card span {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900
}

.component-badge {
  width: 220px;
  height: 220px;
  margin: auto;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .06)
}

.component-badge small {
  font-size: 16px
}

.component-badge strong {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 32px;
  line-height: 1.05
}

.faq-section {
  padding: 78px 6% 56px;
  background: #fff
}

.faq-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px
}

.faq-item {
  border-bottom: 1px solid #dce8f5
}

.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff
}

.faq-item summary i {
  justify-self: end;
  transition: .2s ease
}

.faq-item[open] summary i {
  transform: rotate(45deg)
}

.faq-answer {
  padding: 0 38px 22px 52px;
  color: #3c5572;
  line-height: 1.7
}

.recipes-section {
  padding: 56px 5% 72px;
  background: #f6faff;
  border-top: 1px solid #dae7f4
}

.recipe-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.recipe-card {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
  border: 1px solid #d8e5f4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(7, 31, 104, .08)
}

.recipe-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover
}

.recipe-content {
  padding: 24px 22px
}

.recipe-content h3 {
  color: var(--blue);
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 14px
}

.recipe-content p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px
}

.recipe-button {
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 900;
  cursor: pointer
}

.recipe-button:hover {
  background: var(--blue);
  color: #fff
}

.where-section {
  padding: 56px 6%;
  background: #fff
}

.where-card {
  max-width: 1250px;
  margin: auto;
  padding: 42px 48px;
  border-radius: 26px;
  background: linear-gradient(90deg, #eaf5ff, #f7fbff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 10px 28px rgba(7, 31, 104, .08)
}

.section-kicker {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em
}

.where-card h2 {
  color: var(--ink);
  font-size: 44px;
  margin: 6px 0 12px
}

.where-card p {
  max-width: 700px
}

.where-button {
  flex: 0 0 auto;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900
}

.footer {
  padding: 56px 6% 18px;
  color: #fff;
  background: linear-gradient(135deg, #0a2c7b, #061c5c)
}

.footer-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr .8fr;
  gap: 50px
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px
}

.footer-grid p {
  max-width: 320px;
  font-size: 14px;
  opacity: .9
}

.lam-logo {
  width: 100px;
  margin-top: 24px
}

.footer h4 {
  margin-bottom: 16px
}

.footer a {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  opacity: .95
}

.footer-socials a {
  margin-bottom: 0
}

.footer-bottom {
  max-width: 1400px;
  margin: 36px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  opacity: .8
}

.recipe-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 30px;
  background: rgba(4, 20, 61, .72);
  backdrop-filter: blur(8px)
}

.recipe-modal.open {
  display: grid;
  place-items: center
}

.recipe-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 42px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3)
}

.recipe-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer
}

.recipe-modal-dialog h2 {
  color: var(--blue);
  margin-bottom: 14px
}

.recipe-modal-dialog h3 {
  color: var(--ink);
  margin: 24px 0 10px
}

.recipe-modal-dialog ul,
.recipe-modal-dialog ol {
  margin-left: 22px
}

.recipe-modal-dialog li {
  margin-bottom: 8px
}

.recipe-modal-dialog p {
  margin-bottom: 12px
}


/* ==========================================
   FOOTER SOCIALS - CENTERED
========================================== */

.footer-grid > div:last-child{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}

.footer-grid > div:last-child h4{
  width:auto;
  margin:0 0 18px;
  text-align:center;
}

.footer .footer-socials{
  width:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:0 auto;
}

.footer .footer-socials a{
  width:40px;
  height:40px;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.75);
  border-radius:50%;
  color:#fff;
  opacity:1;
  line-height:1;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer .footer-socials a i{
  display:block;
  width:auto;
  height:auto;
  margin:0;
  padding:0;
  font-size:17px;
  line-height:1;
}

.footer .footer-socials a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
  border-color:#fff;
}

@media(max-width:1100px) {
  .nav-menu {
    gap: 14px;
    font-size: 12px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 50px
  }

  .hero-art {
    min-height: 500px
  }

  .intro-strip {
    grid-template-columns: 1fr
  }

  .intro-copy {
    border-right: 0;
    border-bottom: 1px solid #bdd5ec;
    padding-right: 0;
    padding-bottom: 24px
  }

  .recipe-card {
    grid-template-columns: 1fr
  }

  .presentation-grid {
    grid-template-columns: 1fr 1fr
  }

  .component-badge {
    grid-column: 1 / -1
  }
}

@media(max-width:820px) {
  .site-header {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    padding: 16px 5%
  }

  .menu-toggle {
    display: block
  }

  .nav-menu {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0
  }

  .nav-menu.open {
    display: flex
  }

  .nav-menu a {
    padding: 8px 0
  }

  .nav-menu a::after {
    bottom: 2px
  }

  .site-header>.socials {
    display: none
  }

  .hero-inner {
    padding: 46px 7% 30px
  }

  .hero-copy {
    text-align: center;
    margin: auto
  }

  .hero-lead {
    margin-inline: auto
  }

  .symptom-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .dosage-note {
    justify-content: center;
    text-align: left
  }

  .hero-art {
    min-height: 430px
  }

  .hero-food {
    width: 75%;
    left: 0
  }

  .hero-pack {
    width: 46%
  }

  .benefit-list {
    grid-template-columns: 1fr
  }

  .presentation-grid {
    grid-template-columns: 1fr
  }

  .component-badge {
    grid-column: auto
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .recipe-grid {
    grid-template-columns: 1fr
  }

  .recipe-card {
    grid-template-columns: 38% 62%
  }

  .where-card {
    flex-direction: column;
    text-align: center
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}


@media(max-width:820px){
  .footer-grid > div:last-child{
    align-items:flex-start;
    text-align:left;
  }

  .footer-grid > div:last-child h4{
    text-align:left;
  }

  .footer .footer-socials{
    margin:0;
  }
}

@media(max-width:560px) {
  .brand img {
    width: 125px
  }

  .hero {
    min-height: auto
  }

  .hero-inner {
    min-height: auto
  }

  .hero-kicker {
    font-size: 34px
  }

  .hero h1 {
    font-size: 58px
  }

  .hero-lead {
    font-size: 18px
  }

  .hero-art {
    min-height: 340px
  }

  .hero-food {
    width: 82%
  }

  .hero-pack {
    width: 52%
  }

  .hero-note {
    font-size: 22px
  }

  .intro-strip {
    padding: 24px
  }

  .recipe-card {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column
  }

  .recipe-modal {
    padding: 12px
  }

  .recipe-modal-dialog {
    padding: 28px 20px
  }
}