:root {
  --background: #ffffff;
  --foreground: #0d1f16;
  --muted: #6b8c7a;
  --surface: #f6faf7;
  --surface-tint: #f2faf5;
  --border: #d4e6db;
  --border-soft: #e3ede7;
  --brand: #1a4731;
  --brand-deep: #0e3321;
  --brand-dark: #071f10;
  --brand-mint: #7edea8;
  --brand-gold: #f7941d;
  --input: #cfe1d6;
  --radius: 12px;
  --shadow-elegant: 0 18px 50px rgba(26, 71, 49, 0.16);
  --shadow-card: 0 8px 24px rgba(26, 71, 49, 0.08);
  --gradient-hero: linear-gradient(90deg, rgba(7, 31, 16, 0.95) 0%, rgba(14, 51, 33, 0.88) 42%, rgba(26, 92, 56, 0.38) 72%, rgba(26, 92, 56, 0.1) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.font-display,
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.97);
}

.site-header .nav {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.site-header .brand span:first-child {
  color: var(--brand-gold);
}

.site-header .brand span:last-child {
  color: #6b9e3e;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2e4438;
  font-size: 0.8rem;
  font-weight: 500;
}

.site-header .nav-links > a:not(.btn):hover,
.site-header .mega-trigger:hover {
  color: var(--brand);
}

.site-header .mega-wrap {
  position: relative;
}

.site-header .mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.site-header .mega-trigger::-webkit-details-marker {
  display: none;
}

.site-header .mega-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.site-header .mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: none;
  width: min(1080px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 2fr) minmax(190px, 1fr) minmax(190px, 1fr);
  gap: 0;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--brand);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(14, 51, 33, 0.2);
  padding: 20px 0;
  transform: translateX(-50%);
}

.site-header .mega-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.site-header .mega-wrap:hover .mega-menu,
.site-header .mega-wrap:focus-within .mega-menu,
.site-header .mega-wrap[open] .mega-menu {
  display: grid;
}

.site-header .mega-group {
  border-right: 1px solid #e4eee8;
  padding: 0 20px;
}

.site-header .mega-group:last-child {
  border-right: 0;
}

.site-header .mega-group:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.site-header .mega-group:first-child .mega-group-title {
  grid-column: 1 / -1;
}

.site-header .mega-group-title,
.site-header .mega-section-title {
  display: block;
  color: var(--brand);
  font-weight: 800;
}

.site-header .mega-group-title {
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid #dce9e1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.site-header .mega-section {
  display: grid;
  align-content: start;
  gap: 3px;
  margin-top: 0;
}

.site-header .mega-group:not(:first-child) .mega-section {
  margin-top: 0;
}

.site-header .mega-section-title {
  margin-bottom: 7px;
  color: #2f7651;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header .mega-section a:not(.mega-section-title) {
  position: relative;
  border-radius: 6px;
  color: #334c3f;
  font-size: 0.78rem;
  line-height: 1.25;
  padding: 7px 9px;
  transition: background 0.16s ease, color 0.16s ease, padding-left 0.16s ease;
}

.site-header .mega-section a:not(.mega-section-title):hover {
  background: #edf7f1;
  color: var(--brand);
  padding-left: 13px;
}

.site-header .mega-section a[href="/products/totapuri-mango-pulp-puree/"] {
  background: #f0f8f3;
  color: var(--brand);
  font-weight: 700;
}

.site-header .mega-section a[href="/products/totapuri-mango-pulp-puree/"]::after {
  float: right;
  color: #5f9978;
  content: "Live";
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .nav .btn-primary {
  min-height: 34px;
  padding: 8px 16px;
  border-color: transparent;
  background: var(--brand);
  font-size: 0.75rem;
  white-space: nowrap;
}

.site-header .nav-toggle,
.site-header .nav-toggle-button {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(126, 222, 168, 0.38);
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: var(--gradient-hero), url("../assets/totapuri-mango-pulp-b2b-hero.webp");
  background-position: center right;
  background-size: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 62px 0 64px;
}

.breadcrumb {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:last-child {
  color: var(--brand-mint);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.3rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(2.15rem, 3.65vw, 3.35rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--brand-mint);
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats div {
  padding: 16px 22px;
  background: rgba(7, 31, 16, 0.62);
}

.hero-stats dt {
  color: var(--brand-mint);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.section {
  padding: 58px 0;
}

.section.surface {
  background: var(--surface);
}

.section.dark {
  background: var(--brand-dark);
  color: #ffffff;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.02em;
}

.dark h2 {
  color: #ffffff;
}

.section-head p,
.lead-muted {
  margin: 16px 0 0;
  color: rgba(13, 31, 22, 0.7);
}

.dark .section-head p,
.dark .lead-muted {
  color: rgba(255, 255, 255, 0.72);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 42px;
  align-items: start;
}

.overview-grid > *,
.technical-grid > *,
.footer-grid > * {
  min-width: 0;
}

.overview-title {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 1.14;
}

.overview-title + .rich-text {
  margin-top: 20px;
}

.rich-text {
  display: grid;
  gap: 16px;
  color: rgba(13, 31, 22, 0.78);
}

.rich-text p {
  margin: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.quality-cards article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(26, 109, 69, 0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, #e1f3e8, #cce8d8);
  color: var(--brand-dark);
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(26, 71, 49, 0.08);
}

.check-grid li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--brand-deep);
  font-size: 0.94rem;
  font-weight: 600;
}

.check {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid var(--brand-dark);
  border-radius: 999px;
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
}

.season-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 42px;
  padding: 25px 28px;
  align-items: center;
  border: 1px solid #c8dfd1;
  border-radius: 12px;
  background: #edf6f0;
  box-shadow: 0 10px 26px rgba(26, 71, 49, 0.08);
}

.season-heading .eyebrow {
  margin-bottom: 5px;
  color: var(--brand);
}

.season-heading h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(58px, 1fr));
  gap: 10px;
}

.season-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfddd4;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  color: #6e7c73;
  font-size: 0.82rem;
  font-weight: 700;
}

.season-grid span.active {
  border-color: #2f7651;
  background: #2f7651;
  color: #ffffff;
}

.season-grid span.active::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
  content: "";
}

.applications-section {
  background: #f1f7f3;
}

.applications-section .eyebrow {
  color: var(--brand);
}

.applications-section h2 {
  color: var(--brand-dark);
}

.image-callout {
  position: relative;
}

.image-callout img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-elegant);
}

.origin-card {
  position: absolute;
  left: -22px;
  bottom: -22px;
  max-width: 220px;
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(26, 71, 49, 0.12);
}

.origin-card span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.origin-card strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.process-grid,
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.technical-section {
  padding: 54px 0;
}

.technical-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.technical-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.technical-panel h2,
.panel-title {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.process-depth {
  margin: 16px 0 0;
  color: rgba(13, 31, 22, 0.72);
  font-size: 0.92rem;
  line-height: 1.68;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--surface);
}

.process-list > li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.process-list p {
  margin: 0;
  color: rgba(13, 31, 22, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.spec-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.spec-card-grid article {
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-tint);
}

.spec-card-grid span {
  display: block;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.spec-card-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--brand-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-specs > div {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.mini-specs h3 {
  padding: 13px 15px;
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 1rem;
}

.mini-specs table {
  min-width: 0;
}

.mini-specs td {
  padding: 10px 13px;
  font-size: 0.84rem;
}

.process-card,
.app-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-card {
  padding: 24px;
}

.process-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 71, 49, 0.4);
  box-shadow: var(--shadow-card);
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.step-title span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.3;
}

.process-card p,
.app-card p,
.faq-item p {
  margin: 0;
  color: rgba(13, 31, 22, 0.68);
  font-size: 0.92rem;
}

.spec-block {
  margin-bottom: 44px;
}

.spec-title {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th {
  padding: 13px 16px;
  background: var(--brand-dark);
  color: #ffffff;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

td {
  padding: 13px 16px;
  border-top: 1px solid var(--border-soft);
  color: rgba(13, 31, 22, 0.82);
  font-size: 0.9rem;
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background: var(--surface-tint);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.packaging-image {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.packaging-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card {
  border-color: #d3e3d9;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(26, 71, 49, 0.06);
}

.app-card:hover {
  border-color: #82b397;
  background: #fbfefc;
  transform: translateY(-3px);
}

.app-card h3 {
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 1.02rem;
}

.app-card p {
  color: rgba(13, 31, 22, 0.7);
  font-size: 0.86rem;
  line-height: 1.55;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 18px 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.quote-section {
  background: var(--surface);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1.06fr);
  gap: 48px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-mini {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: rgba(13, 31, 22, 0.7);
  font-size: 0.94rem;
}

.contact-mini p {
  margin: 4px 0;
}

.contact-mini strong {
  color: var(--brand-dark);
}

.quote-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-elegant);
}

.rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.rfq-modal:target {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 16, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 780px);
  overflow: auto;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.modal-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.modal-close {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 7px;
  background: #ffffff;
  color: var(--foreground);
  padding: 11px 13px;
  outline: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 71, 49, 0.14);
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
}

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

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(130px, 0.8fr));
  gap: 34px;
  padding: 48px 0;
}

.footer-title {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.footer-title span {
  color: var(--brand-mint);
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-heading {
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .overview-grid,
  .split-grid,
  .quote-grid,
  .technical-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-grid {
    gap: 34px;
  }

  .season-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .site-header .nav-toggle-button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .site-header .nav-toggle-button span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
  }

  .site-header .nav-links {
    position: absolute;
    top: 56px;
    right: -16px;
    left: -16px;
    display: none;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 10px 16px 18px;
    box-shadow: 0 18px 30px rgba(14, 51, 33, 0.12);
  }

  .site-header .nav-links > a {
    padding: 11px 12px;
  }

  .site-header .mega-wrap {
    display: grid;
  }

  .site-header .mega-trigger {
    padding: 11px 12px;
  }

  .site-header .mega-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 10px;
    background: #f4faf6;
    box-shadow: none;
    padding: 12px;
    transform: none;
  }

  .site-header .mega-menu::before {
    display: none;
  }

  .site-header .mega-wrap[open] .mega-menu {
    display: grid;
  }

  .site-header .mega-group {
    display: block;
    border-right: 0;
    border-bottom: 1px solid #dcebe2;
    padding: 0 0 12px;
  }

  .site-header .mega-group:first-child {
    display: block;
  }

  .site-header .mega-group:first-child .mega-section + .mega-section {
    margin-top: 14px;
  }

  .site-header .mega-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .site-header .mega-section a:not(.mega-section-title) {
    padding: 4px 0;
  }

  .site-header .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .hero .container {
    padding: 42px 0 46px;
  }

  .check-grid,
  .quality-cards,
  .process-grid,
  .spec-card-grid,
  .mini-specs,
  .app-grid,
  .rfq-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .technical-panel {
    padding: 22px;
  }

  .section {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.55rem);
  }

  .hero-stats div {
    padding: 13px 15px;
  }

  .hero-stats dd,
  .site-footer a,
  .technical-panel td {
    overflow-wrap: anywhere;
  }

  .modal-card {
    max-height: 92vh;
    padding: 22px;
  }

  .origin-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .btn {
    width: 100%;
  }
}
