:root {
  --agm-orange: #ff6600;
  --agm-orange-2: #f9a83e;
  --agm-ink: #141414;
  --agm-muted: #5c5c5c;
  --agm-line: #e6e6e4;
  --agm-bg: #f6f5f2;
  --agm-white: #fff;
  --agm-ok: #1b7a4a;
  --radius: 10px;
  --pad: clamp(1rem, 4vw, 1.75rem);
  --max: 1120px;
  --header-h: 76px;
  --topbar-h: 52px;
  --rentbar-h: 58px;
  --sticky-h: 64px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Outfit", "Source Sans 3", sans-serif;
  --shadow: 0 1px 0 rgba(0,0,0,.04);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--agm-ink);
  background: var(--agm-white);
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}
html, body { max-width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--agm-orange); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }

/* Top bar (closable) */
.agm-topbar {
  background: var(--agm-ink);
  color: #f2f2f2;
  font-size: 1rem;
  padding: .85rem 0;
  border-bottom: 2px solid var(--agm-orange);
}
.agm-topbar.is-hidden { display: none; }
.agm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  position: relative;
  text-align: center;
}
.agm-topbar__msg { margin: 0; line-height: 1.35; padding-inline: 2rem; }
.agm-topbar__sep { margin: 0 .35rem; opacity: .7; }
.agm-topbar__tel {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.agm-topbar__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  opacity: .85;
}
.agm-topbar__close:hover { opacity: 1; }
@media (max-width: 720px) {
  .agm-topbar {
    font-size: .88rem;
    padding: .65rem 0;
  }
  .agm-topbar__inner {
    padding-inline: .25rem;
  }
  .agm-topbar__msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding-inline: 2.4rem;
    text-align: center;
  }
  .agm-topbar__sep { display: none; }
  .agm-topbar__tel { font-size: 1rem; }
  .agm-topbar__close {
    right: .15rem;
    width: 40px;
    height: 40px;
  }
}

/* Rental period bar */
.agm-rentbar {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a1810 100%);
  color: #fff;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,102,0,.35);
}
.agm-rentbar__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem .85rem;
}
.agm-rentbar__label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}
.agm-rentbar__dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--agm-orange);
  flex-shrink: 0;
}
.agm-rentbar__summary {
  font-size: .9rem;
  opacity: .9;
  text-align: center;
}
.agm-rentbar__summary.is-set { color: #ffd7b8; font-weight: 600; }
.agm-rentbar__go {
  appearance: none;
  border: 0;
  background: var(--agm-orange);
  color: #fff;
  border-radius: 999px;
  min-height: 42px;
  min-width: 42px;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-family: var(--display);
  font-weight: 700;
  cursor: pointer;
}
.agm-rentbar__go:hover { filter: brightness(1.06); }
@media (max-width: 720px) {
  .agm-rentbar { padding: .85rem 0; }
  .agm-rentbar__form {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    text-align: center;
  }
  .agm-rentbar__label {
    width: auto;
    justify-content: center;
    font-size: .92rem;
  }
  .agm-rentbar__summary {
    width: 100%;
    text-align: center;
    font-size: .86rem;
    line-height: 1.35;
    max-width: 18rem;
  }
  .agm-rentbar__go {
    width: min(100%, 16rem);
    min-height: 46px;
    margin-top: .15rem;
  }
}

/* Booking modal — AGM orange on dark */
.agm-modal {
  border: 0;
  padding: 0;
  max-width: min(920px, calc(100vw - 1.25rem));
  width: 100%;
  background: transparent;
  color: #fff;
}
.agm-modal::backdrop {
  background: rgba(10, 8, 6, .72);
  backdrop-filter: blur(4px);
}
.agm-modal__panel {
  margin: 0;
  background: linear-gradient(165deg, #1c1c1c 0%, #26180f 100%);
  border: 1px solid rgba(255,102,0,.35);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  overflow: hidden;
}
.agm-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.agm-modal__head h2 {
  margin: 0 0 .25rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  color: #fff;
}
.agm-modal__head p {
  margin: 0 0 .4rem;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.agm-modal__help {
  color: var(--agm-orange-2);
  font-size: .9rem;
  font-weight: 600;
}
.agm-modal__x {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  opacity: .8;
  flex-shrink: 0;
}
.agm-modal__x:hover { opacity: 1; }
.agm-modal__block {
  margin: 1rem 1.15rem;
  padding: 1rem 1rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}
.agm-modal__block h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  color: #fff;
}
.agm-modal__hint {
  margin: 0 0 .85rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.agm-modal__hint--ok { color: #7dcea0; }
.agm-modal__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.agm-modal__row label {
  display: grid;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.agm-modal__row input,
.agm-modal__row select {
  appearance: none;
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.25);
  color: #fff;
  border-radius: 8px;
  padding: .5rem .65rem;
  font: inherit;
  color-scheme: dark;
}
.agm-modal__row select option { color: #111; }
.agm-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 0 1.15rem 1.2rem;
}
.agm-modal__btn {
  appearance: none;
  border: 0;
  min-height: 48px;
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.agm-modal__btn--cancel {
  background: #c62828;
  color: #fff;
}
.agm-modal__btn--cancel:hover { filter: brightness(1.06); }
.agm-modal__btn--ok {
  background: var(--agm-orange);
  color: #fff;
}
.agm-modal__btn--ok:hover { filter: brightness(1.06); }
@media (max-width: 720px) {
  .agm-modal__row { grid-template-columns: 1fr; }
  .agm-modal__actions { grid-template-columns: 1fr; }
}

/* Header */
.agm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--agm-line);
}
.agm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: var(--header-h);
}
.agm-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  line-height: 1.1;
  color: var(--agm-ink);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.agm-logo span { color: var(--agm-orange); }
.agm-nav-toggle {
  appearance: none;
  border: 1px solid var(--agm-line);
  background: var(--agm-white);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.agm-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--agm-ink);
  position: relative;
}
.agm-nav-toggle span::before,
.agm-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--agm-ink);
}
.agm-nav-toggle span::before { top: -6px; }
.agm-nav-toggle span::after { top: 6px; }

.agm-nav {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--agm-white);
  border-bottom: 1px solid var(--agm-line);
  padding: .5rem var(--pad) 1rem;
  z-index: 50;
}
.agm-nav.is-open { display: block; }
.agm-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .15rem;
}
.agm-nav li { position: relative; }
.agm-nav a {
  display: block;
  padding: .85rem .5rem;
  color: var(--agm-ink);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.agm-nav a:hover { background: var(--agm-bg); color: var(--agm-orange); text-decoration: none; }
.agm-nav .sub-menu {
  display: grid;
  gap: .1rem;
  margin: 0 0 .35rem .75rem;
  padding: 0;
}
.agm-nav .sub-menu a {
  font-weight: 500;
  font-size: .95rem;
  padding: .55rem .5rem;
  color: var(--agm-muted);
}
.agm-nav .menu-item-has-children > a::after {
  content: " ▾";
  font-size: .75em;
  opacity: .7;
}

@media (min-width: 900px) {
  .agm-nav-toggle { display: none; }
  .agm-nav {
    display: block;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .agm-nav > ul {
    display: flex;
    align-items: center;
    gap: .05rem;
  }
  .agm-nav > ul > li > a { padding: .55rem .55rem; font-size: .92rem; }
  .agm-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    margin: 0;
    padding: .4rem;
    background: var(--agm-white);
    border: 1px solid var(--agm-line);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,.1);
    z-index: 60;
  }
  .agm-nav .menu-item-has-children:hover > .sub-menu,
  .agm-nav .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
  }
  .agm-nav .sub-menu a {
    white-space: nowrap;
    color: var(--agm-ink);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.btn__ico { flex-shrink: 0; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--primary {
  background: linear-gradient(45deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(255, 102, 0, .28);
}
.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgba(255, 102, 0, .45);
}
.btn--ghost {
  background: var(--agm-white);
  color: var(--agm-ink) !important;
  border: 1.5px solid var(--agm-ink);
}
.btn--ghost:hover {
  border-color: var(--agm-orange);
  color: var(--agm-orange) !important;
  background: #fff8f2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}
button.btn {
  appearance: none;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}
.btn--light {
  background: #fff;
  color: var(--agm-ink) !important;
}
.btn-row { display: flex; flex-wrap: nowrap; gap: .55rem; }
.btn-row .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: .75rem;
  font-size: .92rem;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .btn-row .btn { font-size: .82rem; padding-inline: .5rem; gap: .25rem; }
  .btn-row .btn__ico { width: 15px; height: 15px; }
}

/* Hero */
.agm-hero {
  background: var(--agm-bg);
  padding: clamp(1.5rem, 5vw, 3rem) 0 clamp(2rem, 6vw, 3.5rem);
}
.agm-hero__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .agm-hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 2.5rem;
  }
}
.agm-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--agm-orange);
  margin-bottom: .75rem;
}
.agm-hero h1 {
  font-size: clamp(1.85rem, 6vw, 3rem);
  margin-bottom: .75rem;
}
.agm-hero .lead {
  color: var(--agm-muted);
  font-size: 1.08rem;
  margin-bottom: 1.25rem;
}
.agm-hero__media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}
.agm-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agm-hero__stage {
  position: relative;
  isolation: isolate;
}
.agm-hero__glow {
  position: absolute;
  inset: 8% -6% -10% 8%;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,102,0,.28), transparent 65%),
    radial-gradient(ellipse 50% 45% at 20% 80%, rgba(255,160,80,.18), transparent 60%);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}
.agm-hero__frame {
  position: relative;
  border-radius: 18px;
  padding: .55rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,244,235,.9));
  border: 1px solid rgba(255,102,0,.22);
  box-shadow:
    0 18px 40px rgba(26, 18, 12, .12),
    0 0 0 1px rgba(255,255,255,.6) inset;
}
.agm-hero__frame .agm-hero__media {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.agm-hero__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .95rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  pointer-events: none;
  z-index: 2;
}
.agm-hero__badges li {
  pointer-events: auto;
  background: rgba(18, 12, 8, .82);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.agm-hero__badges li:nth-child(2) {
  background: rgba(255, 102, 0, .92);
  border-color: rgba(255,255,255,.2);
}
.agm-hero__caption {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--agm-muted);
}
@media (min-width: 860px) {
  .agm-hero__stage { margin-top: .25rem; }
  .agm-hero__badges { bottom: 1.1rem; left: 1rem; right: 1rem; }
}

/* Pillars */
.agm-pillars {
  display: grid;
  gap: .85rem;
  padding: 1.5rem 0 0;
}
@media (min-width: 720px) {
  .agm-pillars { grid-template-columns: repeat(3, 1fr); }
}
.agm-pillar {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.agm-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 102, 0, .45);
  box-shadow: 0 14px 28px rgba(255, 102, 0, .12);
}
.agm-pillar__ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff4eb, #ffe0c7);
  color: var(--agm-orange);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.agm-pillar:hover .agm-pillar__ico {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(145deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff;
}
.agm-pillar strong {
  display: block;
  font-family: var(--display);
  margin-bottom: .3rem;
  font-size: 1rem;
}
.agm-pillar p { margin: 0; color: var(--agm-muted); font-size: .9rem; line-height: 1.4; }
.agm-pillar--link {
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}
.agm-pillar--link:hover strong { color: var(--agm-orange); }

/* Sections */
.section { padding: clamp(2rem, 6vw, 4rem) 0; }
.section--alt { background: var(--agm-bg); }
.section__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}
.section__head p { color: var(--agm-muted); margin: 0; }

/* How to rent — 5 steps */
.agm-steps { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.agm-steps__head { text-align: center; margin-bottom: 2rem; }
.agm-steps__kicker {
  margin: 0 0 .35rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-steps__head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  color: var(--agm-ink);
}
.agm-steps__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: none;
  position: relative;
}
.agm-steps__item {
  text-align: center;
  max-width: 14rem;
  margin-inline: auto;
  transition: transform .25s ease;
}
.agm-steps__item:hover { transform: translateY(-4px); }
.agm-steps__icon {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--agm-white);
  border: 3px solid var(--agm-orange);
  display: grid;
  place-items: center;
  color: var(--agm-orange);
  box-shadow: 0 8px 20px rgba(255, 102, 0, .12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.agm-steps__item:hover .agm-steps__icon {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(255, 102, 0, .22);
  background: #fff8f2;
}
.agm-steps__icon span {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--agm-orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--display);
}
.agm-steps__item:nth-child(2) .agm-steps__icon { border-color: #ff7a1a; color: #ff7a1a; }
.agm-steps__item:nth-child(2) .agm-steps__icon span { background: #ff7a1a; }
.agm-steps__item:nth-child(3) .agm-steps__icon { border-color: #f9a83e; color: #e8890a; }
.agm-steps__item:nth-child(3) .agm-steps__icon span { background: #f08c00; }
.agm-steps__item:nth-child(4) .agm-steps__icon { border-color: #e85d04; color: #e85d04; }
.agm-steps__item:nth-child(4) .agm-steps__icon span { background: #e85d04; }
.agm-steps__item:nth-child(5) .agm-steps__icon { border-color: #d9480f; color: #d9480f; }
.agm-steps__item:nth-child(5) .agm-steps__icon span { background: #d9480f; }
.agm-steps__item strong {
  display: block;
  font-family: var(--display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  color: var(--agm-ink);
}
.agm-steps__item p {
  margin: 0;
  font-size: .88rem;
  color: var(--agm-muted);
  line-height: 1.4;
}
.agm-steps__cta {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: .55rem;
  margin: 2rem 0 0;
}
.agm-steps__cta .btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 16rem;
  padding-inline: .7rem;
  font-size: .92rem;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .agm-steps__cta .btn {
    font-size: .82rem;
    padding-inline: .5rem;
    gap: .25rem;
  }
  .agm-steps__cta .btn__ico { width: 15px; height: 15px; }
}
.agm-steps__cta .btn:hover {
  transform: translateY(-4px);
}
.agm-steps__cta .btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 16px 32px rgba(255, 102, 0, .48);
}
.agm-steps__cta .btn--ghost:hover {
  border-color: var(--agm-orange);
  color: var(--agm-orange) !important;
  background: #fff8f2;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}
@media (min-width: 900px) {
  .agm-steps__track {
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
    align-items: start;
  }
  .agm-steps__track::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, #ff6600 0%, #f9a83e 45%, #d9480f 100%);
    z-index: 0;
  }
  .agm-steps__item {
    max-width: none;
    position: relative;
    z-index: 1;
  }
}

/* Product grid */
.agm-products {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .agm-products { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .agm-products { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.agm-card {
  display: flex;
  flex-direction: column;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  transition: border-color .15s ease;
}
.agm-card:hover { border-color: var(--agm-orange); }
.agm-card__media {
  aspect-ratio: 4 / 3;
  background: #eee;
  overflow: hidden;
}
.agm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agm-card__body { padding: 1rem 1.05rem 1.15rem; display: grid; gap: .45rem; flex: 1; }
.agm-card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.agm-card__price {
  margin-top: auto;
  display: grid;
  gap: .2rem;
  font-size: .92rem;
  padding: .65rem .75rem;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff;
  font-weight: 600;
}

/* Partners */
.agm-partners {
  text-align: center;
}
.agm-partners img {
  margin: 1rem auto 0;
  width: min(100%, 920px);
}

/* Google reviews carousel */
.agm-reviews {
  padding-top: 0;
  background: var(--agm-bg);
}
.agm-reviews__summary {
  text-align: center;
  margin: 0 0 1.35rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: #1a2a4a;
}
.agm-reviews__summary a {
  color: inherit;
  text-decoration: none;
}
.agm-reviews__summary a:hover { color: var(--agm-orange); }
.agm-reviews__summary strong { color: var(--agm-ink); }
.agm-reviews__g {
  display: inline-flex;
  gap: 0;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-left: .15rem;
}
.agm-reviews__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .25rem .15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.agm-reviews__track::-webkit-scrollbar { display: none; }
.agm-review {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  min-height: 11.5rem;
}
@media (min-width: 900px) {
  .agm-review { flex-basis: calc((100% - 2rem) / 3); }
}
.agm-review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .35rem .75rem;
}
.agm-review__name {
  font-family: var(--display);
  font-size: 1rem;
}
.agm-review__stars {
  letter-spacing: .05em;
  font-size: .95rem;
  color: #d8d8d8;
}
.agm-review__stars .is-on { color: #f5b400; }
.agm-review__text {
  margin: 0;
  color: var(--agm-muted);
  font-size: .94rem;
  line-height: 1.5;
}
.agm-reviews__dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin: 0 0 1rem;
}
.agm-reviews__dots button {
  appearance: none;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c9cdd6;
  cursor: pointer;
}
.agm-reviews__dots button.is-active { background: #1a2a4a; }
.agm-reviews__more {
  text-align: center;
  margin: 0;
}
.agm-reviews__more a {
  font-weight: 700;
  color: var(--agm-orange);
  text-decoration: none;
}
.agm-reviews__more a:hover { text-decoration: underline; }

/* Forms */
.agm-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: .9rem;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .agm-form { padding: 1.5rem 1.75rem; }
}
.agm-form label {
  display: grid;
  gap: .35rem;
  font-weight: 600;
  font-size: .92rem;
}
.agm-form input,
.agm-form select,
.agm-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--agm-line);
  border-radius: 8px;
  padding: .7rem .85rem;
  font: inherit;
  background: #fff;
}
.agm-form textarea { min-height: 120px; resize: vertical; }
.agm-form .row-2 {
  display: grid;
  gap: .9rem;
}
@media (min-width: 560px) {
  .agm-form .row-2 { grid-template-columns: 1fr 1fr; }
}
.agm-alert {
  padding: .9rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.agm-alert--ok { background: #e8f6ee; color: var(--agm-ok); }
.agm-alert--err { background: #fdecec; color: #9b1c1c; }

/* Single product */
.agm-product {
  padding: 1.25rem 0 2.5rem;
}
.agm-product__top {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 2rem;
}
@media (min-width: 860px) {
  .agm-product__top {
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    align-items: start;
  }
}
.agm-product__gallery {
  display: grid;
  gap: .65rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 860px) {
  .agm-product__gallery {
    position: sticky;
    top: .75rem;
    align-self: start;
  }
}
.agm-product__panel {
  position: relative;
  z-index: 2;
  background: var(--agm-bg);
}
.agm-product__stage {
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,102,0,.08), transparent 55%),
    #f4f4f2;
  border: 1px solid var(--agm-line);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.agm-product__stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease, transform .35s ease;
}
.agm-product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
@media (min-width: 520px) {
  .agm-product__thumbs { grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); }
}
.agm-product__thumb {
  appearance: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: #f4f4f2;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: border-color .2s ease, transform .2s ease;
}
.agm-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agm-product__thumb:hover { transform: translateY(-2px); border-color: rgba(255,102,0,.45); }
.agm-product__thumb.is-active { border-color: var(--agm-orange); }
.agm-product__cats { margin-bottom: .35rem; }
.agm-product__title {
  margin: 0 0 .35rem;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.agm-product__lead {
  margin: 0 0 1.1rem;
  color: var(--agm-muted);
  font-size: .95rem;
}
.agm-pricegrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin: 0 0 1.15rem;
}
.agm-pricegrid__item {
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 12px;
  padding: .75rem .85rem;
  display: grid;
  gap: .2rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.agm-pricegrid__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,102,0,.4);
  box-shadow: 0 10px 22px rgba(255,102,0,.1);
}
.agm-pricegrid__item--neuf {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #1a1a1a, #2a1810);
  border-color: transparent;
  color: #fff;
}
.agm-pricegrid__item--neuf .agm-pricegrid__label { color: rgba(255,255,255,.7); }
.agm-pricegrid__item--hl {
  border-color: rgba(255,102,0,.55);
  background: linear-gradient(145deg, #fff8f2, #ffe8d6);
}
.agm-pricegrid__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-pricegrid__item strong {
  font-size: 1.15rem;
  font-family: var(--display);
  color: var(--agm-ink);
}
.agm-pricegrid__item--neuf strong { color: #fff; }
.agm-pricegrid__item--hl strong { color: var(--agm-orange); }
.agm-product__actions {
  position: relative;
  z-index: 2;
  margin: 0 0 .55rem;
}
.agm-product__actions.btn-row {
  flex-wrap: wrap;
}
.agm-product__hint {
  margin: 0;
  font-size: .82rem;
  color: var(--agm-muted);
}
.agm-product__body {
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--agm-line);
}
.agm-product__body > p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--agm-ink);
}
.agm-product__body h2,
.agm-product__body h3 {
  margin: 1.75rem 0 .75rem;
  letter-spacing: -.015em;
}
.agm-product__body h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  padding-bottom: .45rem;
  border-bottom: 2px solid rgba(255,102,0,.35);
}
.agm-product__body .wp-block-buttons {
  margin: 1.15rem 0 1.35rem;
}
.agm-product__body .wp-block-button__link {
  background: var(--agm-orange) !important;
  border-radius: 999px !important;
  padding: .7rem 1.25rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(255,102,0,.28);
  transition: transform .2s ease, filter .2s ease;
}
.agm-product__body .wp-block-button__link:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.agm-product__body .wp-block-embed {
  margin: 1.25rem auto 1.5rem;
  max-width: min(100%, 720px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border: 1px solid var(--agm-line);
  background: #111;
}
.agm-product__body .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}
/* WP oEmbed fixe souvent width=500 — on force le plein cadre */
.agm-product__body .wp-block-embed iframe,
.agm-product__body .wp-block-embed embed,
.agm-product__body .wp-block-embed object,
.agm-product__body .wp-block-embed video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block;
  border: 0;
}
.agm-product__body .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper::before {
  display: none !important; /* ancien hack padding WP */
}
.agm-product__body .wp-block-gallery {
  display: none; /* safety if gallery strip failed */
}
.agm-product__band {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(115deg, #1a120c 0%, #2a1810 55%, #171717 100%);
  color: #fff;
  border: 1px solid rgba(255,102,0,.35);
  margin: 0 0 .5rem;
}
@media (min-width: 720px) {
  .agm-product__band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.agm-product__band h2 {
  margin: 0 0 .25rem;
  font-size: 1.2rem;
  color: #fff;
  border: 0;
  padding: 0;
}
.agm-product__band p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.agm-product__band .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff !important;
}
.agm-product__band .btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff !important;
  box-shadow: none;
}

/* legacy class kept for safety */
.agm-product-hero {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
}
@media (min-width: 800px) {
  .agm-product-hero { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
.agm-product-hero__img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--agm-bg);
  border: 1px solid var(--agm-line);
}
.agm-product-hero__img img { width: 100%; }
.agm-pricebox {
  display: grid;
  gap: .4rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(45deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff;
  font-weight: 600;
  margin: 1rem 0;
}
.entry-content { overflow-wrap: anywhere; }
.entry-content img { border-radius: 8px; }

/* Content pages */
.page-hero {
  padding: 1.75rem 0 1rem;
  border-bottom: 1px solid var(--agm-line);
  margin-bottom: 1.5rem;
}
.page-hero h1 { margin: 0; font-size: clamp(1.6rem, 5vw, 2.3rem); }

/* Footer */
.agm-footer {
  background: #121212;
  color: #cfcfcf;
  padding: 0 0 calc(1.5rem + var(--sticky-h));
  margin-top: 0;
  border-top: 3px solid var(--agm-orange);
}
.agm-footer__cta {
  background: linear-gradient(105deg, #1a120c 0%, #2a1a10 55%, #1c1c1c 100%);
  border-bottom: 1px solid rgba(255,102,0,.25);
  padding: 1.35rem 0;
}
.agm-footer__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.agm-footer__cta-kicker {
  margin: 0 0 .2rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--agm-orange-2);
}
.agm-footer__cta-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: #fff;
}
.agm-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.agm-footer__cta-ghost {
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
  background: transparent !important;
}
.agm-footer__cta-ghost:hover {
  border-color: var(--agm-orange) !important;
  color: var(--agm-orange) !important;
  background: rgba(255,102,0,.08) !important;
}
.agm-footer a { color: #fff; text-decoration: none; }
.agm-footer a:hover { color: var(--agm-orange-2); text-decoration: none; }
.agm-footer__grid {
  display: grid;
  gap: 1.75rem;
  padding: 2.25rem 0 0;
}
@media (min-width: 720px) {
  .agm-footer__grid { grid-template-columns: 1.35fr 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1100px) {
  .agm-footer__grid { grid-template-columns: 1.4fr .9fr .9fr 1.15fr; gap: 1.75rem; }
}
.agm-footer__logo {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff !important;
  margin-bottom: .65rem;
}
.agm-footer__logo span { color: var(--agm-orange); }
.agm-footer__brand p {
  margin: 0 0 1rem;
  max-width: 28rem;
  line-height: 1.5;
  color: #bdbdbd;
}
.agm-footer__contacts {
  display: grid;
  gap: .45rem;
}
.agm-footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: #fff;
}
.agm-footer__contacts a:hover { color: var(--agm-orange); }
.agm-footer h3 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.agm-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.agm-footer ul a {
  color: #c8c8c8;
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.agm-footer ul a:hover {
  color: var(--agm-orange);
  transform: translateX(3px);
}
.agm-footer__aside {
  display: grid;
  gap: .85rem;
  align-content: start;
}
@media (min-width: 720px) and (max-width: 1099px) {
  .agm-footer__aside { grid-column: 1 / -1; max-width: 22rem; justify-self: end; }
}
@media (min-width: 1100px) {
  .agm-footer__aside { justify-items: end; text-align: right; }
}
.agm-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem .85rem;
}
@media (min-width: 1100px) {
  .agm-footer__social { justify-content: flex-end; }
}
.agm-footer__social-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.agm-footer__social-links {
  display: inline-flex;
  gap: .45rem;
}
.agm-footer__social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  color: #fff !important;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.agm-footer__social-links a:hover {
  background: var(--agm-orange);
  border-color: var(--agm-orange);
  color: #fff !important;
}
.agm-footer__assist {
  display: block;
  width: 100%;
  max-width: 22rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none !important;
  color: #fff !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
.agm-footer__assist:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,102,0,.22);
  color: #fff !important;
}
.agm-footer__assist-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: linear-gradient(105deg, #ff6600 0%, #d94a00 55%, #2a1810 100%);
  text-align: left;
}
.agm-footer__assist-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,0,0,.22);
  display: grid;
  place-items: center;
}
.agm-footer__assist-kicker {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}
.agm-footer__assist-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .02em;
  line-height: 1.2;
}
.agm-footer__assist-bot {
  display: grid;
  gap: .15rem;
  padding: .7rem 1rem;
  background: #0d0d0d;
  font-size: .78rem;
  color: #cfcfcf;
  text-align: left;
  line-height: 1.35;
}
.agm-footer__aside-links {
  display: grid;
  gap: .25rem;
}
@media (min-width: 1100px) {
  .agm-footer__aside-links { justify-items: end; }
}
.agm-footer__aside-links a {
  color: #fff;
  font-size: .95rem;
}
.agm-footer__aside-links a:hover { color: var(--agm-orange); }
.agm-footer__copy {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
}
.agm-footer__copy-note { color: #666; }
.agm-sticky__call {
  border-color: #fff !important;
  color: #fff !important;
  background: transparent !important;
}

/* Mobile sticky CTA */
.agm-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20,20,20,.96);
  border-top: 1px solid #333;
}
.agm-sticky .btn { width: 100%; min-height: 46px; font-size: .95rem; }
@media (min-width: 900px) {
  .agm-sticky { display: none; }
  body { padding-bottom: 0; }
  .agm-footer { padding-bottom: 2rem; }
}

/* Back to top (right) — chat widget stays left via data-position */
.agm-top {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--sticky-h) + 1rem + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--agm-orange);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.agm-top.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 900px) {
  .agm-top { bottom: 1.25rem; }
}

/* Chat AGM TEC : au-dessus du sticky mobile, pas sur le back-to-top */
body > button[aria-label*="catalogue cameras"],
body > button[aria-label*="Catalogue cameras"] {
  bottom: calc(var(--sticky-h) + .75rem + env(safe-area-inset-bottom, 0px)) !important;
  left: .75rem !important;
  right: auto !important;
  z-index: 40 !important;
}
body > div:has(> iframe[title*="Chatbot e-commerce"]) {
  bottom: calc(var(--sticky-h) + 4.75rem + env(safe-area-inset-bottom, 0px)) !important;
  left: .75rem !important;
  right: auto !important;
  z-index: 40 !important;
  max-height: calc(100vh - var(--sticky-h) - 6rem - env(safe-area-inset-bottom, 0px)) !important;
}
@media (min-width: 900px) {
  body > button[aria-label*="catalogue cameras"],
  body > button[aria-label*="Catalogue cameras"] {
    bottom: 1.25rem !important;
  }
  body > div:has(> iframe[title*="Chatbot e-commerce"]) {
    bottom: 5.5rem !important;
    max-height: 90vh !important;
  }
}

/* Cats on products page */
.agm-cat-block { margin-bottom: 2.5rem; }
.agm-cat-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--agm-orange);
}

/* FAQ accordion */
.agm-faq-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.agm-faq-head__kicker {
  margin: 0 0 .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-faq-head h1,
.agm-faq-head h2 {
  margin: 0 0 .6rem;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
}
.agm-faq-head p { margin: 0 0 .5rem; color: var(--agm-muted); }
.agm-faq-head__link {
  display: inline-block;
  margin-top: .25rem;
  font-weight: 700;
  color: var(--agm-orange);
}
.agm-faq {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.agm-faq__item {
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 12px;
  overflow: hidden;
}
.agm-faq__item[open] { border-color: var(--agm-orange); }
.agm-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  color: var(--agm-ink);
}
.agm-faq__item summary::-webkit-details-marker { display: none; }
.agm-faq__item summary span { text-align: left; }
.agm-faq__item summary i {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.agm-faq__item summary i::before,
.agm-faq__item summary i::after {
  content: "";
  position: absolute;
  background: var(--agm-orange);
  border-radius: 2px;
}
.agm-faq__item summary i::before {
  left: 20%; right: 20%;
  top: 50%; height: 2px;
  transform: translateY(-50%);
}
.agm-faq__item summary i::after {
  top: 20%; bottom: 20%;
  left: 50%; width: 2px;
  transform: translateX(-50%);
}
.agm-faq__item[open] summary i::after { display: none; }
.agm-faq__a {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid var(--agm-line);
  margin-top: 0;
  padding-top: .9rem;
  color: var(--agm-muted);
  font-size: .98rem;
  line-height: 1.55;
}
.agm-faq__a strong { color: var(--agm-ink); }
.agm-faq-foot {
  text-align: center;
  margin: 1.75rem 0 0;
  color: var(--agm-muted);
}
.agm-faq-home {
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

/* Comment louer page */
.agm-how {
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,102,0,.08), transparent 55%),
    var(--agm-white);
}
.agm-how__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}
.agm-how__kicker {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-how__head h1 {
  margin: 0 0 .6rem;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}
.agm-how__head > p {
  margin: 0 0 1.25rem;
  color: var(--agm-muted);
}
.agm-how__actions { justify-content: center; }
.agm-how__steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}
.agm-how__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.agm-how__step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,102,0,.4);
  box-shadow: 0 14px 28px rgba(255,102,0,.1);
}
.agm-how__badge {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff4eb, #ffe0c7);
  color: var(--agm-orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}
.agm-how__step:hover .agm-how__badge {
  background: linear-gradient(145deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff;
}
.agm-how__num {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--agm-ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--display);
}
.agm-how__step:hover .agm-how__num { background: #fff; color: var(--agm-orange); }
.agm-how__body h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}
.agm-how__intro {
  margin: 0 0 .75rem;
  color: var(--agm-muted);
  font-size: .98rem;
}
.agm-how__detail {
  font-size: .95rem;
  color: var(--agm-ink);
  line-height: 1.55;
}
.agm-how__detail p { margin: 0 0 .65rem; }
.agm-how__detail ul {
  margin: 0 0 .75rem;
  padding-left: 1.15rem;
  color: var(--agm-muted);
}
.agm-how__detail li { margin-bottom: .4rem; }
.agm-how__detail li strong { color: var(--agm-ink); }
.agm-how__foot {
  text-align: center;
  margin: 2rem auto 0;
  max-width: 36rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.agm-how__foot p { margin: 0; color: var(--agm-muted); }
@media (max-width: 560px) {
  .agm-how__step {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

/* Videos / comparatif page */
.agm-videos {
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 40% at 50% -5%, rgba(255,102,0,.07), transparent 50%),
    var(--agm-bg);
}
.agm-videos__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}
.agm-videos__kicker {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-videos__head h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}
.agm-videos__head > p {
  margin: 0 0 1.15rem;
  color: var(--agm-muted);
}
.agm-videos__actions { justify-content: center; }
.agm-videos__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 1.75rem;
}
.agm-videos__chip {
  appearance: none;
  border: 1px solid var(--agm-line);
  background: var(--agm-white);
  color: var(--agm-ink);
  border-radius: 999px;
  min-height: 40px;
  padding: .4rem 1rem;
  font: inherit;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.agm-videos__chip:hover { transform: translateY(-2px); border-color: var(--agm-orange); color: var(--agm-orange); }
.agm-videos__chip.is-active {
  background: var(--agm-orange);
  border-color: var(--agm-orange);
  color: #fff;
}
.agm-videos__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .agm-videos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .agm-videos__grid { grid-template-columns: repeat(3, 1fr); }
}
.agm-video-card {
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.agm-video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,102,0,.4);
  box-shadow: 0 16px 32px rgba(255,102,0,.12);
}
.agm-video-card.is-hidden { display: none; }
.agm-video-card__media {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.agm-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.agm-video-card:hover .agm-video-card__media img { transform: scale(1.04); }
.agm-video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,102,0,.92);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  padding-left: 3px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.agm-video-card__media:hover .agm-video-card__play { transform: scale(1.08); }
.agm-video-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: .35rem;
  flex: 1;
}
.agm-video-card__body h2 {
  margin: 0;
  font-size: 1.05rem;
}
.agm-video-card__sub {
  margin: 0;
  color: var(--agm-muted);
  font-size: .9rem;
}
.agm-video-card__specs {
  list-style: none;
  margin: .35rem 0 0;
  padding: 0;
  display: grid;
  gap: .25rem;
  font-size: .88rem;
  color: var(--agm-muted);
}
.agm-video-card__specs strong { color: var(--agm-ink); margin-right: .25rem; }
.agm-video-card__cta {
  margin-top: .55rem;
  font-weight: 700;
  color: var(--agm-orange);
  text-decoration: none;
}
.agm-video-card__cta:hover { text-decoration: underline; }

.agm-yt-modal {
  border: 0;
  padding: 0;
  max-width: min(960px, calc(100vw - 1.25rem));
  width: 100%;
  background: transparent;
}
.agm-yt-modal::backdrop {
  background: rgba(10,8,6,.8);
  backdrop-filter: blur(3px);
}
.agm-yt-modal__panel {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,102,0,.35);
}
.agm-yt-modal__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.agm-yt-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.agm-yt-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Conditions de location */
.agm-legal {
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 40% at 10% -5%, rgba(255,102,0,.06), transparent 45%),
    var(--agm-bg);
}
.agm-legal__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.agm-legal__kicker {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--agm-muted);
}
.agm-legal__head h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}
.agm-legal__head > p {
  margin: 0 0 1.15rem;
  color: var(--agm-muted);
}
.agm-legal__actions { justify-content: center; }
.agm-legal__list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.agm-legal__item {
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.agm-legal__item[open] {
  border-color: var(--agm-orange);
  box-shadow: 0 10px 24px rgba(255,102,0,.08);
}
.agm-legal__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
}
.agm-legal__item summary::-webkit-details-marker { display: none; }
.agm-legal__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff4eb, #ffe0c7);
  color: var(--agm-orange);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
}
.agm-legal__item[open] .agm-legal__num {
  background: linear-gradient(145deg, var(--agm-orange-2), var(--agm-orange));
  color: #fff;
}
.agm-legal__title {
  flex: 1;
  text-align: left;
  font-size: clamp(.95rem, 2.2vw, 1.05rem);
  line-height: 1.3;
}
.agm-legal__item summary i {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  position: relative;
}
.agm-legal__item summary i::before,
.agm-legal__item summary i::after {
  content: "";
  position: absolute;
  background: var(--agm-orange);
  border-radius: 2px;
}
.agm-legal__item summary i::before {
  left: 15%; right: 15%;
  top: 50%; height: 2px;
  transform: translateY(-50%);
}
.agm-legal__item summary i::after {
  top: 15%; bottom: 15%;
  left: 50%; width: 2px;
  transform: translateX(-50%);
}
.agm-legal__item[open] summary i::after { display: none; }
.agm-legal__body {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid var(--agm-line);
  margin-top: 0;
  padding-top: .95rem;
  color: var(--agm-muted);
  font-size: .98rem;
  line-height: 1.6;
  max-width: none;
}
.agm-legal__body p { margin: 0 0 .75rem; }
.agm-legal__body ul {
  margin: 0 0 .5rem;
  padding-left: 1.15rem;
}
.agm-legal__body li { margin-bottom: .45rem; }
.agm-legal__body a { font-weight: 600; }
.agm-legal__foot {
  text-align: center;
  margin: 2rem auto 0;
  max-width: 36rem;
}
.agm-legal__foot p {
  margin: 0 0 1rem;
  color: var(--agm-muted);
}
.agm-legal__fallback {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--agm-white);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--agm-line);
}

/* Actualités above footer */
.agm-news {
  background: var(--agm-white);
  padding: clamp(2.25rem, 6vw, 3.5rem) 0;
  border-top: 1px solid var(--agm-line);
}
.agm-news__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.agm-news__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-block;
  padding-bottom: .55rem;
  border-bottom: 3px solid var(--agm-orange);
}
.agm-news__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .agm-news__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.agm-news__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--agm-white);
  border: 1px solid var(--agm-line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (min-width: 560px) {
  .agm-news__card {
    grid-template-columns: .95fr 1.05fr;
    align-items: stretch;
  }
}
.agm-news__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,102,0,.4);
  box-shadow: 0 14px 28px rgba(255,102,0,.1);
}
.agm-news__media {
  display: block;
  background: #111;
  min-height: 180px;
  overflow: hidden;
}
.agm-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.agm-news__card:hover .agm-news__media img { transform: scale(1.04); }
.agm-news__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.agm-news__date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--agm-muted);
  text-transform: uppercase;
}
.agm-news__title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.3;
}
.agm-news__title a {
  color: var(--agm-ink);
  text-decoration: none;
}
.agm-news__title a:hover { color: var(--agm-orange); }
.agm-news__btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  background: var(--agm-orange);
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.agm-news__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 18px rgba(255,102,0,.3);
}
.agm-news__more {
  text-align: center;
  margin: 1.5rem 0 0;
}
.agm-news__more a {
  font-weight: 700;
  color: var(--agm-orange);
  text-decoration: none;
}
.agm-news__more a:hover { text-decoration: underline; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .agm-pillar, .agm-pillar__ico { transition: none; }
  .btn:hover, .agm-pillar:hover { transform: none; }
}