@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ============ CSS VARIABLES ============ */
:root {
  --red: #C8102E;
  --red-dark: #a50d25;
  --blue: #002395;
  --bg-cream: #f8f7f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --max-w: 1280px;
}

/* ============ UTILITIES ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media(min-width:768px){ .container { padding: 0 2rem; } }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media(min-width:768px){ .navbar-inner { padding: 0 2rem; height: 5rem; } }

.nav-logo { display: flex; align-items: center; gap: .5rem; cursor: pointer; }
.nav-logo-icon {
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  background: var(--red); border-radius: .375rem;
}
.nav-logo-icon i { color: #fff; font-size: 1rem; }
.nav-logo-text { font-weight: 700; font-size: 1.125rem; letter-spacing: -.025em; color: #fff; }
.nav-logo-text .accent { color: var(--red); }
.navbar.scrolled .nav-logo-text { color: var(--gray-900); }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media(min-width:768px){ .nav-links { display: flex; } }
.nav-links a {
  font-size: .875rem; font-weight: 500; white-space: nowrap;
  color: rgba(255,255,255,.9); transition: color .2s; cursor: pointer;
}
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--red); }

.nav-cta {
  display: none; align-items: center; gap: .5rem;
  background: var(--red); color: #fff; font-size: .875rem; font-weight: 600;
  padding: .625rem 1.25rem; border-radius: .375rem;
  transition: background .2s; cursor: pointer; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }
@media(min-width:768px){ .nav-cta { display: inline-flex; } }

.nav-hamburger {
  width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center;
  border-radius: .375rem; cursor: pointer; color: #fff; font-size: 1.25rem;
}
.navbar.scrolled .nav-hamburger { color: var(--gray-700); }
@media(min-width:768px){ .nav-hamburger { display: none; } }

.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--gray-100);
  padding: 1rem; flex-direction: column; gap: .75rem;
}
.mobile-menu.open { display: flex; }
@media(min-width:768px){ .mobile-menu { display: none !important; } }
.mobile-menu a {
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  padding: .25rem 0; cursor: pointer; transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta {
  margin-top: .5rem; display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; background: var(--red); color: #fff; font-size: .875rem; font-weight: 600;
  padding: .625rem 1.25rem; border-radius: .375rem; cursor: pointer; white-space: nowrap;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.5), rgba(0,0,0,.7));
}
.hero-tricolore {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px; display: flex;
}
.hero-tricolore span { flex: 1; }
.hero-tricolore span:nth-child(1) { background: var(--blue); }
.hero-tricolore span:nth-child(2) { background: #fff; }
.hero-tricolore span:nth-child(3) { background: var(--red); }

.hero-content {
  position: relative; z-index: 10; width: 100%; max-width: 56rem;
  margin: 0 auto; padding: 5rem 1rem 0; text-align: center;
}
@media(min-width:768px){ .hero-content { padding: 5rem 2rem 0; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-size: .75rem; font-weight: 600; padding: .5rem 1rem;
  border-radius: 9999px; margin-bottom: 1.5rem;
  letter-spacing: .1em; text-transform: uppercase;
}

.hero h1 {
  font-size: 2.25rem; font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -.025em;
}
.hero h1 .accent { color: var(--red); }
@media(min-width:768px){ .hero h1 { font-size: 3.75rem; } }
@media(min-width:1024px){ .hero h1 { font-size: 4.5rem; } }

.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.8);
  max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.75;
}
@media(min-width:768px){ .hero-sub { font-size: 1.25rem; } }
.hero-sub strong { color: #fff; }

.hero-search {
  display: flex; flex-direction: column; gap: .75rem;
  max-width: 42rem; margin: 0 auto 2rem;
}
@media(min-width:640px){ .hero-search { flex-direction: row; } }
.hero-search-input {
  flex: 1; display: flex; align-items: center; gap: .75rem;
  background: #fff; border-radius: .5rem; padding: .75rem 1rem;
}
.hero-search-input i { color: var(--gray-400); font-size: 1.125rem; }
.hero-search-input input {
  flex: 1; border: none; outline: none; font-size: .875rem;
  color: var(--gray-800); background: transparent;
}
.hero-search-input input::placeholder { color: var(--gray-400); }
.hero-search-btn {
  background: var(--red); color: #fff; font-weight: 600; font-size: .875rem;
  padding: .75rem 1.5rem; border-radius: .5rem; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.hero-search-btn:hover { background: var(--red-dark); }

.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.hero-tags button {
  font-size: .75rem; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.3); padding: .375rem .75rem;
  border-radius: 9999px; transition: all .2s; cursor: pointer; white-space: nowrap;
}
.hero-tags button:hover { border-color: #fff; color: #fff; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: bounce 2s infinite;
}
.hero-scroll span { color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll i { color: rgba(255,255,255,.5); font-size: 1.125rem; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============ STATISTICS ============ */
.stats { padding: 4rem 0; background: #fff; }
@media(min-width:768px){ .stats { padding: 6rem 0; } }

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  color: var(--red); text-transform: uppercase;
}
.section-title {
  font-size: 1.875rem; font-weight: 800; color: var(--gray-900); margin-top: .5rem;
}
@media(min-width:768px){ .section-title { font-size: 2.25rem; } }
.section-desc {
  color: var(--gray-500); margin-top: .75rem; max-width: 36rem;
  margin-left: auto; margin-right: auto; font-size: .875rem;
}
@media(min-width:768px){ .section-desc { font-size: 1rem; } }
.text-center { text-align: center; }

.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--gray-100); border-radius: 1rem; overflow: hidden; background: #fff;
}
@media(min-width:1024px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
@media(min-width:768px){ .stat-card { padding: 2rem; } }
@media(min-width:1024px){ .stat-card { border-bottom: none; } }
.stat-card:nth-child(2n) { border-right: none; }
@media(min-width:1024px){
  .stat-card:nth-child(2n) { border-right: 1px solid var(--gray-100); }
  .stat-card:last-child { border-right: none; }
}
.stat-icon {
  width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
  background: rgba(200,16,46,.1); border-radius: .75rem; margin-bottom: 1rem;
}
.stat-icon i { font-size: 1.5rem; color: var(--red); }
.stat-value {
  font-size: 2.25rem; font-weight: 800; color: var(--gray-900);
  margin-bottom: .5rem; letter-spacing: -.025em;
}
@media(min-width:768px){ .stat-value { font-size: 3rem; } }
.stat-label { font-size: .875rem; color: var(--gray-500); font-weight: 500; }

/* ============ CATEGORIES ============ */
.categories { padding: 4rem 0; background: var(--bg-cream); }
@media(min-width:768px){ .categories { padding: 6rem 0; } }

.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media(min-width:640px){ .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px){ .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.cat-card {
  position: relative; border-radius: .75rem; overflow: hidden;
  cursor: pointer; display: block; aspect-ratio: 4/3;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .5s;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.cat-card-overlay.sky { background: linear-gradient(to top, rgba(12,74,110,.8), transparent); }
.cat-card-overlay.green { background: linear-gradient(to top, rgba(20,83,45,.8), transparent); }
.cat-card-overlay.indigo { background: linear-gradient(to top, rgba(30,27,75,.8), transparent); }
.cat-card-overlay.orange { background: linear-gradient(to top, rgba(124,45,18,.8), transparent); }
.cat-card-overlay.rose { background: linear-gradient(to top, rgba(76,5,25,.8), transparent); }
.cat-card-overlay.yellow { background: linear-gradient(to top, rgba(113,63,18,.8), transparent); }
.cat-card-overlay.teal { background: linear-gradient(to top, rgba(19,78,74,.8), transparent); }
.cat-card-overlay.slate { background: linear-gradient(to top, rgba(30,41,59,.8), transparent); }

.cat-card-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1rem;
}
.cat-card-icon {
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  border-radius: .5rem; margin-bottom: .5rem;
}
.cat-card-icon i { color: #fff; font-size: .875rem; }
.cat-card-name { color: #fff; font-weight: 700; font-size: .875rem; line-height: 1.3; }
@media(min-width:768px){ .cat-card-name { font-size: 1rem; } }
.cat-card-count { color: rgba(255,255,255,.7); font-size: .75rem; margin-top: .125rem; }

/* ============ FEATURED FACTORIES ============ */
.featured { padding: 4rem 0; background: #fff; }
@media(min-width:768px){ .featured { padding: 6rem 0; } }

.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: .75rem; font-weight: 600; padding: .5rem 1rem;
  border-radius: 9999px; cursor: pointer; white-space: nowrap;
  transition: all .2s; background: var(--gray-100); color: var(--gray-600);
}
.filter-btn:hover { background: var(--gray-200); }
.filter-btn.active { background: var(--red); color: #fff; }

.factory-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:640px){ .factory-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .factory-grid { grid-template-columns: repeat(3, 1fr); } }

.factory-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: .75rem;
  overflow: hidden; transition: border-color .3s; cursor: pointer;
}
.factory-card:hover { border-color: rgba(200,16,46,.3); }

.factory-card-img {
  position: relative; height: 12rem; overflow: hidden;
}
.factory-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .5s;
}
.factory-card:hover .factory-card-img img { transform: scale(1.05); }

.factory-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--red); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem .625rem; border-radius: 9999px;
}
.factory-region-tag {
  position: absolute; top: .75rem; right: .75rem;
  display: flex; align-items: center; gap: .25rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  color: var(--gray-700); font-size: .75rem; font-weight: 500;
  padding: .25rem .625rem; border-radius: 9999px;
}
.factory-region-tag i { color: var(--red); font-size: .75rem; }

.factory-card-body { padding: 1.25rem; }
.factory-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .5rem; }
.factory-card-header h3 { font-weight: 700; color: var(--gray-900); font-size: 1rem; }
.factory-card-header .sector { font-size: .75rem; color: var(--red); font-weight: 600; }
.factory-card-header .founded-label { font-size: .75rem; color: var(--gray-400); }
.factory-card-header .founded-value { font-size: .875rem; font-weight: 700; color: var(--gray-700); }

.factory-desc {
  font-size: .75rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.factory-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1rem; }
.factory-tag {
  font-size: .75rem; background: var(--gray-100); color: var(--gray-600);
  padding: .125rem .5rem; border-radius: 9999px;
}

.factory-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .75rem; border-top: 1px solid var(--gray-100);
}
.factory-card-footer .info {
  display: flex; align-items: center; gap: .375rem; font-size: .75rem; color: var(--gray-500);
}
.factory-card-footer .info i { color: var(--gray-400); }

.see-all-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--red); color: var(--red); font-weight: 600; font-size: .875rem;
  padding: .75rem 2rem; border-radius: .5rem; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.see-all-btn:hover { background: var(--red); color: #fff; }

/* ============ REGIONS ============ */
.regions { padding: 4rem 0; background: var(--bg-cream); }
@media(min-width:768px){ .regions { padding: 6rem 0; } }

.regions-layout {
  display: flex; flex-direction: column; gap: 3rem; align-items: flex-start;
}
@media(min-width:1024px){ .regions-layout { flex-direction: row; } }

.regions-left { width: 100%; }
@media(min-width:1024px){ .regions-left { width: 50%; } }
.regions-right { width: 100%; }
@media(min-width:1024px){ .regions-right { width: 50%; } }

.regions-left p {
  color: var(--gray-500); font-size: .875rem; margin-bottom: 2rem; line-height: 1.75;
}
@media(min-width:768px){ .regions-left p { font-size: 1rem; } }

.region-bar { margin-bottom: .75rem; cursor: pointer; }
.region-bar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.region-bar-name { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.region-bar-specialty { font-size: .75rem; color: var(--gray-400); margin-left: .5rem; }
.region-bar-count { font-size: .75rem; font-weight: 700; color: var(--red); }
.region-bar-track { height: .375rem; background: var(--gray-200); border-radius: 9999px; overflow: hidden; }
.region-bar-fill { height: 100%; background: var(--red); border-radius: 9999px; transition: width .7s; }

.regions-map {
  position: relative; border-radius: 1rem; overflow: hidden; height: 520px;
}
.regions-map img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.regions-map-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}
.regions-map-stats {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.regions-map-stat {
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  border-radius: .75rem; padding: .75rem; text-align: center;
}
.regions-map-stat-val { font-size: 1.25rem; font-weight: 800; color: var(--red); }
.regions-map-stat-label { font-size: .75rem; color: var(--gray-600); font-weight: 500; }

/* ============ ABOUT ============ */
.about { padding: 4rem 0; background: #fff; }
@media(min-width:768px){ .about { padding: 6rem 0; } }

.about-layout {
  display: flex; flex-direction: column; gap: 4rem; align-items: center;
}
@media(min-width:1024px){ .about-layout { flex-direction: row; } }

.about-left { width: 100%; }
@media(min-width:1024px){ .about-left { width: 41.666%; } }
.about-right { width: 100%; }
@media(min-width:1024px){ .about-right { width: 58.333%; } }

.about-img-wrap { position: relative; }
.about-img {
  border-radius: 1rem; overflow: hidden; height: 460px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-floating-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: #fff; border-radius: .75rem; padding: 1.25rem; width: 11rem;
}
.about-floating-card .num { font-size: 1.875rem; font-weight: 800; }
.about-floating-card .txt { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.8); margin-top: .25rem; }

.about-tricolore {
  position: absolute; top: 1rem; left: 1rem; display: flex; gap: .25rem;
}
.about-tricolore span {
  width: .5rem; height: 2rem; border-radius: 9999px;
}
.about-tricolore span:nth-child(1) { background: var(--blue); }
.about-tricolore span:nth-child(2) { background: #fff; border: 1px solid var(--gray-200); }
.about-tricolore span:nth-child(3) { background: var(--red); }

.about-right p {
  color: var(--gray-600); font-size: .875rem; line-height: 1.75; margin-bottom: 1.5rem;
}
@media(min-width:768px){ .about-right p { font-size: 1rem; } }
.about-right p strong { color: var(--gray-900); }

.about-values {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem;
}
@media(min-width:640px){ .about-values { grid-template-columns: repeat(2, 1fr); } }

.about-value { display: flex; gap: 1rem; }
.about-value-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem; display: flex; align-items: center; justify-content: center;
  background: rgba(200,16,46,.1); border-radius: .5rem;
}
.about-value-icon i { color: var(--red); font-size: 1.125rem; }
.about-value-title { font-weight: 700; color: var(--gray-900); font-size: .875rem; margin-bottom: .25rem; }
.about-value-desc { font-size: .75rem; color: var(--gray-500); line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 4rem 0; background: var(--bg-cream); }
@media(min-width:768px){ .testimonials { padding: 6rem 0; } }

.testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px){ .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: #fff; border-radius: .75rem; padding: 1.5rem; border: 1px solid var(--gray-100);
}
.testimonial-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--red); font-size: .875rem; }
.testimonial-quote {
  font-size: .875rem; color: var(--gray-600); line-height: 1.6;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1rem; border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonial-name { font-size: .875rem; font-weight: 700; color: var(--gray-900); }
.testimonial-role { font-size: .75rem; color: var(--gray-500); }

/* ============ CTA ============ */
.cta-section { padding: 4rem 0; background: #fff; }
@media(min-width:768px){ .cta-section { padding: 6rem 0; } }

.cta-layout {
  display: flex; flex-direction: column; gap: 3rem;
}
@media(min-width:1024px){ .cta-layout { flex-direction: row; } }

.cta-left { width: 100%; }
@media(min-width:1024px){ .cta-left { width: 50%; } }
.cta-right { width: 100%; }
@media(min-width:1024px){ .cta-right { width: 50%; } }

.cta-image-wrap {
  position: relative; border-radius: 1rem; overflow: hidden; height: 100%; min-height: 400px;
}
.cta-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cta-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.3), transparent);
}
.cta-image-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
}
.cta-image-content h3 {
  font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .75rem;
}
@media(min-width:768px){ .cta-image-content h3 { font-size: 1.875rem; } }
.cta-image-content p {
  color: rgba(255,255,255,.8); font-size: .875rem; line-height: 1.6; margin-bottom: 1.25rem;
}
.cta-checks { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-check {
  display: flex; align-items: center; gap: .5rem; color: #fff; font-size: .75rem; font-weight: 500;
}
.cta-check i { color: var(--red); }

/* Form */
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media(min-width:640px){ .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group label {
  display: block; font-size: .75rem; font-weight: 600; color: var(--gray-700); margin-bottom: .375rem;
}
.form-group label .optional { color: var(--gray-400); font-weight: 400; margin-left: .25rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1px solid var(--gray-200); border-radius: .5rem;
  padding: .625rem .75rem; font-size: .875rem; color: var(--gray-800);
  outline: none; transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: none; }
.form-group select { cursor: pointer; }

.form-submit {
  width: 100%; background: var(--red); color: #fff; font-weight: 700; font-size: .875rem;
  padding: .875rem; border-radius: .5rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem; white-space: nowrap;
}
.form-submit:hover { background: var(--red-dark); }
.form-submit:disabled { opacity: .6; cursor: default; }

.form-note { font-size: .75rem; color: var(--gray-400); text-align: center; }

.form-success {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: .75rem;
  padding: 2rem; text-align: center; display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
  background: #dcfce7; border-radius: 50%; margin: 0 auto 1rem;
}
.form-success-icon i { color: #16a34a; font-size: 1.5rem; }
.form-success h3 { font-weight: 700; color: var(--gray-900); font-size: 1.125rem; margin-bottom: .5rem; }
.form-success p { color: var(--gray-500); font-size: .875rem; }

/* ============ FOOTER ============ */
.site-footer { background: #1a1a1a; color: #fff; padding: 3rem 0; }

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
@media(min-width:640px){ .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand p { color: var(--gray-400); font-size: .75rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-tricolore { display: flex; gap: .25rem; margin-top: .5rem; }
.footer-tricolore span { width: 1.5rem; height: .75rem; border-radius: .125rem; }
.footer-tricolore span:nth-child(1) { background: var(--blue); }
.footer-tricolore span:nth-child(2) { background: #fff; }
.footer-tricolore span:nth-child(3) { background: var(--red); }

.footer-col h4 { font-weight: 700; font-size: .875rem; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  color: var(--gray-400); font-size: .75rem; transition: color .2s; cursor: pointer;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem;
}
@media(min-width:640px){ .footer-bottom { flex-direction: row; } }
.footer-bottom p { color: var(--gray-500); font-size: .75rem; }
.footer-bottom .made-in {
  display: flex; align-items: center; gap: .25rem; color: var(--gray-500); font-size: .75rem;
}
.footer-bottom .made-in i { color: var(--red); font-size: .75rem; }

/* ============ MARGIN HELPERS ============ */
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-10 { margin-top: 2.5rem; }
