:root {
  --green-950: #072a10;
  --green-900: #0b4a1e;
  --green-800: #0f6730;
  --green-700: #178841;
  --green-500: #27b054;
  --green-100: #ecfaf0;

  --orange-900: #b94700;
  --orange-800: #de5b00;
  --orange-700: #ff6a00;
  --orange-500: #ff9330;
  --orange-100: #fff2e8;

  --dark-950: #071017;
  --dark-900: #0d1720;
  --dark-800: #162330;
  --text: #20303d;
  --muted: #647282;
  --line: rgba(15, 26, 35, 0.08);
  --line-strong: rgba(15, 26, 35, 0.15);

  --white: #ffffff;
  --bg: #fffdf9;
  --bg-soft: #fff8ef;

  --shadow-sm: 0 10px 22px rgba(9, 18, 27, 0.06);
  --shadow: 0 20px 50px rgba(9, 18, 27, 0.10);
  --shadow-lg: 0 28px 70px rgba(9, 18, 27, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1180px;
  --header-h: 86px;
  --announcement-h: 46px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(39, 176, 84, 0.10), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.10), transparent 24%),
    linear-gradient(180deg, #fffefc 0%, var(--bg) 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.announcement-bar {
  min-height: var(--announcement-h);
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--green-900), var(--orange-800));
  color: var(--white);
  position: relative;
  z-index: 1100;
}

.announcement-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
  text-align: center;
  font-size: 0.92rem;
}

.announcement-inner span {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.announcement-inner strong {
  font-weight: 700;
}

.announcement-inner a {
  font-weight: 800;
  color: #fff9d6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--dark-900);
}

.brand-text span {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(23, 136, 65, 0.08);
  color: var(--green-800);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--dark-900);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle span {
  top: 23px;
}

.menu-toggle::after {
  top: 30px;
}

.menu-toggle.active span {
  opacity: 0;
}

.menu-toggle.active::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding-top: 90px;
  padding-bottom: 78px;
}

.compact-hero {
  padding-top: 58px;
  padding-bottom: 42px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  background: rgba(39, 176, 84, 0.14);
  left: -60px;
  top: 90px;
  animation: floaty 8s ease-in-out infinite;
}

.hero-orb-b {
  width: 260px;
  height: 260px;
  background: rgba(255, 106, 0, 0.16);
  right: -50px;
  top: 40px;
  animation: floaty 9s ease-in-out infinite reverse;
}

.hero-grid,
.split-layout,
.contact-layout,
.brand-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1,
.page-hero-content h1 {
  margin: 0 0 18px;
  color: var(--dark-900);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--green-700), var(--orange-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 92px 0;
}

.section-compact-top {
  padding-top: 26px;
}

.light-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 248, 239, 0.60));
}

.dark-panel-wrap {
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.highlight-box h2,
.info-box h2,
.content-box h2,
.brand-showcase-text h2,
.contact-panel h2,
.form-panel h2,
.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark-900);
}

h3 {
  margin: 0 0 10px;
  color: var(--dark-900);
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 700px;
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 136, 65, 0.10), rgba(255, 106, 0, 0.12));
  color: var(--green-800);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--orange-700));
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 16px 30px rgba(23, 136, 65, 0.22);
}

.btn-secondary {
  color: var(--orange-900);
  background: var(--white);
  border: 1px solid rgba(255, 106, 0, 0.18);
  box-shadow: var(--shadow-sm);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tag {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--line);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-card,
.feature-card,
.promo-card,
.highlight-box,
.info-box,
.content-box,
.brand-showcase,
.contact-panel,
.form-panel,
.cta-box,
.job-card,
.catalogue-toolbar,
.catalogue-section,
.logo-panel,
.stat-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
  filter: blur(6px);
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fcf8);
}

.logo-panel img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.16));
}

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

.stat-card {
  padding: 18px;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  color: var(--dark-900);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

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

.feature-card,
.job-card,
.promo-card {
  padding: 28px;
  border-radius: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.job-card:hover,
.promo-card:hover,
.catalogue-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(23, 136, 65, 0.12), rgba(255, 106, 0, 0.12));
}

.rayon-card {
  position: relative;
  overflow: hidden;
}

.rayon-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-700));
}

.highlight-box {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, rgba(15, 103, 48, 0.98), rgba(255, 106, 0, 0.94));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.highlight-box::before,
.highlight-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.highlight-box::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -70px;
}

.highlight-box::after {
  width: 180px;
  height: 180px;
  left: -50px;
  bottom: -60px;
}

.highlight-box h2,
.highlight-box p,
.highlight-box li {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.info-box,
.content-box,
.contact-panel,
.form-panel,
.cta-box,
.brand-showcase {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.mini-info-list,
.info-list,
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.mini-info-item,
.info-item,
.contact-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fffdfa);
  border: 1px solid var(--line);
}

.mini-info-item strong,
.contact-item h3 {
  display: block;
  margin-bottom: 6px;
}

.check-list,
.bullet-soft {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li,
.bullet-soft li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.check-list li::before,
.bullet-soft li::before {
  content: "✔";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.check-list li::before {
  background: rgba(255, 255, 255, 0.18);
}

.dark-list li::before,
.bullet-soft li::before {
  background: rgba(23, 136, 65, 0.12);
  color: var(--green-800);
}

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

.promo-grid-large {
  align-items: stretch;
}

.promo-label,
.job-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.promo-label {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.job-badge {
  background: var(--orange-100);
  color: var(--orange-900);
}

.promo-accent-green {
  background: linear-gradient(135deg, rgba(15, 103, 48, 0.98), rgba(39, 176, 84, 0.96));
  color: var(--white);
}

.promo-accent-orange {
  background: linear-gradient(135deg, rgba(222, 91, 0, 0.98), rgba(255, 147, 48, 0.95));
  color: var(--white);
}

.promo-accent-dark {
  background: linear-gradient(135deg, rgba(13, 23, 32, 0.98), rgba(28, 45, 58, 0.95));
  color: var(--white);
}

.promo-card h3,
.promo-card p,
.promo-card li {
  color: var(--white);
}

.text-link {
  margin-top: 18px;
  display: inline-flex;
  font-weight: 800;
  color: #fff4d8;
}

.brand-showcase {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.brand-showcase-logo {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f9fcf9);
}

.brand-showcase-logo img {
  max-width: 420px;
  margin: 0 auto;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-layout {
  grid-template-columns: 0.94fr 1.06fr;
}

.fake-map {
  position: relative;
  min-height: 310px;
  margin-top: 28px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(23, 136, 65, 0.14), rgba(255, 106, 0, 0.14)),
    linear-gradient(180deg, #f8fbff, #f5f8fb);
}

.fake-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 23, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 32, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.fake-map-route {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22%;
  bottom: 18%;
  border-radius: 40px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-7deg);
  box-shadow: inset 0 0 0 2px rgba(23, 136, 65, 0.12);
}

.fake-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-700);
  box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.16);
}

.fake-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background: rgba(13, 23, 32, 0.18);
}

.fake-pin span {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 7px 11px;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--dark-900);
  font-size: 0.85rem;
  font-weight: 800;
}

.pin-a { top: 36%; left: 26%; }
.pin-b { top: 20%; right: 22%; }
.pin-c { bottom: 20%; left: 56%; }

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 700;
  color: var(--dark-900);
}

.form-row input,
.form-row textarea,
.catalogue-search {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(13, 23, 32, 0.10);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-row input,
.form-row textarea {
  padding: 15px 16px;
}

.catalogue-search {
  padding: 16px 18px;
  min-height: 58px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.form-row input:focus,
.form-row textarea:focus,
.catalogue-search:focus {
  border-color: rgba(23, 136, 65, 0.45);
  box-shadow: 0 0 0 4px rgba(23, 136, 65, 0.10);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-message.success {
  display: block;
  background: var(--green-100);
  border: 1px solid rgba(23, 136, 65, 0.18);
  color: var(--green-900);
}

.form-message.error {
  display: block;
  background: #fff0f0;
  border: 1px solid rgba(173, 38, 38, 0.18);
  color: #a12222;
}

.top-space {
  margin-top: 26px;
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  margin-bottom: 18px;
}

.catalogue-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.catalogue-stat {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fffdfa);
  border: 1px solid var(--line);
}

.catalogue-stat strong {
  display: block;
  color: var(--dark-900);
  font-size: 1.32rem;
  margin-bottom: 4px;
}

.catalogue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--orange-700));
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.catalogue-grid {
  display: grid;
  gap: 18px;
}

.catalogue-section {
  padding: 26px;
  border-radius: 28px;
  transition: 0.25s ease;
}

.catalogue-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalogue-section-head h3 {
  margin: 0;
}

.catalogue-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-900);
  font-weight: 800;
  font-size: 0.84rem;
}

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

.product-item {
  padding: 14px 14px 13px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fffdfa);
  box-shadow: var(--shadow-sm);
}

.product-fr {
  display: block;
  color: var(--dark-900);
  font-weight: 800;
  margin-bottom: 5px;
}

.product-en {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.catalogue-empty {
  padding: 24px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

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

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

.footer-brand strong {
  display: block;
  color: var(--dark-900);
}

.footer-brand span,
.footer-meta {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--green-800);
}

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

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

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(18px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .brand-showcase,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .promo-grid,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .catalogue-stats {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-h) - 2px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .nav.open a {
    padding: 14px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 680px) {
  .announcement-inner {
    font-size: 0.86rem;
  }

  .hero,
  .page-hero {
    padding: 52px 0;
  }

  .hero-home {
    padding-top: 62px;
  }

  .section {
    padding: 72px 0;
  }

  .grid-3,
  .promo-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .brand-text {
    display: none;
  }

  .hero-card,
  .feature-card,
  .promo-card,
  .highlight-box,
  .info-box,
  .content-box,
  .brand-showcase,
  .contact-panel,
  .form-panel,
  .cta-box,
  .job-card,
  .catalogue-toolbar,
  .catalogue-section {
    padding: 24px;
  }

  .logo-panel {
    min-height: 240px;
    padding: 22px;
  }

  .fake-map {
    min-height: 260px;
  }
}