@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --ink: #0B1220;
  --ink-2: #101B2E;
  --ink-3: #1B2942;
  --slate: #5B6880;
  --slate-2: #7A8699;
  --line: #E3E8F0;
  --line-2: #D3DAE6;
  --bg: #F6F8FC;
  --card: #FFFFFF;
  --brand: #E8384A;
  --brand-dark: #C42539;
  --brand-soft: #FDECEE;
  --tech: #2563EB;
  --tech-2: #38BDF8;
  --tech-soft: #EAF1FE;
  --ok: #059669;
  --ok-soft: #E7F7F1;
  --danger: #B91C1C;
  --danger-soft: #FDECEC;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;

  --sh-1: 0 1px 2px rgba(11, 18, 32, .05);
  --sh-2: 0 6px 20px -8px rgba(11, 18, 32, .16);
  --sh-3: 0 22px 48px -22px rgba(11, 18, 32, .38);

  --nav-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.022em;
  margin: 0 0 var(--sp-3);
}

h1 { font-size: clamp(2.05rem, 1.35rem + 2.7vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); }
h5 { font-size: 1.04rem; }
h6 { font-size: .94rem; }

p { margin: 0 0 var(--sp-3); color: var(--slate); }
p:last-child { margin-bottom: 0; }

a { color: var(--tech); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand); }

img { max-width: 100%; height: auto; }

::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 3px solid var(--tech); outline-offset: 3px; border-radius: 5px; }

.c-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
}
.c-skip:focus { left: 0; color: #fff; }

.c-wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.c-sec { padding-block: clamp(56px, 7vw, 100px); }
.c-sec--tight { padding-block: clamp(40px, 5vw, 68px); }

.c-sec--ink {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.c-sec--ink > .c-wrap { position: relative; z-index: 2; }
.c-sec--ink h2, .c-sec--ink h3, .c-sec--ink h4 { color: #fff; }
.c-sec--ink p { color: rgba(255, 255, 255, .7); }

.c-sec--ink::before,
.c-crumb::before,
.c-cta::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .17) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 78% 70% at 50% 42%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 42%, #000 8%, transparent 74%);
  animation: creaPan 34s linear infinite;
}

.c-sec--ink::after,
.c-crumb::after,
.c-cta::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -40%;
  width: 55%;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  transform: skewX(-14deg);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, .10), transparent);
  animation: creaSweep 13s ease-in-out infinite;
}

@keyframes creaPan {
  from { background-position: 0 0; }
  to { background-position: 26px 26px; }
}
@keyframes creaSweep {
  0% { transform: translateX(-10%) skewX(-14deg); opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateX(240%) skewX(-14deg); opacity: 0; }
}

.c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}
.c-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}
.c-eyebrow--tech { color: var(--tech); }
.c-eyebrow--tech::before { background: var(--tech); }
.c-eyebrow--light { color: #fff; }
.c-eyebrow--light::before { background: var(--brand); }

.c-mark {
  background-image: linear-gradient(rgba(232, 56, 74, .22), rgba(232, 56, 74, .22));
  background-repeat: no-repeat;
  background-size: 100% .34em;
  background-position: 0 82%;
  padding-inline: .06em;
}
.c-sec--ink .c-mark,
.c-crumb .c-mark { background-image: linear-gradient(rgba(232, 56, 74, .6), rgba(232, 56, 74, .6)); }

.c-lead { font-size: 1.05rem; max-width: 62ch; }
.c-em { color: var(--brand); }

.c-head { max-width: 700px; margin-bottom: var(--sp-6); }
.c-head--center { margin-inline: auto; text-align: center; }
.c-head--center .c-eyebrow { justify-content: center; }
.c-head--center .c-lead { margin-inline: auto; }

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.c-btn i { font-size: .88em; }

.c-btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.c-btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

.c-btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.c-btn--ink:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }

.c-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.c-btn--ghost:hover { background: #fff; color: var(--ink); border-color: var(--ink); }

.c-btn--glass { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .32); }
.c-btn--glass:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .6); }

.c-btn--lg { min-height: 56px; padding: 0 30px; font-size: .98rem; }
.c-btn--block { width: 100%; }

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand);
}
.c-link-arrow i { transition: transform .25s var(--ease); }
.c-link-arrow:hover i { transform: translateX(4px); }

.c-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.c-nav.is-stuck { background: rgba(255, 255, 255, .93); border-bottom-color: var(--line); }
.c-nav__inner {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.c-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.c-nav__logo img { height: 38px; width: auto; }

.c-nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto 0 var(--sp-3);
  padding: 0;
}
.c-nav__menu > li { position: relative; }
.c-nav__menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-h);
  padding: 0 13px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  white-space: nowrap;
}
.c-nav__menu > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 20px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}
.c-nav__menu > li > a:hover::after,
.c-nav__menu > li.is-open > a::after,
.c-nav__menu > li > a[aria-current="page"]::after { transform: scaleX(1); }
.c-nav__menu > li > a[aria-current="page"] { color: var(--brand); }
.c-nav__menu > li > a .fa-chevron-down { font-size: .6rem; opacity: .5; transition: transform .25s var(--ease); }
.c-nav__menu > li.is-open > a .fa-chevron-down { transform: rotate(180deg); }

.c-drop {
  position: absolute;
  top: calc(100% - 12px);
  left: 0;
  min-width: 286px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.c-nav__menu > li.is-open .c-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.c-drop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
}
.c-drop a:hover { background: var(--bg); color: var(--ink); }
.c-drop a i {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--brand);
  font-size: .85rem;
}
.c-drop a:hover i { background: var(--brand); color: #fff; }
.c-drop span span { display: block; font-weight: 400; font-size: .77rem; color: var(--slate-2); }

.c-nav__side { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.c-nav__phone { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.c-nav__phone i {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: .8rem;
}
.c-nav__phone b { display: block; font-size: .9rem; letter-spacing: -.01em; }
.c-nav__phone small { display: block; font-size: .7rem; color: var(--slate-2); line-height: 1.2; }

.c-burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 1.05rem;
  cursor: pointer;
}

.c-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 90vw);
  z-index: 1100;
  background: #fff;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 70px -32px rgba(11, 18, 32, .55);
}
.c-drawer.is-open { transform: translateX(0); }
.c-drawer__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--sp-4);
  background: var(--ink);
  border-bottom: 3px solid var(--brand);
}
.c-drawer__top img { height: 32px; filter: brightness(0) invert(1); }
.c-drawer__close {
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: #fff;
  font-size: 1.05rem;
  transition: background .2s var(--ease);
}
.c-drawer__close:hover { background: rgba(255, 255, 255, .12); }

.c-drawer__body { flex: 1; overflow-y: auto; padding: var(--sp-3) var(--sp-4); }

.c-drawer__menu { list-style: none; margin: 0; padding: 0; }
.c-drawer__menu > li { border-bottom: 1px solid var(--line); }
.c-drawer__menu > li:last-child { border-bottom: 0; }
.c-drawer__menu > li > a,
.c-drawer__menu > li > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 8px 2px;
  background: none;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.c-drawer__menu > li > a:hover,
.c-drawer__menu > li > button:hover { color: var(--brand); }
.c-drawer__menu > li > button > i { font-size: .68rem; color: var(--slate-2); transition: transform .28s var(--ease); }

.c-drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.c-drawer__sub > div { overflow: hidden; }
.c-drawer__sub ul { list-style: none; margin: 0; padding: 0 0 4px; }
.c-drawer__sub.is-open { grid-template-rows: 1fr; }
.c-drawer__sub a {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 52px;
  padding: 6px 12px;
  margin-bottom: 6px;
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
}
.c-drawer__sub a:hover { background: var(--ink); color: #fff; }
.c-drawer__sub a i {
  width: 32px; height: 32px;
  margin-right: 12px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--brand);
  font-size: .82rem;
}
.c-drawer__sub a:hover i { background: var(--brand); color: #fff; }

.c-drawer__foot {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  border-top: 1px solid var(--line);
  background: #fff;
}
.c-drawer__info { margin-top: var(--sp-3); font-size: .87rem; display: grid; gap: 10px; }
.c-drawer__info p { margin: 0; display: flex; gap: 10px; align-items: flex-start; color: var(--slate); }
.c-drawer__info i { color: var(--brand); width: 16px; text-align: center; margin-top: 5px; flex-shrink: 0; }

.c-scrim {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(11, 18, 32, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.c-scrim.is-open { opacity: 1; visibility: visible; }

.c-main { padding-top: var(--nav-h); }

.c-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-block: clamp(30px, 4vw, 58px) clamp(60px, 7.5vw, 104px);
  border-bottom: 1px solid var(--line);
}
.c-hero__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 18, 32, .13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(115deg, #000 0%, transparent 46%);
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 46%);
  opacity: .55;
}
.c-hero .c-wrap { position: relative; z-index: 2; }
.c-hero__inner {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
.c-hero h1 { margin-bottom: var(--sp-4); }
.c-hero h1 .thin { display: block; font-size: .56em; font-weight: 500; color: var(--slate); letter-spacing: -.01em; margin-bottom: 8px; }
.c-hero p { font-size: 1.06rem; max-width: 54ch; }
.c-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3) var(--sp-4); margin-top: var(--sp-5); }
.c-hero__play { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; font-size: .9rem; }
.c-hero__play span.dot {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line-2);
  color: var(--brand);
  transition: border-color .22s var(--ease), color .22s var(--ease);
}
.c-hero__play:hover { color: var(--brand); }
.c-hero__play:hover span.dot { border-color: var(--brand); }

.c-hero__visual { position: relative; }
.c-hero__visual::before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 58%;
  height: 62%;
  border: 2px solid var(--brand);
  border-radius: var(--r-lg);
  z-index: 0;
}
.c-hero__frame {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.c-hero__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.c-hero__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.c-hero__bar i:nth-child(1) { background: #F1A6AE; }
.c-hero__bar i:nth-child(2) { background: #EFD09B; }
.c-hero__bar i:nth-child(3) { background: #A9D9C3; }
.c-hero__bar span {
  margin-left: 10px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate-2);
}
.c-hero__frame img { width: 100%; display: block; }

.c-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.c-hero__meta span { display: flex; align-items: center; gap: 9px; font-size: .86rem; font-weight: 600; color: var(--slate); }
.c-hero__meta i { color: var(--brand); font-size: .82rem; }

.c-grid { display: grid; gap: var(--sp-4); }
.c-grid--2 { grid-template-columns: repeat(2, 1fr); }
.c-grid--3 { grid-template-columns: repeat(3, 1fr); }
.c-grid--4 { grid-template-columns: repeat(4, 1fr); }
.c-grid--split { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 4vw, 60px); }
.c-grid--aside { grid-template-columns: 1fr 1.12fr; align-items: start; gap: clamp(32px, 4vw, 52px); }

.c-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  height: 100%;
}
.c-card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.c-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--tech);
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
}
.c-card__icon--brand { color: var(--brand); }
.c-card h4, .c-card h5 { margin-bottom: 8px; }
.c-card p { font-size: .92rem; }

.c-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.c-sec--ink .c-bento { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .14); }
.c-bento__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: var(--sp-4);
  background: var(--card);
  transition: background .25s var(--ease);
}
.c-bento__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease);
}
.c-bento__item:hover::before { transform: scaleY(1); }
.c-bento__item:hover { background: var(--bg); }
.c-bento__head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-3); }
.c-bento__ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 1rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.c-bento__item:hover .c-bento__ico { background: var(--brand); border-color: var(--brand); color: #fff; }
.c-bento .c-bento__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.015em; margin: 0; color: var(--ink); }
.c-bento .c-bento__item p { color: var(--slate); }
.c-bento__item p { font-size: .91rem; color: var(--slate); }
.c-bento__foot { margin-top: auto; padding-top: var(--sp-3); }
.c-bento__item:hover .c-link-arrow i { transform: translateX(4px); }

.c-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sp-3); }
.c-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 600;
  color: var(--slate);
  overflow-wrap: anywhere;
}
.c-tag--tech { border-color: var(--line-2); color: var(--ink); }

.c-check { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.c-check li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--slate); }
.c-check li i { color: var(--brand); margin-top: 5px; flex-shrink: 0; font-size: .85rem; }
.c-check li b { color: var(--ink); font-weight: 700; }

.c-steps { display: grid; gap: var(--sp-4); }
.c-step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.c-step__n {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 800;
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
}
.c-step:nth-child(odd) .c-step__n { background: var(--ink); color: #fff; }
.c-step h5 { margin-bottom: 4px; }
.c-step p { font-size: .91rem; }

.c-media { position: relative; }
.c-media img { width: 100%; border-radius: var(--r-md); border: 1px solid var(--line); display: block; background: #fff; }
.c-media--offset::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -14px;
  width: 52%;
  height: 56%;
  border: 2px solid var(--brand);
  border-radius: var(--r-md);
  z-index: 0;
}
.c-media--offset img { position: relative; z-index: 1; box-shadow: var(--sh-2); }

.c-crumb {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-block: clamp(44px, 5.5vw, 74px);
}
.c-crumb__inner { position: relative; z-index: 2; }
.c-crumb h1 { color: #fff; margin-bottom: 12px; }
.c-crumb p { color: rgba(255, 255, 255, .72); max-width: 66ch; }
.c-crumb nav { margin-bottom: var(--sp-3); }
.c-crumb nav ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: .82rem; }
.c-crumb nav a { color: rgba(255, 255, 255, .62); }
.c-crumb nav a:hover { color: #fff; }
.c-crumb nav li[aria-current] { color: #fff; font-weight: 600; }
.c-crumb nav li i { font-size: .58rem; opacity: .45; }

.c-form { display: grid; gap: var(--sp-3); }
.c-field { display: flex; flex-direction: column; gap: 6px; }
.c-field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.c-field label .req { color: var(--brand); }
.c-field small { font-size: .78rem; color: var(--slate-2); }
.c-input,
.c-select,
.c-textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  font: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.c-textarea { resize: vertical; min-height: 128px; }
.c-input:hover, .c-select:hover, .c-textarea:hover { border-color: var(--slate-2); }
.c-input:focus, .c-select:focus, .c-textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 18, 32, .08);
}
.c-input::placeholder, .c-textarea::placeholder { color: #9AA5B8; }
.c-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235B6880'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 42px;
}
.c-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.c-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: .91rem;
  font-weight: 500;
  border: 1px solid;
}
.c-alert i { margin-top: 3px; }
.c-alert--ok { background: var(--ok-soft); border-color: rgba(5, 150, 105, .3); color: #05603A; }
.c-alert--bad { background: var(--danger-soft); border-color: rgba(185, 28, 28, .28); color: #8A1616; }

.c-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--sh-1);
}

.c-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  border-top: 3px solid var(--brand);
}
.c-cta > * { position: relative; z-index: 2; }
.c-cta h2 { color: #fff; }
.c-cta p { color: rgba(255, 255, 255, .74); max-width: 58ch; margin-inline: auto; }
.c-cta .c-eyebrow { justify-content: center; }
.c-cta__btns { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-4); }

.c-foot { background: var(--ink); color: rgba(255, 255, 255, .7); padding-block: clamp(48px, 6vw, 76px) var(--sp-4); }
.c-foot h4, .c-foot h5 { color: #fff; }
.c-foot a { color: rgba(255, 255, 255, .7); }
.c-foot a:hover { color: #fff; }
.c-foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--sp-5); padding-bottom: var(--sp-5); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.c-foot__logo { height: 38px; margin-bottom: var(--sp-3); filter: brightness(0) invert(1); }
.c-foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .91rem; }
.c-foot__title { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-weight: 700; margin-bottom: var(--sp-3); }
.c-foot__news { display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--sp-3); }
.c-foot__news input {
  flex: 1 1 190px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: .9rem;
}
.c-foot__news input::placeholder { color: rgba(255, 255, 255, .45); }
.c-foot__news input:focus { outline: none; border-color: rgba(255, 255, 255, .55); }
.c-foot__social { display: flex; gap: 8px; margin-top: var(--sp-4); }
.c-foot__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.c-foot__social a:hover { background: var(--brand); border-color: var(--brand); }
.c-foot__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  font-size: .84rem;
}
.c-foot__badges { display: flex; align-items: center; gap: var(--sp-3); }
.c-foot__badges img { height: 50px; width: auto; opacity: .85; }

.c-up {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 800;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .2s var(--ease);
}
.c-up:hover { background: var(--brand); }
.c-up.is-on { opacity: 1; visibility: visible; transform: translateY(0); }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .c-nav__phone { display: none; }
}

@media (max-width: 991px) {
  :root { --nav-h: 70px; }
  .c-nav__menu { display: none; }
  .c-nav__side .c-btn { display: none; }
  .c-burger { display: inline-flex; }
  .c-nav__inner { justify-content: space-between; }
  .c-hero__inner { grid-template-columns: 1fr; }
  .c-hero__visual { order: -1; }
  .c-hero__visual::before { display: none; }
  .c-grid--split, .c-grid--aside { grid-template-columns: 1fr; }
  .c-grid--4, .c-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .c-bento { grid-template-columns: repeat(2, 1fr); }
  .c-foot__grid { grid-template-columns: 1fr 1fr; }
  .c-media--offset::before { display: none; }
}

@media (max-width: 767px) {
  .c-wrap { padding-inline: 18px; }
  .c-grid--2, .c-grid--3, .c-grid--4 { grid-template-columns: 1fr; }
  .c-bento { grid-template-columns: 1fr; }
  .c-form__row { grid-template-columns: 1fr; }
  .c-foot__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .c-hero__cta .c-btn { width: 100%; }
  .c-hero__cta { gap: var(--sp-3); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

.c-mv {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--r-lg);
  height: 100%;
}
.c-mv h3 { color: #fff; margin-bottom: 12px; }
.c-mv p { color: rgba(255, 255, 255, .82); margin: 0; }
.c-mv__ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
}
.c-mv--ink { background: var(--ink); border-top: 3px solid var(--brand); }
.c-mv--brand { background: var(--brand); border-top: 3px solid var(--ink); }

.c-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.c-feat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.c-feat:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-4px); }
.c-feat__ico {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 1.2rem;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.c-feat:hover .c-feat__ico { background: #fff; border-color: #fff; color: var(--brand); }
.c-feat__ico::before,
.c-feat__ico::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  pointer-events: none;
}
.c-feat:hover .c-feat__ico::before { animation: creaPing 1.8s cubic-bezier(.2, .6, .3, 1) infinite; }
.c-feat:hover .c-feat__ico::after { animation: creaPing 1.8s cubic-bezier(.2, .6, .3, 1) .6s infinite; }
.c-feat__ico i { transition: transform .3s var(--ease); }
.c-feat:hover .c-feat__ico i { transform: scale(1.12); }
.c-feat .c-feat__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
  margin: 0;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.c-feat .c-feat__desc {
  margin: -4px 0 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--slate);
  transition: color .3s var(--ease);
}
.c-feat:hover .c-feat__title { color: #fff; }
.c-feat:hover .c-feat__desc { color: rgba(255, 255, 255, .9); }

@keyframes creaPing {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}

.c-map {
  margin-top: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.c-map__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--line);
}
.c-map__bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.c-map__bar span i { color: var(--brand); }

@media (max-width: 991px) {
  .c-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-feats { grid-template-columns: 1fr; }
}
