:root {
  --red: #e8252a;
  --red-dark: #c01e22;
  --red-light: #ff4f53;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --white: #ffffff;
  --offwhite: #f8f6f3;
  --text: #333;
  --muted: #777;
  --border: rgba(232,37,42,0.2);
  --green: #1db954;
  --shadow-red: 0 8px 40px rgba(232,37,42,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ══ TOPBAR ══ */
.topbar {
  background: var(--red);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.topbar strong { font-weight: 700; }

/* ══ NAVBAR ══ */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 0 5%;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-logo .maple-leaf { color: var(--red); font-size: 1.2rem; }
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex; gap: 1.8rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-cta.active-cta { background: var(--red-dark) !important; }

.burger {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.4rem; color: var(--dark);
}

/* ══ LAYOUT HELPERS ══ */
.container { max-width: 1100px; margin: 0 auto; width: 100%; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section { padding: 5rem 5%; }
.section-sm { padding: 3.5rem 5%; }

/* ══ HERO (accueil) ══ */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 5% 4rem;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,37,42,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,37,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-wrapper {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-center { grid-template-columns: 1.1fr 0.9fr; }

.hero-left { animation: slideLeft 0.8s ease both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(232,37,42,0.15);
  border: 1px solid rgba(232,37,42,0.4);
  color: #ff7a7d;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1, .page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.highlight { color: var(--red); }

.hero-sub, .page-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem; line-height: 1.75;
  margin-bottom: 2rem; font-weight: 300;
  max-width: 440px;
}

.hero-checks, .demande-checks {
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-bottom: 2.2rem;
}
.check-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: white; flex-shrink: 0;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-hero {
  background: var(--red); color: var(--white);
  padding: 1rem 2.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  border-radius: 40px; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-red);
  display: inline-block;
  animation: pulse-red 2.5s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 8px 40px rgba(232,37,42,0.35); }
  50% { box-shadow: 0 8px 55px rgba(232,37,42,0.6); }
}
.btn-hero:hover {
  background: var(--red-dark); transform: translateY(-3px);
  animation: none; box-shadow: 0 12px 50px rgba(232,37,42,0.5);
}

.btn-outline {
  color: rgba(255,255,255,0.8);
  padding: 1rem 1.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  border-radius: 40px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-2px);
}

.hero-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* Hero right image (accueil) */
.hero-right-img {
  position: relative; animation: slideRight 0.8s ease 0.15s both;
}
.hero-right-img img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--green); color: white;
  padding: 0.6rem 1.2rem; border-radius: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 700;
}

/* ══ PAGE HERO (services / demande) ══ */
.page-hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 4rem 5%;
}
.page-hero-dark { background: var(--dark2); }
.page-hero-noise {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(232,37,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.page-hero-img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--offwhite);
  border-top: 1px solid #ece8e1;
  border-bottom: 1px solid #ece8e1;
  padding: 1.5rem 5%;
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 500; color: var(--dark);
}
.trust-item .ti-icon { font-size: 1.3rem; }
.trust-item .ti-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--red);
}

/* ══ SECTION HEADERS ══ */
.section-tag {
  display: inline-block;
  background: rgba(232,37,42,0.08); color: var(--red);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 20px;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.15; margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.75; max-width: 520px;
}

/* ══ STEPS ══ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.step-card {
  background: var(--white);
  border: 1.5px solid #eee; border-radius: 14px;
  padding: 2rem; position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(232,37,42,0.1);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: rgba(232,37,42,0.08); line-height: 1;
  position: absolute; top: 1rem; right: 1.2rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(232,37,42,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.6rem;
}
.step-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ══ AMOUNTS ══ */
.amounts-section { background: var(--dark); padding: 5rem 5%; }
.amounts-section .section-title { color: var(--white); }
.amounts-section .section-sub { color: rgba(255,255,255,0.5); }
.amounts-section .section-tag { background: rgba(232,37,42,0.2); }

.amounts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.amount-pill {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.5rem 1rem;
  text-align: center; transition: all 0.3s ease;
  cursor: pointer; text-decoration: none;
  display: block;
}
.amount-pill:hover {
  background: var(--red); border-color: var(--red);
  transform: scale(1.03);
}
.amount-pill:hover .pill-amount { color: white; }
.amount-pill:hover .pill-label { color: rgba(255,255,255,0.8); }
.pill-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--red); display: block;
}
.pill-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  margin-top: 0.3rem; display: block;
}

/* ══ USES ══ */
.uses-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.uses-img { border-radius: 16px; overflow: hidden; position: relative; }
.uses-img img { width: 100%; display: block; border-radius: 16px; }
.uses-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--red); color: white;
  padding: 0.6rem 1.2rem; border-radius: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 700;
}
.uses-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.uses-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}
.use-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem;
}

/* ══ TESTIMONIALS ══ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.testi-card {
  background: var(--white); border: 1.5px solid #eee;
  border-radius: 14px; padding: 1.8rem; transition: all 0.3s;
}
.testi-card:hover { border-color: var(--red); box-shadow: 0 8px 30px rgba(232,37,42,0.08); }
.testi-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 0.8rem; }
.testi-text { font-style: italic; font-size: 0.88rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800;
  color: white; font-size: 0.85rem;
}
.testi-name { font-weight: 600; font-size: 0.85rem; color: var(--dark); }
.testi-loc { font-size: 0.75rem; color: var(--muted); }

/* ══ FAQ ══ */
.faq-section { background: var(--offwhite); padding: 5rem 5%; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.faq-item {
  background: var(--white); border: 1.5px solid #eee;
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--red); }
.faq-q {
  padding: 1.2rem 1.5rem;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.92rem; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 0.8rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--red); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 1.5rem; font-size: 0.87rem;
  color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.2rem; }

/* ══ CTA BAND ══ */
.cta-band {
  background: var(--red); padding: 4rem 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '🍁'; position: absolute;
  font-size: 15rem; opacity: 0.06;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
  color: white; margin-bottom: 0.8rem; position: relative;
}
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; position: relative; }
.btn-white {
  background: white; color: var(--red);
  padding: 1rem 2.5rem; border-radius: 40px;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
  text-decoration: none; display: inline-block;
  transition: all 0.25s ease; position: relative;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* ══ SERVICES PAGE ══ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border: 1.5px solid #eee;
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover { border-color: var(--red); box-shadow: 0 16px 50px rgba(232,37,42,0.12); transform: translateY(-5px); }
.service-img { position: relative; overflow: hidden; height: 200px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 20px;
  letter-spacing: 0.05em;
}
.service-body { padding: 1.5rem; }
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-body h3 {
  font-family: 'Syne', sans-serif; font-size: 1.05rem;
  font-weight: 700; color: var(--dark); margin-bottom: 0.6rem;
}
.service-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-features {
  list-style: none; margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.service-features li { font-size: 0.82rem; color: var(--text); }
.btn-service {
  display: inline-block; background: rgba(232,37,42,0.08);
  color: var(--red); padding: 0.6rem 1.2rem;
  border-radius: 30px; font-size: 0.83rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.btn-service:hover { background: var(--red); color: white; }

/* ══ COMPARISON TABLE ══ */
.comparison-table { margin-top: 2.5rem; overflow-x: auto; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 1rem 1.2rem; text-align: left;
  border-bottom: 1px solid #eee; font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--dark); color: white;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.comparison-table thead th.our-col { background: var(--red); }
.comparison-table tbody tr:hover { background: var(--offwhite); }
.comparison-table .our-col { background: rgba(232,37,42,0.04); }
.comparison-table .our-win { color: #157a3a; font-weight: 600; }

/* ══ FORM PAGE ══ */
.form-page-wrapper {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2.5rem; align-items: start;
}
.form-sidebar { position: sticky; top: 90px; }
.sidebar-trust {
  background: var(--white); border: 1.5px solid #eee;
  border-radius: 14px; padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.sidebar-trust h4 {
  font-family: 'Syne', sans-serif; font-size: 0.9rem;
  font-weight: 700; color: var(--dark);
  margin-bottom: 1.2rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}
.sidebar-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 1rem; font-size: 0.83rem; color: var(--text);
}
.sidebar-item:last-child { margin-bottom: 0; }
.si-icon { font-size: 1.3rem; flex-shrink: 0; }
.sidebar-item strong { display: block; color: var(--dark); font-size: 0.85rem; }
.sidebar-item span { color: var(--muted); font-size: 0.8rem; }
.sidebar-reviews {
  background: var(--dark); border-radius: 14px;
  padding: 1.5rem;
}
.review-score {
  font-family: 'Syne', sans-serif; font-size: 1.1rem;
  font-weight: 800; color: #f5a623; margin-bottom: 0.2rem;
}
.review-score strong { color: white; }
.review-count { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.review-mini {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  line-height: 1.6; margin-bottom: 0.6rem;
  padding-left: 0.8rem; border-left: 2px solid var(--red);
}

.form-main {
  background: var(--white); border-radius: 16px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1.5px solid #eee; position: relative;
}
.form-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 16px 16px 0 0;
}
.form-main-header { margin-bottom: 1.5rem; }
.form-main-header h2 {
  font-family: 'Syne', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: var(--dark); margin-bottom: 0.3rem;
}
.form-main-header p { font-size: 0.85rem; color: var(--muted); }

.form-section-label {
  font-family: 'Syne', sans-serif; font-size: 0.8rem;
  font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.8rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(232,37,42,0.15);
}

/* ══ FORM ELEMENTS ══ */
.amount-slider-wrap { margin-bottom: 1.5rem; }
.amount-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.amount-label span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.amount-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--red); }

input[type="range"] {
  width: 100%; -webkit-appearance: none;
  height: 6px;
  background: linear-gradient(90deg, var(--red) var(--pct, 3%), #ddd var(--pct, 3%));
  border-radius: 3px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  background: var(--red); border-radius: 50%;
  cursor: pointer; box-shadow: 0 2px 8px rgba(232,37,42,0.5);
  border: 3px solid white;
}

.form-fg { margin-bottom: 1rem; }
.form-fg label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.35rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-fg input,
.form-fg select,
.form-fg textarea {
  width: 100%; border: 1.5px solid #e0e0e0;
  border-radius: 8px; padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--dark); background: var(--white);
  outline: none; transition: border-color 0.2s;
}
.form-fg textarea { resize: vertical; }
.form-fg input:focus,
.form-fg select:focus,
.form-fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,37,42,0.08);
}

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.form-consent { margin-bottom: 1.2rem; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.8rem; color: var(--muted); line-height: 1.5; cursor: pointer;
}
.checkbox-label input { margin-top: 0.15rem; accent-color: var(--red); }
.checkbox-label a { color: var(--red); }

.btn-submit {
  width: 100%; background: var(--red); color: var(--white);
  border: none; border-radius: 40px; padding: 1rem;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s ease;
  margin-top: 0.3rem; box-shadow: var(--shadow-red);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

.form-privacy {
  text-align: center; font-size: 0.72rem;
  color: var(--muted); margin-top: 0.8rem; line-height: 1.5;
}
.form-success {
  display: none; background: #f0fff4;
  border: 1.5px solid var(--green); border-radius: 8px;
  padding: 1rem; text-align: center;
  color: #157a3a; font-size: 0.88rem;
  margin-top: 0.8rem; font-weight: 500;
}
.form-error {
  display: none; background: #fff0f0;
  border: 1.5px solid var(--red); border-radius: 8px;
  padding: 1rem; text-align: center;
  color: var(--red-dark); font-size: 0.84rem;
  margin-top: 0.8rem;
}
.form-error a { color: var(--red-dark); }

/* ══ FOOTER ══ */
footer { background: var(--dark); padding: 3.5rem 5% 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 1.3rem;
  font-weight: 800; color: white; text-decoration: none;
  display: block; margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 0.78rem;
  font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 1.5rem;
}
.footer-legal {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 1rem 1.5rem;
  font-size: 0.73rem; color: rgba(255,255,255,0.25);
  line-height: 1.65; max-width: 780px; margin-bottom: 1.5rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-links-bot { display: flex; gap: 1.5rem; }
.footer-links-bot a {
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
  text-decoration: none; transition: color 0.2s;
}
.footer-links-bot a:hover { color: var(--red); }

/* ══ ANIMATIONS ══ */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══ DROPDOWN MENU ══ */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 110%; left: 0;
  background: white; border: 1.5px solid #eee;
  border-radius: 10px; min-width: 210px;
  padding: 0.5rem 0; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  list-style: none; z-index: 200;
}
.dropdown li a {
  display: block; padding: 0.6rem 1.2rem;
  font-size: 0.85rem; color: var(--dark);
  transition: all 0.2s; text-decoration: none; font-weight: 400;
}
.dropdown li a:hover { color: var(--red); background: rgba(232,37,42,0.05); }
.has-dropdown:hover .dropdown { display: block; }

/* ══ MOBILE MENU ══ */
.nav-links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); padding: 1.5rem 5%;
  border-bottom: 2px solid var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 99;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  .hero-wrapper { grid-template-columns: 1fr; }
  .hero-right-img { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .amounts-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-wrapper { grid-template-columns: 1fr; }
  .uses-img { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .form-page-wrapper { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .amounts-grid { grid-template-columns: 1fr 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; }
}
