/* ============================================
   KN GROUP SARL — style.css
   ============================================ */

/* ── VARIABLES ── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3560;
  --gold:       #c8a96e;
  --gold-light: #e2c99a;
  --white:      #f5f7fa;
  --gray:       #8892a4;
  --light-bg:   #eef1f6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── LANG BAR ── */
.lang-bar {
  background: var(--navy);
  display: flex;
  justify-content: flex-end;
  padding: 6px 40px;
  gap: 6px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 2px 12px;
  font-size: 11px;
  letter-spacing: .1em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #b0bbcc;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active-link,
.mobile-menu a.active-link { color: var(--gold); }
.nav-links a.active-link::after { width: 100%; }

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: .06em;
}

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

.close-btn {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,.93) 0%,
    rgba(17,34,64,.88) 55%,
    rgba(26,53,96,.80) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp .9s ease both;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

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

.hero p {
  color: #8fa8c8;
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── BOUTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTIONS (commun) ── */
section {
  padding: 90px 40px;
}

.section-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  max-width: 560px;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 420px;
}

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

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.2) 60%,
    transparent 100%);
}

.about-img-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.about-caption-tag {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.about-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.about-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 160px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.badge-txt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}

.values-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.value-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── SECTEURS ── */
.sectors {
  background: var(--light-bg);
}

.sectors-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-header {
  margin-bottom: 56px;
}

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

.sector-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .4s;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,.12);
}

.sector-card:hover::after { width: 100%; }

.sector-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

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

.sector-body {
  padding: 24px 24px 28px;
}

.sector-num {
  position: absolute;
  top: 185px;
  right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(10,22,40,.06);
  line-height: 1;
  pointer-events: none;
}

.sector-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.sector-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.sector-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.sector-card.wide {
  grid-column: span 2;
}

.sector-card.wide img {
  height: 200px;
}

/* ── BANDEAU CTA ── */
.cta-band {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(10,22,40,.93) 0%,
    rgba(26,53,96,.90) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: #8fa8c8;
  font-size: 15px;
  margin-bottom: 36px;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info .section-sub {
  margin-bottom: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #dde3ec;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--navy-light);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #8892a4;
  padding: 50px 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 14px;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #8892a4;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ── RÉALISATIONS (VIDÉOS) ── */
.realisations {
  background: var(--navy);
  padding: 90px 40px;
}

.realisations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.realisations-header {
  margin-bottom: 56px;
}

.realisations-header .section-label {
  color: var(--gold);
}

.realisations-header .section-title {
  color: var(--white);
}

.realisations-header .section-sub {
  color: var(--gray);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* ratio 16:9 */
}

.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%, transparent 100%);
  z-index: 1;
}

.video-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.video-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

/* ── RESPONSIVE VIDÉOS ── */
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .realisations {
    padding: 60px 20px;
  }
}

/* ============================================
   PAGES SECTEURS (sous-pages : agriculture, technologie, ...)
   ============================================ */

/* ── HERO DE PAGE ── */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 70px 40px 50px;
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,.94) 0%,
    rgba(17,34,64,.88) 55%,
    rgba(26,53,96,.82) 100%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 760px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

.page-hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}

.page-hero p {
  color: #8fa8c8;
  font-size: 15px;
  line-height: 1.75;
  max-width: 600px;
}

/* ── INTRO / DÉTAIL SECTEUR ── */
.sector-intro { background: var(--white); }

.sector-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: start;
}

.sector-intro-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.service-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.service-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.sector-intro-visual { position: relative; }

.sector-intro-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.sector-intro-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ── GALERIE PHOTO ── */
.gallery { background: var(--light-bg); }

.gallery-header { max-width: 1180px; margin: 0 auto 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-item { position: relative; overflow: hidden; }

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(10,22,40,.88) 0%, transparent 100%);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .04em;
}

/* ── GRILLE DE SERVICES (4 blocs, ex: page Technologie) ── */
.services-grid {
  background: var(--light-bg);
}

.services-grid-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.service-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .services-grid-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── AUTRES SECTEURS (teaser bas de page) ── */
.other-sectors { background: var(--navy); }
.other-sectors .section-label { color: var(--gold); }
.other-sectors .section-title { color: var(--white); }
.other-sectors .section-sub { color: var(--gray); }

.other-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.other-sector-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px 22px;
  text-decoration: none;
  transition: all .25s;
  display: block;
}

.other-sector-card:hover {
  background: rgba(200,169,110,.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.other-sector-card .osc-icon { font-size: 24px; margin-bottom: 12px; }

.other-sector-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.other-sector-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── RESPONSIVE PAGES SECTEURS ── */
@media (max-width: 1024px) {
  .sector-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .sector-intro-visual img { height: 340px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .other-sectors-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 50px 20px 40px; min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-item img { height: 180px; }
  .other-sectors-grid { grid-template-columns: 1fr; }
  .sector-intro-visual img { height: 280px; }
  .sector-intro-visual::before { display: none; }
  .breadcrumb { font-size: 10px; gap: 6px; }
  .service-list li { font-size: 13px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 14px; }
  .other-sector-card { padding: 22px 18px; }
  .sector-intro-text p { font-size: 14px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── RESPONSIVE TABLETTE ── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual { height: 320px; }
  .about-badge { right: 0; }

  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sector-card.wide { grid-column: span 2; }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .lang-bar { padding: 6px 20px; }

  section { padding: 60px 20px; }

  .hero { padding: 60px 20px; min-height: auto; }

  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card.wide { grid-column: span 1; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-band { padding: 60px 20px; }
}

/* ── RESPONSIVE PETIT MOBILE ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .hero-stats { gap: 24px; }
}

.logo-img{
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo-img{
  height: 52px;
  margin-bottom: 16px;
}
@media(max-width:1024px){
  .logo-img{height: 40px;}
  .footer-logo-img{height: 46px;}
}
@media(max-width:480px){
  .logo-img{height: 30px;}
  .footer-logo-img{height: 38px;}
}