/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1a1a2e; line-height: 1.75; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --primary:       #6382f7;
  --primary-dark:  #4a6af0;
  --primary-light: #eef1fe;
  --dark:          #1e1e4f;
  --darker:        #13133a;
  --text:          #1a1a2e;
  --text-muted:    #5a5a7a;
  --white:         #ffffff;
  --gray:          #f4f5fb;
  --border:        #e2e4f0;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow:        0 4px 20px rgba(99,130,247,.10);
  --shadow-lg:     0 12px 40px rgba(99,130,247,.18);
  --transition:    .22s ease;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section         { padding: 96px 0; }
.section--dark   { padding: 96px 0; background: var(--dark); }
.section--gray   { padding: 80px 0; background: var(--gray); }
.section--form   { padding: 96px 0; background: linear-gradient(140deg, #dde3ff 0%, #eef1fe 50%, #e6eafd 100%); position: relative; overflow: hidden; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 15px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--primary); cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: inherit; letter-spacing: .01em;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,130,247,.35); }

.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 18px 38px; border-radius: var(--radius);
  font-weight: 800; font-size: 1.05rem;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: inherit; letter-spacing: .01em;
}
.btn-hero:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99,130,247,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  font-family: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--white);
  padding: 11px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: currentColor; flex-shrink: 0; }
.section-tag--light { color: rgba(255,255,255,.55); }
.section-tag--center { justify-content: center; }
.section-tag--center::before { display: none; }

.section-title { font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 900; line-height: 1.15; color: var(--text); letter-spacing: -.02em; }
.section-title--light { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 600px; margin: 16px auto 0; text-align: center; line-height: 1.7; }

.section-header--center { text-align: center; margin-bottom: 64px; }
.section-header--center .section-tag { display: flex; justify-content: center; }

/* ===== TOPBAR ===== */
.topbar { background: var(--darker); color: rgba(255,255,255,.85); padding: 10px 0; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar__left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar__item:hover { color: var(--white); }
.topbar__item svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .7; }
.topbar__sep { color: rgba(255,255,255,.2); }
.topbar__badge { background: rgba(99,255,130,.15); color: #7dff9e; border: 1px solid rgba(99,255,130,.25); padding: 3px 12px; border-radius: 50px; font-size: .78rem; font-weight: 600; }

/* ===== HEADER ===== */
.header { background: var(--white); box-shadow: 0 1px 0 var(--border); position: sticky; top: 0; z-index: 100; transition: box-shadow var(--transition); }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }

.logo img { height: 88px; width: auto; object-fit: contain; }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link { display: flex; align-items: center; gap: 5px; padding: 9px 16px; font-weight: 500; font-size: .97rem; color: var(--text); border-radius: var(--radius); transition: color var(--transition), background var(--transition); }
.nav__link:hover { color: var(--primary); background: var(--primary-light); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.12); min-width: 250px;
  padding: 10px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
  border: 1px solid var(--border); z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 11px 22px; font-size: .95rem; color: var(--text); transition: color var(--transition), background var(--transition); }
.dropdown li a:hover { color: var(--primary); background: var(--primary-light); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(19,19,58,.92) 0%, rgba(30,30,79,.80) 55%, rgba(30,30,79,.55) 100%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 260px; gap: 60px; align-items: center; padding: 80px 28px; width: 100%; max-width: 1200px; margin: 0 auto; }

.hero__eyebrow { display: flex; align-items: center; gap: 14px; font-size: .8rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 24px; }
.hero__line { display: block; width: 36px; height: 2px; background: var(--primary); }

.hero__title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 28px; letter-spacing: -.03em; }
.hero__title-accent { color: var(--primary); }

.hero__desc { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 40px; line-height: 1.8; max-width: 620px; }
.hero__desc strong { color: var(--white); }

.hero__cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__call { display: flex; align-items: center; gap: 14px; color: var(--white); }
.hero__call-icon { width: 52px; height: 52px; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color var(--transition); }
.hero__call:hover .hero__call-icon { border-color: var(--white); }
.hero__call-icon svg { width: 22px; height: 22px; }
.hero__call small { display: block; font-size: .78rem; color: rgba(255,255,255,.55); }
.hero__call strong { display: block; font-size: 1.15rem; font-weight: 800; }

.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__tags span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); padding: 5px 14px; border-radius: 50px; font-size: .82rem; font-weight: 500; backdrop-filter: blur(4px); }

.trust-box { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; box-shadow: 0 16px 48px rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.1); }
.trust-box__logo { height: 30px; margin: 0 auto 12px; }
.trust-box__stars { height: 24px; margin: 0 auto 12px; }
.trust-box__score { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.trust-box__reviews { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.trust-box__cta { display: block; background: var(--primary-light); color: var(--primary); padding: 10px 16px; border-radius: var(--radius); font-size: .88rem; font-weight: 700; transition: background var(--transition); }
.trust-box__cta:hover { background: var(--primary); color: var(--white); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--darker); padding: 28px 0; border-top: 1px solid rgba(255,255,255,.06); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: .88rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ===== ABOUT ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 500px; box-shadow: var(--shadow-lg); }
.about__counter { position: absolute; bottom: -20px; right: -20px; background: var(--white); border-radius: var(--radius-lg); padding: 22px 32px; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.counter__num { display: block; font-size: 2.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.counter__label { font-size: .9rem; color: var(--text-muted); margin-top: 5px; display: block; font-weight: 500; }
.about__dots { position: absolute; opacity: .4; }
.about__dots--tl { top: -18px; left: -18px; width: 90px; }
.about__dots--br { bottom: -40px; left: 10px; width: 130px; }

.about__content .section-tag { display: flex; }
.about__content .section-title { margin-bottom: 20px; }
.about__lead { font-size: 1.12rem; font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.7; }
.about__text { font-size: 1rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.about__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.badge { background: var(--primary-light); color: var(--primary); padding: 7px 16px; border-radius: 50px; font-size: .88rem; font-weight: 600; border: 1px solid rgba(99,130,247,.2); }

/* ===== HOW SECTION ===== */
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 56px; }
.how-card { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,.08); }
.how-card:last-child { border-right: none; }
.how-card__icon { width: 72px; height: 72px; background: rgba(99,130,247,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.how-card__icon svg { width: 32px; height: 32px; fill: #a0b0ff; }
.how-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.how-card p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.how__cta { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; }
.how__cta p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 1.05rem; font-weight: 500; }

/* ===== SERVICES ===== */
.services__header { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.services__header .section-title { margin-bottom: 0; }
.services__header-right p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: block; background: var(--white); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.service-card__img { height: 220px; background-size: cover; background-position: center; transition: transform .4s ease; }
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__body { padding: 28px; }
.service-card__body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; color: var(--text); line-height: 1.3; }
.service-card__body p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 700; color: var(--primary); transition: gap var(--transition); }
.service-card:hover .service-card__link { gap: 12px; }
.service-card__arrow { transition: transform var(--transition); }
.service-card:hover .service-card__arrow { transform: translateX(4px); }

.services__cta { text-align: center; margin-top: 48px; }

/* ===== WHY ===== */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__content .section-tag { display: flex; }
.why__content .section-title { margin-bottom: 18px; }
.why__intro { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.why__list { display: flex; flex-direction: column; gap: 28px; }
.why__list li { display: flex; gap: 18px; align-items: flex-start; }
.why__check { flex-shrink: 0; width: 30px; height: 30px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.why__check svg { width: 19px; height: 19px; fill: #2e7d32; }
.why__list li strong { display: block; font-weight: 800; font-size: 1.02rem; margin-bottom: 7px; color: var(--text); }
.why__list li p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; }
.why__media { position: relative; }
.why__photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 540px; box-shadow: var(--shadow-lg); }
.why__dots { position: absolute; bottom: -28px; right: -18px; width: 130px; opacity: .4; pointer-events: none; }

/* ===== ZONES ===== */
.zones__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.zone-item { display: flex; align-items: center; gap: 10px; background: var(--white); padding: 16px 20px; border-radius: var(--radius); border: 1px solid var(--border); font-size: .97rem; transition: border-color var(--transition), box-shadow var(--transition); }
.zone-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.zone-item svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; }
.zones__note { text-align: center; font-size: .97rem; color: var(--text-muted); }
.zones__note a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--dark); padding: 52px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-banner__title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.cta-banner__sub { font-size: 1rem; color: rgba(255,255,255,.6); }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== DEVIS FORM ===== */
.devis__header { text-align: center; margin-bottom: 56px; }
.devis__header .section-tag { display: flex; justify-content: center; margin-bottom: 16px; }
.devis__title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--darker); line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em; }
.devis__sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }

.devis__wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.devis__info { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); position: sticky; top: 100px; }
.devis__info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; margin-top: 3px; }
.contact-list strong { display: block; font-size: .82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-list a, .contact-list span { font-size: .97rem; color: var(--text); font-weight: 600; }
.contact-list a:hover { color: var(--primary); }
.trust-mini { background: var(--primary-light); border-radius: var(--radius); padding: 14px 16px; text-align: center; }
.trust-mini img { margin: 0 auto 8px; }
.trust-mini p { font-size: .85rem; font-weight: 600; color: var(--primary); }

.devis__form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 8px; color: var(--text); }
.req { color: #e53935; margin-left: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99,130,247,.12); }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a5a7a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; cursor: pointer; }

.btn-submit {
  width: 100%; padding: 18px; border: none; cursor: pointer;
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); font-family: inherit;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,130,247,.35); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-legal { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.6; }
.form-success { margin-top: 18px; padding: 16px 20px; background: #e8f5e9; color: #1b5e20; border-radius: var(--radius); font-size: .97rem; font-weight: 600; border-left: 4px solid #4caf50; }
.form-error   { margin-top: 18px; padding: 16px 20px; background: #ffebee; color: #b71c1c; border-radius: var(--radius); font-size: .97rem; font-weight: 600; border-left: 4px solid #f44336; }
.form-error a { color: #b71c1c; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--darker); color: rgba(255,255,255,.75); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding: 72px 28px 48px; max-width: 1200px; margin: 0 auto; }

.footer__logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
.footer__contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer__phone { font-size: 1.1rem; font-weight: 800; color: var(--white); transition: color var(--transition); }
.footer__phone:hover { color: var(--primary); }
.footer__contact-quick a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__contact-quick a:hover { color: var(--white); }

.footer__heading { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links li, .footer__links a { font-size: .92rem; color: rgba(255,255,255,.6); transition: color var(--transition); line-height: 1.4; }
.footer__links a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer__bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }
.footer__seo-text { font-size: .78rem !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about__inner, .why__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__counter { right: 16px; }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .how-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .how-card:nth-child(3), .how-card:last-child { border-bottom: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__header { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__trust { display: none; }
  .devis__wrap { grid-template-columns: 1fr; }
  .devis__info { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .zones__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .topbar { display: none; }
  .nav__toggle { display: flex; }
  .nav {
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    max-height: 0; overflow: hidden; transition: max-height .35s;
  }
  .nav.open { max-height: 550px; overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; }
  .nav__link { padding: 13px 16px; font-size: 1rem; }
  .btn-nav { text-align: center; padding: 13px 20px; }
  .dropdown { position: static; box-shadow: none; border: none; border-left: 3px solid var(--primary-light); margin-left: 16px; opacity: 1; visibility: visible; transform: none; background: var(--gray); border-radius: 0; display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .hero { min-height: auto; }
  .hero__inner { padding: 60px 20px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .services__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .how-card { border-bottom: 1px solid rgba(255,255,255,.08); border-right: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section, .section--dark, .section--gray, .section--form { padding: 64px 0; }
  .devis__form-wrap { padding: 28px 22px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .zones__grid { grid-template-columns: 1fr 1fr; }
  .about__dots { display: none; }
  .why__dots { display: none; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .zones__grid { grid-template-columns: 1fr; }
  .about__counter { position: static; margin-top: 20px; display: inline-flex; gap: 14px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: none; }
  .hero__tags span { font-size: .78rem; }
}
