/* Fonts now loaded via <link> in <head> for non-blocking parallel fetch.
   'ITC Handel Gothic' fallback stack — replace with @font-face if you license the font. */

:root {
  --navy: #29278E;
  --lime: #A3D414;
  --dark: #07061f;
  --dark2: #0d0c2e;
  --light: #f5f4ff;
  --mid: #7472a0;
  --white: #ffffff;
}

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

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

h1, h2, h3, h4, h5, h6, .ui-text {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec {
  padding: 100px 0;
  position: relative;
}

/* Typography Utility */
.text-center { text-align: center; }
.text-lime { color: var(--lime); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-mid { color: var(--mid); }
.bg-dark { background-color: var(--dark); }
.bg-dark2 { background-color: var(--dark2); }
.bg-light { background-color: var(--light); color: #444; }
.bg-navy { background-color: var(--navy); }

/* Screen-reader only — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Inline form error message */
.form-error {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: -6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-error::before {
  content: '⚠';
  font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-lime {
  background-color: var(--lime);
  color: var(--navy);
}

.btn-lime:hover {
  background-color: #8fb911;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(163, 212, 20, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background-color: #1f1d6e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(41, 39, 142, 0.35);
}

.btn-ghost-dk {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-ghost-dk:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-wa {
  background-color: #25D366;
  color: var(--white);
  font-size: 16px;
  padding: 16px 32px;
}

.btn-wa:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa svg {
  margin-right: 10px;
  fill: currentColor;
}

/* Pills & Badges */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pill-lime {
  background-color: rgba(163,212,20,0.1);
  color: var(--lime);
  border: 1px solid rgba(163,212,20,0.25);
}

.pill-navy {
  background-color: rgba(41, 39, 142, 0.1);
  color: var(--navy);
  border: 1px solid rgba(41, 39, 142, 0.25);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 900;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.logo-tag {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 8px;
  text-transform: uppercase;
  color: var(--lime);
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--lime);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--dark2);
  min-width: 240px;
  border-radius: 12px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  color: var(--lime);
  background: rgba(255,255,255,0.03);
  padding-left: 28px;
}

.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mob-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mob-panel.open {
  opacity: 1;
  visibility: visible;
}

.mob-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mob-link {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}

.mob-link.active {
  color: var(--lime);
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 20px 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a, .footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* Sections Global */
h2 {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.h2-sub {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

h2 em {
  font-style: normal;
  color: var(--lime);
}

.bg-light h2 em {
  color: var(--navy);
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-control:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(163, 212, 20, 0.08);
  background: rgba(255,255,255,0.08);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Specific Home Page Sections Layout */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(163,212,20,.11) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-top: 80px;
}

.hero-blob-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: var(--navy);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  z-index: 0;
}

.hero-blob-2 {
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(163,212,20,.18);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-content h1 .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  opacity: 0.2;
}

.hero-ticker {
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 24px;
  white-space: nowrap;
  display: flex;
}

.ticker-track {
  display: flex;
  align-items: center;
}

.ticker-item {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.ticker-item em {
  font-style: normal;
  color: var(--lime);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  margin: 0 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 480px;
}

/* Mockup float wrapper */
.hv-mockup-float {
  position: relative;
  z-index: 1;
}

.hv-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
}

.hv-sec {
  position: absolute;
  bottom: 0;
  left: -32px;
  width: 63%;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  border: 3px solid var(--dark);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 5;
}

.hv-badge-1 {
  position: absolute;
  top: 28px;
  right: -20px;
  z-index: 10;
  background: var(--lime);
  color: var(--dark);
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hv-badge-1 .val {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  display: block;
}

.hv-badge-1 .lbl {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.hv-badge-2 {
  position: absolute;
  bottom: 92px;
  right: -16px;
  z-index: 10;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
}

.hv-badge-2 .val {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--lime);
  line-height: 1;
  display: block;
}

.hv-badge-2 .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* Strip */
.strip {
  background: var(--navy);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: flex;
  width: max-content;
}

.strip-item {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: var(--white);
}

.strip-dot {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  margin: 0 30px;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 22px;
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--navy);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
}

.about-badge .val {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--lime);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p {
  color: #444;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-quote {
  border-left: 3px solid var(--lime);
  padding-left: 14px;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 30px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.astat {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.astat-val {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.astat-lbl {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.about-ctas {
  display: flex;
  gap: 16px;
}

/* Services Apperçu */
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.svc-card {
  position: relative;
  height: 218px;
  overflow: hidden;
  cursor: pointer;
}

.svc-card:first-child { border-radius: 22px 22px 0 0; }
.svc-card:last-child { border-radius: 0 0 22px 22px; }

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,6,31,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.svc-card-tag {
  align-self: flex-end;
  background: var(--lime);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.svc-card-lbl {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
}

.svc-item-icon {
  font-size: 24px;
}

.svc-item-content h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.svc-item-content p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Portfolio Apperçu */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.real-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
}

.real-card:nth-child(1) {
  grid-row: 1 / 3;
  height: auto;
  min-height: 660px;
}

.real-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.real-card:hover img {
  transform: scale(1.06);
}

.real-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,6,31,0.95) 0%, rgba(7,6,31,0.4) 50%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.real-card-cat {
  background: var(--lime);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.real-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.real-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Process */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.proc-step {
  padding: 36px 26px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  position: relative;
}

.proc-num {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.proc-icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: inline-block;
}

.proc-step h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

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

.t-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 32px;
  transition: all 0.3s;
}

.t-card:hover {
  border-color: rgba(163,212,20,0.3);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--lime);
  font-size: 14px;
  margin-bottom: 16px;
}

.t-quote {
  font-family: Georgia, serif;
  font-size: 42px;
  color: var(--lime);
  line-height: 0;
  margin-bottom: 20px;
}

.t-text {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.t-info h5 {
  font-size: 15px;
  margin: 0;
}

.t-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Partners section */
.partners-sec {
  background: var(--dark2);
  padding: 70px 0;
}

.partners-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lime);
  margin-bottom: 10px;
}

.partners-title {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 50px;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  padding: 10px 0;
  display: flex;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-track {
  display: flex;
  gap: 24px;
  align-items: center;
}

.p-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 80px;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s;
  filter: brightness(0) invert(1);
  opacity: .55;
}

.p-card:hover {
  background: rgba(163,212,20,.08);
  border-color: rgba(163,212,20,.25);
  transform: translateY(-3px);
  filter: none;
  opacity: 1;
}

.p-card img {
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

/* Lightbox Carousel */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 20px 80px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}
.lb-close:hover { color: var(--lime); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  z-index: 10;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover { background: rgba(163,212,20,0.2); border-color: var(--lime); transform: translateY(-50%) scale(1.08); }
.lb-next:hover { background: rgba(163,212,20,0.2); border-color: var(--lime); transform: translateY(-50%) scale(1.08); }

.lb-content {
  max-width: 88vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.12s ease;
}

.lb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 14px;
  padding: 0 4px;
}

.lb-caption {
  color: rgba(255,255,255,0.75);
  font-family: 'ITC Handel Gothic', 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.lb-counter {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Badge photo count sur les cards */
.ri-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ri-count::before { content: '📷'; font-size: 10px; }

@media (max-width: 768px) {
  .lightbox { padding: 20px 56px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 20px; }
}

/* Inner Pages Helpers */
.hero-inner-page {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark2);
  padding-top: 80px;
}

.hero-inner-page h1 {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--lime);
}

/* Portfolio Page Helpers */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.fbtn {
  background: var(--white);
  border: 1px solid rgba(41,39,142,0.22);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.fbtn.on {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.real-masonry {
  column-count: 4;
  column-gap: 12px;
}

.real-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.real-item.hidden {
  display: none;
}

.real-item img {
  width: 100%;
  display: block;
}

.ri-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41,39,142,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
  padding: 20px;
}

.real-item:hover .ri-overlay {
  opacity: 1;
}

.ri-cat {
  color: var(--lime);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.ri-title {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
}

.ri-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Tabs */
.tabs-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.on {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.cs-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.cs-panel.on {
  display: block;
}

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

.phase {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

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

.phase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.phase-num {
  color: var(--lime);
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}

.phase-title {
  font-size: 18px;
  font-weight: 700;
}

.cs-result {
  background: linear-gradient(135deg, var(--lime) 0%, var(--navy) 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs-result-icon {
  font-size: 40px;
}

.cs-result-text h4 {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.cs-result-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* Contact layout */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.c-info-blocks {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-block {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

.c-block-icon {
  font-size: 24px;
}

.form-ok {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #25D366;
}

.form-ok h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--lime);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.tl-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.tl-left { left: 0; text-align: right; }
.tl-right { left: 50%; text-align: left; }
.tl-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--dark);
  border: 4px solid var(--lime);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.tl-right::after { left: -8px; }
.tl-content {
  padding: 20px 30px;
  background-color: var(--dark2);
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.tl-content h3 { color: var(--lime); margin-bottom: 5px; }

/* Grids for Agence */
.team-grid, .val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card, .val-card {
  background: var(--dark2);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.team-info { padding: 20px; }
.team-info h4 { font-size: 20px; color: var(--lime); margin-bottom: 5px; }
.val-card { padding: 40px 20px; transition: transform 0.3s; }
.val-card:hover { transform: translateY(-5px); border-color: rgba(163,212,20,0.3); }
.val-icon { font-size: 40px; margin-bottom: 20px; }
.val-card h4 { font-size: 22px; margin-bottom: 10px; }

@media (max-width: 768px) {
  .timeline::after { left: 31px; }
  .tl-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
  .tl-right { left: 0%; }
  .tl-item::after { left: 23px; }
  .team-grid, .val-grid { grid-template-columns: 1fr; }
}

/* Services Page specific */
.phare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phare-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.phare-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
}
.checklist {
  list-style: none;
  margin: 30px 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: bold;
}
.s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.s-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.s-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.s-box:hover {
  transform: translateY(-4px);
  border-color: rgba(163,212,20,0.3);
}
.s-box:hover::before {
  transform: scaleX(1);
}
.sb-icon {
  width: 52px;
  height: 52px;
  background: rgba(163,212,20,0.12);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 20px;
}
.s-box h3 {
  font-family: 'ITC Handel Gothic', 'Exo 2', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}
.s-box p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
}
.sb-tag {
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .phare-layout { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .phare-gallery { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* --- Global Focus Accessibility --- */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 8px;
}

/* --- Contact Page Layout --- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Info Blocks */
.c-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.c-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.3s ease;
}

.c-block:hover {
  border-color: rgba(163,212,20,0.2);
}

.c-block-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.c-block strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.c-block .c-block-detail {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

.c-block .c-block-detail a {
  color: inherit;
  text-decoration: none;
}

.c-block .c-block-detail a:hover {
  color: var(--lime);
}

.c-contact-intro {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}

.step-optional {
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.8em;
}

/* --- Contact Wizard / Assistant --- */
.contact-assistant-wrap {
  background: var(--dark2);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 540px) {
  .contact-assistant-wrap {
    padding: 24px 20px;
  }
}

/* Progress bar */
.form-progress {
  height: 4px;
  background: rgba(255,255,255,0.05);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.form-progress-fill {
  height: 100%;
  background: var(--lime);
  transition: width 0.4s ease;
}

/* Step indicators */
.wizard-steps-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.wizard-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.wizard-step-dot.active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--navy);
}

.wizard-step-dot.done {
  border-color: var(--lime);
  background: rgba(163,212,20,0.15);
  color: var(--lime);
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.wizard-step-line.done {
  background: var(--lime);
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeUp 0.4s ease both;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.3;
}

.form-step h3 em {
  color: var(--lime);
  font-style: normal;
}

/* Project Tiles */
.project-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

@media (max-width: 380px) {
  .project-tiles {
    grid-template-columns: 1fr;
  }
}

.tile-label {
  display: block;
  cursor: pointer;
}

.tile-label input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.tile-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.tile-box .tile-emoji {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.tile-box:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

.tile-label input[type="radio"]:checked + .tile-box {
  background: rgba(163,212,20,0.1);
  border-color: var(--lime);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Keyboard focus for tile labels */
.tile-label input[type="radio"]:focus-visible + .tile-box {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* Form controls */
.form-group {
  margin-bottom: 14px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-control:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(163,212,20,0.12);
}

.form-control.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.12);
}

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

/* Wizard nav buttons */
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wizard-nav .btn-ghost {
  flex: 1;
}

.wizard-nav .btn-lime {
  flex: 2;
}

.wizard-btn-full {
  width: 100%;
}

/* Wizard success state */
.wizard-success {
  text-align: center;
  padding: 40px 0;
  animation: fadeUp 0.6s ease both;
}

.wizard-success-icon {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1;
}

.wizard-success h3 {
  color: white;
  margin-bottom: 10px;
}

.wizard-success p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 320px;
  margin: 0 auto 24px;
}

/* Aria live region */
[aria-live] {
  min-height: 20px;
}

/* --- Design Fixes 2026 --- */

/* Hero Spline Float Adjustment */
#heroVisual {
  position: relative;
  z-index: 1;
}
spline-viewer {
  filter: drop-shadow(0 20px 50px rgba(163,212,20,0.2));
}

/* Services Bento Enhancements */
.services-bento-card {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.services-bento-card:hover {
  border-color: var(--lime) !important;
  transform: translateY(-5px) scale(1.01);
}

/* Process Section Glassmorphism & Connection */
.proc-step {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  position: relative;
  overflow: hidden;
}

.proc-step:hover {
  transform: translateY(-10px) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--lime) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(163,212,20,0.1) !important;
}

.proc-num {
  font-family: 'ITC Handel Gothic', 'Exo 2', sans-serif !important;
  font-size: 60px !important;
  font-weight: 900 !important;
  color: var(--lime) !important;
  opacity: 0.2 !important;
  position: absolute !important;
  top: -10px !important;
  right: 20px !important;
  line-height: 1 !important;
}
