/*
Theme Name: Transalliance Logistics
Theme URI: https://logistics-luxembourg.lu
Author: Transalliance
Author URI: https://www.transalliance.eu
Description: Theme one-page pour Transalliance Logistics (refonte Luxembourg)
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: transalliance-logistics
*/

/* ============================================================
   Transalliance Logistics — Landing page refonte
   Modern & tech · bleu dominant + accent orange discret
   ============================================================ */

:root {
  /* Blues (dominant) */
  --navy-900: #061427;
  --navy-800: #0a2342;
  --navy-700: #0e2e54;
  --navy-600: #143a68;
  --blue-500: #1d6fd0;
  --blue-400: #3f8ae6;

  /* Accent orange (discret) */
  --accent: #f5821f;
  --accent-soft: #ff9a44;

  /* Neutrals */
  --paper: #f5f7fb;
  --paper-2: #eaeff6;
  --white: #ffffff;
  --ink: #0a1f38;
  --ink-soft: #4a5d75;
  --ink-faint: #8090a4;
  --line: #dce4ef;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 56, 0.06), 0 4px 14px rgba(10, 31, 56, 0.05);
  --shadow-md: 0 8px 30px rgba(10, 31, 56, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 20, 39, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

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

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

/* Eyebrow / mono labels */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-dark { color: var(--accent-soft); }
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #1a0e00;
  box-shadow: 0 8px 22px rgba(245, 130, 31, 0.32);
}
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 130, 31, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.55); }

.btn-solid {
  background: var(--navy-800);
  color: var(--white);
}
.btn-solid:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
  transition: padding .3s ease;
}
.site-header.scrolled {
  background: rgba(6, 20, 39, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 6px 30px rgba(6, 20, 39, 0.3);
}
.site-header.scrolled .wrap { padding-top: 13px; padding-bottom: 13px; }

.brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .22s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 22px; }
.lang { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,0.7); }
.lang .active { color: var(--white); }
.lang span.sep { opacity: 0.4; }
.lang a:hover { color: var(--accent-soft); }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;       /* 16:9 cover */
  min-height: 100vh; min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(6,20,39,0.94) 0%, rgba(6,20,39,0.78) 42%, rgba(6,20,39,0.45) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(245,130,31,0.10), transparent 55%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 85%);
}
.hero .wrap { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { color: var(--white); max-width: 620px; }
.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin: 22px 0 20px;
  letter-spacing: -0.03em;
}
.hero-copy h1 .hl { color: var(--accent); }
.hero-copy .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.78); font-weight: 600; font-size: 15px;
  padding: 15px 4px;
}
.hero-phone:hover { color: var(--white); }
.hero-phone b { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; }

/* Proof panel (juste à côté du CTA) */
.proof-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg);
}
.proof-panel .pp-label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.proof-stats { display: grid; gap: 0; }
.proof-stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-stat:last-child { border-bottom: none; }
.proof-stat:first-of-type { padding-top: 4px; }
.proof-stat .num {
  font-family: var(--display); font-weight: 600;
  font-size: 34px; color: var(--white); line-height: 1;
  letter-spacing: -0.03em; min-width: 132px;
}
.proof-stat .num .u { color: var(--accent); font-size: 20px; margin-left: 2px; }
.proof-stat .lbl { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.35; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 18px;
  color: var(--ink);
}
.section-head p { margin-top: 18px; font-size: 17px; color: var(--ink-soft); max-width: 660px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Solutions ---------- */
.solutions { background: var(--white); }
.callout {
  margin-top: 30px;
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(100deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 760px;
  border-left: 4px solid var(--accent);
}
.callout .ci { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(245,130,31,0.16); display:flex; align-items:center; justify-content:center; color: var(--accent-soft); }
.callout p { font-size: 15.5px; color: rgba(255,255,255,0.9); }
.callout b { color: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--mono); font-size: 12.5px; color: var(--ink-faint); letter-spacing: 0.1em; }
.service-card h3 { font-size: 26px; margin: 14px 0 18px; color: var(--ink); }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.service-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.sector-tags { margin-top: 50px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sector-tags .st-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-right: 8px; }
.tag {
  font-size: 13.5px; font-weight: 600; color: var(--navy-700);
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px;
}

/* ---------- Entrepôt / Stats ---------- */
.warehouse { background: var(--navy-900); color: var(--white); overflow: hidden; }
.warehouse .section-head h2 { color: var(--white); }
.warehouse .section-head p { color: rgba(255,255,255,0.75); }

.wh-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 80% at 70% 20%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 80% at 70% 20%, #000, transparent 80%);
}
.warehouse .wrap { position: relative; z-index: 1; }

/* Warehouse intro : texte + image */
.wh-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.wh-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}
.wh-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; display: block; }
.wh-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(transparent, rgba(6, 20, 39, 0.85));
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}
.stat-cell {
  background: var(--navy-800);
  padding: 30px 26px;
  transition: background .25s ease;
}
.stat-cell:hover { background: var(--navy-700); }
.stat-cell .sc-num {
  font-family: var(--display); font-weight: 600; font-size: 40px; line-height: 1;
  letter-spacing: -0.03em; color: var(--white);
}
.stat-cell .sc-num .u { color: var(--accent); font-size: 22px; margin-left: 3px; }
.stat-cell .sc-lbl { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.stat-cell.empty { background: rgba(255,255,255,0.02); }

.feature-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.feature-item .fi-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item .fi-ic img { width: 26px; height: 26px; filter: brightness(0) invert(1); opacity: 0.92; }
.feature-item .fi-txt { font-size: 14.5px; color: rgba(255,255,255,0.88); line-height: 1.3; }

/* Scallog sub-block */
.scallog {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(120deg, rgba(245,130,31,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,130,31,0.22);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.scallog .sc-intro .eyebrow { color: var(--accent-soft); }
.scallog .sc-intro h3 { font-size: 28px; color: var(--white); margin: 16px 0 14px; }
.scallog .sc-intro p { color: rgba(255,255,255,0.78); font-size: 15.5px; }
.scallog-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.scallog-stat {
  background: rgba(6,20,39,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
}
.scallog-stat .ss-ic { width: 30px; height: 30px; margin-bottom: 14px; }
.scallog-stat .ss-ic img { width: 30px; height: 30px; filter: brightness(0) invert(1); opacity: 0.85; }
.scallog-stat .ss-num { font-family: var(--display); font-weight: 600; font-size: 28px; color: var(--white); line-height: 1; }
.scallog-stat .ss-num .u { color: var(--accent); font-size: 17px; }
.scallog-stat .ss-lbl { margin-top: 9px; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.35; }

/* Galerie SCALLOG (2 photos) */
.scallog-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}
.sg-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}
.sg-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.sg-item:hover img { transform: scale(1.04); }
.sg-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 22px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 20, 39, 0.88));
}
.sg-item figcaption::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: middle;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #1a0e00; padding: 64px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); max-width: 720px; color: #160c00; }
.cta-band .btn-solid { background: var(--navy-900); }
.cta-band .btn-solid:hover { background: var(--navy-800); }

/* ---------- Clients full ---------- */
.clients { background: var(--paper); text-align: center; }
.clients-logos {
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.clients-logos img {
  height: 46px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter .25s ease, transform .25s ease;
}
.clients-logos img:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-aside h2 { font-size: clamp(30px, 3.4vw, 44px); margin-top: 18px; color: var(--ink); }
.contact-aside p { margin-top: 18px; color: var(--ink-soft); font-size: 16.5px; max-width: 420px; }
.contact-trust { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-trust .ct-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-trust .ct-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); display:flex; align-items:center; justify-content:center; color: var(--accent); flex-shrink: 0; }
.contact-trust .ct-num { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--ink); }
.contact-trust .ct-lbl { font-size: 14px; color: var(--ink-soft); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29, 111, 208, 0.12);
}
.field.error input, .field.error select { border-color: #e0533a; background: #fef5f3; }
.field .err-msg { font-size: 12px; color: #d23f24; font-weight: 600; }

.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line);
  padding: 9px 15px; border-radius: 999px;
  transition: all .18s ease;
  user-select: none;
}
.chip:hover { border-color: var(--blue-400); color: var(--navy-700); }
.chip.active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

.form-foot { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6px; flex-wrap: wrap; }
.form-foot .privacy { font-size: 12.5px; color: var(--ink-faint); max-width: 360px; }
.form-card .btn-primary { width: auto; }

.form-rgpd { grid-column: 1/-1; display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-soft); }
.form-rgpd input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-rgpd a { color: var(--blue-500); text-decoration: underline; }

/* Messages (succès / erreur via AJAX) */
.form-message { grid-column: 1/-1; display: none; margin-top: 4px; padding: 14px 18px; border-radius: 10px; font-size: 14.5px; font-weight: 600; }
.form-message.success { display: block; background: rgba(22,163,106,0.12); color: #15824f; border: 1px solid rgba(22,163,106,0.3); }
.form-message.error { display: block; background: #fef5f3; color: #d23f24; border: 1px solid rgba(224,83,58,0.3); }
.contact-form.loading { opacity: 0.6; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 56px 0 40px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line-dark); }
.footer-top .brand img { height: 32px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.footer-contact a:hover { color: var(--accent-soft); }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--ink-faint); }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(6,20,39,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding: 12px 18px;
  display: none;
  transform: translateY(120%);
  transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 1; }
.reveal.in { animation: revealUp .7s cubic-bezier(.2,.7,.3,1) both; }
@keyframes revealUp {
  from { transform: translateY(22px); }
  to   { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .proof-panel { max-width: 560px; }
  .scallog { grid-template-columns: 1fr; gap: 30px; }
  .wh-intro { grid-template-columns: 1fr; gap: 30px; }
  .scallog-gallery { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .header-right .btn { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .section { padding: 76px 0; }
  .hero { padding: 130px 0 60px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .scallog { padding: 28px; }
  .scallog-stats { grid-template-columns: 1fr; }
  .proof-stat .num { font-size: 28px; min-width: 110px; }
  .form-card { padding: 26px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
