/* ==========================================================================
   MAGIC CLEAN — Premium Shopify Theme
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --mc-navy: #10284A;
  --mc-navy-light: #1B3E68;
  --mc-green: #4CAF50;
  --mc-green-light: #8BC53F;
  --mc-white: #FFFFFF;
  --mc-bg: #F6F9F7;
  --mc-text: #1C2B3A;
  --mc-text-muted: #5B6B7A;
  --mc-border: #E4E9EE;
  --font-heading: 'Poppins', 'Montserrat', sans-serif;
  --font-body: 'Inter', 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 10px rgba(16, 40, 74, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 40, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 40, 74, 0.16);
  --radius-md: 16px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mc-text);
  background: var(--mc-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; color: var(--mc-navy); line-height: 1.15; }
p { margin: 0; color: var(--mc-text-muted); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-to-content-link:focus { position: fixed; top: 1rem; left: 1rem; background: var(--mc-navy); color: #fff; padding: .75rem 1.25rem; border-radius: 8px; z-index: 999; }

.mc-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.mc-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mc-green);
  background: rgba(76,175,80,0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.mc-section { padding: 96px 0; }
.mc-section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.mc-section__title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; margin-bottom: 14px; }
.mc-section__subtitle { font-size: 17px; }

/* ---------- Buttons ---------- */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease;
  white-space: nowrap;
}
.mc-btn--primary {
  background: linear-gradient(135deg, var(--mc-green) 0%, var(--mc-green-light) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(76,175,80,0.35);
}
.mc-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(76,175,80,0.45); }
.mc-btn--outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.mc-btn--outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.mc-btn--ghost { color: var(--mc-navy); border-color: var(--mc-border); }
.mc-btn--ghost:hover { border-color: var(--mc-green); color: var(--mc-green); }
.mc-btn--lg { padding: 17px 34px; font-size: 16px; }
.mc-btn--full { width: 100%; }
.mc-icon-arrow { transition: transform .3s var(--ease); }
.mc-btn:hover .mc-icon-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.mc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mc-border);
  transition: box-shadow .3s ease;
}
.mc-header.is-scrolled { box-shadow: var(--shadow-sm); }
.mc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.mc-header__logo img { height: 48px; width: auto; }
.mc-footer__brand img { height: 48px; width: auto; }
.mc-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.mc-logo-text__main { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--mc-navy); }
.mc-logo-text__main::after { content: ''; }
.mc-logo-text__tagline { font-size: 11px; color: var(--mc-green); font-weight: 600; letter-spacing: .04em; }
.mc-header__nav { display: flex; gap: 32px; }
.mc-header__link { font-weight: 500; font-size: 15px; position: relative; }
.mc-header__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--mc-green);
  transition: width .3s var(--ease);
}
.mc-header__link:hover::after { width: 100%; }
.mc-header__actions { display: flex; align-items: center; gap: 12px; }
.mc-header__call { font-size: 14px; }
.mc-header__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.mc-header__burger span { width: 24px; height: 2px; background: var(--mc-navy); border-radius: 2px; transition: all .3s ease; }
.mc-mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; background: #fff; border-top: 1px solid var(--mc-border);
}
.mc-mobile-menu__link { padding: 12px 0; border-bottom: 1px solid var(--mc-border); font-weight: 500; }
.mc-mobile-menu .mc-btn { margin-top: 12px; }
body.mc-menu-open .mc-mobile-menu { display: flex; }

/* ---------- Hero ---------- */
.mc-hero {
  position: relative;
  background: radial-gradient(120% 120% at 15% 10%, var(--mc-navy-light) 0%, var(--mc-navy) 60%, #0A1B33 100%);
  overflow: hidden;
  padding: 90px 0 70px;
}
.mc-hero__bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mc-shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .35; }
.mc-shape--1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--mc-green) 0%, transparent 70%); top: -140px; right: -100px; animation: mc-float 12s ease-in-out infinite; }
.mc-shape--2 { width: 300px; height: 300px; background: radial-gradient(circle, var(--mc-green-light) 0%, transparent 70%); bottom: -100px; left: -80px; animation: mc-float 9s ease-in-out infinite reverse; }
.mc-shape--3 { width: 180px; height: 180px; background: radial-gradient(circle, #ffffff 0%, transparent 70%); top: 30%; left: 45%; opacity: .06; animation: mc-float 14s ease-in-out infinite; }
@keyframes mc-float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }
.mc-particles { position: absolute; inset: 0; }
.mc-particle { position: absolute; width: 4px; height: 4px; background: var(--mc-green-light); border-radius: 50%; opacity: .6; animation: mc-rise linear infinite; }
@keyframes mc-rise { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: .8; } 100% { transform: translateY(-600px); opacity: 0; } }

.mc-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.mc-hero__logo { height: 52px; width: auto; margin-bottom: 24px; }
.mc-hero__title { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; color: #fff; margin-bottom: 20px; }
.mc-hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 34px; }
.mc-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.mc-hero__trust { display: flex; gap: 40px; }
.mc-hero__trust-item { display: flex; flex-direction: column; }
.mc-hero__trust-item strong { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--mc-green-light); }
.mc-hero__trust-item span { font-size: 13px; color: rgba(255,255,255,0.65); }

.mc-hero__visual { display: flex; justify-content: center; }
.mc-hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  animation: mc-card-float 6s ease-in-out infinite;
}
@keyframes mc-card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.mc-hero__scroll { display: flex; justify-content: center; margin-top: 40px; position: relative; z-index: 1; }
.mc-hero__scroll span { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4); border-radius: 20px; position: relative; display: block; }
.mc-hero__scroll span::before {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--mc-green-light);
  border-radius: 2px; transform: translateX(-50%); animation: mc-scroll-dot 1.6s ease-in-out infinite;
}
@keyframes mc-scroll-dot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Services ---------- */
.mc-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.mc-service-card {
  background: #fff; border: 1px solid var(--mc-border); border-radius: var(--radius-md);
  padding: 36px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  position: relative; overflow: hidden;
}
.mc-service-card::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(76,175,80,0.06), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
}
.mc-service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mc-service-card:hover::before { opacity: 1; }
.mc-service-card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-light)); color: var(--mc-green-light); margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.mc-service-card:hover .mc-service-card__icon { transform: rotate(-6deg) scale(1.08); }
.mc-service-card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.mc-service-card__text { font-size: 14.5px; margin-bottom: 18px; }
.mc-service-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--mc-green); }
.mc-service-card__link .mc-icon-arrow { transition: transform .3s ease; }
.mc-service-card__link:hover .mc-icon-arrow { transform: translateX(4px); }

/* ---------- Why us ---------- */
.mc-why { background: var(--mc-bg); }
.mc-why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mc-why__visual { position: relative; }
.mc-why__blob {
  position: absolute; inset: -30px; background: linear-gradient(135deg, var(--mc-green-light), var(--mc-green));
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; opacity: .18; z-index: 0; animation: mc-blob 10s ease-in-out infinite;
}
@keyframes mc-blob { 0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; } 50% { border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; } }
.mc-why__visual img { position: relative; z-index: 1; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.mc-why__badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2; background: #fff; padding: 18px 24px; border-radius: 16px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.mc-why__badge strong { font-family: var(--font-heading); font-size: 24px; color: var(--mc-navy); }
.mc-why__badge span { font-size: 12.5px; color: var(--mc-text-muted); }
.mc-why__list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.mc-why__item { display: flex; gap: 16px; align-items: flex-start; }
.mc-why__check {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: rgba(76,175,80,0.12); color: var(--mc-green);
  display: flex; align-items: center; justify-content: center;
}
.mc-why__item strong { font-family: var(--font-heading); font-size: 16px; color: var(--mc-navy); }
.mc-why__item p { font-size: 14px; margin-top: 4px; }

/* ---------- Before / After ---------- */
.mc-ba-slider {
  position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); user-select: none;
}
.mc-ba-slider__image { position: absolute; inset: 0; }
.mc-ba-slider__image img { width: 100%; height: 100%; object-fit: cover; }
.mc-ba-slider__image--before { clip-path: inset(0 50% 0 0); transition: clip-path .05s linear; }
.mc-ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.mc-ba-slider__handle span {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--mc-navy); display: flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.mc-ba-slider__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.mc-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
  font-weight: 800; font-size: 22px; letter-spacing: .08em; color: #fff;
}
.mc-placeholder--before { background: linear-gradient(135deg, #6b7280, #9ca3af); }
.mc-placeholder--after { background: linear-gradient(135deg, var(--mc-green), var(--mc-green-light)); }

/* ---------- Stats ---------- */
.mc-stats { background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-light)); padding: 72px 0; }
.mc-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.mc-stat__number { display: block; font-family: var(--font-heading); font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: var(--mc-green-light); }
.mc-stat__label { font-size: 14px; color: rgba(255,255,255,0.75); }

/* ---------- Process ---------- */
.mc-process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; position: relative; }
.mc-process__step { text-align: center; position: relative; padding: 0 12px; }
.mc-process__number {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mc-green), var(--mc-green-light)); color: #fff; font-family: var(--font-heading);
  font-weight: 700; font-size: 18px; margin-bottom: 18px; box-shadow: 0 10px 20px rgba(76,175,80,0.3);
}
.mc-process__step h3 { font-size: 18px; margin-bottom: 8px; }
.mc-process__step p { font-size: 14px; }
.mc-process__connector { position: absolute; top: 28px; left: calc(50% + 50px); width: calc(100% - 56px); height: 2px; background: var(--mc-border); }

/* ---------- Testimonials ---------- */
.mc-testimonials { background: var(--mc-bg); }
.mc-testimonial-carousel { position: relative; overflow: hidden; }
.mc-testimonial-carousel__track { display: flex; gap: 24px; transition: transform .6s var(--ease); }
.mc-testimonial-card {
  flex: 0 0 100%; max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius-md); padding: 40px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.mc-testimonial-card__stars { color: var(--mc-green-light); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.mc-testimonial-card__text { font-size: 17px; color: var(--mc-text); font-style: italic; margin-bottom: 24px; }
.mc-testimonial-card__author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.mc-testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--mc-navy); color: #fff; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-heading); font-weight: 700;
}
.mc-testimonial-card__author strong { display: block; font-size: 14.5px; color: var(--mc-navy); }
.mc-testimonial-card__author span { font-size: 12.5px; color: var(--mc-text-muted); }
.mc-testimonial-carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.mc-testimonial-carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--mc-border); padding: 0; transition: background .3s ease, transform .3s ease;
}
.mc-testimonial-carousel__dots button.is-active { background: var(--mc-green); transform: scale(1.3); }

/* ---------- Gallery ---------- */
.mc-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.mc-gallery__item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.mc-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mc-gallery__item:hover img { transform: scale(1.08); }
.mc-gallery__item .mc-placeholder { background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-light)); font-size: 14px; }
.mc-gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(16,40,74,0.85), transparent);
  color: #fff; font-size: 13px; font-weight: 600; transform: translateY(100%); transition: transform .35s var(--ease);
}
.mc-gallery__item:hover .mc-gallery__caption { transform: translateY(0); }

/* ---------- Quote form ---------- */
.mc-quote { background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-light)); }
.mc-quote__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.mc-quote__side h2 { color: #fff; }
.mc-quote__side p { color: rgba(255,255,255,0.7); margin: 14px 0 30px; }
.mc-quote__contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; color: #fff; font-size: 14.5px; }
.mc-quote__contacts li { display: flex; align-items: center; gap: 12px; }
.mc-quote__form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.mc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.mc-field--full { grid-column: 1 / -1; }
.mc-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--mc-navy); margin-bottom: 6px; }
.mc-field input, .mc-field select, .mc-field textarea {
  width: 100%; border: 1.5px solid var(--mc-border); border-radius: 10px; padding: 12px 14px; font-family: inherit;
  font-size: 14.5px; color: var(--mc-text); transition: border-color .3s ease, box-shadow .3s ease; background: #fff;
}
.mc-field input:focus, .mc-field select:focus, .mc-field textarea:focus {
  outline: none; border-color: var(--mc-green); box-shadow: 0 0 0 4px rgba(76,175,80,0.14);
}
.mc-form-success { background: rgba(76,175,80,0.12); color: #2f7a33; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.mc-form-error { background: #fdecec; color: #b3261e; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }

/* ---------- FAQ ---------- */
.mc-faq__inner { max-width: 820px; }
.mc-faq__list { display: flex; flex-direction: column; gap: 14px; }
.mc-faq__item { border: 1px solid var(--mc-border); border-radius: 14px; padding: 6px 24px; background: #fff; }
.mc-faq__question {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 18px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--mc-navy);
}
.mc-faq__question::-webkit-details-marker { display: none; }
.mc-faq__icon { color: var(--mc-green); transition: transform .3s var(--ease); flex: none; margin-left: 16px; }
.mc-faq__item[open] .mc-faq__icon { transform: rotate(45deg); }
.mc-faq__answer { padding: 0 0 20px; }
.mc-faq__answer p { font-size: 14.5px; }

/* ---------- Footer ---------- */
.mc-footer { background: #0A1B33; color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.mc-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mc-footer__brand p { color: rgba(255,255,255,0.55); font-size: 13.5px; margin: 14px 0 20px; }
.mc-logo-text--footer { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: #fff; }
.mc-footer__socials { display: flex; gap: 12px; }
.mc-footer__socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; transition: background .3s ease, transform .3s ease;
}
.mc-footer__socials a:hover { background: var(--mc-green); transform: translateY(-3px); }
.mc-footer__col h3 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.mc-footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.mc-footer__col a:hover { color: var(--mc-green-light); }
.mc-footer__map { border-radius: 14px; overflow: hidden; }
.mc-footer__bottom { padding: 22px 0; }
.mc-footer__bottom-inner { display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 8px; }

/* ---------- Floating buttons ---------- */
.mc-floating-buttons { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.mc-float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform .3s var(--ease), box-shadow .3s var(--ease); color: #fff;
}
.mc-float-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
.mc-float-btn--whatsapp { background: #25D366; }
.mc-float-btn--call { background: var(--mc-navy); animation: mc-pulse 2.4s ease-in-out infinite; }
.mc-float-btn--quote {
  width: auto; padding: 0 20px; border-radius: 999px; background: linear-gradient(135deg, var(--mc-green), var(--mc-green-light));
  gap: 8px; font-weight: 700; font-size: 13.5px;
}
@keyframes mc-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,40,74,0.4); } 50% { box-shadow: 0 0 0 10px rgba(16,40,74,0); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .mc-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .mc-hero__cta, .mc-hero__trust { justify-content: center; }
  .mc-hero__subtitle { margin-left: auto; margin-right: auto; }
  .mc-why__inner, .mc-quote__inner { grid-template-columns: 1fr; }
  .mc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .mc-header__nav, .mc-header__actions { display: none; }
  .mc-header__burger { display: flex; }
  .mc-form-grid { grid-template-columns: 1fr; }
  .mc-process__connector { display: none; }
  .mc-process__steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mc-section { padding: 64px 0; }
  .mc-footer__grid { grid-template-columns: 1fr; }
  .mc-hero { padding: 60px 0 40px; }
  .mc-quote__form-wrap { padding: 26px; }
  .mc-floating-buttons { right: 14px; bottom: 14px; }
  .mc-float-btn--quote span { display: none; }
  .mc-float-btn--quote { width: 56px; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Hero visual photo (ajout) ---------- */
.mc-hero__card--photo {
  background: none; border: none; padding: 0; backdrop-filter: none; position: relative;
}
.mc-hero__card--photo::before {
  content: ''; position: absolute; inset: -20px -12px -12px -20px; z-index: 0;
  background: linear-gradient(135deg, var(--mc-green-light), var(--mc-green));
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; opacity: .25;
  animation: mc-blob 10s ease-in-out infinite;
}
.mc-hero__card--photo img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,0.12);
}
.mc-hero__photo-badge {
  position: absolute; z-index: 2; bottom: -18px; left: -18px; background: #fff; padding: 16px 20px;
  border-radius: 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.mc-hero__photo-badge .mc-stars { color: #F5B301; font-size: 14px; letter-spacing: 1px; }
.mc-hero__photo-badge strong { font-family: var(--font-heading); font-size: 18px; color: var(--mc-navy); display: block; }
.mc-hero__photo-badge span { font-size: 12px; color: var(--mc-text-muted); }
@media (max-width: 640px) {
  .mc-hero__photo-badge { left: 12px; bottom: -14px; padding: 12px 16px; }
}

/* ---------- Collage avant/après multi-univers ---------- */
.mc-ba-collage__frame img {
  width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

/* ---------- Bande couleur CTA (sans photo) ---------- */
.mc-cta-band { background: linear-gradient(120deg, var(--mc-green), var(--mc-green-light)); padding: 56px 0; }
.mc-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.mc-cta-band h2 { color: #fff; font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin: 0; }
.mc-cta-band p { color: rgba(255,255,255,0.9); margin: 8px 0 0; font-size: 15px; }
.mc-cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.mc-btn--white { background: #fff; color: var(--mc-navy); }
.mc-btn--white:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,0.2); }
@media (max-width: 640px) {
  .mc-cta-band__inner { text-align: center; justify-content: center; }
}

/* ---------- Hero version "photo complète" (ajout) ---------- */
.mc-hero--banner {
  background: var(--mc-bg);
  padding: 32px 0 0;
  overflow: visible;
}
.mc-hero__banner-head { text-align: center; max-width: 720px; margin: 0 auto 24px; }
.mc-hero__banner-head .mc-eyebrow { margin-bottom: 12px; }
.mc-hero__banner-head h1 {
  font-family: var(--font-heading); font-weight: 700; color: var(--mc-navy);
  font-size: clamp(24px, 4vw, 38px); line-height: 1.2; margin: 0;
}
@media (max-width: 640px) {
  .mc-hero__banner-head { margin-bottom: 18px; }
}
.mc-hero__banner-frame img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.mc-hero__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 22px 28px; margin: -34px auto 0; position: relative; z-index: 2;
  max-width: 92%;
}
.mc-hero__bar-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.mc-hero__bar-trust span { font-size: 14px; color: var(--mc-text-muted); }
.mc-hero__bar-trust strong { font-family: var(--font-heading); color: var(--mc-navy); font-size: 20px; margin-right: 5px; }
.mc-hero__bar-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .mc-hero__bar { flex-direction: column; align-items: stretch; text-align: center; margin-top: 16px; padding: 20px; max-width: 100%; }
  .mc-hero__bar-trust { justify-content: center; }
  .mc-hero__bar-actions { justify-content: center; }
}
