/* ── FADE IN ── */
body {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── VARIABLES ── */
:root {
  --navy:    #004063;
  --teal:    #1B8693;
  --green:   #6DA900;
  --gold:    #d4a92a;
  --gray-bg: #f1f2f3;
  --font:    'Red Hat Display', sans-serif;
}

/* ── BASE ── */
body {
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
}

/* ── UTILITIES ── */
.bg-navy  { background: var(--navy); }
.bg-teal  { background: var(--teal); }
.bg-green { background: var(--green); }
.bg-white { background: #fff; }
.bg-gray  { background: var(--gray-bg); }

.color-navy  { color: var(--navy); }
.color-teal  { color: var(--teal); }
.color-green { color: var(--green); }

.divider-navy  { background: var(--navy) !important; }
.divider-teal  { background: var(--teal) !important; }
.divider-green { background: var(--green) !important; }
.divider-gold  { background: var(--gold) !important; }
.divider-gray  { background: #aaa; }

/* ── HEADER ── */
.site-header {
  padding: 90px 140px;
}

.header-logo img {
  width: 275px;
  height: 108px;
}

.nav-product-logos {
  display: flex;
  align-items: center;
  gap: 64px;
}

.nav-product-logos a img {
  height: 56px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 28px;
  padding: 48px 40px 28px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin: 30px 0 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav img {
  height: 36px;
  width: auto;
}

/* ── HERO ── */
.hero {
  background: var(--gray-bg);
  padding: 110px 140px;
}

.hero p {
  font-size: 32px;
  line-height: 2.2;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 0;
}

/* ── PRODUCT SECTIONS ── */
.product-section {
  display: flex;
  min-height: 800px;
}

.product-left {
  width: 50%;
  padding: 80px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-right {
  width: 50%;
  padding: 120px;
  display: flex;
  align-items: flex-start;
}

.product-logo-wrap {
  text-align: left;
}

.product-logo {
  height: 60px;
  width: auto;
  display: block;
  padding: 0 50px;
}

.product-divider {
  width: 100px;
  height: 6px;
  background: #fff;
}

.product-body p {
  font-size: 22px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.2rem;
  padding: 0 50px;
}

.product-body p:last-child { margin-bottom: 0; }

.product-body p strong {
  color: #fff;
  font-weight: 700;
}

/* ── LISTS ── */
.product-lists {
  display: flex;
  gap: 64px;
  width: 100%;
}

.list-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.list-divider {
  width: 80px;
  height: 6px;
  background: var(--navy);
}

.list-col ul {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-col-left ul li {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.list-col-right ul li {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* List colors per section */
#axypro .list-col ul li { color: var(--navy); }
#axyzim .list-col ul li { color: var(--teal); }
#axybio .list-col ul li { color: var(--green); }

/* ── AXYMIX ── */
#axymix {
  min-height: 800px;
  padding-bottom: 100px;
}

#axymix .product-logo {
  height: 90px;
  margin-bottom: 40px;
}

#axymix .product-right {
  align-items: center;
  justify-content: center;
}

#axymix .product-divider {
  background: #aaa;
}

.axymix-body p {
  font-size: 22px;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 0.6rem;
  padding: 0 50px;
}

.axymix-body p strong { color: #3a3a3a; font-weight: 800; }
.axymix-body p strong.color-navy  { color: var(--navy); }
.axymix-body p strong.color-teal  { color: var(--teal); }
.axymix-body p strong.color-green { color: var(--green); }

.axymix-body p:last-child { margin-bottom: 0; }

.axymix-products {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FOOTER ── */
#footer {
  min-height: 500px;
  overflow: visible;
}

#footer .product-left,
#footer .product-right {
  min-height: auto;
  overflow: visible;
}

.brochure-img {
  width: 290px;
  height: auto;
  display: block;
  margin: -210px auto 0;
}

.footer-body p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 0.6rem;
  padding: 0;
}

.footer-label {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green) !important;
}

.footer-body a {
  text-decoration: none;
  color: var(--green);
}

#footer .product-divider {
  background: var(--gold);
  margin-left: 0;
}

.made-in-belgium {
  width: 200px;
  height: auto;
  display: block;
}

/* ── RESPONSIVE 992 ── */
@media (max-width: 992px) {
  .site-header { padding: 40px; }
  .nav-product-logos { gap: 40px; }
  .nav-product-logos a img { height: 44px; }
  .hero { padding: 80px 40px; }
  .hero p { font-size: 24px; }
}

/* ── RESPONSIVE 768 ── */
@media (max-width: 768px) {
  .site-header { padding: 28px 24px; }
  .header-logo img { width: auto; height: 70px; }
  .nav-product-logos { display: none; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .hero { padding: 64px 24px; }
  .hero p { font-size: 22px; }
  .product-section { flex-direction: column; }
  .product-left,
  .product-right { width: 100%; padding: 64px 24px; }
  .product-logo-wrap .product-logo { padding: 0; margin-bottom: 40px; }
  .product-body p { padding: 0; }
  .product-divider { display: none; }
  .product-lists { flex-direction: column; gap: 32px; }
  .list-col-right .list-divider { display: none; }
  .brochure-img { margin: -160px auto 0; }
  #footer .product-lists { flex-direction: column; }
}