

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold:        #b8932a;
  --gold-light:  #d4aa50;
  --gold-pale:   #f5edd8;
  --dark:        #161410;
  --dark2:       #1e1b16;
  --stone:       #3a3328;
  --warm-white:  #faf7f2;
  --text:        #2c2519;
  --text-muted:  #7a6e5f;
  --border:      rgba(184,147,42,0.18);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius:      16px;
  --nav-h:       76px;
  --topbar-h:    36px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.65;
}
h1,h2,h3,h4 { font-family:'Playfair Display',serif; line-height:1.18; }
img { display:block; max-width:100%; }
a { color:inherit; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--warm-white); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

.topbar {
  background: var(--dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width:1220px; margin:0 auto; padding:0 2rem;
  width:100%;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.topbar a {
  color:rgba(255,255,255,.65); text-decoration:none;
  font-size:.78rem; display:inline-flex; align-items:center; gap:.4rem;
  transition:color .2s;
}
.topbar a:hover { color:var(--gold-light); }
.topbar-left  { display:flex; align-items:center; gap:1.5rem; }
.topbar-right { display:flex; align-items:center; gap:1rem; color:rgba(255,255,255,.5); font-size:.78rem; }
.topbar-zone  { color:var(--gold-light); font-weight:500; display:inline-flex; align-items:center; gap:.35rem; }

nav {
  position: sticky; top:0; width:100%; z-index:1000;
  height: var(--nav-h);
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow:var(--shadow-md); }

.nav-inner {
  max-width:1220px; margin:0 auto; padding:0 2rem;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}

.logo {
  text-decoration:none; display:flex; align-items:center; gap:.65rem;
}
.logo-icon {
  width:42px; height:42px; background:var(--gold); border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:1.1rem; flex-shrink:0;
}
.logo-text {
  font-family:'Playfair Display',serif; font-size:1.25rem;
  font-weight:700; color:var(--dark); line-height:1.1;
}
.logo-sub {
  font-family:'DM Sans',sans-serif; font-size:.62rem;
  font-weight:400; color:var(--gold); letter-spacing:.1em;
  text-transform:uppercase; display:block;
}

.nav-links {
  display:flex; align-items:center; gap:1.8rem; list-style:none;
}
.nav-links a {
  text-decoration:none; color:var(--stone);
  font-size:.88rem; font-weight:500;
  transition:color .2s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1.5px; background:var(--gold); transition:width .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.btn-nav {
  background:var(--gold) !important; color:white !important;
  padding:.6rem 1.3rem; border-radius:50px;
  font-weight:600 !important; font-size:.86rem !important;
  white-space:nowrap; transition:all .3s !important;
}
.btn-nav::after { display:none !important; }
.btn-nav:hover {
  background:var(--gold-light) !important;
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(184,147,42,.35) !important;
}

.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:6px; background:none; border:none;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--dark); border-radius:2px; transition:all .3s;
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display:none; position:fixed;
  top:var(--nav-h); left:0; width:100%;
  background:var(--warm-white);
  border-bottom:1px solid var(--border);
  padding:1.5rem 2rem 2rem;
  z-index:999; box-shadow:var(--shadow-md);
  transform:translateY(-10px); opacity:0; transition:all .3s;
}
.mobile-nav.open { transform:translateY(0); opacity:1; }
.mobile-nav ul { list-style:none; }
.mobile-nav li { border-bottom:1px solid rgba(0,0,0,.05); }
.mobile-nav a {
  display:block; padding:.9rem 0;
  text-decoration:none; color:var(--text);
  font-weight:500; font-size:.96rem;
}
.mobile-nav a.mobile-tel {
  color:var(--gold) !important; font-weight:700 !important;
  font-size:1.05rem !important;
  display:flex; align-items:center; gap:.5rem;
}
.btn-nav-m {
  display:block; text-align:center;
  background:var(--gold); color:white !important;
  padding:.9rem; border-radius:12px;
  margin-top:1.2rem; font-weight:600; text-decoration:none;
}

.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, #faf7f2 0%, #f0e8d8 100%);
  position:relative; overflow:hidden;
  text-align:center;
}
.page-hero::before {
  content:''; position:absolute;
  top:-20%; left:50%; transform:translateX(-50%);
  width:80vw; height:80vw;
  background:radial-gradient(circle,rgba(184,147,42,.1) 0%,transparent 65%);
  border-radius:50%; pointer-events:none;
}
.page-hero-inner { max-width:700px; margin:0 auto; padding:0 2rem; position:relative; z-index:1; }
.page-hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(184,147,42,.12); color:var(--gold);
  padding:.4rem 1rem; border-radius:50px;
  font-size:.78rem; font-weight:600; letter-spacing:.05em;
  border:1px solid rgba(184,147,42,.25); margin-bottom:1.3rem;
}
.page-hero h1 {
  font-size:clamp(2rem,4vw,3.2rem); color:var(--dark);
  margin-bottom:1rem; letter-spacing:-.02em;
}
.page-hero h1 em { font-style:italic; color:var(--gold); }
.page-hero p {
  font-size:1.08rem; color:var(--text-muted);
  line-height:1.8; max-width:580px; margin:0 auto 2rem;
}
.page-hero-ctas { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.container { max-width:1220px; margin:0 auto; padding:0 2rem; }

.section-label {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.73rem; font-weight:700; letter-spacing:.13em;
  text-transform:uppercase; color:var(--gold); margin-bottom:.9rem;
}
.section-label::before {
  content:''; display:block; width:26px; height:1.5px; background:var(--gold);
}
.section-label.light { color:var(--gold-light); }
.section-label.light::before { background:var(--gold-light); }

.section-head { margin-bottom:3.5rem; }
.section-head h2 { font-size:clamp(1.9rem,2.8vw,2.7rem); color:var(--dark); margin-bottom:.7rem; }
.section-head p { color:var(--text-muted); font-size:1.03rem; max-width:520px; line-height:1.7; }
.section-head.centered { text-align:center; }
.section-head.centered .section-label { justify-content:center; margin-left:auto; margin-right:auto; }
.section-head.centered p { margin:0 auto; }
.section-head.light h2 { color:white; }
.section-head.light p  { color:rgba(255,255,255,.6); }

section { padding:7rem 0; }
section.tight { padding:5rem 0; }
section.bg-white { background:white; }
section.bg-warm  { background:var(--warm-white); }
section.bg-dark  { background:var(--dark); }
section.bg-dark2 { background:var(--dark2); }

.btn-primary {
  background:var(--dark); color:white;
  padding:.9rem 1.8rem; border-radius:50px;
  text-decoration:none; font-weight:600; font-size:.95rem;
  display:inline-flex; align-items:center; gap:.5rem;
  transition:all .3s; border:2px solid var(--dark);
}
.btn-primary:hover {
  background:var(--gold); border-color:var(--gold);
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(184,147,42,.35);
}
.btn-outline {
  background:transparent; color:var(--dark);
  padding:.9rem 1.8rem; border-radius:50px;
  text-decoration:none; font-weight:600; font-size:.95rem;
  display:inline-flex; align-items:center; gap:.5rem;
  transition:all .3s; border:2px solid var(--dark);
}
.btn-outline:hover {
  background:var(--dark); color:white; transform:translateY(-3px);
}
.btn-gold {
  background:var(--gold); color:white;
  padding:1rem 2.2rem; border-radius:50px;
  font-weight:700; font-size:1rem;
  text-decoration:none; display:inline-flex;
  align-items:center; gap:.6rem;
  border:2px solid var(--gold); transition:all .3s;
}
.btn-gold:hover {
  background:var(--gold-light); border-color:var(--gold-light);
  transform:translateY(-3px); box-shadow:0 10px 30px rgba(184,147,42,.4);
}
.btn-ghost {
  background:transparent; color:white;
  padding:1rem 2.2rem; border-radius:50px;
  font-weight:600; font-size:1rem;
  text-decoration:none; display:inline-flex;
  align-items:center; gap:.6rem;
  border:2px solid rgba(255,255,255,.3); transition:all .3s;
}
.btn-ghost:hover {
  border-color:white; background:rgba(255,255,255,.08); transform:translateY(-3px);
}

.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.card-grid-2 { grid-template-columns:repeat(2,1fr); }
.card-grid-4 { grid-template-columns:repeat(4,1fr); }

.svc-card {
  background:var(--warm-white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius); padding:2rem;
  transition:all .35s; position:relative; overflow:hidden;
}
.svc-card::after {
  content:''; position:absolute;
  bottom:0; left:0; width:100%; height:3px;
  background:var(--gold); transform:scaleX(0);
  transform-origin:left; transition:transform .35s;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--border); }
.svc-card:hover::after { transform:scaleX(1); }

.svc-ico {
  width:54px; height:54px; background:var(--gold-pale);
  border-radius:14px; display:flex;
  align-items:center; justify-content:center;
  font-size:1.35rem; color:var(--gold);
  margin-bottom:1.3rem; transition:all .3s;
}
.svc-card:hover .svc-ico { background:var(--gold); color:white; }
.svc-card h3 {
  font-size:1.05rem; color:var(--dark);
  margin-bottom:.65rem; font-family:'DM Sans',sans-serif; font-weight:600;
}
.svc-card p { color:var(--text-muted); font-size:.9rem; line-height:1.7; }

.feat-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); padding:2rem 1.5rem;
  text-align:center; transition:all .3s;
}
.feat-card:hover {
  background:rgba(184,147,42,.1); border-color:rgba(184,147,42,.3);
  transform:translateY(-4px);
}
.feat-ico {
  width:64px; height:64px;
  background:rgba(184,147,42,.15);
  border:1.5px solid rgba(184,147,42,.4);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--gold-light);
  margin:0 auto 1.3rem; transition:all .4s;
}
.feat-card:hover .feat-ico { background:var(--gold); border-color:var(--gold); color:white; }
.feat-card h3 { color:white; font-size:1rem; font-family:'DM Sans',sans-serif; font-weight:600; margin-bottom:.5rem; }
.feat-card p { color:rgba(255,255,255,.55); font-size:.88rem; line-height:1.65; }

.quote-strip {
  background:var(--warm-white);
  border-left:3px solid var(--gold);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:1.5rem 1.8rem; margin-top:2.5rem;
}
.quote-strip p { color:var(--text-muted); font-size:.95rem; line-height:1.8; }
.quote-strip em { color:var(--text); font-style:italic; font-size:1rem; }

.steps {
  display:flex; justify-content:space-between;
  position:relative; gap:1.5rem; margin-top:3rem;
}
.steps::before {
  content:''; position:absolute;
  top:36px; left:calc(12.5% + 36px); right:calc(12.5% + 36px);
  height:2px; background:linear-gradient(to right,var(--gold),var(--gold-light)); opacity:.4;
}
.step-item { flex:1; text-align:center; position:relative; z-index:1; }
.step-num {
  width:72px; height:72px; border-radius:50%;
  background:white; border:2.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--gold);
  margin:0 auto 1.3rem; transition:all .3s;
}
.step-item:hover .step-num { background:var(--gold); color:white; transform:scale(1.08); }
.step-item h4 { font-family:'DM Sans',sans-serif; font-weight:700; font-size:.95rem; color:var(--dark); margin-bottom:.5rem; }
.step-item p { font-size:.86rem; color:var(--text-muted); line-height:1.65; max-width:160px; margin:0 auto; }

.stats-bar { background:var(--gold); padding:4rem 0; }
.stats-bar .container { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-item h3 {
  font-family:'Playfair Display',serif; font-size:3rem;
  color:var(--dark); margin-bottom:.3rem; line-height:1;
}
.stat-item p { color:rgba(22,20,16,.75); font-weight:600; font-size:.92rem; letter-spacing:.03em; }

.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:3.5rem; }
.faq-item {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden;
}
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:1.3rem 1.5rem; cursor:pointer;
  font-weight:600; color:var(--dark); font-size:.92rem;
  gap:.8rem; user-select:none;
}
.faq-q i { color:var(--gold); flex-shrink:0; transition:transform .3s; font-size:.8rem; }
.faq-item.open .faq-q i { transform:rotate(180deg); }
.faq-a {
  padding:0 1.5rem; max-height:0; overflow:hidden;
  transition:max-height .4s ease, padding .3s;
  color:var(--text-muted); font-size:.9rem; line-height:1.75;
}
.faq-item.open .faq-a { max-height:300px; padding:0 1.5rem 1.3rem; }

.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card {
  background:white; border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius); padding:2rem;
  transition:all .3s; position:relative;
}
.testi-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.testi-quote {
  font-size:3.5rem; color:var(--gold); opacity:.2;
  position:absolute; top:1rem; right:1.5rem;
  font-family:'Playfair Display',serif; line-height:1;
}
.stars { display:flex; gap:3px; color:var(--gold); font-size:.85rem; margin-bottom:1rem; }
.testi-text { font-style:italic; color:var(--text); line-height:1.8; font-size:.92rem; margin-bottom:1.5rem; }
.testi-author { display:flex; align-items:center; gap:.8rem; }
.author-av { overflow:hidden;
  width:44px; height:44px; border-radius:50%;
  background:var(--gold); color:white;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; flex-shrink:0;}
.author-av img { width:100%; height:100%; object-fit:cover; border-radius:50%; 
}
.av2 { background:var(--stone); }
.av3 { background:#6b7c5e; }
.author-info strong { display:block; font-size:.92rem; color:var(--dark); }
.author-info span { font-size:.78rem; color:var(--text-muted); }

.zones-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.zone-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.5rem;
  text-align:center; transition:all .3s;
}
.zone-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); border-color:var(--gold); }
.zone-icon { font-size:1.8rem; color:var(--gold); margin-bottom:.8rem; }
.zone-card h4 { font-family:'DM Sans',sans-serif; font-weight:700; font-size:1rem; color:var(--dark); margin-bottom:.4rem; }
.zone-card p { font-size:.82rem; color:var(--text-muted); line-height:1.6; }

.devis-wrap { display:grid; grid-template-columns:1fr 1.35fr; gap:5rem; align-items:start; }
.devis-info h2 { font-size:clamp(1.8rem,2.5vw,2.5rem); color:var(--dark); margin-bottom:1rem; }
.devis-info > p { color:var(--text-muted); margin-bottom:2.5rem; line-height:1.8; }
.contact-items { display:flex; flex-direction:column; gap:1.2rem; margin-bottom:2.5rem; }
.contact-item { display:flex; align-items:flex-start; gap:1rem; }
.contact-ico {
  width:46px; height:46px; border-radius:12px;
  background:var(--gold-pale); display:flex; align-items:center;
  justify-content:center; color:var(--gold); font-size:1.1rem; flex-shrink:0;
}
.contact-item strong { display:block; font-size:.87rem; color:var(--dark); font-weight:600; margin-bottom:.2rem; }
.contact-item span, .contact-item a { color:var(--text-muted); font-size:.85rem; text-decoration:none; }
.contact-item a { color:var(--gold); font-weight:500; }
.contact-item a:hover { text-decoration:underline; }

.form-card {
  background:white; border-radius:24px;
  padding:2.5rem; box-shadow:var(--shadow-md); border:1px solid var(--border);
}
.form-card h3 { font-family:'DM Sans',sans-serif; font-size:1.2rem; font-weight:700; color:var(--dark); margin-bottom:1.8rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; font-size:.82rem; font-weight:600; color:var(--stone); margin-bottom:.4rem; letter-spacing:.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:.8rem 1rem;
  border:1.5px solid rgba(0,0,0,.1); border-radius:10px;
  font-family:'DM Sans',sans-serif; font-size:.9rem;
  color:var(--text); background:var(--warm-white);
  transition:all .25s; outline:none; -webkit-appearance:none;
}
.form-group select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6e5f' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center;
  padding-right:2.5rem; cursor:pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,42,.12); background:white;
}
.form-group textarea { resize:vertical; min-height:100px; }
.form-group input.error { border-color:#e74c3c; box-shadow:0 0 0 3px rgba(231,76,60,.12); }

.btn-submit {
  width:100%; padding:1rem; background:var(--dark); color:white;
  border:none; border-radius:12px; font-family:'DM Sans',sans-serif;
  font-size:1rem; font-weight:700; cursor:pointer; transition:all .3s;
  display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:.5rem;
}
.btn-submit:hover { background:var(--gold); transform:translateY(-2px); box-shadow:0 8px 24px rgba(184,147,42,.35); }
.btn-submit:disabled { opacity:.7; cursor:not-allowed; transform:none; }

.form-note {
  text-align:center; font-size:.78rem; color:var(--text-muted);
  margin-top:.8rem; display:flex; align-items:center; justify-content:center; gap:.4rem;
}

.form-error {
  display:none; align-items:center; gap:.6rem;
  background:#fff3f3; border:1px solid #f5c6c6; border-radius:10px;
  padding:.85rem 1rem; margin-top:1rem;
  font-size:.88rem; color:#c0392b;
}
.form-error a { color:#c0392b; font-weight:600; }
.form-error.show { display:flex; }

.form-success { display:none; text-align:center; padding:3rem 2rem; }
.form-success.show { display:block; }
form.hidden { display:none; }
.success-ico {
  width:72px; height:72px; background:#edf7f0; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; color:#27ae60; margin:0 auto 1.2rem;
}
.form-success h4 { font-family:'DM Sans',sans-serif; font-size:1.3rem; font-weight:700; color:var(--dark); margin-bottom:.7rem; }
.form-success p { color:var(--text-muted); font-size:.92rem; }

.cta-banner {
  padding:6rem 0; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-60%; left:50%; transform:translateX(-50%);
  width:120%; height:200%;
  background:radial-gradient(ellipse,rgba(184,147,42,.12) 0%,transparent 60%);
  pointer-events:none;
}
.cta-inner { position:relative; z-index:1; }
.cta-banner h2 { font-size:clamp(2rem,3.5vw,3rem); color:white; margin-bottom:1rem; }
.cta-banner p { color:rgba(255,255,255,.65); font-size:1.1rem; margin-bottom:2.5rem; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

footer { background:#0d0c0a; color:white; padding:5rem 0 2rem; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; margin-bottom:3.5rem;
  padding-bottom:3.5rem; border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand p { color:rgba(255,255,255,.5); font-size:.9rem; line-height:1.75; margin:.9rem 0 1.4rem; }
.footer-brand .logo-text { color:white; }
.socials { display:flex; gap:.7rem; }
.socials a {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6); text-decoration:none;
  transition:all .3s; font-size:.9rem;
}
.socials a:hover { background:var(--gold); color:white; transform:translateY(-2px); }
.footer-col h4 {
  color:var(--gold-light); font-family:'DM Sans',sans-serif;
  font-size:.76rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; margin-bottom:1.2rem;
}
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:.7rem; }
.footer-col a {
  color:rgba(255,255,255,.5); text-decoration:none;
  font-size:.88rem; transition:all .2s;
  display:inline-flex; align-items:center; gap:.4rem;
}
.footer-col a:hover { color:var(--gold-light); padding-left:4px; }
.footer-bottom {
  display:flex; justify-content:space-between;
  align-items:center; gap:1rem; flex-wrap:wrap;
}
.footer-bottom p { color:rgba(255,255,255,.3); font-size:.82rem; }
.footer-bottom a { color:rgba(255,255,255,.35); text-decoration:none; transition:color .2s; }
.footer-bottom a:hover { color:var(--gold-light); }
.footer-legal { display:flex; gap:1.5rem; flex-wrap:wrap; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.fade-up {
  opacity:0; transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity:1; transform:none; }
.fade-up:nth-child(2) { transition-delay:.08s; }
.fade-up:nth-child(3) { transition-delay:.16s; }
.fade-up:nth-child(4) { transition-delay:.24s; }
.fade-up:nth-child(5) { transition-delay:.1s; }
.fade-up:nth-child(6) { transition-delay:.2s; }

@media (max-width:1100px) {
  .card-grid { grid-template-columns:repeat(2,1fr); }
  .card-grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
  .zones-grid { grid-template-columns:repeat(2,1fr); }
  .faq-grid { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .topbar { display:none; }
  .devis-wrap { grid-template-columns:1fr; gap:3rem; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .steps { flex-direction:column; align-items:center; gap:1.5rem; }
  .steps::before { display:none; }
  .step-item { max-width:260px; }
}
@media (max-width:700px) {
  .card-grid, .card-grid-2 { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .stats-bar .container { grid-template-columns:repeat(2,1fr); }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  section { padding:5rem 0; }
}
@media (max-width:480px) {
  .card-grid-4 { grid-template-columns:1fr 1fr; }
  .zones-grid { grid-template-columns:1fr 1fr; }
  .stats-bar .container { grid-template-columns:1fr 1fr; }
}
