/* =============================================
   ATELIER LOGO — style.css
   Compatible OVH / FileZilla (static hosting)
   ============================================= */

:root {
  --yellow: #D8C22F;
  --green:  #4FD097;
  --blue:   #0045FF;
  --black:  #000000;
  --white:  #ffffff;
  --bg:     #f9f8f5;
  --text:   #333333;
  --muted:  #888888;
  --font-title: 'Syne', sans-serif;
  --font-body:  'Space Grotesk', sans-serif;
  --max-w: 1280px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }
ul { list-style: none; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  min-height: 100%;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#navbar.scrolled {
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}

@keyframes slideDown {
  from { transform: translateY(-80px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-square {
  width: 32px; height: 32px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
}
.logo-square span, .logo-square {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
}
.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.btn-audit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-audit:hover { background: var(--blue); color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* Burger open state */
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  animation: fadeIn 0.3s ease;
}
.nav-mobile.open { display: flex; }
.mobile-link {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 15px;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue); }
.mobile-cta { align-self: flex-start; margin-top: 4px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-shape-yellow {
  position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: var(--yellow);
  opacity: 0.15;
  animation: scaleIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.hero-shape-green {
  position: absolute; bottom: 80px; left: -80px;
  width: 300px; height: 300px;
  background: var(--green);
  opacity: 0.12;
  animation: scaleIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.hero-stripe {
  position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  transform-origin: top;
  animation: stripeIn 0.8s ease 0.4s both;
}
.hero-corner {
  position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--yellow);
  animation: scaleIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 1s both;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
@keyframes stripeIn {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 140px 40px 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
}

/* Hero left */
.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--black);
  font-size: clamp(2.6rem, 5.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  animation: titleIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
@keyframes titleIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-underline {
  height: 4px;
  width: 80px;
  background: var(--yellow);
  transform-origin: left;
  animation: underlineIn 0.6s ease 1s both;
}
@keyframes underlineIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-subtitle {
  font-family: var(--font-body);
  color: #555555;
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  line-height: 1.8;
  max-width: 440px;
  animation: fadeUp 0.7s ease 1.1s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.6s ease 1.25s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cta-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  transition: background 0.2s;
}
.cta-yellow:hover { background: var(--green); }

.cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.cta-outline:hover { background: var(--black); color: var(--white); }

.cta-black {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  transition: background 0.2s;
}
.cta-black:hover { background: var(--blue); }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 8px;
  animation: fadeIn 0.8s ease 1.5s both;
}
.stat {
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}
.stat-value {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}

/* Hero right */
.hero-right {
  position: relative;
  animation: heroImgIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}
@keyframes heroImgIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 2px solid rgba(0,0,0,0.06);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 10px 16px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--black);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: tagIn 0.5s ease 1.4s both;
}

.hero-img-tag a {
  color: var(--black);
}
@keyframes tagIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-dot-green {
  position: absolute;
  right: -16px; top: -16px;
  width: 52px; height: 52px;
  background: var(--green);
  animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1) 1.1s both;
}
.hero-dot-black {
  position: absolute;
  left: -12px; bottom: 60px;
  width: 24px; height: 24px;
  background: var(--green);
  animation: scaleIn 0.3s ease 1.3s both;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  align-self: center;
  animation: fadeIn 1s ease 2s both;
}
.scroll-hint span {
  font-family: var(--font-body);
  font-size: 10px;
  color: #aaaaaa;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-arrow {
  font-size: 20px;
  color: #aaaaaa;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ===================== SERVICES BAND ===================== */
.services-band {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
}
.services-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.dot { color: var(--yellow); font-size: 16px; }

/* ===================== SERVICES SECTION ===================== */
.services-section {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.srv-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  background: var(--yellow);
  transition: background 0.3s ease;
}
.srv-card:nth-child(2)::before { background: var(--black); }
.srv-card:nth-child(3)::before { background: var(--green); }

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.13);
}

.srv-card--featured {
  background: var(--white);
  border-color: var(--white);
}
.srv-card--featured::before { background: var(--yellow); }
.srv-card--featured:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
  border-color: var(--black);
}

.srv-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(216,194,47,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(216,194,47,0); }
}

.srv-top {
  padding: 32px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.srv-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}
.srv-card--featured .srv-name { 
  /*color: var(--white); */
}

.srv-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.srv-card--featured .srv-tagline { 
  /*color: rgba(255,255,255,0.6); */
}

.srv-features {
  list-style: none;
  padding: 0 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.srv-features::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 4px;
}
.srv-card--featured .srv-features::before { 
  /*background: rgba(255,255,255,0.1); */
}

.srv-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.srv-card--featured .srv-features li { 
  /* color: rgba(255,255,255,0.75); */
}

.srv-check {
  color: var(--yellow);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.srv-footer {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.srv-card--featured .srv-footer { 
  /*border-color: rgba(255,255,255,0.1); */
}

.srv-from {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.srv-card--featured .srv-from { color: rgba(255,255,255,0.4); }

.srv-price {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}
.srv-card--featured .srv-price { color: var(--yellow); }

.srv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.srv-btn:hover { background: var(--black); color: var(--white); transform: translateX(3px); }

.srv-btn--dark { background: var(--yellow); color: var(--black); }
/*.srv-btn--dark:hover { 
  background: var(--white); 
  color: var(--black); 
}*/

.srv-grid .reveal:nth-child(1) { transition-delay: 0s; }
.srv-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.srv-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 480px) {
  .services-inner { gap: 16px; font-size: 11px; }
  .event-right    { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .cta-yellow, .cta-outline { width: 100%; justify-content: center; }
}


/* ===================== SECTION COMMONS ===================== */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-header { margin-bottom: 52px; }

.section-bar {
  height: 3px; width: 56px; margin-bottom: 20px;
  transform-origin: left;
  animation: none;
}
.yellow-bar { background: var(--yellow); }
.green-bar  { background: var(--green);  }
.black-bar  { background: var(--black);  }

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  max-width: 460px;
  line-height: 1.75;
}

/* ===================== OFFERS ===================== */
.offers {
  padding: 96px 0;
  background: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  min-height: 360px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.offer-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.card-stripe { height: 4px; width: 100%; }

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.card-price {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.card-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}
.card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: #666666;
}
.card-features {
  list-style: none;
  padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.card-features li {
  font-family: var(--font-body);
  font-size: 12px;
  color: #444444;
  padding-left: 14px;
  position: relative;
}
.card-features li::before {
  content: '★';
  position: absolute; left: 0;
  font-size: 8px;
  top: 3px;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 0;
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.2s;
}
.card-btn:hover { opacity: 0.85; }

/* ===================== EVENT ===================== */
.event {
  padding: 96px 0;
  background: #f4f9f7;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.event-left { display: flex; flex-direction: column; gap: 20px; }
.event-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555555;
  line-height: 1.78;
}

.event-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.event-card {
  padding: 22px 20px;
}
.ec-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.ec-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
}

/* ===================== AUDIT ===================== */
.audit {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.audit-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 760px;
  margin: 0 auto;
}
.audit-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.audit-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
}
.audit-badge {
  width: 160px; height: 160px;
  flex-shrink: 0;
  background: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}
.audit-badge:hover { transform: rotate(0deg) scale(1.05); }
.badge-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1;
}
.badge-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--black);
  font-weight: 600;
  margin-top: 4px;
}

/* ===================== AUDIT MODAL ===================== */

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.modal-open {
  opacity: 1;
  pointer-events: all;
}

/* Box */
.modal-box {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) transparent;
}
.modal-overlay.modal-open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1.5px solid rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.modal-close:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

/* Header */
.modal-header {
  padding: 36px 36px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.modal-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--yellow);
}

.modal-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  align-self: flex-start;
  margin-left: 16px;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-left: 16px;
}

.modal-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-left: 16px;
}

.req-star {
  color: #e03e3e;
  font-weight: 700;
}

/* Form */
.modal-form {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mf-field label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.mf-field input {
  background: #f7f7f6;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--black);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.mf-field input:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(216,194,47,0.18);
}
.mf-field input.mf-error {
  border-color: #e03e3e;
  background: #fff8f8;
}

/* Submit button */
.modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.modal-submit:hover { background: var(--yellow); color: var(--black); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Spinner (hidden by default) */
.modal-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.modal-submit.loading .modal-submit-text,
.modal-submit.loading .modal-submit-arrow { display: none; }
.modal-submit.loading .modal-spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.modal-success {
  padding: 48px 36px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.success-anim {
  position: relative;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
}
.success-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--green);
  border-radius: 50%;
  animation: ringPop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.success-check {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 700;
  animation: checkPop 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}

@keyframes ringPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes checkPop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0);     opacity: 1; }
}

.success-h {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
}
.success-p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* Prevent body scroll when modal open */
body.modal-locked { overflow: hidden; }

/* Modal responsive */
@media (max-width: 600px) {
  .modal-header  { padding: 28px 24px 20px; }
  .modal-form    { padding: 24px 24px 32px; }
  .modal-title   { font-size: 1.25rem; margin-left: 12px; }
  .modal-badge, .modal-sub { margin-left: 12px; }
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 96px 0;
  background: var(--bg);
}
.contact-inner {
  max-width: 680px;
}
.contact-desc {
  font-family: var(--font-body);
  color: #777777;
  font-size: 15px;
  margin-bottom: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  background: #f7f7f6;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--black);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--black);
  background: var(--white);
}
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--yellow); color: var(--black); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0;
  gap: 14px;
}
.success-icon {
  width: 60px; height: 60px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--black);
}
.success-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 700;
}
.success-sub {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
}

/* ===== OFFER BANNER IN CONTACT FORM ===== */
.offer-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--yellow);
  border-left: 4px solid var(--black);
  animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.offer-banner-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.offer-banner-value {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  flex: 1;
}
.offer-banner-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  opacity: 0.5;
  padding: 0 4px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.offer-banner-clear:hover { opacity: 1; }

/* ===== FILE DROP FIELD ===== */
.file-hint {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 4px;
}

.file-drop {
  position: relative;
  border: 1.5px dashed rgba(0,0,0,0.2);
  background: #f7f7f6;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.file-drop:hover,
.file-drop.drag-over {
  border-color: var(--black);
  background: var(--white);
}
.file-drop.has-file {
  border-color: var(--green);
  background: #f4fdf9;
}

/* Cache l'input natif, on garde le label custom */
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-drop-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.file-drop-icon { font-size: 22px; }
.file-drop-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
}
.file-drop-name {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  min-height: 16px;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 32px 0;
  background: var(--white);
  border-top: 1.5px solid rgba(0,0,0,0.07);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #aaaaaa;
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 12px;
  color: #aaaaaa;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links, .btn-audit:not(.mobile-cta) {
    display: none;
  }
  .nav-burger { display: flex; }
  /*test*/
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links, .btn-audit:not(.mobile-cta) {
    display: none;
  }
  .nav-burger { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hero-inner { padding: 100px 24px 48px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-right { display: none; }

  .section-inner { padding: 0 24px; }
  .offers      { padding: 64px 0; }
  .event       { padding: 64px 0; }
  .audit       { padding: 56px 0; }
  .contact     { padding: 64px 0; }

  .offers-grid { grid-template-columns: 1fr; }

  .event-grid  { grid-template-columns: 1fr; gap: 32px; }
  .event-right { grid-template-columns: 1fr 1fr; }

  .audit-inner { flex-direction: column; gap: 32px; align-items: flex-start; }

  .form-row    { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; }

  .hero-stats  { gap: 20px; }

  /*test*/

  :root { --nav-h: 60px; }

  .hero-inner { padding: 100px 24px 48px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-right { display: none; }

  .section-inner { padding: 0 24px; }
  .offers      { padding: 64px 0; }
  .event       { padding: 64px 0; }
  .audit       { padding: 56px 0; }
  .contact     { padding: 64px 0; }

  .offers-grid { grid-template-columns: 1fr; }
  .srv-grid    { grid-template-columns: 1fr; }

  .event-grid  { grid-template-columns: 1fr; gap: 32px; }
  .event-right { grid-template-columns: 1fr 1fr; } */

  .audit-inner { flex-direction: column; gap: 32px; align-items: flex-start; }

  .form-row    { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; }

  .hero-stats  { gap: 20px; }
}

@media (max-width: 480px) {
  .services-inner { gap: 16px; font-size: 11px; }
  .event-right    { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .cta-yellow, .cta-outline { width: 100%; justify-content: center; }
}
