/* =====================================================
   SPEED-COOK.BE — Design System
   Identité : Clean Premium · Vert forêt · Or · Blanc
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1b4332;
  --green2:  #2d6a4f;
  --green3:  #52b788;
  --gold:    #d4a53a;
  --coral:   #e05c35;
  --cream:   #f8f9f4;
  --light:   #eef2eb;
  --sand:    #dde5d8;
  --muted:   #6b7c6a;
  --text:    #1a1f19;
  --white:   #ffffff;
  --shadow:  0 4px 28px rgba(27,67,50,0.10);
  --radius:  14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', 'Segoe UI', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar strong { color: var(--gold); font-weight: 700; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(27,67,50,0.06);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--green);
  letter-spacing: -.5px; white-space: nowrap;
}
.logo em { color: var(--coral); font-style: normal; }
.logo-icon { font-size: 26px; }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: background .2s, color .2s;
}
.nav-desktop a:hover { background: var(--light); color: var(--green); }
.nav-desktop a.active { background: var(--green); color: var(--white); border-radius: 8px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-cart {
  background: var(--green); color: var(--white);
  border: none; border-radius: 50px;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background .2s; white-space: nowrap; font-family: inherit;
}
.btn-cart:hover { background: var(--green2); }
.cart-count {
  background: var(--gold); color: var(--green);
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2px; background: var(--green); border-radius: 2px; transition: .3s; }

/* ===== LANG SWITCHER ===== */
.lang-bar {
  background: var(--cream); border-bottom: 1px solid var(--sand);
  text-align: right; padding: 5px 32px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.lang-bar a { color: var(--coral); margin-left: 8px; }
.lang-bar a:hover { text-decoration: underline; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--white); z-index: 999;
  padding: 16px; box-shadow: 0 12px 32px rgba(0,0,0,.1);
  flex-direction: column; gap: 4px;
  border-top: 2px solid var(--light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: 10px; font-weight: 500; font-size: 15px; color: var(--green); transition: background .2s; }
.mobile-menu a:hover { background: var(--light); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--light) 0%, #d8eddf 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  border-radius: 50px; padding: 6px 16px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--coral); }
.hero h1 .brand { color: var(--green); }
.hero-subtitle {
  font-size: 17px; color: var(--muted);
  margin-bottom: 32px; line-height: 1.75; max-width: 480px;
}

.hero-price { margin-bottom: 32px; }
.price-from { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 4px; }
.price-was { font-size: 17px; color: var(--muted); text-decoration: line-through; margin-bottom: 2px; }
.price-now {
  font-size: 56px; font-weight: 800; color: var(--green);
  line-height: 1; margin-bottom: 6px; letter-spacing: -.02em;
}
.price-now span { font-size: 26px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-save {
  display: inline-block; background: var(--coral); color: var(--white);
  border-radius: 50px; padding: 3px 12px;
  font-size: 12px; font-weight: 700;
}
.price-install { font-size: 14px; color: var(--gold); font-weight: 600; margin-top: 6px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: var(--coral); color: var(--white); border: none;
  border-radius: 50px; padding: 15px 34px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: #c44a24; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(224,92,53,.35); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 2px solid var(--green); border-radius: 50px;
  padding: 13px 30px; font-size: 15px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: .2s;
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green3); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 10px; font-weight: 800; flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img {
  width: 100%; max-width: 500px;
  filter: drop-shadow(0 24px 56px rgba(27,67,50,0.20));
  animation: floatBE 5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes floatBE { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-badge {
  position: absolute; background: var(--white);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(27,67,50,.14);
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
.hero-badge.top { top: 8%; right: 0; }
.hero-badge.bot { bottom: 8%; left: 0; }
.hero-badge .b-icon { font-size: 24px; }
.hero-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--green); }
.hero-badge span { font-size: 11px; color: var(--muted); }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--sand); }
.trust-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--sand);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 28px 20px; gap: 10px;
  border-right: 1px solid var(--sand);
}
.trust-item-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: background .2s;
}
.trust-item:hover .trust-item-icon { background: var(--green3); }
.trust-item-title { font-size: 14px; font-weight: 700; color: var(--green); }
.trust-item-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--green3); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  color: var(--green); line-height: 1.15; margin-bottom: 14px;
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white); border-radius: 20px;
  border: 1.5px solid var(--sand); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(27,67,50,.05);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,67,50,.13); border-color: var(--green3); }
.product-card-img {
  position: relative; background: var(--light);
  padding: 32px; display: flex; justify-content: center; align-items: center;
  min-height: 220px;
}
.product-card-img img { width: 100%; max-width: 200px; height: 180px; object-fit: contain; }
.badge-new { position: absolute; top: 12px; left: 12px; background: var(--green); color: var(--white); border-radius: 50px; padding: 5px 12px; font-size: 11px; font-weight: 700; }
.badge-promo { position: absolute; top: 12px; left: 12px; background: var(--coral); color: var(--white); border-radius: 50px; padding: 5px 12px; font-size: 11px; font-weight: 700; }
.product-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 11px; font-weight: 700; color: var(--green3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 4px; }
.product-name { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 8px; line-height: 1.25; }
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; flex: 1; line-height: 1.6; }
.product-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.product-stars span { color: var(--muted); font-size: 12px; margin-left: 4px; }
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.product-price { font-size: 24px; font-weight: 800; color: var(--green); }
.product-price-old { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.product-installment { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.product-card-footer { padding: 0 22px 20px; }
.btn-add-cart {
  width: 100%; background: var(--green); color: var(--white);
  border: none; border-radius: 50px; padding: 13px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-add-cart:hover { background: var(--coral); transform: scale(1.02); }

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: var(--white); padding: 72px 0;
}
.stats-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; text-align: center;
}
.stat-num { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-visual-wrap { position: relative; }
.features-visual-bg { background: var(--light); border-radius: 24px; padding: 40px; text-align: center; }
.features-visual-bg img { max-width: 100%; }
.feature-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--coral); color: var(--white);
  border-radius: 16px; padding: 16px 22px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(224,92,53,.35);
}
.feature-tag big { display: block; font-size: 28px; font-weight: 800; margin-bottom: 2px; }
.features-list { display: flex; flex-direction: column; gap: 6px; }
.feature-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: 12px; transition: background .2s; cursor: default;
}
.feature-row:hover { background: var(--light); }
.feat-icon-wrap {
  min-width: 46px; height: 46px; border-radius: 12px;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: background .2s;
}
.feature-row:hover .feat-icon-wrap { background: var(--green3); }
.feat-body h3 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 3px; }
.feat-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: var(--white); border-radius: 20px; padding: 28px;
  border: 1.5px solid var(--sand); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,67,50,.1); }
.testimonial::before {
  content: '"';
  position: absolute; top: 6px; right: 18px;
  font-size: 100px; color: var(--light); line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light); border: 2px solid var(--sand);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--green); }
.testimonial-place { font-size: 12px; color: var(--muted); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--green); color: var(--white);
  text-align: center; padding: 90px 32px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(212,165,58,.12); border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.05); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--gold); margin-bottom: 14px; }
.cta-band h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.cta-band p { font-size: 18px; opacity: .82; margin-bottom: 36px; line-height: 1.7; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--green);
  border: none; border-radius: 50px; padding: 18px 48px;
  font-size: 16px; font-weight: 800; font-family: inherit;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(212,165,58,.35);
}
.btn-gold:hover { background: #e8b93f; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,165,58,.45); }

/* ===== FOOTER ===== */
footer { background: var(--text); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-logo { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo em { color: var(--coral); font-style: normal; }
.footer-about { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-pays { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-pay { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-nl h4 { color: var(--white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.footer-nl p { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.nl-form { display: flex; gap: 8px; }
.nl-input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 50px; background: rgba(255,255,255,.07); color: var(--white); font-size: 13px; font-family: inherit; }
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.nl-btn { background: var(--gold); color: var(--green); border: none; border-radius: 50px; padding: 10px 20px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: .2s; }
.nl-btn:hover { background: #e8b93f; }
.footer-bottom {
  max-width: 1300px; margin: 48px auto 0; padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream); border-bottom: 1px solid var(--sand);
  padding: 72px 32px; text-align: center;
}
.page-hero h1 { font-size: clamp(30px,5vw,50px); font-weight: 800; color: var(--green); margin-bottom: 12px; line-height: 1.15; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid var(--sand); background: var(--white);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: .2s; color: var(--muted); font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--coral); background: var(--coral); color: var(--white); }

/* ===== COMPARE TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.compare-table th { background: var(--green); color: var(--white); padding: 14px 20px; text-align: left; font-size: 14px; font-weight: 700; }
.compare-table th:first-child { border-radius: 14px 0 0 0; }
.compare-table th:last-child { border-radius: 0 14px 0 0; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--sand); font-size: 14px; }
.compare-table tr:hover td { background: var(--light); }
.compare-table .check { color: var(--green3); font-weight: 700; }
.compare-table .cross { color: var(--muted); }
.compare-table .highlight td { background: rgba(27,67,50,.04); }

/* ===== FINANCING ===== */
.fin-hero { background: linear-gradient(135deg, var(--green) 0%, #0a2e1f 100%); color: var(--white); padding: 100px 32px; text-align: center; position: relative; overflow: hidden; }
.fin-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(212,165,58,.15) 0%, transparent 65%); border-radius: 50%; }
.fin-hero h1 { font-size: clamp(30px,5vw,52px); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.fin-hero p { font-size: 18px; opacity: .82; max-width: 560px; margin: 0 auto; }
.fin-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 24px; }
.fin-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  border: 1.5px solid var(--sand); text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.fin-card:hover { transform: translateY(-5px); border-color: var(--green3); box-shadow: 0 16px 40px rgba(27,67,50,.1); }
.fin-card.featured { border-color: var(--green); position: relative; }
.fin-card.featured::before { content: 'RECOMMANDÉ'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); border-radius: 50px; padding: 4px 16px; font-size: 11px; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.fin-icon { font-size: 48px; margin-bottom: 16px; }
.fin-card h3 { font-size: 22px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.fin-card > p { color: var(--muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.fin-amount { font-size: 40px; font-weight: 800; color: var(--coral); margin-bottom: 4px; }
.fin-detail { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.fin-list { text-align: left; margin-bottom: 24px; }
.fin-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.fin-list li::before { content: '✓'; color: var(--green3); font-weight: 700; flex-shrink: 0; }
.fin-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fin-step { text-align: center; padding: 28px 16px; }
.fin-step-num { width: 56px; height: 56px; background: var(--light); border: 2px solid var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--green); margin: 0 auto 16px; }
.fin-step h3 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.fin-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== CALCULATOR ===== */
.calculator { background: var(--white); border-radius: 24px; padding: 48px; box-shadow: var(--shadow); max-width: 680px; margin: 0 auto; border: 1.5px solid var(--sand); }
.calc-title { font-size: 24px; font-weight: 800; color: var(--green); margin-bottom: 8px; text-align: center; }
.calc-sub { color: var(--muted); text-align: center; margin-bottom: 32px; font-size: 15px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 18px;
  border: 1.5px solid var(--sand); border-radius: 50px;
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.form-group textarea { border-radius: 14px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-result { background: var(--green); border-radius: 16px; padding: 28px; color: var(--white); text-align: center; margin-top: 24px; display: none; }
.calc-amount { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; }
.calc-lbl { font-size: 14px; opacity: .75; margin-top: 4px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.calc-stat { background: rgba(255,255,255,.1); border-radius: 10px; padding: 12px; text-align: center; }
.calc-stat-val { font-size: 20px; font-weight: 700; }
.calc-stat-lbl { font-size: 11px; opacity: .7; margin-top: 2px; }

/* ===== ORDER FORM ===== */
.order-layout { display: grid; grid-template-columns: 1fr 370px; gap: 40px; align-items: flex-start; }
.order-form-wrap { background: var(--white); border-radius: 24px; padding: 40px; border: 1.5px solid var(--sand); box-shadow: var(--shadow); }
.order-summary { background: var(--white); border-radius: 20px; padding: 30px; border: 1.5px solid var(--sand); box-shadow: var(--shadow); position: sticky; top: 90px; }
.order-summary h3 { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--sand); }
.sum-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--sand); font-size: 14px; }
.sum-label { color: var(--muted); }
.sum-val { font-weight: 600; color: var(--green); text-align: right; }
.sum-total { display: flex; justify-content: space-between; padding: 16px 0 0; border-top: 2px solid var(--green); margin-top: 6px; }
.sum-total span:first-child { font-weight: 700; color: var(--green); }
.sum-total span:last-child { font-size: 22px; font-weight: 800; color: var(--coral); }
.payment-opt {
  border: 1.5px solid var(--sand); border-radius: 12px; padding: 14px;
  margin-bottom: 10px; cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex; align-items: center; gap: 12px;
}
.payment-opt:hover { border-color: var(--green3); }
.payment-opt.selected { border-color: var(--green); background: rgba(27,67,50,.03); }
.payment-opt input[type=radio] { accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; }
.payment-opt h4 { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 2px; }
.payment-opt p { font-size: 12px; color: var(--muted); }
.secure-badge { display: flex; align-items: center; gap: 8px; background: rgba(27,67,50,.05); border: 1px solid rgba(27,67,50,.15); border-radius: 10px; padding: 10px 14px; margin-top: 16px; font-size: 12px; color: var(--green); font-weight: 600; }
.form-section-title { font-size: 16px; font-weight: 800; color: var(--green); margin: 28px 0 16px; display: flex; align-items: center; gap: 10px; }
.step-num { width: 26px; height: 26px; background: var(--green); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.btn-submit { width: 100%; background: var(--coral); color: var(--white); border: none; border-radius: 50px; padding: 16px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s; }
.btn-submit:hover { background: #c44a24; }
.success-msg { display: none; background: rgba(82,183,136,.15); border: 1px solid var(--green3); color: var(--green); border-radius: 14px; padding: 16px 20px; margin-top: 16px; font-weight: 600; font-size: 15px; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: flex-start; }
.contact-card { background: var(--white); border-radius: 20px; padding: 36px; border: 1.5px solid var(--sand); box-shadow: var(--shadow); }
.contact-card h3 { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--sand); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.c-icon { width: 46px; height: 46px; background: var(--light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-title { font-weight: 700; font-size: 14px; color: var(--green); margin-bottom: 3px; }
.c-val { font-size: 13px; color: var(--muted); line-height: 1.6; }
.c-val a { color: var(--coral); font-weight: 600; }

/* ===== ACCESSORIES ===== */
.acc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.acc-card { background: var(--white); border-radius: 20px; padding: 28px; text-align: center; border: 1.5px solid var(--sand); transition: transform .3s, box-shadow .3s, border-color .3s; }
.acc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,67,50,.1); border-color: var(--green3); }
.acc-icon { font-size: 48px; margin-bottom: 14px; }
.acc-card h3 { font-size: 16px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.acc-card p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.acc-price { font-size: 22px; font-weight: 800; color: var(--coral); margin-bottom: 14px; }
.btn-acc { display: inline-flex; align-items: center; gap: 6px; background: var(--light); color: var(--green); border: 1.5px solid var(--sand); border-radius: 50px; padding: 9px 20px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: .2s; }
.btn-acc:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .fin-cards { grid-template-columns: 1fr; max-width: 460px; margin: 24px auto 0; }
  .fin-steps { grid-template-columns: repeat(2,1fr); }
  .acc-grid { grid-template-columns: repeat(2,1fr); }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-badge { display: none; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero::before { width: 100%; clip-path: none; opacity: .4; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calculator { padding: 28px 20px; }
  .order-form-wrap { padding: 28px 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .fin-steps { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
}
