/*
 * Theme Name:  Agence LDP — Refonte 2026
 * Theme URI:   https://lunettesdepub.fr
 * Description: Thème enfant Hello Elementor — Bold & graphique. Jaune / Noir / Blanc. League Spartan + Poppins.
 * Author:      Agence LDP
 * Author URI:  https://lunettesdepub.fr
 * Template:    hello-elementor
 * Version:     1.0.0
 * Text Domain: agence-ldp
 * License:     GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 */

/* ================================================================
   LDP — DESIGN SYSTEM
   Bold & graphique — yellow / black / white
   Fonts: League Spartan (display) + Poppins (body) + JetBrains Mono
   ================================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ldp-yellow:      #FFD017;
  --ldp-yellow-deep: #F5C100;
  --ldp-black:       #0A0A0A;
  --ldp-ink:         #161616;
  --ldp-white:       #FFFFFF;
  --ldp-cream:       #FAFAF7;
  --ldp-gray-50:     #F4F4F1;
  --ldp-gray-100:    #E8E8E3;
  --ldp-gray-300:    #B8B8B3;
  --ldp-gray-500:    #6B6B66;
  --ldp-gray-700:    #2A2A2A;

  --font-display: 'League Spartan', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --pad-x: 80px;
  --pad-y: 100px;

  --btn-radius: 4px;
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ldp-ink);
  background: var(--ldp-white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.display-xxl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.body-lg  { font-size: 19px; line-height: 1.55; font-weight: 400; }
.body-sm  { font-size: 14px; line-height: 1.55; }

/* ================================================================
   BUTTONS
   ================================================================ */
.ldp-btn,
.elementor-button,
.e-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--btn-radius);
  transition: all 0.25s cubic-bezier(.2,.7,.3,1);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — jaune/noir */
.ldp-btn--primary,
.elementor-button.ldp-btn--primary {
  background: var(--ldp-yellow);
  color: var(--ldp-black);
  border-color: var(--ldp-yellow);
}
.ldp-btn--primary:hover {
  background: var(--ldp-black);
  color: var(--ldp-yellow);
  border-color: var(--ldp-black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ldp-yellow);
}

/* Dark — noir/blanc */
.ldp-btn--dark {
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-color: var(--ldp-black);
}
.ldp-btn--dark:hover {
  background: var(--ldp-yellow);
  color: var(--ldp-black);
  border-color: var(--ldp-yellow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ldp-black);
}

/* Ghost */
.ldp-btn--ghost {
  background: transparent;
  color: var(--ldp-black);
  border-color: var(--ldp-black);
}
.ldp-btn--ghost:hover {
  background: var(--ldp-black);
  color: var(--ldp-yellow);
}

/* Ghost light (sur fond noir) */
.ldp-btn--ghost-light {
  background: transparent;
  color: var(--ldp-white);
  border-color: var(--ldp-white);
}
.ldp-btn--ghost-light:hover {
  background: var(--ldp-white);
  color: var(--ldp-black);
}

/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.ldp-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.ldp-section           { padding: var(--pad-y) 0; }
.ldp-section--dark     { background: var(--ldp-black); color: var(--ldp-white); }
.ldp-section--yellow   { background: var(--ldp-yellow); color: var(--ldp-black); }
.ldp-section--cream    { background: var(--ldp-cream); color: var(--ldp-black); }

/* ================================================================
   NAVIGATION (Hello Elementor override)
   ================================================================ */
.site-header,
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--ldp-white);
  border-bottom: 2px solid var(--ldp-black);
}

.site-navigation .menu-item > a,
.elementor-nav-menu .elementor-item {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--ldp-black) !important;
  padding: 6px 0 !important;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s !important;
}
.site-navigation .menu-item > a:hover,
.elementor-nav-menu .elementor-item:hover,
.elementor-nav-menu .elementor-item.elementor-item-active {
  border-bottom-color: var(--ldp-yellow) !important;
  color: var(--ldp-black) !important;
}

/* Logo */
.site-logo img,
.elementor-widget-site-logo img {
  max-height: 50px;
  width: auto;
}

/* ================================================================
   LDP LOGO MARK (géométrique hexagonal)
   ================================================================ */
.ldp-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ldp-black);
}
.ldp-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 50px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--ldp-black);
  color: var(--ldp-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.ldp-logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.ldp-logo__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ldp-gray-500);
}

/* ================================================================
   HERO
   ================================================================ */
.ldp-hero {
  position: relative;
  background: var(--ldp-white);
  overflow: hidden;
  border-bottom: 2px solid var(--ldp-black);
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.ldp-hero__yellow-block {
  position: absolute;
  top: 0; right: 0;
  width: 38%; height: 100%;
  background: var(--ldp-yellow);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.ldp-hero__circle {
  position: absolute;
  top: 15%; right: 8%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--ldp-black);
}
.ldp-hero__inner {
  position: relative;
  padding: 120px var(--pad-x) 80px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.ldp-hero__tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.ldp-hero__title {
  max-width: 12ch;
}
.ldp-hero__accent {
  background: var(--ldp-black);
  color: var(--ldp-yellow);
  padding: 0 18px;
  display: inline-block;
  transform: rotate(-1deg);
}
.ldp-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 64px;
  gap: 60px;
  flex-wrap: wrap;
}
.ldp-hero__desc {
  max-width: 520px;
  color: var(--ldp-gray-700);
  font-size: 19px;
  line-height: 1.55;
}
.ldp-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ldp-hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.ldp-hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ldp-hero__stat-num span {
  color: var(--ldp-yellow);
}
.ldp-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ldp-gray-500);
  margin-top: 6px;
}

/* ================================================================
   TICKER / MARQUEE
   ================================================================ */
.ldp-ticker {
  display: flex;
  overflow: hidden;
  background: var(--ldp-yellow);
  color: var(--ldp-black);
  border-top: 2px solid var(--ldp-black);
  border-bottom: 2px solid var(--ldp-black);
  padding: 16px 0;
}
.ldp-ticker__track {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  animation: ldp-ticker 38s linear infinite;
  padding-right: 48px;
}
.ldp-ticker__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}
.ldp-ticker__item::after {
  content: '';
  width: 14px; height: 14px;
  background: var(--ldp-black);
  border-radius: 50%;
}
@keyframes ldp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   TAGS / BADGES
   ================================================================ */
.ldp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ldp-white);
  border: 1.5px solid var(--ldp-black);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ldp-tag--yellow { background: var(--ldp-yellow); }
.ldp-tag--dark   { background: var(--ldp-black); color: var(--ldp-white); border-color: var(--ldp-black); }
.ldp-tag .dot    { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ================================================================
   PROOF / STATS
   ================================================================ */
.ldp-proof {
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-bottom: 2px solid var(--ldp-black);
  padding: 80px 0;
}
.ldp-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ldp-proof__item {
  padding: 40px;
  border-right: 1px solid #2a2a2a;
}
.ldp-proof__item:last-child { border-right: none; }
.ldp-proof__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ldp-yellow);
}
.ldp-proof__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ldp-gray-300);
  margin-top: 16px;
}
.ldp-proof__desc {
  font-size: 15px;
  color: var(--ldp-gray-500);
  margin-top: 8px;
  line-height: 1.5;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.ldp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
}
.ldp-section-head__left { max-width: 720px; }
.ldp-section-head__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ldp-section-head__num::before {
  content: '';
  width: 32px; height: 2px;
  background: currentColor;
}
.ldp-section-head__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  white-space: nowrap;
}

/* ================================================================
   EXPERTISES TABS
   ================================================================ */
.ldp-expertises {
  background: var(--ldp-white);
  border-bottom: 2px solid var(--ldp-black);
  padding: var(--pad-y) 0;
}
.ldp-exp__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--ldp-black);
  margin-bottom: 48px;
}
.ldp-exp__tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  color: var(--ldp-gray-500);
}
.ldp-exp__tab:hover  { color: var(--ldp-black); }
.ldp-exp__tab.active {
  color: var(--ldp-black);
  border-bottom-color: var(--ldp-yellow);
  background: var(--ldp-yellow);
}
.ldp-exp__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ldp-exp__panel.active { display: grid; }
.ldp-exp__panel-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 160px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ldp-yellow);
  text-transform: uppercase;
}
.ldp-exp__panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ldp-exp__panel-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ldp-gray-700);
  margin-bottom: 32px;
}
.ldp-exp__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ldp-black);
}
.ldp-exp__service {
  padding: 16px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid var(--ldp-gray-100);
  border-bottom: 1px solid var(--ldp-gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ldp-exp__service::before {
  content: '→';
  color: var(--ldp-yellow);
  font-size: 13px;
}

/* ================================================================
   CARDS (réalisations)
   ================================================================ */
.ldp-card {
  display: block;
  position: relative;
  border: 2px solid var(--ldp-black);
  overflow: hidden;
  border-radius: var(--btn-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.ldp-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ldp-black);
}
.ldp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ldp-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  border-top: 2px solid var(--ldp-black);
}
.ldp-card__sector {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.ldp-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-top: 6px;
}
.ldp-card__tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.ldp-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

/* Cases grid */
.ldp-cases-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.ldp-cases-grid__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.ldp-cases-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.ldp-card--big  { height: 600px; }
.ldp-card--md   { height: 288px; }
.ldp-card--sm   { height: 320px; }

/* ================================================================
   MÉTHODOLOGIE
   ================================================================ */
.ldp-methode {
  background: var(--ldp-cream);
  border-bottom: 2px solid var(--ldp-black);
  padding: var(--pad-y) 0;
}
.ldp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ldp-black);
}
.ldp-step {
  padding: 40px 32px;
  border-right: 1px solid var(--ldp-gray-100);
  position: relative;
}
.ldp-step:last-child { border-right: none; }
.ldp-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ldp-yellow);
}
.ldp-step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 16px;
}
.ldp-step__desc {
  font-size: 15px;
  color: var(--ldp-gray-700);
  margin-top: 16px;
  line-height: 1.6;
}
.ldp-step__outputs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ldp-step__output {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ldp-step__output::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--ldp-yellow);
}

/* ================================================================
   DIFFÉRENCIATION / PILIERS
   ================================================================ */
.ldp-diff {
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-bottom: 2px solid var(--ldp-black);
  padding: var(--pad-y) 0;
}
.ldp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid #2a2a2a;
}
.ldp-pillar {
  padding: 48px 40px;
  border-right: 1px solid #2a2a2a;
}
.ldp-pillar:last-child { border-right: none; }
.ldp-pillar__icon {
  font-size: 40px;
  margin-bottom: 24px;
}
.ldp-pillar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ldp-yellow);
  margin-bottom: 16px;
}
.ldp-pillar__desc {
  font-size: 16px;
  color: var(--ldp-gray-300);
  line-height: 1.6;
}

/* ================================================================
   TÉMOIGNAGE
   ================================================================ */
.ldp-testimonial {
  background: var(--ldp-yellow);
  color: var(--ldp-black);
  border-bottom: 2px solid var(--ldp-black);
  padding: var(--pad-y) 0;
}
.ldp-testimonial__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.ldp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.ldp-testimonial__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ldp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ldp-yellow);
}
.ldp-testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.ldp-testimonial__role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.ldp-testimonial__stars {
  margin-top: 8px;
  display: flex;
  gap: 4px;
  color: var(--ldp-black);
  font-size: 18px;
}

/* ================================================================
   CTA FORM (Être rappelé)
   ================================================================ */
.ldp-cta {
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-bottom: 2px solid var(--ldp-black);
  padding: var(--pad-y) 0;
}
.ldp-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ldp-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.ldp-cta__title .accent {
  color: var(--ldp-yellow);
}
.ldp-cta__sub {
  font-size: 18px;
  color: var(--ldp-gray-300);
  margin-top: 24px;
  line-height: 1.6;
}
.ldp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ldp-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ldp-form__field--full { grid-column: 1 / -1; }
.ldp-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ldp-gray-500);
}
.ldp-form__input,
.ldp-form__textarea,
.ldp-form__select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ldp-gray-700);
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-radius: var(--btn-radius);
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  width: 100%;
}
.ldp-form__input:focus,
.ldp-form__textarea:focus {
  border-color: var(--ldp-yellow);
  box-shadow: 4px 4px 0 var(--ldp-yellow);
}
.ldp-form__textarea { resize: vertical; min-height: 120px; }

/* Elementor form overrides */
.elementor-form .elementor-field-group label,
.ldp-cta .elementor-field-label {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ldp-gray-500) !important;
}
.elementor-form .elementor-field-textual,
.ldp-cta .elementor-field-textual {
  border: 2px solid var(--ldp-gray-700) !important;
  background: var(--ldp-black) !important;
  color: var(--ldp-white) !important;
  border-radius: var(--btn-radius) !important;
}
.elementor-form .elementor-field-textual:focus,
.ldp-cta .elementor-field-textual:focus {
  border-color: var(--ldp-yellow) !important;
  box-shadow: 4px 4px 0 var(--ldp-yellow) !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.ldp-footer {
  background: var(--ldp-black);
  color: var(--ldp-white);
  border-top: 2px solid var(--ldp-black);
  padding: 80px 0 0;
}
.ldp-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--ldp-gray-700);
  overflow: hidden;
  padding-bottom: 16px;
  margin-bottom: 60px;
}
.ldp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
}
.ldp-footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ldp-gray-500);
  margin-bottom: 20px;
}
.ldp-footer__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ldp-gray-300);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.ldp-footer__link:hover { color: var(--ldp-yellow); }
.ldp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
.ldp-footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ldp-gray-500);
  letter-spacing: 0.1em;
}
.ldp-footer__legal {
  display: flex;
  gap: 24px;
}
.ldp-footer__legal a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ldp-gray-500);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.ldp-footer__legal a:hover { color: var(--ldp-yellow); }

/* ================================================================
   STICKY CTA BAR
   ================================================================ */
.ldp-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ================================================================
   CLIENTS LOGOS
   ================================================================ */
.ldp-clients {
  background: var(--ldp-cream);
  border-bottom: 2px solid var(--ldp-black);
  padding: 48px 0;
}
.ldp-clients__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ldp-gray-500);
  margin-bottom: 32px;
  text-align: center;
}
.ldp-clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ldp-clients__logo {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.ldp-clients__logo:hover { opacity: 1; filter: none; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes ldp-fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ldp-anim-fadeup {
  animation: ldp-fadeup 0.7s cubic-bezier(.2,.7,.3,1) both;
}

/* ================================================================
   ELEMENTOR WIDGET OVERRIDES
   ================================================================ */

/* Section backgrounds */
.elementor-section.ldp-bg-black,
.e-con.ldp-bg-black { background-color: var(--ldp-black) !important; color: var(--ldp-white) !important; }
.elementor-section.ldp-bg-yellow,
.e-con.ldp-bg-yellow { background-color: var(--ldp-yellow) !important; color: var(--ldp-black) !important; }
.elementor-section.ldp-bg-cream,
.e-con.ldp-bg-cream  { background-color: var(--ldp-cream)  !important; color: var(--ldp-black) !important; }

/* Elementor heading widget */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Dividers — use yellow */
.elementor-widget-divider .elementor-divider-separator {
  border-color: var(--ldp-yellow) !important;
}

/* Icon boxes */
.elementor-widget-icon-box .elementor-icon-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ================================================================
   RESPONSIVE — TABLETTE
   ================================================================ */
@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
    --pad-y: 72px;
  }
  .ldp-proof__grid  { grid-template-columns: 1fr; }
  .ldp-steps        { grid-template-columns: 1fr 1fr; }
  .ldp-pillars      { grid-template-columns: 1fr; }
  .ldp-cta__inner   { grid-template-columns: 1fr; gap: 48px; }
  .ldp-footer__grid { grid-template-columns: 1fr 1fr; }
  .ldp-cases-grid   { grid-template-columns: 1fr; }
  .ldp-cases-grid--3 { grid-template-columns: 1fr 1fr; }
  .ldp-exp__panel   { grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --pad-y: 56px;
  }
  .ldp-hero__yellow-block  { display: none; }
  .ldp-hero__circle        { display: none; }
  .ldp-hero__bottom        { flex-direction: column; }
  .ldp-steps               { grid-template-columns: 1fr; }
  .ldp-form                { grid-template-columns: 1fr; }
  .ldp-footer__grid        { grid-template-columns: 1fr; }
  .ldp-cases-grid          { grid-template-columns: 1fr; }
  .ldp-cases-grid--3       { grid-template-columns: 1fr; }
  .ldp-footer__wordmark    { font-size: clamp(48px, 15vw, 100px); }
  .ldp-exp__panel-num      { font-size: 100px; }
  .ldp-section-head        { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ldp-ticker__item        { font-size: 20px; }
  .ldp-hero__inner         { padding: 64px var(--pad-x) 48px; }
  .ldp-proof__item         { border-right: none; border-bottom: 1px solid #2a2a2a; padding: 32px 20px; }
  .ldp-pillar              { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .ldp-step                { border-right: none; border-bottom: 1px solid var(--ldp-gray-100); }
  .ldp-footer__bottom      { flex-direction: column; text-align: center; }
  .ldp-sticky-cta          { bottom: 12px; right: 12px; }
}

/* ================================================================
   PRINT / ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .ldp-ticker__track { animation: none; }
  .ldp-anim-fadeup   { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

@media print {
  .ldp-sticky-cta { display: none; }
  .ldp-ticker     { display: none; }
}
