:root {
  --graphite: #2e3236;
  --cool: #6f767d;
  --light: #e6e8ea;
  --white: #ffffff;
  --accent: #b51212;
  --clay: var(--graphite);
  --clay-dark: var(--accent);
  --stone: var(--light);
  --slate: var(--graphite);
  --steel: var(--cool);
  --mist: var(--light);
  --line: var(--light);
  --accent-dark: #8f0f0f;
  --gold: var(--accent);
  --shadow: 0 16px 36px rgba(46, 50, 54, 0.16);
  --shadow-soft: 0 12px 28px rgba(46, 50, 54, 0.14);
  --shadow-hard: 0 24px 60px rgba(31, 35, 39, 0.24);
  --glass: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-highlight: rgba(255, 255, 255, 0.8);
  --glass-shadow: rgba(31, 35, 39, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.products-page::before,
.products-page::after {
  display: none;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--slate);
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(30px, 4vw, 52px);
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
}

p {
  margin: 0 0 16px;
  color: var(--cool);
}

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

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

.topbar {
  background: var(--graphite);
  color: var(--mist);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  position: relative;
  z-index: 1;
}

.hero-modern {
  position: relative;
  padding: 84px 0 68px;
  overflow: hidden;
}

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

.home-page .hero-grid {
  align-items: flex-start;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: -10% 0 0 0;
  background: radial-gradient(circle at 12% 20%, rgba(181, 18, 18, 0.22), transparent 50%),
    radial-gradient(circle at 70% 0%, rgba(46, 50, 54, 0.18), transparent 55%);
  z-index: 0;
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: -20% 0 0 0;
  background:
    radial-gradient(160% 120% at 15% 15%, rgba(255, 255, 255, 0.65), transparent 55%),
    radial-gradient(140% 120% at 85% 10%, rgba(181, 18, 18, 0.28), transparent 60%);
  opacity: 0.6;
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-modern .container {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.lang-btn {
  border: none;
  background: var(--white);
  color: var(--graphite);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 7px 9px;
  cursor: pointer;
}

.lang-btn + .lang-btn {
  border-left: 1px solid var(--line);
}

.lang-btn.active {
  background: var(--graphite);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--graphite);
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  flex-wrap: nowrap;
}

nav ul li {
  position: relative;
}

nav a {
  color: var(--graphite);
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 170px;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
}

.nav-item-dropdown:hover .submenu,
.nav-item-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.photo-slot .label,
.photo-caption {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    135deg,
    rgba(181, 18, 18, 0.95),
    rgba(143, 15, 15, 0.85)
  );
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  background: linear-gradient(
    135deg,
    rgba(181, 18, 18, 1),
    rgba(143, 15, 15, 0.9)
  );
  border-color: rgba(255, 255, 255, 0.75);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn.secondary:hover {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.8);
}

.btn.toy {
  background: var(--toy);
  border-color: var(--toy);
}

.btn.toy:hover {
  background: var(--toy-deep);
  border-color: var(--toy-deep);
}

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

.btn.toy.secondary:hover {
  color: var(--toy-deep);
  border-color: var(--toy-deep);
  background: rgba(245, 124, 124, 0.12);
}

.hero {
  padding: 80px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero .intro {
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}

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

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

.hero-title-row .hero-logo {
  margin-bottom: 0;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .hero-title-row {
    align-items: flex-start;
    gap: 10px;
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 16px 40px var(--glass-shadow);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.65)
  );
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--steel);
}

.image-placeholder {
  height: 320px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  border-radius: 0;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--steel);
  font-size: 14px;
  padding: 20px;
}

.photo-slot {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(31, 35, 39, 0.18);
}

.photo-slot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(46, 50, 54, 0) 0%, rgba(46, 50, 54, 0.45) 100%);
  pointer-events: none;
}

.photo-slot.banner {
  aspect-ratio: 3 / 1;
  min-height: 280px;
  height: clamp(280px, 24vw, 520px);
}

.photo-slot.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.photo-slot.banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 140%;
  top: -20%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

.photo-slot.banner .banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.photo-slot.banner .banner-logo::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  z-index: -1;
}

.photo-slot.banner .banner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slot .corner-logo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 64px;
  height: 64px;
  z-index: 2;
  pointer-events: none;
}

.photo-slot .corner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.photo-slot .label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(47, 36, 28, 0.7);
  color: var(--mist);
  padding: 8px 12px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.photo-slot .note {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--slate);
  padding: 6px 10px;
  border-radius: 0;
  font-size: 12px;
}

.image-placeholder.toy {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  color: var(--cool);
}

section {
  padding: 60px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.industries-grid {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.industry-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.industry-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

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

.product-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--light);
}

.product-section.alt {
  background: var(--white);
}

.product-section .section-head p {
  max-width: 560px;
}

.spec-table {
  display: grid;
  gap: 14px;
}

.product-media {
  max-width: 520px;
}

.product-media .section-head {
  width: 100%;
}

.product-media .photo-slot {
  min-height: 200px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border-style: dashed;
  box-shadow: none;
}

.products-page .photo-slot::after {
  display: none;
}

.photo-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--steel);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(38, 30, 24, 0.06);
  align-items: center;
}

.spec-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

.spec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.spec-row strong {
  font-weight: 600;
  color: var(--slate);
}

.spec-row .spec-tags {
  margin-top: 6px;
}

.spec-row .spec-tags .tag {
  font-size: 11px;
}

.product-meta {
  color: var(--steel);
  font-size: 14px;
  margin-top: 6px;
}

.product-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--steel);
  margin: 6px 0 8px;
}

.section-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--accent);
}

.section-icon svg {
  width: 16px;
  height: 16px;
}

.section-marker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--clay-dark);
  display: inline-block;
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
  color: var(--steel);
}

.icon-line svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex: 0 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card h3 {
  margin-bottom: 8px;
}

.card .sticker {
  width: 72px;
  height: 72px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(217, 211, 204, 0.8);
  box-shadow: 0 8px 18px rgba(52, 40, 30, 0.12);
  background: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.card::after {
  content: "";
  position: absolute;
  inset: -40% -60% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 65%);
  opacity: 0;
  transform: translate(30px, -30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 0.55;
  transform: translate(0, 0);
}

.product-head .sticker {
  width: 46px;
  height: 46px;
  border-radius: 0;
  margin: 8px 0 6px;
  box-shadow: 0 6px 14px rgba(52, 40, 30, 0.1);
}

.metal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.metal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.metal-filter-btn {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.metal-filter-btn:hover,
.metal-filter-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(181, 18, 18, 0.06);
}

.metal-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(46, 50, 54, 0.08);
  padding: 18px;
}

.metal-card.is-hidden {
  display: none;
}

.metal-card h3 {
  margin-bottom: 8px;
}

.metal-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--steel);
  font-size: 14px;
}

.metal-meta strong {
  color: var(--slate);
}

.metal-quality {
  display: grid;
  gap: 6px;
}

.metal-quality-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--light);
  font-size: 14px;
}

.metal-quality-row span {
  color: var(--steel);
}

.metal-quality-row strong {
  color: var(--slate);
  text-align: right;
}

.metal-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--steel);
  line-height: 1.45;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 0;
  font-size: 12px;
  color: var(--steel);
}

.tag.toy {
  background: var(--light);
  border-color: var(--light);
  color: var(--cool);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.panel {
  background: linear-gradient(
    135deg,
    rgba(46, 50, 54, 0.92),
    rgba(46, 50, 54, 0.78)
  );
  color: var(--white);
  padding: 36px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.panel.premium {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-hard);
}

.panel p {
  color: var(--light);
}

.panel h1,
.panel h2,
.panel h3 {
  color: var(--white);
}

.panel .eyebrow {
  color: var(--light);
}

.panel .btn.secondary {
  color: var(--white);
  border-color: var(--white);
}

.panel .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.panel.toy {
  background: linear-gradient(120deg, var(--graphite) 0%, var(--accent) 100%);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.number.toy {
  color: var(--toy);
}

.cta-section {
  background: linear-gradient(120deg, var(--graphite) 0%, var(--accent) 100%);
  color: var(--white);
}

.cta-section .card {
  background: rgba(255, 255, 255, 0.9);
}

.cta-section .card h3,
.cta-section .card p {
  color: var(--graphite);
}

.accent-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 10px;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: var(--light);
}

form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 0;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.toy-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

footer {
  background: var(--graphite);
  color: var(--cool);
  padding: 40px 0;
  font-size: 14px;
}

footer .grid-3 {
  align-items: start;
}

footer .grid-3 > div > p {
  margin: 0;
  line-height: 1.8;
}

footer .grid-3 > div:not(.footer-brand) {
  text-align: right;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-text {
  flex: 1;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-links-list {
  margin: 0;
  line-height: 1.8;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--cool);
  font-size: 13px;
}

.footer-legal-row {
  grid-column: 1 / -1;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-legal-text {
  color: var(--cool);
  line-height: 1.8;
}

.legal-link {
  color: var(--cool);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  line-height: 1.8;
  cursor: pointer;
}

.legal-link:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: linear-gradient(135deg, #1a2f48 0%, #2f5f8f 55%, #4d8fc7 100%);
  color: var(--white);
  padding: 14px 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-hard);
}

.cookie-banner-text,
.cookie-banner .cookie-actions {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.cookie-modal-card {
  position: relative;
  margin: 10vh auto 0;
  max-width: 520px;
  background: var(--white);
  color: var(--graphite);
  padding: 20px;
  box-shadow: var(--shadow-hard);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-banner .cookie-settings-trigger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-save-note {
  font-size: 13px;
  color: var(--accent);
  min-height: 18px;
  margin-top: 10px;
}

.legal-page {
  padding: 24px 0 44px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page h2 {
  margin-top: 24px;
}

[hidden] {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.1s;
}

.fade-delay-2 {
  animation-delay: 0.2s;
}

.fade-delay-3 {
  animation-delay: 0.3s;
}

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

@keyframes floatGlow {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(6px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

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

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

.hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hard);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav nav,
  .nav .lang-switch,
  .nav > .btn {
    display: none;
  }

  header.menu-open .nav nav {
    display: block;
    width: 100%;
    order: 4;
    margin-top: 10px;
  }

  header.menu-open .nav nav ul {
    display: grid;
    gap: 0;
    font-size: 14px;
    border-top: 1px solid var(--line);
  }

  header.menu-open .nav nav a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  header.menu-open .nav .lang-switch {
    display: inline-flex;
    order: 3;
    margin-top: 10px;
  }

  header.menu-open .nav > .btn {
    display: inline-flex;
    order: 5;
    width: 100%;
    margin-top: 10px;
  }

  .submenu {
    top: calc(100% + 6px);
    min-width: 150px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0;
  }

  .hero-modern {
    padding: 70px 0 60px;
  }
}
