/* ============================================
   SMÇ Group - Corporate Website Styles
   Brand: Navy Blue, Gold, Silver
   ============================================ */

:root {
  --color-navy: #0a1f44;
  --color-navy-light: #122a5c;
  --color-blue: #0056b3;
  --color-blue-bright: #1a6fd4;
  --color-gold: #c9a227;
  --color-gold-light: #e0b83d;
  --color-gold-dark: #a8861f;
  --color-silver: #c0c0c0;
  --color-white: #ffffff;
  --color-off-white: #f8f9fc;
  --color-gray-100: #f1f3f8;
  --color-gray-200: #e2e6ef;
  --color-gray-400: #8b95a8;
  --color-gray-600: #4a5568;
  --color-gray-800: #1a202c;
  --color-text: #2d3748;
  --color-text-light: #718096;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 10px 40px rgba(10, 31, 68, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 96px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn--full { width: 100%; }

/* Section */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section__label--light { color: var(--color-gold-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section--dark .section__title { color: var(--color-white); }

.section__title em {
  font-style: normal;
  color: var(--color-blue);
}

.section--dark .section__title em { color: var(--color-gold); }

.section__desc {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
}

.section--dark .section__desc { color: rgba(255, 255, 255, 0.7); }

.section__header { margin-bottom: 60px; }

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

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

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-blue);
  background: rgba(0, 86, 179, 0.08);
}

.header__cta {
  padding: 10px 20px;
  font-size: 14px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 31, 68, 0.88) 0%,
    rgba(10, 31, 68, 0.65) 50%,
    rgba(0, 86, 179, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--header-height);
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 8px 18px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
}

.hero__arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.hero__dots {
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.hero__scroll a:hover { color: var(--color-gold); }

/* Features */
.features {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  padding-bottom: 40px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition);
}

.feature-card:hover { transform: translateY(-6px); }

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about__badge-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.about__card {
  position: absolute;
  top: 24px;
  left: -30px;
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 200px;
}

.about__card img { margin-bottom: 8px; }

.about__card p {
  font-size: 12px;
  font-style: italic;
  color: var(--color-blue);
  font-weight: 500;
}

.about__lead {
  font-size: 18px;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 16px;
}

.about__content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}

.about__list svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Sectors */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sector-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.sector-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sector-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sector-card:hover .sector-card__image img {
  transform: scale(1.08);
}

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.8) 0%, transparent 60%);
}

.sector-card__body {
  padding: 28px;
}

.sector-card__body--full {
  padding: 40px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(0, 86, 179, 0.1) 100%);
}

.sector-card__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.sector-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sector-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sector-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  transition: color var(--transition);
}

.sector-card__link:hover { color: var(--color-gold-light); }

.sector-card--highlight {
  grid-column: span 1;
}

/* Mission */
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  background: var(--color-off-white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mission-card--vision {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  border-color: transparent;
}

.mission-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(0, 86, 179, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-blue);
  margin-bottom: 24px;
}

.mission-card--vision .mission-card__icon {
  background: rgba(201, 162, 39, 0.2);
  color: var(--color-gold);
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.mission-card--vision h3 { color: var(--color-white); }

.mission-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.8;
}

.mission-card--vision p { color: rgba(255, 255, 255, 0.8); }

/* Distributor */
.distributor {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
  padding: 80px 0;
  color: var(--color-white);
}

.distributor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.distributor__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.distributor__content h2 em {
  font-style: normal;
  color: var(--color-gold);
}

.distributor__content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.distributor__stats {
  display: flex;
  gap: 40px;
}

.distributor__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.distributor__stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.distributor__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-radius: var(--radius-sm);
  color: var(--color-blue);
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.value-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-color: transparent;
}

.value-card--wide .value-card__icon {
  background: rgba(201, 162, 39, 0.2);
  color: var(--color-gold);
  flex-shrink: 0;
  margin-bottom: 0;
}

.value-card--wide h4 { color: var(--color-white); }
.value-card--wide p { color: rgba(255, 255, 255, 0.75); }

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--color-gold); }

.contact-item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.contact__map {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact__form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */
.footer {
  background: var(--color-gray-800);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img { margin-bottom: 16px; }

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__links ul li { margin-bottom: 10px; }

.footer__links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-gold); }

.footer__contact p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer__contact a:hover { color: var(--color-gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--color-gold); }

/* Form checkbox */
.form-group--checkbox { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-gold);
  text-decoration: underline;
}

.checkbox-label a:hover { color: var(--color-gold-light); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  box-shadow: 0 -4px 24px rgba(10, 31, 68, 0.15);
  padding: 20px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

.cookie-banner__inner a {
  color: var(--color-blue);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__link {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

.cookie-banner__link:hover { color: var(--color-blue); }

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-gray-200);
}

.btn--outline-dark:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

/* Legal pages */
.legal-body {
  background: var(--color-off-white);
}

.legal-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 16px 0;
}

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

.legal-header__logo img {
  height: 64px;
  width: auto;
}

.legal-header__back {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
}

.legal-header__back:hover { color: var(--color-navy); }

.legal-page {
  padding: 48px 0 80px;
}

.legal-page__content {
  max-width: 800px;
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}

.legal-page__content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.legal-page__updated {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.legal-page__content h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin: 32px 0 12px;
}

.legal-page__content h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin: 20px 0 8px;
}

.legal-page__content p,
.legal-page__content li {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page__content a {
  color: var(--color-blue);
  font-weight: 500;
}

.legal-page__content a:hover { color: var(--color-navy); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--color-gray-200);
  padding: 12px 16px;
  text-align: left;
}

.legal-table th {
  background: var(--color-gray-100);
  color: var(--color-navy);
  font-weight: 600;
}

.legal-footer {
  background: var(--color-gray-800);
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

.legal-footer a {
  color: rgba(255, 255, 255, 0.6);
}

.legal-footer a:hover { color: var(--color-gold); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 48px; }
  .distributor__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .legal-page__content { padding: 32px 24px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .nav__link {
    padding: 12px 16px;
    font-size: 16px;
  }

  .header__cta { display: none; }
  .header__toggle { display: flex; }

  .hero__controls { bottom: 80px; }
  .hero__arrow { width: 40px; height: 40px; }

  .features { margin-top: -40px; }
  .features__grid { grid-template-columns: 1fr; }

  .about__grid,
  .mission__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__badge { right: 16px; bottom: 16px; }
  .about__card { left: 16px; top: 16px; }
  .about__list { grid-template-columns: 1fr; }

  .sectors__grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .value-card--wide {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .distributor__stats { gap: 24px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .legal-header__inner { flex-direction: column; align-items: flex-start; }
  .legal-page__content { padding: 24px 20px; }
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 8px; }

  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .distributor__stats { flex-direction: column; gap: 16px; }
}
