:root {
  --navy: #0E2A47;
  --navy-2: #153A5F;
  --navy-3: #0A2038;
  --green: #2F8F46;
  --green-light: #7CC142;
  --paper: #F5F6EF;
  --paper-2: #ECEEE2;
  --gold: #C89B3C;
  --gold-light: #E6C777;
  --ink: #17201C;
  --ink-soft: #4E5A52;
  --card-shadow: 0 20px 45px -20px rgba(14, 42, 71, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
.display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
}

.eyebrow.dark {
  color: var(--green);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

section {
  padding: 110px 0;
}

@media(max-width:720px) {
  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media(max-width:480px) {
  section {
    padding: 52px 0;
  }
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 246, 239, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(14, 42, 71, 0.08);
  transition: all .3s ease;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px -6px rgba(47, 143, 70, 0.55);
  transition: transform .2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--paper);
  border-top: 1px solid rgba(14, 42, 71, 0.08);
  transition: max-height .35s ease, opacity .3s ease;
}

.mobile-menu.open {
  max-height: 80vh;
  opacity: 1;
  overflow-y: auto;
}

.mobile-menu a {
  padding: 15px 32px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(14, 42, 71, 0.06);
}

.mobile-menu a.nav-cta {
  margin: 14px 32px 18px;
  border-bottom: none;
}

@media(max-width:860px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media(min-width:861px) {
  .mobile-menu {
    display: none;
  }
}

/* ---------- HERO ---------- */
#page-home.active {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  background: radial-gradient(ellipse 120% 90% at 20% 0%, var(--navy-2) 0%, var(--navy) 45%, var(--navy-3) 100%);
  padding: 110px 0 36px;
  overflow: hidden;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero .container {
  width: 100%;
}

@media(max-width:900px) {
  #page-home.active {
    min-height: auto;
  }

  .hero {
    flex: none;
  }
}

@media(max-width:720px) {
  .hero {
    padding: 110px 0 50px;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 100px 0 40px;
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 193, 66, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  top: -160px;
  left: -220px;
}

.hero::after {
  bottom: -220px;
  right: -200px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.10), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(max-width:940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  color: #fff;
  line-height: 1.08;
  margin: 18px 0 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero p.lead {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 490px;
  margin-bottom: 22px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(47, 143, 70, 0.65);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px -8px rgba(47, 143, 70, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'IBM Plex Mono', monospace;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ---------- GLOBE (signature element) ---------- */
.globe-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 100%;
  margin: 0 auto;
  perspective: 1000px;
}

@media(max-width:520px) {
  .globe-wrap {
    width: 300px;
    height: 300px;
  }
}

.globe-sphere {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(124, 193, 66, 0.55), transparent 45%),
    radial-gradient(circle at 65% 70%, rgba(200, 155, 60, 0.28), transparent 50%),
    linear-gradient(160deg, #1c4a76 0%, #123454 55%, #0a2038 100%);
  box-shadow:
    inset -18px -18px 60px rgba(0, 0, 0, 0.55),
    inset 14px 10px 40px rgba(124, 193, 66, 0.18),
    0 30px 70px -20px rgba(0, 0, 0, 0.6);
  animation: spin 26s linear infinite;
}

.globe-sphere::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1.5px, transparent 1.5px 40px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1.5px, transparent 1.5px 40px);
  background-size: 100% 100%;
  mix-blend-mode: overlay;
  opacity: 0.7;
}

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

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

.globe-orbit {
  position: absolute;
  inset: 0;
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-path {
  fill: none;
  stroke: var(--green-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  opacity: 0.85;
  animation: dash 3.5s linear infinite;
}

.route-path.slow {
  animation-duration: 5s;
  stroke: var(--gold-light);
  opacity: 0.7;
}

@keyframes dash {
  to {
    stroke-dashoffset: -160;
  }
}

.route-dot {
  fill: #fff;
}

.route-dot.pulse {
  animation: pulse 2.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.8);
    opacity: 0.35;
  }
}

.globe-arrow {
  position: absolute;
  top: 14%;
  right: 6%;
  width: 26%;
  z-index: 5;
  filter: drop-shadow(0 6px 14px rgba(124, 193, 66, 0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

.globe-caption {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 18px;
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: var(--navy-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee-track span::before {
  content: '✦';
  color: var(--gold-light);
  font-size: 11px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

@media(max-width:860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-grid h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 22px;
}

.about-grid p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(14, 42, 71, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card .num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--green);
  font-weight: 600;
}

.stat-card .label {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.03em;
}

/* ---------- PRODUCTS ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 12px 0 10px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media(max-width:920px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(14, 42, 71, 0.07);
  box-shadow: var(--card-shadow);
  transform-style: preserve-3d;
  transition: transform .12s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 193, 66, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 30px 60px -20px rgba(14, 42, 71, 0.4);
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transform: translateZ(30px);
  box-shadow: 0 10px 20px -8px rgba(47, 143, 70, 0.5);
}

.product-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.product-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  transform: translateZ(20px);
}

.product-card p {
  font-size: 13px;
  color: var(--ink-soft);
  transform: translateZ(10px);
  line-height: 1.5;
}

.product-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.view-more {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  transform: translateZ(10px);
}

.product-card:hover .view-more {
  text-decoration: underline;
}

.products-note {
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--paper-2);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- CERTIFICATIONS ---------- */
.cert-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cert-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 193, 66, 0.14), transparent 70%);
  top: -200px;
  right: -150px;
}

.cert-section .section-head h2,
.cert-section .section-head p {
  color: #fff;
}

.cert-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

@media(max-width:860px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px 22px;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  cursor: pointer;
}

.cert-card .view-more {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-light);
}

.cert-card:hover .view-more {
  text-decoration: underline;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
}

.cert-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.2), transparent 70%);
  position: relative;
}

.cert-seal::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(230, 199, 119, 0.5);
}

.cert-seal svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.cert-card h3 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 4px;
}

.cert-card .cert-no {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gold-light);
  margin: 8px 0 10px;
  word-break: break-all;
}

.cert-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.cert-valid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'IBM Plex Mono', monospace;
}

.cert-valid .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media(max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 42px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(14, 42, 71, 0.07);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(14, 42, 71, 0.08);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.7;
}

.contact-row .label {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-row .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.contact-row a.value:hover {
  color: var(--green);
}

.contact-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 16px 0 18px;
}

.contact-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 30px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 30px;
  display: none;
}

footer.visible {
  display: block;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
}

.footer-brand .name {
  font-family: 'Fraunces', serif;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.footer-brand .tag {
  font-size: 12px;
  color: var(--green-light);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 13px;
}

/* ---- Mobile: compact Contact page + footer so it settles onto one screen instead of a long scroll ---- */
@media(max-width:720px) {
  .contact-copy h2 {
    font-size: 24px;
    margin: 10px 0 10px;
  }

  .contact-copy p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .contact-copy .btn {
    padding: 11px 20px;
    font-size: 13.5px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-row {
    gap: 12px;
    padding: 10px 0;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .contact-row .label {
    font-size: 10.5px;
  }

  .contact-row .value {
    font-size: 13.5px;
  }

  .contact-row .value[style] {
    font-size: 12.5px !important;
  }

  footer {
    padding: 26px 0 16px;
  }

  .footer-top {
    gap: 16px;
    padding-bottom: 16px;
  }

  .footer-brand img {
    height: 32px;
    width: 32px;
  }

  .footer-brand .name {
    font-size: 16px;
  }

  .footer-links {
    gap: 22px;
  }

  .footer-col h4 {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .footer-col a {
    font-size: 12.5px;
    margin-bottom: 5px;
  }

  .footer-col:last-child {
    display: none;
  }

  /* contact details already shown above on the Contact page */
  .footer-bottom {
    padding-top: 12px;
    font-size: 11px;
    flex-direction: column;
    gap: 4px;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EBE57);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.4s ease-in-out infinite;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

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

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- QUOTE MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 32, 56, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #fff;
  border-radius: 22px;
  padding: 38px 36px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(18px) scale(0.97);
  transition: transform .3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@media(max-width:480px) {
  .modal-box {
    padding: 28px 22px;
    border-radius: 18px;
  }
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--paper-2);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
}

.modal-box h3 {
  font-size: 24px;
  margin: 14px 0 8px;
}

.modal-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(14, 42, 71, 0.15);
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-row textarea {
  resize: vertical;
}

/* ---------- PRODUCT DETAIL MODAL ---------- */
.detail-box {
  max-width: 600px;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

@media(max-width:480px) {
  .variety-grid {
    grid-template-columns: 1fr;
  }
}

.variety-card {
  background: var(--paper);
  border: 1px solid rgba(14, 42, 71, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
}

.variety-emoji {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.variety-photo {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
  border: 1px solid rgba(14, 42, 71, 0.08);
}

.variety-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 5px;
}

.variety-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- CERTIFICATE LIGHTBOX MODAL ---------- */
.cert-box {
  max-width: 560px;
}

.cert-box img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(14, 42, 71, 0.1);
  margin-top: 16px;
  box-shadow: 0 20px 45px -20px rgba(14, 42, 71, 0.35);
}

.cert-box .cert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

.cert-box .cert-meta strong {
  color: var(--navy);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- PAGE SWITCHING (no-scroll navigation) ---------- */
.page {
  display: none;
}

.page.active {
  display: block;
  animation: pageIn .35s ease;
}

/* Fill the full viewport per page so short content never leaves a dead gap before the footer */
#page-about>section,
#page-products>section,
#page-certifications>section,
#page-contact>section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 36px;
}

@media(max-width:720px) {

  #page-about>section,
  #page-products>section,
  #page-certifications>section,
  #page-contact>section {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 24px;
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links a.active-link {
  opacity: 1;
}

.nav-links a.active-link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--green);
  margin-top: 4px;
  border-radius: 2px;
}

.mobile-menu a.active-link {
  color: var(--green);
}
