/* ============================================================
   NES GROUP — busi-nes.com V2
   International Sourcing Agency
   Charte: Navy #0A2540 · Gold #B08D57 · Crème #F4F1EC · Anthracite #2C2C2C
   Typo: Cormorant Garamond (titres) · Inter (corps) · Futura/wordmark
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-deep: #061829;
  --gold: #B08D57;
  --gold-light: #C9A878;
  --creme: #F4F1EC;
  --creme-warm: #EAE4D9;
  --anthracite: #2C2C2C;
  --white: #FFFFFF;
  --line: rgba(10, 37, 64, 0.12);
  --line-gold: rgba(176, 141, 87, 0.35);
  --shadow-sm: 0 2px 12px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 30px 80px rgba(10, 37, 64, 0.16);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--anthracite);
  background: var(--creme);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--navy); letter-spacing: -0.01em; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow.center::after {
  content: ''; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: baseline; gap: 2px; }
.brand .word {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.brand .word .dot { color: var(--gold); }
.brand .tag {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-left: 10px; font-weight: 600;
  border-left: 1px solid var(--line-gold); padding-left: 10px;
}
.site-header.on-dark .brand .word { color: var(--creme); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--navy); position: relative; padding: 4px 0; transition: color 0.3s;
}
.site-header.on-dark .nav-links a { color: var(--creme); }
.site-header.scrolled.on-dark .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 13px 26px; border-radius: 2px; cursor: pointer; border: none;
  transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--creme); }
.btn-navy:hover { background: var(--gold); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }
.site-header.on-dark .nav-toggle span { background: var(--creme); }
.site-header.scrolled.on-dark .nav-toggle span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0d2d4f 100%);
  color: var(--creme); overflow: hidden; padding: 140px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(176,141,87,0.18), transparent 45%),
                    radial-gradient(circle at 10% 90%, rgba(176,141,87,0.08), transparent 40%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none' stroke='%23B08D57' stroke-width='0.5'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero h1 {
  color: var(--creme); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.02;
  margin: 26px 0; font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .lead { font-size: 1.2rem; max-width: 540px; color: rgba(244,241,236,0.78); margin-bottom: 38px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; padding-top: 36px; border-top: 1px solid rgba(176,141,87,0.25); }
.hero-stat .num { font-family: var(--serif); font-size: 2.8rem; color: var(--gold-light); line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(244,241,236,0.6); margin-top: 8px; text-transform: uppercase; }

.hero-aside {
  border: 1px solid var(--line-gold); padding: 40px 34px; border-radius: 3px;
  background: rgba(10,37,64,0.4); backdrop-filter: blur(6px);
}
.hero-aside .ha-title { font-family: var(--serif); font-size: 1.5rem; color: var(--creme); margin-bottom: 18px; }
.hero-aside ul { list-style: none; }
.hero-aside li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(176,141,87,0.15); color: rgba(244,241,236,0.85); font-size: 0.95rem; }
.hero-aside li:last-child { border-bottom: none; }
.hero-aside li .idx { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; min-width: 28px; }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--creme);
  padding: 180px 0 90px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(176,141,87,0.15), transparent 50%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--creme); font-size: clamp(2.4rem, 5vw, 4rem); margin: 22px 0 18px; font-weight: 500; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(244,241,236,0.78); font-size: 1.15rem; max-width: 620px; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(244,241,236,0.5); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 20px 0 18px; font-weight: 500; }
.section-head p { font-size: 1.1rem; color: #555; }

.bg-creme { background: var(--creme); }
.bg-warm { background: var(--creme-warm); }
.bg-navy { background: var(--navy); color: var(--creme); }
.bg-navy h2, .bg-navy h3 { color: var(--creme); }
.bg-white { background: var(--white); }

/* ---------- Vertical cards (home) ---------- */
.verticals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.v-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: 3px; overflow: hidden; transition: all 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.v-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-gold); }
.v-card .v-media { height: 240px; position: relative; overflow: hidden; }
.v-card .v-media .ph { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.v-card:hover .v-media .ph { transform: scale(1.06); }
.v-card .v-num { position: absolute; top: 18px; left: 20px; z-index: 2; font-family: var(--serif); font-size: 1.4rem; color: var(--creme); }
.v-card .v-body { padding: 32px 30px 36px; flex: 1; display: flex; flex-direction: column; }
.v-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.v-card .v-body p { color: #555; font-size: 0.96rem; flex: 1; margin-bottom: 22px; }
.v-link { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.v-link .arrow { transition: transform 0.3s var(--ease); }
.v-card:hover .v-link .arrow { transform: translateX(5px); }

/* Photo placeholder gradients (replaceable) */
.ph-auto { background: linear-gradient(135deg, #0A2540, #1a3a5c); }
.ph-swag { background: linear-gradient(135deg, #2C2C2C, #4a3520); }
.ph-modular { background: linear-gradient(135deg, #1a2c3a, #2d4456); }
.ph-grain { background-blend-mode: overlay; }
.ph-label { position: absolute; bottom: 16px; right: 18px; font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(244,241,236,0.4); text-transform: uppercase; }

/* ---------- Promise band ---------- */
.promise { text-align: center; }
.promise h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 1000px; margin: 24px auto; font-weight: 500; font-style: italic; }
.promise h2 .gold { color: var(--gold); font-style: normal; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 38px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: none; }
.bg-navy .step { border-color: rgba(176,141,87,0.2); }
.step .s-num { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 1; }
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: #555; max-width: 640px; }
.bg-navy .step p { color: rgba(244,241,236,0.75); }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--creme); padding: 40px 34px; transition: background 0.3s; }
.feature:hover { background: var(--white); }
.feature .f-icon { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 22px; font-family: var(--serif); font-size: 1.3rem; }
.feature h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature p { color: #555; font-size: 0.95rem; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { height: 480px; border-radius: 3px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.split-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 18px 0; font-weight: 500; }
.split-text p { color: #555; margin-bottom: 18px; }
.bg-navy .split-text p { color: rgba(244,241,236,0.78); }
.check-list { list-style: none; margin-top: 24px; }
.check-list li { display: flex; gap: 14px; padding: 11px 0; align-items: flex-start; }
.check-list li::before { content: '—'; color: var(--gold); font-weight: 700; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--gold); line-height: 1; }
.stat-item .lbl { font-size: 0.85rem; letter-spacing: 0.06em; color: rgba(244,241,236,0.7); margin-top: 12px; text-transform: uppercase; }

/* ---------- Product ranges ---------- */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.range-card { background: var(--white); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: all 0.4s var(--ease); }
.range-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.range-card .r-media { height: 200px; position: relative; }
.range-card .r-body { padding: 26px 24px; }
.range-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.range-card p { font-size: 0.92rem; color: #555; }
.range-card .price { display: inline-block; margin-top: 14px; font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Case studies / references ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.case-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 3px; padding: 44px 40px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.case-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--gold); transition: height 0.4s var(--ease); }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.case-card:hover::before { height: 100%; }
.case-card .c-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.case-card h3 { font-size: 1.6rem; margin: 14px 0 12px; }
.case-card p { color: #555; font-size: 0.96rem; margin-bottom: 22px; }
.case-metrics { display: flex; gap: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.case-metric .m-num { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; }
.case-metric .m-lbl { font-size: 0.74rem; color: #888; margin-top: 6px; letter-spacing: 0.04em; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi {
  background: var(--white); border: 1px solid var(--line); padding: 40px 36px; border-radius: 3px;
  position: relative;
}
.testi .quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 0.5; opacity: 0.35; height: 30px; }
.testi p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 24px; }
.testi .author { display: flex; align-items: center; gap: 14px; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--creme); font-family: var(--serif); font-size: 1.1rem; }
.testi .a-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testi .a-role { font-size: 0.82rem; color: #888; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member { text-align: center; }
.member .m-photo { height: 280px; border-radius: 3px; margin-bottom: 20px; position: relative; overflow: hidden; }
.member h3 { font-size: 1.4rem; }
.member .m-role { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 6px 0 12px; }
.member p { font-size: 0.92rem; color: #555; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--creme);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(176,141,87,0.2), transparent 60%); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: var(--creme); font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 22px; font-weight: 500; }
.cta-band p { color: rgba(244,241,236,0.78); max-width: 560px; margin: 0 auto 36px; font-size: 1.1rem; }

/* ============================================================
   FORM
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 48px 44px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 9px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--sans); font-size: 0.95rem; color: var(--anthracite); background: var(--creme);
  transition: all 0.3s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(176,141,87,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.78rem; color: #999; margin-top: 6px; }
.file-drop {
  border: 1.5px dashed var(--line-gold); border-radius: 3px; padding: 28px; text-align: center;
  cursor: pointer; transition: all 0.3s; background: var(--creme);
}
.file-drop:hover { border-color: var(--gold); background: var(--white); }
.file-drop .fd-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.file-drop .fd-text { font-size: 0.9rem; color: #777; }
.file-drop .fd-name { font-size: 0.85rem; color: var(--navy); font-weight: 600; margin-top: 8px; }

.form-aside { position: sticky; top: 110px; }
.form-aside .fa-block { background: var(--navy); color: var(--creme); padding: 36px 32px; border-radius: 4px; margin-bottom: 22px; }
.form-aside .fa-block h3 { color: var(--creme); font-size: 1.4rem; margin-bottom: 18px; }
.form-aside .fa-item { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(176,141,87,0.18); }
.form-aside .fa-item:last-child { border-bottom: none; }
.form-aside .fa-item .fa-ic { color: var(--gold); font-family: var(--serif); }
.form-aside .fa-item .fa-txt { font-size: 0.9rem; color: rgba(244,241,236,0.85); }
.form-aside .fa-item .fa-txt strong { display: block; color: var(--creme); margin-bottom: 2px; }

.lang-toggle { display: inline-flex; border: 1px solid var(--line-gold); border-radius: 2px; overflow: hidden; margin-bottom: 30px; }
.lang-toggle button {
  background: transparent; border: none; padding: 8px 18px; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--navy);
  transition: all 0.3s;
}
.lang-toggle button.active { background: var(--gold); color: var(--white); }

.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success .fs-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 22px; }

/* Contact methods */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.contact-method { background: var(--white); border: 1px solid var(--line); padding: 34px 30px; border-radius: 3px; text-align: center; transition: all 0.4s var(--ease); }
.contact-method:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.contact-method .cm-icon { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.3rem; }
.contact-method h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-method p { font-size: 0.92rem; color: #555; }
.contact-method a { color: var(--gold); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(244,241,236,0.7); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(176,141,87,0.18); }
.footer-brand .word { font-family: var(--sans); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.04em; color: var(--creme); text-transform: uppercase; }
.footer-brand .word .dot { color: var(--gold); }
.footer-brand p { font-size: 0.92rem; margin: 18px 0; max-width: 320px; }
.footer-brand .baseline { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 1.05rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 14px; }
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-aside { max-width: 480px; }
  .verticals, .feature-grid, .range-grid, .team-grid, .contact-methods { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .wrap { padding: 0 22px; }
  section { padding: 70px 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
    background: var(--navy); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 60px 40px; gap: 26px; transition: right 0.4s var(--ease); z-index: 99;
  }
  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
  .nav-links a { color: var(--creme); font-size: 1.1rem; }
  .nav-links .btn { margin-top: 14px; }
  .nav-toggle { display: block; z-index: 100; }
  .verticals, .feature-grid, .range-grid, .team-grid, .case-grid, .testi-grid, .contact-methods { grid-template-columns: 1fr; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { height: 320px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step .s-num { font-size: 2.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
