/* ══════════════════════════════════════════════════════════
   AGfarms Insight — Main Stylesheet
   
   FONTS: Flexo Bold & Flexo Regular (Dalton Maag)
   Place .woff2 files in /fonts/ folder.
   ══════════════════════════════════════════════════════════ */

/* ─── @FONT-FACE ─── */
@font-face {
  font-family: 'Flexo';
  src: url('../fonts/Flexo-Regular.woff2') format('woff2'),
       url('../fonts/Flexo-Regular.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Flexo';
  src: url('../fonts/Flexo-Bold.woff2') format('woff2'),
       url('../fonts/Flexo-Bold.woff')  format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand colors — PANTONE 627 C */
  --bg-primary:    #10312b;
  --bg-secondary:  #0c2520;
  --bg-tertiary:   #163d35;
  --bg-card:       rgba(22, 61, 53, 0.45);
  --bg-card-hover: rgba(22, 61, 53, 0.7);

  /* Accent — golden / earth */
  --accent:        #c9a84c;
  --accent-light:  #e0c672;
  --accent-glow:   rgba(201, 168, 76, 0.15);

  /* Text */
  --text-primary:   #eae3d5;
  --text-secondary: #94a8a1;
  --text-muted:     #5e7a72;

  /* Borders */
  --border:        rgba(234, 227, 213, 0.08);
  --border-accent: rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-heading: 'Flexo', 'Sora', system-ui, sans-serif;
  --font-body:    'Flexo', 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --nav-height:      72px;
  --section-padding:  clamp(80px, 12vh, 140px);
  --container:        min(1200px, 90vw);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── GLOBAL BACKGROUND TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(22,61,53,0.3)  0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}

/* ─── UTILITY ─── */
.container { width: var(--container); margin: 0 auto; position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.section-label--center {
  justify-content: center;
}
.section-label--center::before { display: none; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.text-secondary { color: var(--text-secondary); }
.text-accent    { color: var(--accent); }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.2);
}
.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  font-weight: 600;
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}
.btn-outline-accent {
  padding: 10px 24px;
  border: 1px solid var(--border-accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(12, 37, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__link:hover,
.nav__link.active { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-left: 1rem;
}
.lang-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 37, 32, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   PAGE HERO (internal pages)
   ═══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 70% 20%, rgba(201,168,76,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
/* Banner image behind page hero — set via inline style on each page */
.page-hero__banner {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: grayscale(30%);
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 50% 70% at 60% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 70% at 60% 30%, black 0%, transparent 70%);
  opacity: 0.35;
}
/* Divider line under page hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), var(--border), transparent);
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb svg { opacity: 0.4; }

/* ═══════════════════════════════════════
   HOME HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(22,61,53,0.5) 0%, transparent 50%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 50%, black 0%, transparent 70%);
  opacity: 0.4;
}
.hero__content {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__text { max-width: 580px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: var(--accent-glow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stat cards (hero right) */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-card {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
}
.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateX(-4px);
}
.stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.stat-card__bar {
  margin-top: 12px;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.stat-card__bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card__bar-fill.animated { width: var(--fill); }

/* ═══════════════════════════════════════
   SERVICES OVERVIEW (homepage + services page)
   ═══════════════════════════════════════ */
.services-overview {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}
.services-overview__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
}
.service-card__link {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ═══════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════ */
.service-detail {
  padding: var(--section-padding) 0;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail__text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.service-detail__features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.service-detail__features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.service-detail__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.service-detail__image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.image-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 2rem;
}
.image-placeholder svg {
  display: block;
  margin: 0 auto 12px;
  opacity: 0.35;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-intro {
  padding: var(--section-padding) 0;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro__text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.about-stats__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.about-stats__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Mission / Vision / Values */
.about-mvv {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

/* Media / Press mentions */
.about-media {
  padding: calc(var(--section-padding) * 0.6) 0;
  border-top: 1px solid var(--border);
}
.about-media__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.about-media__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1.25rem 2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s;
  text-decoration: none;
}
.about-media__item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.about-media__item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.about-media__item-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero with background image */
.hero__banner-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(20%);
}

/* Hero with background VIDEO */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  opacity: 0.7;
}

/* Fallback: on mobile, hide video and show poster image instead */
@media (max-width: 768px) {
  .hero__video-wrap video { display: none; }
  .hero__video-wrap {
    background-size: cover;
    background-position: center;
  }
  .hero__video-wrap::after { opacity: 0.75; }
}
.about-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s;
}
.mvv-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.mvv-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.mvv-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  padding: var(--section-padding) 0;
  text-align: center;
}
.cta-banner__inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-section {
  padding: var(--section-padding) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.contact__item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact__item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact__item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact__item-value {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  border-color: var(--accent);
  background: rgba(201,168,76,0.04);
}
.contact__field textarea { resize: vertical; min-height: 120px; }
.contact__field select option { background: var(--bg-primary); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }
.footer__links { display: flex; gap: 2rem; }
.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content         { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual          { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-intro__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .services-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail__image { position: static; }
  .contact__grid         { grid-template-columns: 1fr; gap: 3rem; }
  .about-mvv__grid       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }

  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 64px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__visual { grid-template-columns: 1fr; }

  .stat-card { padding: 20px 24px; }
  .stat-card__number { font-size: 2rem; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-stats__num { font-size: 1.4rem; }

  .services-overview__grid { grid-template-columns: 1fr; }
  .about-mvv__grid         { grid-template-columns: 1fr; }

  .service-card { padding: 2rem 1.5rem; }
  .contact__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about-stats   { grid-template-columns: 1fr; gap: 1rem; }
}
