/* AmendeClair — thème « Sauge & Terracotta » (identité visuelle unique) */

@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,500;0,7..72,700;0,7..72,800;1,7..72,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --ac-teal: #1B5658;
  --ac-teal-deep: #0F3D3E;
  --ac-teal-soft: #E4F0F0;
  --ac-coral: #C65D3B;
  --ac-coral-light: #F0D5CB;
  --ac-sage: #6B8F71;
  --ac-sage-light: #D8E8DA;
  --ac-cream: #FBF8F2;
  --ac-cream-dark: #EDE6DA;
  --ac-ink: #14201F;
  --ac-muted: #5E726F;
  --ac-line: #D4CFC4;

  --ac-radius: 12px;
  --ac-radius-lg: 20px;
  --ac-radius-sm: 8px;

  --ac-shadow: 0 8px 32px rgba(15, 61, 62, .08);
  --ac-shadow-lg: 0 20px 50px rgba(15, 61, 62, .14);

  --ac-wrap: 1160px;
  --ac-gutter: clamp(18px, 4vw, 36px);
  --ac-pad-y: clamp(52px, 7vw, 88px);

  --ac-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ac-serif: 'Literata', Georgia, serif;
  --ac-ring: 0 0 0 3px rgba(198, 93, 59, .22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ac-font);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ac-ink);
  background: var(--ac-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--ac-serif);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 700;
  color: var(--ac-ink);
}

.ac-wrap {
  width: min(100% - var(--ac-gutter) * 2, var(--ac-wrap));
  margin-inline: auto;
}

.ac-shell { min-height: 100%; }

/* Баннер соответствия — на всю ширину, компактнее по высоте */
.ac-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 4px var(--ac-gutter);
  background: transparent;
  border-bottom: 1px solid var(--ac-line);
  font-size: .74rem;
  font-weight: 500;
  color: var(--ac-muted);
  line-height: 1.35;
  text-align: center;
}

.ac-banner p {
  margin: 0;
}

.ac-banner__ic {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--ac-sage);
  opacity: .85;
}

.ac-banner strong {
  font-weight: 600;
  color: var(--ac-teal);
}

/* Шапка */
.ac-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ac-line);
}

.ac-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.ac-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.ac-logo__sigil {
  width: 38px;
  height: 38px;
  border-radius: var(--ac-radius-sm);
  background: linear-gradient(145deg, var(--ac-teal), var(--ac-teal-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--ac-serif);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}

.ac-navdock {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: var(--ac-cream-dark);
  border-radius: var(--ac-radius);
  border: 1px solid var(--ac-line);
}

.ac-navdock a {
  padding: 8px 14px;
  border-radius: var(--ac-radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ac-muted);
  transition: background .2s, color .2s;
}

.ac-navdock a:hover,
.ac-navdock a.is-active {
  background: #fff;
  color: var(--ac-teal-deep);
  box-shadow: var(--ac-shadow);
}

.ac-header__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ac-teal);
  padding: 8px 0;
  transition: color .2s;
}

.ac-header__mail:hover { color: var(--ac-coral); }
.ac-header__mail svg { width: 18px; height: 18px; }

.ac-menubtn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.ac-menubtn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ac-teal-deep);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.ac-menubtn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ac-menubtn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ac-menubtn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Кнопки */
.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--ac-radius-sm);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, background .22s, color .22s, border-color .22s;
  white-space: nowrap;
}

.ac-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.ac-btn--coral {
  background: var(--ac-coral);
  color: #fff;
  box-shadow: 0 6px 20px rgba(198, 93, 59, .32);
}

.ac-btn--coral:hover {
  background: #A84E30;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 93, 59, .4);
}

.ac-btn--teal {
  background: var(--ac-teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(27, 86, 88, .28);
}

.ac-btn--teal:hover {
  background: var(--ac-teal-deep);
  transform: translateY(-2px);
}

.ac-btn--ghost {
  background: transparent;
  color: var(--ac-teal-deep);
  border-color: var(--ac-teal);
}

.ac-btn--ghost:hover {
  background: var(--ac-teal-soft);
  transform: translateY(-2px);
}

.ac-btn--light {
  background: #fff;
  color: var(--ac-teal-deep);
  border-color: rgba(255,255,255,.5);
}

.ac-btn--light:hover { background: var(--ac-cream); }

.ac-btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero */
.ac-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(107, 143, 113, .12), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(198, 93, 59, .1), transparent),
    var(--ac-cream);
}

.ac-hero__layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 420px);
  gap: clamp(32px, 4vw, 52px);
  align-items: center;
}

.ac-hero__copy { min-width: 0; }

.ac-hero__visual { position: relative; }

/* CSS-сцена вместо внешнего изображения */
.ac-hero__scene {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--ac-radius-lg);
  background: linear-gradient(155deg, #fff 0%, var(--ac-teal-soft) 100%);
  border: 1px solid var(--ac-line);
  box-shadow: var(--ac-shadow-lg);
  overflow: hidden;
}

.ac-hero__scene::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(198, 93, 59, .12);
}

.ac-scene__panel {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
}

.ac-scene__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ac-scene__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ac-coral);
}

.ac-scene__title {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ac-teal);
}

.ac-scene__line {
  height: 10px;
  border-radius: 6px;
  background: var(--ac-cream-dark);
  margin-bottom: 10px;
}

.ac-scene__line--long { width: 92%; }
.ac-scene__line--mid { width: 68%; background: var(--ac-sage-light); }
.ac-scene__line--short { width: 44%; }

.ac-scene__amount {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0 14px;
  padding: 12px 14px;
  border-radius: var(--ac-radius-sm);
  background: var(--ac-teal-soft);
}

.ac-scene__amount span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ac-muted);
}

.ac-scene__amount strong {
  font-family: var(--ac-serif);
  font-size: 1.35rem;
  color: var(--ac-teal-deep);
}

.ac-scene__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--ac-radius-sm);
  background: linear-gradient(135deg, var(--ac-teal), var(--ac-teal-deep));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}

.ac-scene__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.ac-scene__step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--ac-radius-sm);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--ac-line);
  font-size: .74rem;
  font-weight: 700;
  color: var(--ac-muted);
}

.ac-scene__step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .68rem;
  background: var(--ac-cream-dark);
  color: var(--ac-teal);
  flex-shrink: 0;
}

.ac-scene__step--done .ac-scene__step-num {
  background: var(--ac-sage);
  color: #fff;
}

.ac-scene__step--active {
  border-color: var(--ac-coral);
  color: var(--ac-teal-deep);
  background: #fff;
}

.ac-scene__step--active .ac-scene__step-num {
  background: var(--ac-coral);
  color: #fff;
}

.ac-hero__chip {
  position: absolute;
  bottom: -16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow-lg);
  border: 1px solid var(--ac-line);
  max-width: calc(100% - 40px);
}

.ac-hero__chip-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ac-sage-light);
  display: grid;
  place-items: center;
  color: var(--ac-sage);
  flex-shrink: 0;
}

.ac-hero__chip strong { display: block; font-size: .92rem; }
.ac-hero__chip span { font-size: .8rem; color: var(--ac-muted); }

.ac-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ac-teal-soft);
  color: var(--ac-teal);
  border-radius: var(--ac-radius-sm);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ac-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  margin: 0 0 18px;
}

.ac-hero h1 em {
  font-style: italic;
  color: var(--ac-coral);
}

.ac-hero__lead {
  font-size: 1.06rem;
  color: var(--ac-muted);
  margin: 0 0 14px;
  max-width: 58ch;
}

.ac-hero__note {
  font-size: .9rem;
  color: var(--ac-muted);
  margin: 0 0 26px;
  padding-left: 14px;
  border-left: 3px solid var(--ac-sage);
}

.ac-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--ac-line);
}

.ac-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius-sm);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ac-teal-deep);
}

.ac-trustbar__item svg { width: 16px; height: 16px; color: var(--ac-sage); }

/* Секции */
.ac-block { padding: var(--ac-pad-y) 0; }
.ac-block--ivory { background: #fff; }
.ac-block--sage { background: var(--ac-sage-light); }
.ac-block--teal { background: var(--ac-teal-deep); color: #E8F2F2; }
.ac-block--teal h2, .ac-block--teal h3 { color: #fff; }
.ac-block--teal p { color: #A8C4C4; }

.ac-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.ac-head--center {
  text-align: center;
  margin-inline: auto;
}

.ac-head__tag {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ac-coral);
  margin-bottom: 12px;
}

.ac-block--teal .ac-head__tag { color: var(--ac-coral-light); }

.ac-head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin: 0 0 14px;
}

.ac-head p { color: var(--ac-muted); margin: 0; font-size: 1.03rem; }
.ac-block--teal .ac-head p { color: #A8C4C4; }

/* Bento-сетка преимуществ — по центру, широкие колонки */
.ac-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.ac-bento__cell {
  padding: clamp(22px, 3vw, 30px) clamp(24px, 3.5vw, 34px);
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius-lg);
  transition: transform .25s, box-shadow .25s;
  min-height: 148px;
}

.ac-bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--ac-shadow);
}

.ac-bento__cell--wide { background: var(--ac-teal-soft); }

.ac-bento__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ac-radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--ac-sage-light);
  color: var(--ac-teal-deep);
}

.ac-bento__cell--wide .ac-bento__icon { background: rgba(255,255,255,.7); }

.ac-bento__cell h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-family: var(--ac-font);
  font-weight: 800;
}

.ac-bento__cell p { margin: 0; color: var(--ac-muted); font-size: .94rem; }

/* Intro-блок для страницы «Notre mission» */
.ac-mission-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, .8fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.ac-intro-banner {
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(145deg, var(--ac-teal-soft) 0%, #fff 55%);
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius-lg);
  box-shadow: var(--ac-shadow);
}

.ac-intro-banner h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 14px;
}

.ac-intro-banner p {
  margin: 0 0 12px;
  color: var(--ac-muted);
}

.ac-mission-pillars {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ac-mission-pillars .ac-svccard {
  height: 100%;
}

/* Горизонтальная временная шкала */
.ac-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.ac-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ac-sage) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.ac-timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.ac-timeline__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--ac-teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--ac-serif);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px var(--ac-sage-light);
}

.ac-timeline__step h3 {
  font-size: 1rem;
  font-family: var(--ac-font);
  font-weight: 800;
  margin: 0 0 8px;
}

.ac-timeline__step p {
  margin: 0;
  font-size: .88rem;
  color: var(--ac-muted);
}

/* FAQ — сетка карточек */
.ac-qgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ac-qcard {
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  overflow: hidden;
}

.ac-qcard__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ac-ink);
  line-height: 1.45;
}

.ac-qcard__btn:hover { background: var(--ac-cream); }

.ac-qcard__sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ac-coral-light);
  color: var(--ac-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  padding: 0;
  transition: background .2s, color .2s;
  user-select: none;
}

.ac-qcard__sign::after {
  content: '+';
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.ac-qcard.is-open .ac-qcard__sign::after {
  content: '−';
}

.ac-qcard.is-open .ac-qcard__sign {
  background: var(--ac-coral);
  color: #fff;
}

.ac-qcard__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.ac-qcard__inner {
  padding: 0 20px 18px 60px;
  color: var(--ac-muted);
  font-size: .92rem;
}

.ac-qcard__inner a { color: var(--ac-teal); text-decoration: underline; }

/* Отзывы — горизонтальная прокрутка */
.ac-voices {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.ac-voices::-webkit-scrollbar { height: 6px; }
.ac-voices::-webkit-scrollbar-thumb { background: var(--ac-line); border-radius: 3px; }

.ac-voice {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  padding: 28px;
  background: #fff;
  border-radius: var(--ac-radius-lg);
  border: 1px solid var(--ac-line);
  position: relative;
}

.ac-voice::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--ac-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--ac-coral-light);
}

.ac-voice__stars {
  color: var(--ac-coral);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ac-voice p {
  margin: 0 0 20px;
  font-size: .96rem;
  color: var(--ac-muted);
  position: relative;
  z-index: 1;
}

.ac-voice__who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ac-voice__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ac-sage-light);
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.ac-voice__avatar--sage { background: var(--ac-sage-light); color: var(--ac-teal-deep); }
.ac-voice__avatar--coral { background: var(--ac-coral-light); color: #7A3D28; }
.ac-voice__avatar--teal { background: var(--ac-teal-soft); color: var(--ac-teal); }

.ac-voice__who strong { display: block; font-size: .92rem; }
.ac-voice__who span { font-size: .8rem; color: var(--ac-muted); }

/* Контакт */
.ac-contact {
  display: grid;
  gap: 32px;
}

.ac-formbox {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ac-radius-lg);
  padding: clamp(24px, 4vw, 36px);
}

.ac-formbox h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.ac-formbox__sub {
  color: #A8C4C4;
  margin: 0 0 22px;
  font-size: .92rem;
}

.ac-fields {
  display: grid;
  gap: 16px;
}

.ac-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #C8DEDE;
  margin-bottom: 6px;
}

.ac-field input,
.ac-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--ac-radius-sm);
  background: rgba(0,0,0,.15);
  color: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.ac-field input::placeholder,
.ac-field textarea::placeholder { color: rgba(255,255,255,.35); }

.ac-field input:focus,
.ac-field textarea:focus {
  outline: none;
  border-color: var(--ac-coral);
  box-shadow: var(--ac-ring);
}

.ac-field textarea { min-height: 120px; resize: vertical; }

.ac-fine {
  margin: 14px 0 0;
  font-size: .78rem;
  color: #8AA8A8;
}

.ac-formok {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.ac-formok.is-visible { display: block; }
.ac-formbox form.is-hidden { display: none; }

.ac-formok__ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ac-sage);
  display: grid;
  place-items: center;
  color: #fff;
}

.ac-formok h3 { color: #fff; margin: 0 0 8px; }
.ac-formok p { color: #A8C4C4; margin: 0; }

.ac-infotiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ac-infotile {
  padding: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--ac-radius);
  text-align: center;
}

.ac-infotile svg {
  width: 24px;
  height: 24px;
  margin: 0 auto 10px;
  color: var(--ac-coral-light);
}

.ac-infotile strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 4px; }
.ac-infotile span, .ac-infotile a { font-size: .84rem; color: #A8C4C4; }
.ac-infotile a:hover { color: #fff; }

/* Подвал */
.ac-footer {
  background: var(--ac-teal-deep);
  color: #A8C4C4;
  padding: clamp(40px, 6vw, 64px) 0 28px;
  border-top: 4px solid var(--ac-coral);
}

.ac-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.ac-footer__brand p {
  margin: 14px 0 0;
  font-size: .9rem;
  max-width: 28ch;
}

.ac-footer__col h4 {
  color: #fff;
  font-family: var(--ac-font);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.ac-footer__col a {
  display: block;
  padding: 5px 0;
  font-size: .88rem;
  transition: color .2s;
}

.ac-footer__col a:hover { color: #fff; }

.ac-footer__base {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.ac-footer__disc {
  flex: 1;
  min-width: 240px;
  font-size: .8rem;
  line-height: 1.6;
  max-width: 720px;
}

.ac-footer__disc strong { color: var(--ac-coral-light); }
.ac-footer__copy { font-size: .82rem; white-space: nowrap; }

.ac-footer .ac-logo__sigil { box-shadow: none; }

/* Cookie-карточка */
.ac-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  max-width: min(380px, calc(100vw - 40px));
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--ac-radius-lg);
  box-shadow: var(--ac-shadow-lg);
  border: 1px solid var(--ac-line);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

.ac-cookie.is-ready {
  transform: translateY(0);
  opacity: 1;
}

.ac-cookie.is-dismissed { display: none; }

.ac-cookie p {
  margin: 0 0 14px;
  font-size: .86rem;
  color: var(--ac-muted);
  line-height: 1.55;
}

.ac-cookie a { color: var(--ac-teal); text-decoration: underline; }

.ac-cookie__acts {
  display: flex;
  gap: 10px;
}

.ac-cookie__acts .ac-btn { flex: 1; padding: 10px 16px; font-size: .86rem; }

/* Внутренние страницы */
.ac-pagehero {
  padding: clamp(36px, 5vw, 56px) 0 clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, var(--ac-teal-soft) 0%, var(--ac-cream) 100%);
  border-bottom: 1px solid var(--ac-line);
}

.ac-pagehero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin: 0 0 10px;
}

.ac-pagehero__meta {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ac-muted);
}

.ac-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) 0 var(--ac-pad-y);
}

.ac-prose h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  font-family: var(--ac-font);
  font-weight: 800;
}

.ac-prose p, .ac-prose li { color: var(--ac-muted); }
.ac-prose a { color: var(--ac-teal); text-decoration: underline; }

.ac-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .9rem;
}

.ac-prose th, .ac-prose td {
  padding: 12px 14px;
  border: 1px solid var(--ac-line);
  text-align: left;
}

.ac-prose th { background: var(--ac-teal-soft); color: var(--ac-teal-deep); }

/* CTA-полоса */
.ac-cta {
  padding: clamp(28px, 4vw, 40px);
  background: var(--ac-teal);
  border-radius: var(--ac-radius-lg);
  text-align: center;
  color: #fff;
}

.ac-cta h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin: 0 0 10px;
}

.ac-cta p {
  color: #C8DEDE;
  margin: 0 0 22px;
  max-width: 52ch;
  margin-inline: auto;
}

/* Статистика */
.ac-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ac-metric {
  text-align: center;
  padding: 22px 14px;
  background: #fff;
  border-radius: var(--ac-radius);
  border: 1px solid var(--ac-line);
}

.ac-metric strong {
  display: block;
  font-family: var(--ac-serif);
  font-size: 1.5rem;
  color: var(--ac-teal);
  margin-bottom: 4px;
}

.ac-metric span { font-size: .82rem; color: var(--ac-muted); }

/* Сетка услуг */
.ac-svcgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ac-svccard {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius-lg);
  transition: transform .22s, box-shadow .22s;
}

.ac-svccard:hover {
  transform: translateY(-3px);
  box-shadow: var(--ac-shadow);
}

.ac-svccard__ic {
  width: 44px;
  height: 44px;
  border-radius: var(--ac-radius-sm);
  background: var(--ac-coral-light);
  color: var(--ac-coral);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.ac-svccard h3 {
  font-size: 1.05rem;
  font-family: var(--ac-font);
  font-weight: 800;
  margin: 0 0 8px;
}

.ac-svccard p { margin: 0; font-size: .9rem; color: var(--ac-muted); }

/* Reveal */
[data-ac-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-ac-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Адаптив */
@media (max-width: 1024px) {
  .ac-bento { max-width: 100%; }
  .ac-mission-grid { grid-template-columns: 1fr; }
  .ac-timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ac-timeline::before { display: none; }
  .ac-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .ac-metrics { grid-template-columns: repeat(2, 1fr); }
  .ac-svcgrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ac-header__row { grid-template-columns: 1fr auto; }
  .ac-navdock {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px var(--ac-gutter);
    background: var(--ac-cream);
    border: none;
    border-bottom: 1px solid var(--ac-line);
    border-radius: 0;
    box-shadow: var(--ac-shadow);
  }
  .ac-navdock.is-open { display: flex; }
  .ac-navdock a { width: 100%; padding: 12px 16px; }
  .ac-header__mail { display: none; }
  .ac-menubtn { display: inline-flex; }
  .ac-header { position: sticky; }

  .ac-hero__layout { grid-template-columns: 1fr; }
  .ac-bento { grid-template-columns: 1fr; }
  .ac-scene__steps { grid-template-columns: 1fr; }
  .ac-timeline { grid-template-columns: 1fr; }
  .ac-timeline__step { text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
  .ac-timeline__dot { margin: 0; width: 48px; height: 48px; font-size: 1.1rem; }
  .ac-qgrid { grid-template-columns: 1fr; }
  .ac-infotiles { grid-template-columns: 1fr; }
  .ac-footer__grid { grid-template-columns: 1fr; }
  .ac-svcgrid { grid-template-columns: 1fr; }
  .ac-hero__chip { position: static; margin-top: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-ac-reveal] { opacity: 1; transform: none; transition: none; }
  .ac-btn, .ac-bento__cell, .ac-svccard { transition: none; }
}
