/* ======================================================
   UDEL CONSULTING — Feuille de style globale
   Couleurs : #1A4731 (vert foncé) / #B8860B (or) /
   #2D7A50 (vert moyen) / #F4F9F6 (fond clair) / #FFFFFF
   ====================================================== */

:root {
  --green-dark: #1A4731;
  --green-mid: #2D7A50;
  --gold: #B8860B;
  --gold-soft: #F5E9C8;
  --bg-light: #F4F9F6;
  --white: #FFFFFF;
  --text: #1F2A24;
  --text-soft: #4B5A52;
  --border: #DDE8E0;
  --shadow-sm: 0 2px 8px rgba(26, 71, 49, 0.06);
  --shadow-md: 0 6px 20px rgba(26, 71, 49, 0.10);
  --shadow-lg: 0 18px 40px rgba(26, 71, 49, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--green-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p  { color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4.5rem 0; position: relative; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a0760a;
  border-color: #a0760a;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-ghost:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-dark);
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.95rem;
}
.logo-text span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav ul {
  display: flex;
  gap: 1.75rem;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green-dark); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #153a28 0%, #1A4731 45%, #2D7A50 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-full { min-height: 92vh; display: flex; align-items: center; }
.hero-short { padding: 4.5rem 0 4rem; min-height: auto; }

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}

.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero p.lead {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 720px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.2rem;
}

/* ---------- Sections génériques ---------- */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section-head h2 { margin-bottom: 0.8rem; }

/* ---------- Cards problème / approche ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-light);
  color: var(--green-dark);
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.95rem; }

.section-alt { background: var(--bg-light); }

/* ---------- Chiffres clés ---------- */
.stats {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.stat-item .label {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin-top: 0.4rem;
  display: block;
}
.stat-item a { color: var(--gold); text-decoration: underline; }

/* ---------- Carousel témoignages accueil ---------- */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-slide {
  min-width: 100%;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease;
}
.carousel-slide .avatar { margin: 0 auto 1rem; }
.carousel-slide .stars { justify-content: center; margin-bottom: 1rem; }
.carousel-slide blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}
.carousel-slide .author {
  font-weight: 700;
  color: var(--green-dark);
}
.carousel-slide .author-role {
  color: var(--text-soft);
  font-size: 0.9rem;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: grid; place-items: center;
  transition: background var(--transition);
}
.carousel-btn:hover { background: var(--gold); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}
.carousel-dot.active { background: var(--gold); }

/* ---------- Avatars ---------- */
.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.avatar.lg { width: 96px; height: 96px; font-size: 1.9rem; }
.avatar.dark { background: var(--green-dark); }
.avatar.gold { background: var(--gold); }
.avatar.mid { background: var(--green-mid); }
.avatar.bordered {
  background: var(--green-dark);
  box-shadow: 0 0 0 3px var(--gold);
}

/* ---------- Étoiles ---------- */
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}

/* ---------- Pourquoi UDEL ---------- */
.pitch {
  background: linear-gradient(135deg, var(--bg-light) 0%, #EAF2EC 100%);
  text-align: center;
}
.pitch .quote-mark {
  font-family: 'Poppins', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.pitch blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--green-dark);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ---------- Offres cartes ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer-card.highlight {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}
.offer-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.offer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.offer-tagline {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offer-target {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.offer-list { margin-bottom: 1.5rem; }
.offer-list li {
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--text);
}
.offer-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75rem;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.offer-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.offer-price .setup { font-size: 0.88rem; color: var(--text-soft); display: block; }
.offer-price .monthly {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  margin: 0.25rem 0 1rem;
}
.offer-card .btn { width: 100%; }

/* ---------- Témoignage court sous offre ---------- */
.mini-testimonial {
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  margin-top: 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--green-dark);
}
.mini-testimonial .author {
  font-style: normal;
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.4rem;
  font-size: 0.82rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; }

/* ---------- Page Témoignages ---------- */
.testimonial-stats {
  background: var(--bg-light);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.testimonial-stats .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
}
.testimonial-stats .label {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.testimonial-list { display: flex; flex-direction: column; gap: 2.5rem; }

.testimonial-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimonial-card-full:hover { box-shadow: var(--shadow-md); }

.testimonial-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.testimonial-header-info { flex: 1; min-width: 200px; }
.testimonial-header h3 { margin-bottom: 0.2rem; font-size: 1.25rem; }
.testimonial-role { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 0.5rem; }
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-sector { background: #EAF2EC; color: var(--green-dark); }
.badge-offer   { background: var(--green-dark); color: var(--white); }

.testimonial-pullquote {
  background: var(--gold-soft);
  color: var(--green-dark);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  margin: 1.25rem 0;
  border-left: 4px solid var(--gold);
  line-height: 1.45;
  position: relative;
}

.testimonial-body {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  position: relative;
  padding: 0 0.5rem;
}
.testimonial-body::before {
  content: '\201C';
  color: var(--gold);
  font-family: 'Poppins', serif;
  font-size: 3rem;
  position: absolute;
  top: -1.3rem; left: -0.8rem;
  line-height: 1;
}
.testimonial-body::after {
  content: '\201D';
  color: var(--gold);
  font-family: 'Poppins', serif;
  font-size: 3rem;
  line-height: 0;
  margin-left: 0.3rem;
  position: relative;
  top: 0.5rem;
}

/* ---------- CTA finale ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5L55 30L30 55L5 30Z' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.35;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: var(--white); margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- À propos ---------- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  background: var(--white);
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.mvv-card h3 { color: var(--green-dark); margin-bottom: 0.6rem; }
.mvv-card p { font-size: 0.95rem; }

.storytelling {
  background: var(--bg-light);
  text-align: center;
}
.storytelling p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
  color: var(--green-dark);
}

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 600;
}
.compare-table thead th:first-child { background: transparent; color: var(--green-dark); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody th { background: var(--bg-light); font-weight: 600; color: var(--green-dark); }
.compare-table .udel-col { background: #FBF6E8; font-weight: 500; color: var(--green-dark); }

.tool-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.tool-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem 1.15rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.92rem;
  transition: all var(--transition);
}
.tool-badge:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.trust-bloc {
  background: linear-gradient(135deg, #EAF2EC 0%, var(--bg-light) 100%);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--green-dark);
  font-weight: 500;
}

.mini-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mini-testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.mini-testi-card .head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.mini-testi-card .author-block strong { color: var(--green-dark); display: block; }
.mini-testi-card .author-block span { color: var(--text-soft); font-size: 0.85rem; }
.mini-testi-card blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.92rem;
}
.form-group label .required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c0392b; }
.form-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  background: #EAF2EC;
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 500;
}
.form-success.active { display: block; }

.contact-info h3 { margin-bottom: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--bg-light);
  color: var(--green-dark);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item strong { color: var(--green-dark); display: block; margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-item span, .contact-item a { color: var(--text-soft); font-size: 0.95rem; }

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: grid; place-items: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.reply-note {
  background: var(--gold-soft);
  color: var(--green-dark);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 1.25rem;
  border-left: 3px solid var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green-mid) 50%, var(--gold) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-brand { max-width: 340px; }
.footer-brand .logo { color: var(--white); margin-bottom: 0.8rem; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.6; }
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid ul li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-grid ul li a:hover { color: var(--gold); }
.footer-grid address { font-style: normal; color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.7; }
.footer-grid address a { color: rgba(255,255,255,0.8); }
.footer-grid address a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-bottom .made { color: var(--gold); }

/* ---------- Animations scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3,
  .offers-grid,
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero-full { min-height: auto; padding: 4rem 0 3rem; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 1rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: 0.5rem; }
  .main-nav ul li a { padding: 0.7rem 0; display: block; }
  .main-nav .btn { width: 100%; }

  .grid-3,
  .offers-grid,
  .mvv-grid,
  .mini-testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .testimonial-card-full { padding: 1.75rem 1.25rem; }
  .testimonial-pullquote { font-size: 1.05rem; padding: 1.1rem 1.2rem; }
}
