@charset "UTF-8";

:root {
  --black: #222d32;
  --blue-60: #48a4a4;
  --blue-70: #439696;
  --blue-80: #3f8b8b;
  --blue-90: #357878;
  --basic-90: #0d3e5e;
  --basic-70: #1368a1;
  --basic-15: #daeaf5;
  --basic-20: #c9e3f5;
  --gray-bg: #f2f5fa;
  --gray-10: #f2f5fa;
  --gray-15: #e1e7f0;
  --gray-20: #d8dfeb;
  --gray-25: #cad3e0;
  --gray-30: #bac5d6;
  --gray-50: #8692a3;
  --gray-70: #5c6573;
  --gray-80: #49515c;
  --purple-40: #836dc1;
  --purple-logo: #775aeb;
  --pink-logo: #e041bd;
  --teal-logo: #097b95;
  --white: #fff;
  --gradient: linear-gradient(90deg, #47a5a3 0%, #5865a7 71.18%, #6f49ab 107.6%);
  --gradient-diag: linear-gradient(135deg, #47a5a3 0%, #5865a7 52%, #6f49ab 100%);
  --shadow: 0 0 30px 0 rgba(24, 0, 92, 0.08);
  --shadow-lg: 0 18px 50px rgba(24, 0, 92, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scoped to landing content so site header/footer stay untouched */
.sm-page,
.sm-page *,
.sm-page *::before,
.sm-page *::after {
  box-sizing: border-box;
}

html.sm-landing-scroll {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body.sm-landing-page {
  background: var(--gray-bg);
}

.sm-page {
  min-height: 40vh;
  background: var(--gray-bg);
  color: var(--black);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

.sm-page a {
  color: inherit;
  text-decoration: none;
}

.sm-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sm-page button,
.sm-page input,
.sm-page select,
.sm-page textarea {
  font-family: inherit;
}

.sm-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .sm-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— HEADER ——— */
.sm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.sm-header.is-scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--gray-15);
}

.sm-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.sm-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sm-logo img {
  width: 148px;
  height: auto;
}

.sm-nav {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.sm-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-80);
  transition: background-color 200ms ease, color 200ms ease;
}

.sm-nav a:hover,
.sm-nav a:focus-visible {
  background: var(--basic-15);
  color: var(--blue-90);
}

.sm-audience {
  display: none;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: var(--gray-10);
  border: 1px solid var(--gray-20);
}

.sm-audience a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-70);
  white-space: nowrap;
}

.sm-audience a.is-active {
  background: var(--white);
  color: var(--blue-90);
  box-shadow: 0 4px 14px rgba(24, 0, 92, 0.1);
}

.sm-header__cta {
  display: none;
  margin-left: 8px;
}

.sm-burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--gray-10);
  color: var(--blue-90);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@media (min-width: 1280px) {
  .sm-nav,
  .sm-audience,
  .sm-header__cta {
    display: flex;
  }

  .sm-burger {
    display: none;
  }

  .sm-nav {
    margin-left: 16px;
    margin-right: auto;
  }

  .sm-nav a {
    font-size: 15px;
    padding: 8px 10px;
  }

  .sm-header__cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 16px;
  }
}

.sm-drawer {
  display: none;
  padding: 8px 16px 20px;
  border-top: 1px solid var(--gray-15);
}

.sm-drawer.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sm-drawer a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-10);
  font-weight: 600;
}

.sm-drawer .sm-audience {
  display: flex;
  width: fit-content;
}

@media (min-width: 1280px) {
  .sm-drawer {
    display: none !important;
  }
}

/* ——— BUTTONS ——— */
.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue-80);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 240ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.sm-page a.sm-btn {
  color: var(--white);
}

.sm-btn:hover,
.sm-btn:focus-visible,
.sm-page a.sm-btn:hover,
.sm-page a.sm-btn:focus-visible {
  background: var(--blue-90);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(63, 139, 139, 0.28);
}

.sm-btn--ghost {
  background: transparent;
  color: var(--blue-80);
  border: 1px solid var(--blue-80);
}

.sm-page a.sm-btn--ghost {
  color: var(--blue-80);
}

.sm-btn--ghost:hover,
.sm-btn--ghost:focus-visible,
.sm-page a.sm-btn--ghost:hover,
.sm-page a.sm-btn--ghost:focus-visible {
  background: var(--basic-15);
  color: var(--blue-80);
  box-shadow: none;
  transform: none;
}

.sm-page a.sm-btn--light {
  background: var(--white);
  color: var(--blue-90);
}

.sm-page a.sm-btn--light:hover,
.sm-page a.sm-btn--light:focus-visible {
  background: var(--white);
  color: var(--blue-90);
  box-shadow: 0 10px 22px rgba(13, 62, 94, 0.18);
}

/* ——— HERO ——— */
.sm-hero {
  position: relative;
  padding: 10px 0 6px;
  overflow: hidden;
}

.sm-hero__glow {
  pointer-events: none;
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
}

.sm-hero__glow--a {
  top: -180px;
  right: -80px;
  background: #47a5a3;
}

.sm-hero__glow--b {
  bottom: -220px;
  left: -120px;
  background: #6f49ab;
}

.sm-hero__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-radius: var(--radius);
  padding: 28px 18px 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sm-hero__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: var(--gradient);
}

@media (min-width: 768px) {
  .sm-hero__card {
    padding: 40px 36px 36px;
    gap: 36px;
  }
}

@media (min-width: 1100px) {
  .sm-hero__card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    padding: 48px 48px 44px;
    gap: 40px;
  }

  .sm-hero__card--stack {
    grid-template-columns: 1fr;
    padding: 18px 28px 14px;
    gap: 10px;
  }
}

.sm-hero__card--stack {
  gap: 12px;
  padding: 18px 16px 14px;
}

.sm-hero__card--stack .sm-hero__copy {
  gap: 10px;
}

.sm-hero__card--stack .sm-kicker {
  padding: 5px 12px;
  font-size: 13px;
}

.sm-hero__card--stack .sm-title {
  font-size: 28px;
}

.sm-hero__card--stack .sm-lead {
  font-size: 16px;
  line-height: 1.4;
}

.sm-hero__card--stack .sm-trust {
  gap: 8px;
}

.sm-hero__card--stack .sm-trust__item {
  padding: 8px 10px;
  gap: 2px;
}

.sm-hero__card--stack .sm-trust__value {
  font-size: 18px;
}

.sm-hero__card--stack .sm-trust__label {
  font-size: 13px;
}

.sm-hero__card--stack .sm-btn {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 16px;
}

.sm-hero__card--stack .sm-hero__note {
  margin-top: 0;
  padding: 8px 12px;
  font-size: 14px;
  gap: 8px;
}

.sm-hero__card--stack .sm-slot--hero {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-hero__card--stack .sm-slot--hero img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .sm-hero__card--stack {
    padding: 20px 28px 14px;
    gap: 10px;
  }

  .sm-hero__card--stack .sm-title {
    font-size: 36px;
  }
}

@media (min-width: 1100px) {
  .sm-hero__card--stack .sm-title {
    font-size: 40px;
  }

  .sm-hero__card--stack .sm-slot--hero img {
    max-height: min(520px, calc(100svh - 340px));
  }
}

.sm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--basic-15);
  color: var(--blue-90);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sm-kicker i {
  color: var(--blue-80);
}

.sm-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

.sm-title span {
  color: var(--purple-40);
  background: linear-gradient(90deg, #5865a7, #6f49ab);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .sm-title {
    font-size: 44px;
  }
}

@media (min-width: 1100px) {
  .sm-title {
    font-size: 52px;
  }
}

.sm-title--section {
  font-size: 28px;
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  .sm-title--section {
    font-size: 34px;
  }
}

.sm-lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--gray-80);
}

.sm-lead a {
  color: var(--blue-80);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sm-lead a:hover,
.sm-lead a:focus-visible {
  color: var(--blue-90);
}

.sm-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sm-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 720px) {
  .sm-trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sm-trust__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-10);
}

.sm-trust__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple-40);
  line-height: 1.15;
}

.sm-trust__value--sm {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.sm-trust__label {
  font-size: 15px;
  color: var(--gray-70);
  line-height: 1.3;
}

.sm-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sm-slot--hero {
  min-height: 280px;
  flex: 1;
}

.sm-qr {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fbff 0%, #eef3fb 100%);
  border: 1px solid var(--gray-15);
}

.sm-qr canvas,
.sm-qr img {
  width: 168px;
  height: 168px;
  min-width: 168px;
  border-radius: 10px;
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow);
}

.sm-qr__text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.sm-qr__text p {
  font-size: 15px;
  color: var(--gray-70);
  margin: 0;
}

.sm-hero__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--gray-10);
  font-size: 16px;
}

.sm-hero__note i {
  color: var(--blue-80);
  margin-top: 3px;
}

/* ——— SECTIONS ——— */
.sm-section {
  padding: 36px 0;
}

@media (min-width: 768px) {
  .sm-section {
    padding: 52px 0;
  }
}

.sm-section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 820px;
}

.sm-section__head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

/* ——— BENEFITS ——— */
.sm-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .sm-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .sm-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sm-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 0 0 1px transparent;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
  min-height: 100%;
  overflow: hidden;
}

.sm-benefit::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.sm-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sm-benefit:hover::after {
  transform: scaleX(1);
}

.sm-benefit__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--basic-15);
  color: var(--blue-80);
  font-size: 22px;
}

.sm-benefit b {
  font-size: 18px;
  line-height: 1.25;
}

.sm-benefit p {
  font-size: 16px;
  color: var(--gray-80);
  line-height: 1.45;
}

/* ——— WHY / SPLIT ——— */
.sm-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .sm-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }
}

.sm-split .sm-slot:has(> img) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.sm-split .sm-slot:has(> img) img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.sm-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .sm-panel {
    padding: 36px;
  }
}

.sm-panel p + p {
  margin-top: 8px;
}

.sm-quote {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--basic-15);
  border-left: 4px solid var(--blue-80);
  font-weight: 600;
  color: var(--basic-90);
}

.sm-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.sm-list i {
  margin-top: 4px;
  color: var(--blue-80);
  flex-shrink: 0;
}

.sm-list b {
  color: var(--black);
}

/* ——— STEPS ——— */
.sm-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: sm-step;
}

@media (min-width: 768px) {
  .sm-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .sm-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sm-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  min-height: 100%;
  counter-increment: sm-step;
  transition: transform 280ms var(--ease);
}

.sm-step:hover {
  transform: translateY(-3px);
}

.sm-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sm-step__num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--basic-15);
  color: var(--blue-90);
  font-size: 22px;
  font-weight: 800;
}

.sm-step__num::before {
  content: counter(sm-step);
}

.sm-step__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gray-10);
  color: var(--purple-40);
  font-size: 20px;
}

.sm-step h3 {
  font-size: 20px;
}

.sm-step p {
  font-size: 16px;
  color: var(--gray-80);
}

.sm-finish {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
  color: var(--basic-90);
  box-shadow: var(--shadow);
}

/* ——— STATS + SLOTS ——— */
.sm-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .sm-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .sm-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sm-stat {
  padding: 26px 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.sm-stat__value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--purple-40);
  letter-spacing: -0.03em;
}

.sm-stat__text {
  margin-top: 8px;
  font-size: 16px;
  color: var(--gray-80);
}

.sm-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 900px) {
  .sm-slots {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .sm-slots--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sm-slots--gallery {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
}

.sm-slot {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sm-slot--tall {
  min-height: 360px;
}

.sm-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sm-slot:has(> img) {
  min-height: 0;
  background: #f6f3fc;
}

.sm-slot:has(> img) img {
  position: static;
  height: auto;
  object-fit: contain;
}

.sm-slot:has(> img) .sm-slot__frame {
  display: none;
}

.sm-slot:has(> img) .sm-slot__badge {
  display: none;
}

.sm-slots--gallery .sm-slot {
  aspect-ratio: 4 / 3;
  min-height: 300px;
  background: #eef2f8;
}

/* Real screenshots: show full image (no side crop on mobile). */
.sm-slots--gallery .sm-slot:has(> img) {
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f3fc;
}

.sm-slots--gallery .sm-slot:has(> img) img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.sm-slots--gallery .sm-slot:has(> img) .sm-slot__badge {
  display: none;
}

.sm-slot__frame {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--gray-25);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(218, 234, 245, 0.35), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(131, 109, 193, 0.04) 12px,
      rgba(131, 109, 193, 0.04) 13px
    );
}

.sm-slot__frame i {
  font-size: 32px;
  color: var(--blue-80);
}

.sm-slot__frame strong {
  font-size: 18px;
}

.sm-slot__frame span {
  font-size: 15px;
  color: var(--gray-70);
  max-width: 280px;
  line-height: 1.4;
}

.sm-slot__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 62, 94, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.sm-banner {
  margin-top: 20px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--gradient);
  color: var(--white);
  text-align: center;
}

.sm-banner strong {
  display: block;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sm-banner p {
  margin-top: 10px;
  font-size: 17px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ——— CONTACTS ——— */
.sm-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .sm-contacts {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
}

.sm-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sm-contact__person {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.sm-contact__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-10);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sm-contact__avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 12%;
}

.sm-contact h2,
.sm-contact h3 {
  font-size: 26px;
  line-height: 1.25;
  color: var(--black);
}

.sm-contact__role {
  color: var(--gray-70);
  font-size: 16px;
  margin-bottom: 8px;
}

.sm-contact a,
.sm-contact p {
  font-size: 18px;
  font-weight: 600;
}

.sm-contact a:hover {
  color: var(--blue-80);
}

.sm-contact__link {
  color: var(--blue-80);
  word-break: break-all;
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
}

.sm-contact__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
}

.sm-contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--gray-10);
  text-align: left;
  color: var(--black);
}

.sm-contact__row a {
  color: var(--black);
}

.sm-contact__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-80);
  font-size: 15px;
  box-shadow: 0 0 0 1px var(--gray-15);
}

.sm-contact__list .sm-contact__row:nth-child(odd) {
  background: linear-gradient(180deg, #f7f4fc 0%, #efeaf8 100%);
  border: 1px solid #e4dcf3;
}

.sm-contact__list .sm-contact__row:nth-child(odd) .sm-contact__icon {
  background: #f4f0fb;
  color: #6951ab;
  box-shadow: none;
}

.sm-contact__icon--max {
  background: #f4f0fb;
  box-shadow: none;
}

.sm-contact__icon--max img {
  width: 22px;
  height: 22px;
}

.sm-contact__row--max {
  background: linear-gradient(180deg, #f7f4fc 0%, #efeaf8 100%);
  border: 1px solid #e4dcf3;
  transition: transform 200ms var(--ease), box-shadow 200ms ease;
}

.sm-contact__row--max > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.sm-contact__row--max b {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #6951ab;
}

.sm-contact__row--max span span {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.sm-contact__row--max:hover {
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(105, 81, 171, 0.12);
}

/* ——— FORM ——— */

#lead {
  scroll-margin-top: 96px;
}
.sm-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .sm-form-wrap {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.sm-form-col {
  min-width: 0;
}

[hidden] {
  display: none !important;
}

.sm-check.is-error {
  color: #c45b6a;
}

.sm-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .sm-form {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
  }

  .sm-form .sm-field--full,
  .sm-form .sm-form__actions {
    grid-column: 1 / -1;
  }
}

.sm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sm-field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-80);
}

.sm-field input,
.sm-field select,
.sm-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--gray-20);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

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

.sm-field input:focus,
.sm-field select:focus,
.sm-field textarea:focus {
  outline: none;
  border-color: var(--basic-70);
  box-shadow: 0 0 0 4px var(--basic-15);
}

.sm-field.is-error input,
.sm-field.is-error select,
.sm-field.is-error textarea {
  border-color: #c45b6a;
}

.sm-field__error {
  display: none;
  font-size: 13px;
  color: #c45b6a;
}

.sm-field.is-error .sm-field__error {
  display: block;
}

.sm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-70);
  line-height: 1.4;
}

.sm-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue-80);
}

.sm-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.sm-form__hint {
  font-size: 14px;
  color: var(--gray-70);
}

.sm-form__server-error {
  margin: 0 0 8px;
  font-size: 14px;
  color: #c0392b;
}

.sm-cross {
  padding-top: 0;
  padding-bottom: 40px;
}

.sm-cross__link {
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: var(--gray-70);
}

.sm-cross__link a {
  color: var(--blue-80);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sm-cross__link a:hover {
  color: var(--blue-90);
}

.sm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gray-10);
  border: 1px solid var(--gray-20);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.sm-chip input {
  accent-color: var(--blue-80);
}

.sm-success {
  display: none;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.sm-success.is-visible {
  display: block;
}

.sm-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--basic-15);
  color: var(--blue-80);
  font-size: 32px;
}

/* ——— CTA ——— */
.sm-cta__card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gradient);
  color: var(--white);
}

@media (min-width: 900px) {
  .sm-cta__card {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
}

.sm-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
}

@media (min-width: 768px) {
  .sm-cta__copy {
    padding: 32px 36px;
  }
}

.sm-cta__copy h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.sm-cta__copy p {
  margin-bottom: 20px;
  font-size: 18px;
}

.sm-cta__copy .sm-btn {
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
}

.sm-cta .sm-contact {
  margin: 12px;
  padding: 16px 18px;
  gap: 12px;
  align-items: stretch;
  text-align: left;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 12px 32px rgba(13, 62, 94, 0.18);
}

.sm-cta .sm-contact__avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}

.sm-cta .sm-contact h3 {
  font-size: 20px;
}

.sm-cta .sm-contact__role {
  margin-bottom: 0;
  font-size: 14px;
}

.sm-cta .sm-contact__list {
  max-width: none;
  margin-top: 0;
  gap: 6px;
}

.sm-cta .sm-contact__row {
  padding: 7px 10px;
}

.sm-cta .sm-contact__row--max span span {
  font-size: 15px;
}

@media (min-width: 900px) {
  .sm-cta .sm-contact {
    margin: 16px 16px 16px 0;
  }
}

.sm-cta .sm-slot {
  min-height: 240px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.sm-cta .sm-slot__frame {
  inset: 24px;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.sm-cta .sm-slot__frame i,
.sm-cta .sm-slot__frame span {
  color: rgba(255, 255, 255, 0.92);
}

.sm-cta .sm-slot__frame strong {
  color: var(--white);
}

/* ——— FAQ ——— */
.sm-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sm-faq details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.sm-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.sm-faq summary::-webkit-details-marker {
  display: none;
}

.sm-faq summary::after {
  content: "+";
  float: right;
  color: var(--blue-80);
}

.sm-faq details[open] summary::after {
  content: "–";
}

.sm-faq p {
  margin-top: 10px;
  color: var(--gray-80);
  font-size: 16px;
}

/* ——— FOOTER ——— */
.sm-footer {
  padding: 28px 0 40px;
  color: var(--gray-70);
  font-size: 15px;
}

.sm-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.sm-footer a {
  color: var(--blue-80);
}

.sm-footer a:hover {
  color: var(--blue-90);
}

/* ——— REVEAL ——— */
.sm-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: sm-rise 700ms var(--ease) forwards;
}

.sm-reveal:nth-child(2) { animation-delay: 80ms; }
.sm-reveal:nth-child(3) { animation-delay: 140ms; }
.sm-reveal:nth-child(4) { animation-delay: 200ms; }
.sm-reveal:nth-child(5) { animation-delay: 260ms; }

@keyframes sm-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.js-ready .sm-reveal {
  animation: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js-ready .sm-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sm-reveal,
  .js-ready .sm-reveal,
  .sm-benefit,
  .sm-step,
  .sm-btn {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* Chrome autofill detection for summit phone mask */
@keyframes onAutoFillStart {
  from { opacity: 0.99; }
  to { opacity: 1; }
}

@keyframes onAutoFillCancel {
  from { opacity: 0.99; }
  to { opacity: 1; }
}

input[data-summit-phone]:-webkit-autofill {
  animation-name: onAutoFillStart;
  animation-duration: 0.001s;
}

input[data-summit-phone]:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
  animation-duration: 0.001s;
}
