@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;600&display=swap");

:root {
  --color-primary: #2d5016;
  --color-primary-light: #4a7c2c;
  --color-accent: #7d9b35;
  --color-accent-light: #a8c573;
  --color-text: #1a1a1a;
  --color-muted: #6b7280;
  --color-bg: #ffffff;
  --color-surface: #f9faf8;
  --color-surface-alt: #f5f7f3;
  --color-highlight: #eef4e8;
  --color-border: #e3e8dd;
  --max-width: 1200px;
  --spacing: 1rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(45, 80, 22, 0.08);
  --shadow-md: 0 4px 12px rgba(45, 80, 22, 0.1);
  --shadow-lg: 0 8px 24px rgba(45, 80, 22, 0.12);
  --shadow-xl: 0 16px 40px rgba(45, 80, 22, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
  z-index: 1000;
}

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

a:hover {
  color: var(--color-accent);
}

header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--spacing);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  gap: 1.2rem;
  position: relative;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link,
.nav-logo,
.nav-toggle {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link__badge {
  margin-left: 0.4rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.nav-logo {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0.25rem;
  margin-left: auto;
  cursor: pointer;
  color: inherit;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  overflow: visible;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 0;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle__bar+.nav-toggle__bar {
  margin-top: 6px;
}

header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--compact {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: var(--color-highlight);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.btn>* {
  position: relative;
  z-index: 1;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--spacing) 4rem;
  position: relative;
}

main::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(168, 197, 115, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

section {
  margin-bottom: 4rem;
  position: relative;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--color-accent);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
  display: inline-block;
}

.section-header span,
.section-header a {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.section-header a {
  color: var(--color-accent);
}

.section-intro {
  margin: -1rem 0 1.5rem;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.media-card__image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: translateY(0);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.card img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card--link {
  background: var(--color-highlight);
  border: 1px solid var(--color-accent-light);
}

.card--product {
  min-height: 100%;
}

.card--product .card__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
  min-height: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--product .card__description {
  margin: 0;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--product .price {
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.card--product .hero-ctas {
  margin-top: 0;
  gap: 0.75rem;
}

.card--product .hero-ctas .btn {
  flex: 1 1 120px;
  padding: 0.6rem 1.05rem;
  font-size: 0.9rem;
}

.card--doc {
  min-height: 100%;
  gap: 1rem;
}

.card--doc .card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.card--doc .card__description {
  margin: 0;
  color: var(--color-muted);
}

.card--doc .doc-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card--doc .hero-ctas {
  margin-top: auto;
}

.card--doc .hero-ctas .btn {
  flex: 1 1 120px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1;
}

.doc-attributes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.doc-attributes li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.doc-attributes li span {
  color: var(--color-muted);
  min-width: 5rem;
}

.doc-attributes li em {
  font-style: normal;
  font-weight: 600;
}

.doc-year {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xl);
  background: var(--color-surface-alt);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-accent-light);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.tag:hover::before {
  left: 100%;
}

.tag--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  box-shadow: none;
  color: var(--color-primary);
}

.tag--new {
  background: #f97316;
  color: #fff;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
  .tag--new {
    animation: tagPulse 2.5s ease-in-out infinite;
  }
}

@keyframes tagPulse {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
  }
}

.badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  background: #fef3c7;
  color: #b45309;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 197, 115, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(125, 155, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero--primary {
  margin-top: -770px;
  position: relative;
  z-index: 2;
}

.hero--primary {
  grid-template-columns: minmax(0, 1fr);
  background: var(--color-highlight);
  border: 2px solid var(--color-accent-light);
}

.hero--sub {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
}

.hero--secondary {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: var(--color-surface-alt);
}

/* Hero variant for split layout with inline imagery */
.hero--with-visual {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

@media (max-width: 880px) {
  .hero--with-visual {
    grid-template-columns: 1fr;
  }
}

/* Hero variant with full-bleed photography */
.hero--image {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: #fff;
  min-height: clamp(420px, 90vh, 720px);
  display: grid;
  align-items: end;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: -3%;
}

.hero--image::before,
.hero--image::after {
  display: none;
}

.hero--image .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--image .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero--image .hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero--image .hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%); */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero--image .hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: min(720px, 90vw);
  display: grid;
  gap: 1.5rem;
}

.hero--image .hero__content p {
  color: rgba(255, 255, 255, 0.92);
}

.hero--image .note {
  color: rgba(255, 255, 255, 0.75);
}

.hero--image .hero-ctas .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero-visual {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  justify-self: center;
  border: 2px solid var(--color-border);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: auto;
  height: 100%;
}

.hero--product {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: #fef9e7;
  border: 2px solid #f9e89f;
}

.hero--article {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.hero p {
  margin: 0 0 1.5rem;
  max-width: 60ch;
  position: relative;
  z-index: 1;
}

.hero>div {
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  gap: 0.5rem;
  border: 2px solid var(--color-accent-light);
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.hero-video__slider.hero-highlight {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.hero-highlight__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.hero-highlight__header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-highlight);
}

.hero-highlight__slider {
  margin-top: 0.75rem;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.hero-highlight__slider.swiper {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.hero-highlight__slider .swiper-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
}

.hero-highlight__slider .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
}


.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 80, 22, 0.08);
  box-shadow: var(--shadow-md);
  padding: 0.85rem;
  display: grid;
  gap: 0.6rem;
  height: 100%;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.hero-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-surface-alt);
}

.hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card__body {
  display: grid;
  gap: 0.45rem;
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(125, 155, 53, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xl);
  width: fit-content;
}

.hero-card h3 {
  margin: 0;
  font-size: 1rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-card__actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.hero-highlight__slider .swiper-pagination {
  position: static;
  margin-top: 0.75rem;
  display: flex;
  gap: 0.4rem;
  justify-content: flex-start;
}

.hero-highlight__slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(45, 80, 22, 0.25);
  opacity: 1;
}

.hero-highlight__slider .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.hero-card:hover {
  box-shadow: var(--shadow-xl);
}

@media (max-width: 740px) {
  .hero-highlight {
    padding: 1.1rem;
  }

  .hero-highlight__slider {
    padding-right: 0;
  }
}

.hero-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 197, 115, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-highlight__header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.hero-highlight h3,
.hero-highlight p,
.hero-highlight a {
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: -3%;
  position: relative;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.hero-video__slider {
  position: absolute;
  top: clamp(1.1rem, 6vw, 3.75rem);
  right: clamp(0.75rem, 4.5vw, 3rem);
  width: min(340px, calc(100% - 2rem));
  z-index: 2;
  backdrop-filter: blur(60px) saturate(200%) brightness(105%);
  -webkit-backdrop-filter: blur(60px) saturate(200%) brightness(105%);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.5) 100%);
  border: 1px solid;
  border-image-source: linear-gradient(135deg,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.1));
  border-image-slice: 1;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
  overflow-x: hidden;
}

.hero-video__slider .hero-highlight__slider {
  padding-right: 0;
}

.hero-video__slider.hero-highlight {
  padding: 1.25rem;
  gap: 0.6rem;
}

.hero-video__slider.hero-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse at top,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 900px) {
  .hero-video__slider {
    top: 1.1rem;
    right: 0.85rem;
    width: min(320px, calc(100% - 2rem));
  }
}

@media (max-width: 640px) {
  .hero-video__slider {
    position: relative;
    margin: -11.5rem auto 0;
    transform: none;
    width: calc(100% - 2rem);
    max-width: 360px;
    z-index: 2;
    right: 0;
  }

  .hero-video__slider .hero-highlight__header p {
    color: var(--color-text);
  }
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--color-accent);
}

.list {
  display: grid;
  gap: 1rem;
}

.list-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  transform: translateX(-4px);
  transition: transform 0.3s ease;
}

.list-item:hover::before {
  transform: translateX(0);
}

.list-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.list--link li+li {
  margin-top: 0.4rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid var(--color-border);
  padding: 0.875rem 1rem;
  text-align: left;
}

.table--spec th {
  width: 28%;
  background: var(--color-surface-alt);
  font-weight: 600;
  color: var(--color-primary);
}

.table--mini {
  max-width: 480px;
  margin: 0;
}

.note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.notice {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: grid;
  gap: 1.125rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.notice::before {
  content: '!';
  position: absolute;
  top: 2.25rem;
  left: -2px;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transform: translateX(-50%);
}

.notice h2 {
  margin: 0;
}

.notice ul {
  margin: 0;
  padding-left: 1.2rem;
}

.badges,
.key-points,
.checklist,
.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.key-points {
  display: grid;
  gap: 0.5rem;
}

.key-points li {
  position: relative;
  padding-left: 1.5rem;
}

.key-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step-list li {
  counter-increment: step;
  padding-left: 2.1rem;
  position: relative;
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.cards-min .card {
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.product-visual {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  justify-self: center;
  border: 2px solid var(--color-border);
}

.faq-block details {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  background: #fff;
  margin-bottom: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-block details:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-md);
}

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

.faq-block p {
  margin: 0.75rem 0 0;
  color: var(--color-text);
}

.accordion details {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  background: #fff;
  margin-bottom: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion details:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-md);
}

.accordion summary {
  font-weight: 600;
  cursor: pointer;
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline--vertical {
  border-left: 3px solid var(--color-accent-light);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-left: 0.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 0.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.timeline-item--highlight::before {
  background: #f97316;
}

.timeline-item h3 {
  margin: 0 0 0.25rem;
}

.message {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: grid;
  gap: 1.125rem;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.signature {
  font-weight: 700;
  text-align: right;
}

.filter-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 2px solid var(--color-border);
  display: grid;
  gap: 1.125rem;
  min-width: 260px;
  box-shadow: var(--shadow-md);
  grid-column: 1 / -1;
}

.filter-card h3 {
  margin: 0;
}

.filter-card label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.filter-card select,
.filter-card input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  font: inherit;
  transition: all 0.3s ease;
}

.filter-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.filter-card select:focus,
.filter-card input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(125, 155, 53, 0.1);
}

.price {
  font-weight: 700;
  color: var(--color-primary);
  margin: 0.5rem 0 1rem;
}

.empty-state {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  color: var(--color-muted);
  text-align: center;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  padding: 2.25rem;
  display: grid;
  gap: 1.375rem;
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
}

.form-feedback--success {
  color: var(--color-primary);
}

.form-feedback--error {
  color: #b91c1c;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.calendar-section {
  display: grid;
  gap: 2.5rem;
}

.calendar-layout {
  display: grid;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 960px) {
  .calendar-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    align-items: start;
  }
}

.calendar-surface {
  display: grid;
  gap: 1.25rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-current {
  font-size: 1.25rem;
  font-weight: 700;
}

.calendar-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: transparent;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  font-size: 0.95rem;
  table-layout: fixed;
}

.calendar-table thead th {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.calendar-table tbody td {
  padding: 0.2rem;
  vertical-align: top;
}

.calendar-day {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: #fff;
  color: inherit;
  font: inherit;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.45rem 0.5rem;
  gap: 0.35rem;
}

.calendar-day:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.calendar-day__date {
  display: block;
  font-weight: 600;
}

.calendar-day:hover {
  border-color: var(--color-accent);
}

.calendar-day__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.calendar-day--outside {
  color: var(--color-muted);
  cursor: default;
  background: var(--color-surface-alt);
}

.calendar-day--outside:hover {
  border-color: transparent;
}

.calendar-day--today {
  border-color: var(--color-accent);
  background: var(--color-highlight);
}

.calendar-day--selected {
  border-color: var(--color-primary);
  background: rgba(45, 80, 22, 0.08);
}

.calendar-help {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.calendar-detail {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}

.calendar-detail__header {
  display: grid;
  gap: 0.5rem;
  z-index: 0;
}

.calendar-detail__label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.calendar-detail__date {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.calendar-detail__body {
  display: grid;
  gap: 1rem;
}

.calendar-loading {
  padding: 2rem 0;
  color: var(--color-muted);
}

.calendar-empty {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.calendar-error {
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

.event-list {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.event-card__meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.event-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.event-card__description {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.event-card__cta i {
  font-size: 0.9rem;
}

.event-card__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-card__tag {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--color-highlight);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

.calendar-surface {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .calendar-layout {
    padding: 1.6rem;
  }

  .calendar-toolbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .calendar-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .calendar-current {
    font-size: 1.1rem;
    order: 3;
    width: 100%;
    text-align: center;
  }

  .calendar-table {
    font-size: 0.85rem;
  }

  .calendar-table thead th,
  .calendar-table tbody td {
    padding: 0.35rem 0.2rem;
  }

  .calendar-day {
    min-height: 56px;
    padding: 0.35rem;
  }

  .calendar-surface {
    overflow-x: auto;
  }

  .calendar-table {
    min-width: 520px;
  }

  .calendar-detail {
    padding: 1.25rem;
  }
}

@media (max-width: 520px) {
  .calendar-layout {
    padding: 1.35rem;
  }

  .calendar-table {
    min-width: 480px;
  }

  .calendar-day {
    min-height: 52px;
  }
}

.cta-banner {
  background: var(--color-highlight);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-accent-light);
}

.hero--secondary .checklist {
  gap: 0.75rem;
}

.article-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.article-nav .btn {
  min-width: 160px;
}

footer {
  background: var(--color-primary);
  color: #e8f0dd;
  position: relative;
  overflow: hidden;
}

/* Decorative wave at top of footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg,
      var(--color-accent) 0%,
      var(--color-accent-light) 25%,
      var(--color-accent) 50%,
      var(--color-accent-light) 75%,
      var(--color-accent) 100%);
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

/* Subtle background pattern */
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(168, 197, 115, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(125, 155, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem var(--spacing) 2.5rem;
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(168, 197, 115, 0.2);
  position: relative;
}

/* Animated underline for breadcrumbs section */
.footer-breadcrumbs::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--color-accent-light);
  animation: breadcrumbGlow 3s ease-in-out infinite;
}

@keyframes breadcrumbGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(20px);
  }
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.breadcrumbs li:hover {
  transform: translateX(3px);
}

.breadcrumbs li::after {
  content: '›';
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.breadcrumbs li:hover::after {
  opacity: 1;
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.breadcrumbs a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-light);
  transition: width 0.3s ease;
}

.breadcrumbs a:hover::after {
  width: 100%;
}

.breadcrumbs a:hover {
  color: var(--color-accent-light);
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 1.5rem 0;
}

.footer-columns>div {
  position: relative;
  padding-left: 1rem;
  transition: transform 0.3s ease;
}

/* Decorative left border for each column */
.footer-columns>div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--color-accent-light), transparent);
  transition: height 0.5s ease;
}

.footer-columns>div:hover::before {
  height: 60px;
}

.footer-columns>div:hover {
  transform: translateY(-2px);
}

.footer-columns h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Underline effect for column headers */
.footer-columns h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent-light);
  transition: width 0.4s ease;
}

.footer-columns>div:hover h4::after {
  width: 100%;
}

.footer-columns a {
  color: inherit;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-logo:hover {
  color: var(--color-accent-light);
  transform: scale(1.05);
}

.footer-brand {
  position: relative;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232, 240, 221, 0.9);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.footer-social li {
  position: relative;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #e8f0dd;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  border: 2px solid rgba(168, 197, 115, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-accent-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.footer-social a:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social a:hover {
  color: var(--color-primary);
  border-color: var(--color-accent-light);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 16px rgba(168, 197, 115, 0.3);
}

/* Stagger animation on hover */
.footer-social li:nth-child(1) a:hover {
  animation: socialBounce 0.6s ease;
}

.footer-social li:nth-child(2) a:hover {
  animation: socialBounce 0.6s ease 0.1s;
}

.footer-social li:nth-child(3) a:hover {
  animation: socialBounce 0.6s ease 0.2s;
}

@keyframes socialBounce {

  0%,
  100% {
    transform: translateY(-5px) scale(1.1);
  }

  50% {
    transform: translateY(-10px) scale(1.15);
  }
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-list li {
  position: relative;
  padding-left: 1rem;
  transition: padding-left 0.3s ease;
}

/* Bullet point decoration */
.footer-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--color-accent-light);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
}

.footer-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-list li:hover {
  padding-left: 1.3rem;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 197, 115, 0.15);
  margin-top: 1rem;
  position: relative;
}

/* Animated gradient line at bottom section */
.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-light), transparent);
  animation: bottomLineSlide 4s ease-in-out infinite;
}

@keyframes bottomLineSlide {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(calc(min(var(--max-width), 100vw) - 200px));
    opacity: 1;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-light);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  main {
    padding: 2.25rem 1.75rem 3.5rem;
  }

  section {
    margin-bottom: 3.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero {
    padding: 3.5rem 2.75rem;
  }

  .hero--primary {
    margin-top: -520px;
  }
}

@media (max-width: 900px) {
  .hero--primary {
    grid-template-columns: 1fr;
    margin-top: -360px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 2rem 1.25rem 3rem;
  }

  section {
    margin-bottom: 3rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: flex-end;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .nav-group {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    z-index: 10;
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
  }

  header.is-nav-open .nav-group {
    display: flex;
  }

  .nav-group nav {
    width: 100%;
  }

  .nav-group nav ul {
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
  }

  .nav-group nav ul li {
    width: 100%;
  }

  .nav-group nav ul li a {
    display: block;
    width: 100%;
    padding: 0.35rem 0;
  }

  .nav-group .btn {
    width: 100%;
    justify-content: center;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .hero {
    padding: 2.5rem 1.75rem;
  }

  .hero--primary {
    margin-top: 1.5rem;
  }

  .hero-video {
    margin-top: 0;
    margin-top: -8%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .grid {
    gap: 1.25rem;
  }

  .card {
    padding: 1.5rem;
  }

  .footer-inner {
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 520px) {
  main {
    padding: 1.75rem 1rem 2.5rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 7vw, 1.8rem);
  }

  .hero {
    padding: 2.25rem 1.4rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-video__slider {
    width: min(92vw, 320px);
  }

  .grid {
    gap: 1rem;
  }

  .card {
    padding: 1.35rem;
  }

  .hero-card__actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
  }

  .card--product .hero-ctas,
  .card--doc .hero-ctas {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .card--product .hero-ctas .btn,
  .card--doc .hero-ctas .btn {
    flex: 1 1 calc(50% - 0.6rem);
    min-width: calc(50% - 0.6rem);
    padding: 0.48rem 0.85rem;
    font-size: 0.82rem;
  }

  .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table th,
  .table td {
    white-space: nowrap;
  }

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

  .footer-social {
    justify-content: flex-start;
  }
}

.doc-consent {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.doc-consent.is-open {
  display: flex;
}

.doc-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.doc-consent__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  max-width: 440px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--color-border);
  display: grid;
  gap: 1.125rem;
}

.doc-consent__title {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.doc-consent__checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}