/* =====================================================================
   HODD GLOBAL — Charte premium institutionnelle (marine profond + orange)
   Refonte 2026-07-02 · HODD-23
   Police : Plus Jakarta Sans · Icônes : Font Awesome
   ===================================================================== */

:root {
  /* Marine profond institutionnel */
  --bg: #060d1e;
  --bg-elev: #0a1630;
  --card: #0b1730;
  --card-2: #0e1d3c;
  --navy: #0c2a5c;
  --navy-deep: #081e45;
  --navy-bright: #1e56a0;
  --navy-line: rgba(255, 255, 255, 0.09);
  --navy-line-2: rgba(255, 255, 255, 0.14);
  --gradient-dark: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-bright) 145%);

  /* Orange signature */
  --orange: #f58220;
  --orange-2: #ff9e4d;
  --orange-deep: #d4661a;

  --white: #ffffff;
  --muted: #93a2be;
  --muted-dim: #66748f;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "Cascadia Code", Consolas, monospace;

  --wrap: 1180px;
  --r: 16px;

  --shadow-card: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Halos d'ambiance fixés */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(245, 130, 32, 0.06), transparent 70%),
    radial-gradient(50% 40% at 100% 40%, rgba(30, 86, 160, 0.10), transparent 70%),
    radial-gradient(50% 40% at 0% 70%, rgba(30, 86, 160, 0.08), transparent 70%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  font-weight: 800;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.25rem);
  position: relative;
  z-index: 1;
}
.accent { color: var(--orange); }
.muted { color: var(--muted); }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 62ch;
}
:focus-visible { outline: 2px solid var(--orange-2); outline-offset: 3px; border-radius: 6px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}
.btn-primary { background: var(--orange); color: #1a0f02; box-shadow: 0 10px 30px -8px rgba(245, 130, 32, 0.6); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); color: #1a0f02; }
.btn-ghost { background: rgba(255, 255, 255, 0.03); color: var(--white); border-color: var(--navy-line-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); color: var(--white); }
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 13, 30, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.nav-brand-badge {
  display: inline-flex; align-items: center; background: var(--white);
  border-radius: 10px; padding: 0.35rem 0.7rem;
}
.nav-brand img { max-height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.6rem; font-size: 0.9rem; color: var(--muted); }
.nav-links a { position: relative; padding-block: 0.3rem; transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--navy-line-2); color: var(--white);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer; font-size: 1.1rem;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--navy-line);
    padding: 1rem 1.5rem; gap: 1rem;
  }
}

@media (max-width: 420px) {
  .nav-toggle { width: 36px; height: 36px; font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(1.5rem, 3.5vw, 3rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.dome {
  position: absolute; left: 50%; top: 2.5rem; transform: translateX(-50%);
  width: min(1150px, 125vw); aspect-ratio: 1; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% 50%, transparent 57%, rgba(245, 130, 32, 0.42) 60%, rgba(245, 130, 32, 0.06) 67%, transparent 74%);
  filter: blur(3px);
}
.dome::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, transparent 58.5%, rgba(255, 228, 197, 0.95) 60.2%, transparent 62.4%);
  -webkit-mask: linear-gradient(#000, rgba(0, 0, 0, 0.15) 48%, transparent 60%);
  mask: linear-gradient(#000, rgba(0, 0, 0, 0.15) 48%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: 1.5rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; }
.hero .lead { text-align: center; margin-inline: auto; }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }
.pill-tag {
  display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; font-weight: 500;
  color: #cdd8ec; border: 1px solid var(--navy-line-2); border-radius: 999px; padding: 0.45rem 0.95rem;
  background: rgba(5, 11, 24, 0.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pill-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }

/* ---------- Trust bar ---------- */
.trust { margin-top: -1rem; }
.trust-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--navy-line); border-radius: 14px; padding: 1.1rem 1.6rem;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-item .num { font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--orange); }
.trust-item .lab { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.trust-item small { display: block; color: var(--muted); font-size: 0.72rem; font-weight: 400; }
.trust-sep { width: 1px; height: 30px; background: var(--navy-line-2); }
@media (max-width: 720px) {
  .trust-sep { display: none; }
  .trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 0.8rem; }
  .trust-item { justify-content: center; }
}
@media (max-width: 380px) {
  .trust-item .lab { font-size: 0.82rem; }
  .trust-item small { font-size: 0.68rem; }
}

/* ---------- Section shell ---------- */
section { position: relative; z-index: 1; }
.band { padding-block: clamp(3.5rem, 7vw, 6rem); }
.sec-head { display: grid; gap: 0.8rem; justify-items: center; text-align: center; margin-bottom: 2.6rem; }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.sec-head .lead { text-align: center; margin-inline: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

/* ---------- À propos ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { position: relative; }
.about-media img { border-radius: var(--r); position: relative; z-index: 1; box-shadow: var(--shadow-card); }
.about-media::after {
  content: ""; position: absolute; bottom: -14px; left: -14px; width: 90px; height: 90px;
  border-radius: 12px; background: var(--orange); opacity: 0.9; z-index: 0;
}
.about-content { display: grid; gap: 1rem; }
.about-content h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.about-content p { color: var(--muted); }
.about-features { display: grid; gap: 0.7rem; margin-top: 0.6rem; }
.feature-item {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--navy-line); border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-item:hover { transform: translateX(4px); border-color: var(--navy-line-2); }
.feature-item i { color: var(--orange); font-size: 1.15rem; }
.feature-item span { font-weight: 500; }

/* ---------- Services (données DB) ---------- */
.svc {
  position: relative; background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--navy-line); border-radius: var(--r); padding: 1.6rem;
  display: grid; gap: 0.8rem; align-content: start; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--navy-line-2); box-shadow: var(--shadow-card); }
.svc .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245, 130, 32, 0.12); color: var(--orange); border: 1px solid rgba(245, 130, 32, 0.22);
  font-size: 1.3rem;
}
.svc h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.svc .svc-desc { color: var(--muted); font-size: 0.9rem; }
.svc-list { list-style: none; margin: 0.2rem 0 0; padding: 0; display: grid; gap: 0.5rem; }
.svc-list li { position: relative; padding-left: 1.4rem; font-size: 0.86rem; color: #c3cdde; line-height: 1.45; }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  border-left: 9px solid var(--orange); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.svc-objective {
  margin-top: 0.4rem; padding-top: 0.9rem; border-top: 1px solid var(--navy-line);
  font-size: 0.85rem; color: var(--muted);
}
.svc-objective strong { color: var(--white); display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
/* carte accentuée */
.svc.feat { background: linear-gradient(160deg, var(--orange) 0%, #c9591a 130%); border-color: transparent; box-shadow: 0 24px 60px -20px rgba(245, 130, 32, 0.6); }
.svc.feat .ico { background: rgba(255, 255, 255, 0.18); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.svc.feat .svc-desc, .svc.feat .svc-list li { color: rgba(255, 255, 255, 0.92); }
.svc.feat .svc-list li::before { border-left-color: #fff; }
.svc.feat .svc-objective { border-top-color: rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.85); }
.svc.feat .svc-objective strong { color: #fff; }

/* ---------- Bande méthode (marine) ---------- */
.stats-band {
  background: radial-gradient(120% 100% at 50% 0, #123a73 0, var(--navy) 55%, #08214a 100%);
  border-block: 1px solid var(--navy-line); position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 85% 20%, rgba(245, 130, 32, 0.14), transparent 70%);
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 840px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .grid-4 { grid-template-columns: 1fr; } }
.stat {
  position: relative; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 14px;
  padding: 1.4rem 1.3rem; background: rgba(255, 255, 255, 0.04); display: grid; gap: 0.5rem;
  align-content: start; min-height: 150px; transition: transform 0.25s ease, background 0.25s ease;
}
.stat:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); }
.stat .n { font-size: 2rem; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; line-height: 1; }
.stat h4 { font-size: 1.02rem; font-weight: 700; line-height: 1.25; }
.stat p { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }

/* ---------- Actualités (publication DB) ---------- */
.pub {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--navy-line);
  border-radius: 20px; padding: clamp(1.5rem, 4vw, 2.6rem); overflow: hidden;
}
@media (max-width: 860px) { .pub { grid-template-columns: 1fr; } }
.pub-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; }
.pub-text { color: var(--muted); line-height: 1.75; }
.pub-full { display: none; }
.pub-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.pub-media img { border-radius: var(--r); width: 100%; box-shadow: var(--shadow-card); }
.pub-empty { text-align: center; display: grid; gap: 1rem; justify-items: center; }
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }

/* Grille d'actualités (plusieurs publications actives) */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.3rem; }
.news-card {
  background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--navy-line);
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--navy-line-2); box-shadow: var(--shadow-card); }
.news-card .news-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--navy-line); }
.news-card .news-body { padding: 1.4rem; display: grid; gap: 0.6rem; flex: 1; align-content: start; }
.news-date { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 0.4rem; }
.news-card h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.news-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.news-toggle {
  margin-top: 0.2rem; align-self: flex-start; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.85rem; font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0; transition: gap 0.2s ease;
}
.news-toggle:hover { gap: 0.7rem; color: var(--orange-2); }

.news-visit {
  margin-top: 0.6rem; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; color: var(--orange); border: 1px solid var(--navy-line-2);
  border-radius: 999px; padding: 0.45rem 0.95rem; transition: all 0.2s ease;
}
.news-visit:hover { background: var(--orange); border-color: var(--orange); color: #1a0f02; }

/* ---------- Modale de lecture d'article ---------- */
.news-modal {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.news-modal.is-open { display: flex; }
.news-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 9, 22, 0.78); backdrop-filter: blur(2px); }
.news-modal-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: 85vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--navy-line-2);
  border-radius: 18px; padding: 2.4rem clamp(1.4rem, 4vw, 2.6rem); box-shadow: var(--shadow-card);
}
.news-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--navy-line-2); color: var(--white);
  display: grid; place-items: center; cursor: pointer; transition: all 0.2s ease;
}
.news-modal-close:hover { background: var(--orange); border-color: var(--orange); color: #1a0f02; }
.news-modal-dialog .news-date { margin-bottom: 0.8rem; }
.news-modal-dialog h3 { font-size: 1.4rem; line-height: 1.3; margin-bottom: 1.2rem; padding-right: 2rem; }
.news-modal-body {
  color: #c3cdde; font-size: 1rem; line-height: 1.85;
  text-align: justify; text-justify: inter-word; hyphens: auto;
}
.news-modal-body p { margin-bottom: 1.1rem; }
body.news-modal-lock { overflow: hidden; }

/* ---------- Témoignages ---------- */
.avatars { display: flex; justify-content: center; }
.avatars .av {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; border: 2px solid var(--bg); margin-left: -12px;
  background: linear-gradient(150deg, var(--navy-bright), var(--navy)); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.avatars .av:first-child { margin-left: 0; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 1.6rem; display: grid; gap: 1rem;
}
.quote .stars { color: var(--orange); letter-spacing: 0.15em; font-size: 0.9rem; }
.quote p { font-size: 1rem; line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 0.7rem; border-top: 1px solid var(--navy-line); padding-top: 1rem; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; background: linear-gradient(150deg, var(--navy-bright), var(--navy)); }
.quote .who b { font-size: 0.9rem; font-weight: 700; }
.quote .who small { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 400; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1.1rem; align-content: start; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245, 130, 32, 0.12); color: var(--orange); border: 1px solid rgba(245, 130, 32, 0.22); font-size: 1.2rem;
}
.contact-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.92rem; }
.contact-card a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.contact-social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--navy-line); color: var(--white); transition: all 0.25s ease;
}
.contact-social a:hover { background: var(--orange); border-color: var(--orange); color: #1a0f02; transform: translateY(-3px); }

.contact-form {
  background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--navy-line);
  border-radius: 20px; padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-control-modern {
  width: 100%; padding: 0.9rem 1.1rem; border: 1px solid var(--navy-line-2); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; background: rgba(255, 255, 255, 0.03); color: var(--white);
  transition: all 0.25s ease;
}
.form-control-modern::placeholder { color: var(--muted-dim); }
.form-control-modern:focus {
  outline: none; border-color: var(--orange); background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}
.form-control-modern:-webkit-autofill,
.form-control-modern:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  caret-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px #0e1d3c inset;
  transition: background-color 9999s ease-in-out 0s;
}
textarea.form-control-modern { resize: vertical; min-height: 130px; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--orange); color: #1a0f02; border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700; font-family: inherit; cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(245, 130, 32, 0.6); transition: all 0.25s ease;
}
.btn-submit:hover { background: var(--orange-2); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-alert { margin-top: 1rem; }
.alert { padding: 0.9rem 1.1rem; border-radius: 10px; font-size: 0.9rem; }
.alert-success { background: rgba(46, 160, 90, 0.15); border: 1px solid rgba(46, 160, 90, 0.4); color: #7ee2a8; }
.alert-danger { background: rgba(220, 60, 60, 0.15); border: 1px solid rgba(220, 60, 60, 0.4); color: #f5a3a3; }

/* ---------- CTA final ---------- */
.cta {
  position: relative; text-align: center; overflow: hidden;
  background: radial-gradient(80% 120% at 50% 120%, rgba(245, 130, 32, 0.22), transparent 60%);
}
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 18ch; margin-inline: auto; }
.cta .glow {
  position: absolute; left: 50%; bottom: -60%; transform: translateX(-50%); width: min(900px, 110vw);
  aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, transparent 60%, rgba(245, 130, 32, 0.3) 63%, transparent 70%); filter: blur(4px);
}

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--navy-line); background: #050b18; position: relative; z-index: 1; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: 3rem 2rem; }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 1.2rem 1rem; padding-block: 2.2rem 1.6rem; }
  .foot-brand { grid-column: 1 / -1; }
}
.foot-brand img { max-height: 54px; margin-bottom: 1rem; }
.foot-desc { color: var(--muted); font-size: 0.9rem; max-width: 34ch; }
.foot h5 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 1rem; font-weight: 700; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.foot ul a, .foot-contact li { color: var(--muted); font-size: 0.9rem; }
.foot ul a:hover { color: var(--white); }
.foot-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.foot-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.foot-contact i { color: var(--orange); margin-top: 0.2rem; }
.foot-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--navy-line); transition: all 0.25s ease; }
.foot-social a:hover { background: var(--orange); border-color: var(--orange); color: #1a0f02; }
.foot-bottom {
  border-top: 1px solid var(--navy-line); padding-block: 1.4rem; display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; color: var(--muted-dim); font-size: 0.82rem;
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
}
