[hidden] { display: none !important; }
:root { --font-sans: 'Avenir Next', 'Segoe UI', sans-serif; --font-heading: 'Avenir Next', 'Segoe UI', sans-serif; }
:root {
  --background: #f7f7f1;
  --foreground: #092f21;
  --card: #ffffff;
  --card-foreground: #092f21;
  --primary: #005633;
  --primary-foreground: #ffffff;
  --secondary: #ffe11b;
  --secondary-foreground: #092f21;
  --muted: #eef1e9;
  --muted-foreground: #5f6f66;
  --accent: #ffe11b;
  --accent-foreground: #092f21;
  --destructive: #c2413a;
  --border: rgba(9, 47, 33, 0.13);
  --input: rgba(9, 47, 33, 0.18);
  --ring: #0b7a4d;
  --radius: 1rem;
}

.dark {
  --background: #061b13;
  --foreground: #f8faef;
  --card: #0a2b1d;
  --card-foreground: #f8faef;
  --primary: #ffe11b;
  --primary-foreground: #092f21;
  --secondary: #0d3d2a;
  --secondary-foreground: #ffffff;
  --muted: #0e3425;
  --muted-foreground: #b4c4b9;
  --accent: #ffe11b;
  --accent-foreground: #092f21;
  --border: rgba(255, 255, 255, 0.13);
  --input: rgba(255, 255, 255, 0.18);
  --ring: #ffe11b;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
}
a {
  color: inherit;
  text-decoration: none;
}

.hero-shell {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 42%,
      rgba(255, 225, 27, 0.13),
      transparent 27rem
    ),
    linear-gradient(135deg, #f9faf3 0%, #f4f6ed 100%);
}

.site-nav {
  width: min(1180px, calc(100% - 40px));
  height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.brand img {
  width: 154px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a {
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #0b7a4d;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #092f21;
  color: white;
  font-weight: 750;
  font-size: 14px;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
  padding: 58px 0 52px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b6843;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  background: #ffe11b;
}
.hero h1 {
  max-width: 700px;
  margin: 22px 0 20px;
  font-size: clamp(48px, 6.1vw, 83px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 780;
}
.hero h1 em {
  display: block;
  color: #0b6843;
  font-style: normal;
}
.hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: #52645a;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: #ffe11b;
  color: #092f21;
  box-shadow: 0 14px 32px rgba(208, 177, 0, 0.2);
}
.button-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.hero-mark {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-mark::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(0, 86, 51, 0.16);
  border-radius: 50%;
}
.mark-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #ffe11b;
  filter: blur(1px);
  box-shadow: 0 30px 90px rgba(0, 86, 51, 0.16);
}
.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(390px, 78vw);
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(0, 49, 29, 0.2));
}
.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 40px rgba(9, 47, 33, 0.12);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.orbit-party {
  top: 14%;
  left: 5%;
}
.orbit-helyum {
  top: 23%;
  right: 2%;
}
.orbit-gazebo {
  bottom: 12%;
  right: 10%;
}

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 22px;
  background: #073a28;
  color: white;
  box-shadow: 0 22px 50px rgba(5, 48, 31, 0.15);
}
.trust-strip div {
  padding: 23px 34px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.trust-strip strong {
  color: #ffe11b;
  font-size: 20px;
}
.trust-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow,
  .hero-actions {
    justify-content: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .hero-mark {
    min-height: 430px;
  }
}

@media (max-width: 600px) {
  .site-nav {
    width: min(100% - 24px, 1180px);
    height: 80px;
  }
  .brand img {
    width: 112px;
    height: 60px;
  }
  .nav-call {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
  .nav-call svg {
    width: 18px;
    height: 18px;
  }
  .hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding-top: 52px;
    gap: 16px;
  }
  .hero h1 {
    font-size: clamp(43px, 14.2vw, 62px);
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .button {
    width: 100%;
  }
  .hero-mark {
    min-height: 360px;
  }
  .mark-glow {
    width: 270px;
    height: 270px;
  }
  .hero-mark img {
    width: 290px;
    height: 290px;
  }
  .trust-strip {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    padding: 18px 22px;
  }
  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.section-kicker {
  margin: 0 0 15px;
  color: #0b6843;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #ffe11b;
}
.section-head h2,
.about-copy h2,
.service-intro h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 760;
}
.section-head > p {
  margin: 0;
  color: #617067;
  font-size: 16px;
  line-height: 1.75;
}

.product-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 32px;
  background: #0b3d2b;
  box-shadow: 0 30px 70px rgba(7, 58, 40, 0.14);
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 30, 20, 0.78) 0%,
    transparent 48%,
    rgba(4, 30, 20, 0.12) 100%
  );
}
.product-visual > img {
  width: 100%;
  height: 510px;
  display: block;
  object-fit: cover;
}
.visual-caption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 54px);
  bottom: clamp(26px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  color: white;
}
.visual-caption span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffe11b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.visual-caption strong {
  max-width: 420px;
  margin-top: 11px;
  font-size: clamp(27px, 3.5vw, 45px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.visual-chip {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.chip-one {
  top: 26px;
  left: 27px;
}
.chip-two {
  right: 27px;
  bottom: 27px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.product-card {
  min-height: 365px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 104, 67, 0.35);
  box-shadow: 0 24px 50px rgba(7, 58, 40, 0.09);
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eff5ed;
  color: #0b6843;
}
.product-no {
  color: #98a69e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.product-card h3 {
  margin: 40px 0 12px;
  font-size: 28px;
  letter-spacing: -0.035em;
}
.product-card > p {
  margin: 0;
  color: #617067;
  line-height: 1.65;
  font-size: 15px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0;
}
.tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f3ed;
  color: #52645a;
  font-size: 11px;
  font-weight: 700;
}
.product-card > a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #0b6843;
  font-size: 13px;
  font-weight: 850;
}

.about-wrap {
  padding: 0 20px;
}
.about-panel {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 108px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 225, 27, 0.08),
      transparent 28rem
    ),
    #073a28;
  color: white;
}
.about-copy h2 {
  max-width: 680px;
}
.about-copy > p:not(.section-kicker) {
  max-width: 630px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}
.about-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}
.about-card-mark {
  height: 185px;
  overflow: hidden;
  border-radius: 21px;
  background: #052f21;
}
.about-card-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.about-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px 12px;
}
.about-card li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-card li svg {
  color: #ffe11b;
  margin-top: 2px;
}
.about-card li span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  gap: 5px;
}
.about-card li strong {
  color: white;
  font-size: 15px;
}

.service-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}
.service-intro {
  position: sticky;
  top: 40px;
}
.service-intro h2 {
  font-size: clamp(38px, 4.7vw, 58px);
}
.service-grid {
  display: grid;
  gap: 14px;
}
.service-grid article {
  min-height: 182px;
  padding: 32px;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}
.service-grid article > span {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffe11b;
  color: #073a28;
  font-size: 12px;
  font-weight: 900;
}
.service-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.service-grid p {
  margin: 0;
  color: #617067;
  line-height: 1.6;
}

.contact-wrap {
  padding: 0 20px 30px;
}
.contact-panel {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 70px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(255, 255, 255, 0.7),
      transparent 22rem
    ),
    #ffe11b;
  color: #073a28;
}
.contact-panel h2 {
  max-width: 690px;
}
.contact-panel > div:first-child > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(7, 58, 40, 0.68);
  font-size: 16px;
  line-height: 1.7;
}
.contact-actions {
  display: grid;
  gap: 11px;
}
.contact-actions > a {
  min-height: 86px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: #073a28;
  color: white;
  box-shadow: 0 18px 40px rgba(7, 58, 40, 0.15);
}
.contact-actions > a svg {
  color: #ffe11b;
}
.contact-actions span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.contact-actions small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer {
  padding: 65px max(20px, calc((100vw - 1180px) / 2)) 26px;
  background: #041e15;
  color: white;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-brand > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 850;
  font-size: 18px;
}
.footer-brand small {
  color: #ffe11b;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-inner > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footer-inner > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  font-size: 13px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }
  .section-head,
  .about-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 320px;
  }
  .service-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-intro {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 32px;
  }
  .section-head > p {
    margin-top: 22px;
  }
  .product-visual,
  .product-visual > img {
    min-height: 460px;
    height: 460px;
  }
  .product-visual > img {
    object-position: 58% center;
  }
  .product-visual::after {
    background: linear-gradient(
      0deg,
      rgba(4, 30, 20, 0.82) 0%,
      transparent 72%
    );
  }
  .visual-caption {
    right: 24px;
  }
  .chip-two {
    display: none;
  }
  .product-card {
    padding: 24px;
  }
  .about-wrap,
  .contact-wrap {
    padding-inline: 8px;
  }
  .about-panel,
  .contact-panel {
    border-radius: 28px;
    padding: 42px 22px;
  }
  .about-card {
    padding: 12px;
  }
  .about-card-mark {
    height: 140px;
  }
  .service-grid article {
    grid-template-columns: 50px 1fr;
    padding: 24px 20px;
  }
  .service-grid article > span {
    width: 44px;
    height: 44px;
  }
  .contact-actions > a {
    padding-inline: 17px;
  }
  .contact-actions span {
    font-size: 14px;
  }
  footer {
    padding-top: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner > div {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

.product-card {
  min-height: 550px;
  overflow: hidden;
}
.product-card-image {
  height: 210px;
  margin: -30px -30px 24px;
  display: block;
  overflow: hidden;
  border-radius: 24px 24px 18px 18px;
  background: #e9ede6;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.035);
}
.product-card h3 {
  margin-top: 25px;
}

.category-page {
  --category-accent: #ffe11b;
  --category-deep: #073a28;
  min-height: 100svh;
  background: #f7f7f1;
}
.category-helium {
  --category-accent: #d5a377;
  --category-deep: #382116;
}
.category-party {
  --category-accent: #ffe11b;
  --category-deep: #073a28;
}
.category-tent {
  --category-accent: #ffe11b;
  --category-deep: #073a28;
}
.category-hero-shell {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 22%,
      color-mix(in srgb, var(--category-accent) 16%, transparent),
      transparent 26rem
    ),
    linear-gradient(135deg, #fbfcf6, #f1f4eb);
}
.category-top-nav {
  position: relative;
  z-index: 2;
}
.category-nav-links {
  gap: 25px;
  font-size: 13px;
}
.category-hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 675px;
  margin: 0 auto;
  padding: 62px 0 82px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}
.category-badge {
  width: fit-content;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--category-accent) 72%, white);
  color: var(--category-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category-hero-copy h1 {
  max-width: 650px;
  margin: 25px 0 24px;
  font-size: clamp(47px, 5.8vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  color: #0a3324;
}
.category-helium .category-hero-copy h1 {
  color: #382116;
}
.category-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #5c6b62;
  font-size: 17px;
  line-height: 1.75;
}
.category-mail-button {
  border: 1px solid rgba(9, 47, 33, 0.16);
  background: rgba(255, 255, 255, 0.72);
}
.category-domain {
  margin-top: 28px;
  color: #789087;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.category-hero-image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--category-deep);
  box-shadow: 0 34px 75px
    color-mix(in srgb, var(--category-deep) 22%, transparent);
}
.category-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}
.category-hero-image img {
  width: 100%;
  height: 530px;
  display: block;
  object-fit: cover;
}
.category-image-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--category-deep);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-features {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0 115px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.category-features article {
  min-height: 238px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
}
.category-features article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--category-accent);
  color: var(--category-deep);
  font-size: 11px;
  font-weight: 900;
}
.category-features h2 {
  margin: 32px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.category-features p {
  margin: 0;
  color: #66746c;
  font-size: 14px;
  line-height: 1.65;
}
.category-selector {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px);
  border-radius: 38px;
  background: #edf1e7;
}
.category-selector-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: end;
  gap: 50px;
}
.category-selector-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.category-selector-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.category-selector-grid a {
  min-height: 135px;
  padding: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: end;
  border: 1px solid rgba(9, 47, 33, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.category-selector-grid a:hover {
  transform: translateY(-4px);
  background: white;
}
.category-selector-grid a.is-current {
  background: var(--category-deep);
  color: white;
}
.category-selector-grid a > span {
  grid-column: 1 / 3;
  margin-bottom: 8px;
  color: #66746c;
  font-size: 12px;
  font-weight: 750;
}
.category-selector-grid a.is-current > span {
  color: rgba(255, 255, 255, 0.55);
}
.category-selector-grid strong {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.category-contact {
  width: min(1180px, calc(100% - 40px));
  margin: 110px auto 28px;
  padding: clamp(45px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 50px;
  border-radius: 32px;
  background: var(--category-deep);
  color: white;
}
.category-contact h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.category-contact-links {
  display: grid;
  gap: 10px;
}
.category-contact-links a {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.category-contact-links a svg {
  color: var(--category-accent);
  flex: 0 0 auto;
}
.category-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 33px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #66746c;
  font-size: 12px;
}
.category-footer > a:last-child {
  justify-self: end;
  color: #0b6843;
  font-weight: 800;
}

@media (max-width: 900px) {
  .category-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .category-hero-copy {
    text-align: center;
  }
  .category-badge,
  .category-hero-copy .hero-actions {
    margin-inline: auto;
    justify-content: center;
  }
  .category-hero-copy > p {
    margin-inline: auto;
  }
  .category-features {
    grid-template-columns: 1fr;
  }
  .category-selector-head,
  .category-contact {
    grid-template-columns: 1fr;
  }
  .category-selector-grid {
    grid-template-columns: 1fr;
  }
  .category-footer {
    grid-template-columns: 1fr 1fr;
  }
  .category-footer > span {
    display: none;
  }
}

@media (max-width: 600px) {
  .product-card {
    min-height: 515px;
  }
  .product-card-image {
    margin: -24px -24px 22px;
  }
  .category-hero {
    width: min(100% - 28px, 1240px);
    padding: 52px 0 64px;
    gap: 34px;
  }
  .category-hero-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
  }
  .category-hero-copy > p {
    font-size: 16px;
  }
  .category-hero-image,
  .category-hero-image img {
    min-height: 410px;
    height: 410px;
  }
  .category-features {
    width: min(100% - 28px, 1180px);
    padding: 70px 0 82px;
  }
  .category-selector {
    width: calc(100% - 16px);
    padding: 42px 20px;
    border-radius: 28px;
  }
  .category-selector-head {
    display: block;
  }
  .category-selector-head h2 {
    margin-top: 13px;
  }
  .category-selector-grid {
    margin-top: 30px;
  }
  .category-contact {
    width: calc(100% - 16px);
    margin-top: 82px;
    padding: 42px 22px;
    border-radius: 28px;
  }
  .category-footer {
    grid-template-columns: 1fr;
  }
  .category-footer > a:last-child {
    justify-self: start;
  }
}

.knowledge-hub {
  padding-top: 0;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.knowledge-grid article {
  min-height: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 58, 40, 0.045);
}
.knowledge-card-head {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0b6843;
}
.knowledge-card-head > svg {
  width: 45px;
  height: 45px;
  padding: 11px;
  border-radius: 14px;
  background: #eff5ed;
}
.knowledge-card-head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.knowledge-grid h3 {
  margin: 30px 0 14px;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.knowledge-grid article > p {
  margin: 0;
  color: #617067;
  font-size: 14px;
  line-height: 1.75;
}
.knowledge-grid ul {
  margin: 24px 0;
  padding: 21px 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.knowledge-grid li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #43564b;
  font-size: 13px;
  line-height: 1.45;
}
.knowledge-grid li svg {
  margin-top: 1px;
  flex: 0 0 auto;
  color: #0b7a4d;
}
.knowledge-grid article > a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0b6843;
  font-size: 13px;
  font-weight: 850;
}
.knowledge-trust-note {
  margin-top: 16px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 24px;
  background: #073a28;
  color: #fff;
}
.knowledge-trust-note > svg {
  color: #ffe11b;
}
.knowledge-trust-note strong {
  font-size: 18px;
}
.knowledge-trust-note p {
  max-width: 930px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.faq-section {
  padding-top: 0;
}
.faq-layout,
.category-faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 34px;
}
.faq-intro h2,
.category-faq-intro h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.faq-intro > p:last-child,
.category-faq-intro > p:last-child {
  margin: 22px 0 0;
  color: #617067;
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}
.faq-list summary {
  min-height: 76px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: #173c2e;
  font-size: 15px;
  font-weight: 820;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  flex: 0 0 auto;
  color: #0b6843;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary svg {
  transform: rotate(180deg);
}
.faq-list details > p {
  margin: 0;
  padding: 0 22px 23px;
  color: #617067;
  font-size: 14px;
  line-height: 1.75;
}

.category-knowledge {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: clamp(54px, 7vw, 92px);
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 58, 40, 0.07);
}
.category-knowledge-heading {
  max-width: 980px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}
.category-knowledge-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--category-accent);
  color: var(--category-deep);
}
.category-knowledge-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}
.category-knowledge-heading > div > p:last-child {
  max-width: 870px;
  margin: 25px 0 0;
  color: #5e6e65;
  font-size: 17px;
  line-height: 1.78;
}
.category-knowledge-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.category-knowledge-grid article {
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: #f9faf6;
}
.knowledge-index {
  display: inline-grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--category-accent);
  color: var(--category-deep);
  font-size: 11px;
  font-weight: 900;
}
.category-knowledge-grid h3 {
  margin: 27px 0 13px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.category-knowledge-grid article > p {
  margin: 0;
  color: #627168;
  font-size: 14px;
  line-height: 1.75;
}
.category-knowledge-grid ul {
  margin: 24px 0 0;
  padding: 22px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border);
  list-style: none;
}
.category-knowledge-grid li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #42564a;
  font-size: 13px;
  line-height: 1.45;
}
.category-knowledge-grid li svg {
  margin-top: 1px;
  flex: 0 0 auto;
  color: var(--category-deep);
}
.category-callout {
  margin-top: 15px;
  padding: 29px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  border-radius: 22px;
  background: var(--category-deep);
  color: white;
}
.category-callout > svg {
  color: var(--category-accent);
}
.category-callout strong {
  font-size: 17px;
}
.category-callout p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}
.category-faq-layout {
  margin-top: 85px;
}
.category-faq-list details {
  background: #f9faf6;
}
.technical-sources {
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.technical-sources > strong {
  font-size: 16px;
}
.technical-sources > p {
  max-width: 800px;
  margin: 8px 0 18px;
  color: #68766e;
  font-size: 13px;
  line-height: 1.6;
}
.technical-sources > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.technical-sources a {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--category-deep);
  background: #f7f8f4;
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-toggle {
  height: 46px !important;
  padding: 0 17px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px !important;
  background: #087a49 !important;
  color: white !important;
  box-shadow: 0 14px 34px rgba(5, 61, 36, 0.26) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  font-family: inherit;
  cursor: pointer;
}
.whatsapp-toggle:hover {
  background: #06683d !important;
}
.whatsapp-panel {
  width: min(310px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(8, 67, 42, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: #153b2d;
  box-shadow: 0 24px 65px rgba(4, 45, 28, 0.22);
  backdrop-filter: blur(16px);
  animation: whatsapp-panel-in 0.18s ease-out;
}
@keyframes whatsapp-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.whatsapp-panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 2px 2px 12px;
}
.whatsapp-panel-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e7f5ec;
  color: #087a49;
}
.whatsapp-panel-head > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.whatsapp-panel-head strong {
  font-size: 14px;
}
.whatsapp-panel-head small {
  color: #708077;
  font-size: 11px;
}
.whatsapp-close {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #617067 !important;
  cursor: pointer;
}
.whatsapp-close:hover { background: #eef2ec; }
.whatsapp-options {
  display: grid;
  gap: 7px;
}
.whatsapp-options a {
  min-height: 43px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #f3f6f1;
  color: #244a3b;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.whatsapp-options a:hover {
  background: #e7f5ec;
  transform: translateX(2px);
}
.whatsapp-options a svg {
  color: #087a49;
}
.whatsapp-panel > p {
  margin: 11px 2px 1px;
  color: #87938c;
  font-size: 9px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .knowledge-grid,
  .category-knowledge-grid {
    grid-template-columns: 1fr;
  }
  .knowledge-grid article {
    min-height: auto;
  }
  .faq-layout,
  .category-faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-intro {
    position: static;
  }
  .category-knowledge {
    width: min(100% - 24px, 1340px);
  }
}

@media (max-width: 600px) {
  .knowledge-trust-note,
  .category-callout {
    padding: 24px 21px;
  }
  .category-knowledge {
    width: calc(100% - 16px);
    margin-bottom: 82px;
    padding: 42px 20px;
    border-radius: 28px;
  }
  .category-knowledge-heading {
    grid-template-columns: 1fr;
  }
  .category-knowledge-heading h2 {
    font-size: clamp(37px, 11vw, 50px);
  }
  .category-knowledge-grid {
    margin-top: 38px;
  }
  .category-knowledge-grid article {
    padding: 24px 21px;
  }
  .category-faq-layout {
    margin-top: 62px;
  }
  .faq-list summary {
    min-height: 70px;
    padding: 18px;
  }
  .faq-list details > p {
    padding: 0 18px 20px;
  }
  .technical-sources > div {
    display: grid;
  }
  .technical-sources a {
    justify-content: space-between;
    border-radius: 12px;
  }
  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-toggle {
    height: 44px !important;
    padding: 0 15px !important;
  }
}
