:root {
  --ink: #1b1230;
  --muted: #6d637b;
  --line: #eadff6;
  --soft: #fbf7ff;
  --soft-strong: #f1e7ff;
  --accent: #8f43d8;
  --accent-dark: #6129a6;
  --accent-light: #d3adff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(76, 29, 149, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(240, 216, 232, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(111, 53, 181, 0.08);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav,
.site-header.is-scrolled .header-socials {
  text-shadow: none;
}

.site-header.is-scrolled .header-button {
  box-shadow: none;
}

.brand {
  color: var(--accent);
  font-weight: 900;
  display: flex;
  align-items: center;
  text-shadow: 0 8px 24px rgba(27, 18, 48, 0.18), 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand span {
  font-size: clamp(1.18rem, 1.55vw, 1.38rem);
  font-weight: 950;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: 0 8px 24px rgba(27, 18, 48, 0.16), 0 1px 0 rgba(255, 255, 255, 0.82);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-shadow: 0 8px 24px rgba(27, 18, 48, 0.16), 0 1px 0 rgba(255, 255, 255, 0.82);
}

.header-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(143, 67, 216, 0.62);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent-dark);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-button {
  min-height: 42px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(97, 41, 166, 0.24);
  text-shadow: 0 1px 10px rgba(27, 18, 48, 0.22);
}

.header-button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.section-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
  scroll-margin-top: 92px;
}

.hero.section-panel {
  width: 100%;
  padding-left: clamp(24px, 5vw, 70px);
  padding-right: clamp(24px, 5vw, 70px);
}

.hero {
  position: relative;
  display: block;
  min-height: 100svh;
  padding-top: clamp(106px, 12vw, 176px);
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(760px, 58%);
  padding-top: clamp(26px, 5vw, 76px);
  padding-right: clamp(0px, 4vw, 54px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: clamp(2rem, 4.6vw, 4.55rem);
  font-weight: 800;
  line-height: 1;
}

.name-lockup {
  display: grid;
  gap: 16px;
  max-width: 880px;
  color: var(--accent);
  font-family: "Arial Black", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.name-first,
.name-last {
  display: block;
}

.name-first {
  color: var(--ink);
  font-size: clamp(1.38rem, 2.8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 0.95;
}

.name-last {
  font-size: clamp(2.6rem, 6.15vw, 5.85rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.92;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.8vw, 5.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.lead {
  width: max-content;
  max-width: min(880px, 100%);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  white-space: nowrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.tags a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tags a:hover,
.tags a:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

#sluzby-karty {
  scroll-margin-top: 110px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button.ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--accent-dark);
}

.button.ghost:hover {
  border-color: var(--accent-light);
  background: var(--soft);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(880px, 58vw);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 42%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 28%, rgba(255, 255, 255, 0.13) 58%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.88) 12%, rgba(255, 255, 255, 0.42) 26%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

body.is-scrolled .hero-photo::before {
  opacity: 0.78;
}

body.is-scrolled .hero-photo::after {
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 12%, rgba(255, 255, 255, 0.46) 26%, rgba(255, 255, 255, 0) 44%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center right;
  background: transparent;
}

body.is-scrolled .hero-photo img {
  object-position: center right;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
}

.about {
  position: relative;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.78fr);
  align-items: start;
  margin-top: clamp(36px, 6vw, 78px);
  padding: clamp(112px, 11vw, 168px) max(18px, calc((100vw - 1180px) / 2)) clamp(102px, 12vw, 156px);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  top: clamp(-74px, -5vw, -42px);
  height: clamp(96px, 10vw, 146px);
  background: var(--white);
  border-radius: 0 0 52% 48% / 0 0 72% 72%;
}

.about::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -1px;
  height: clamp(86px, 10vw, 142px);
  background: var(--soft);
  border-radius: 52% 48% 0 0 / 72% 72% 0 0;
}

.section-kicker,
.section-head,
.contact-copy {
  max-width: 760px;
}

.section-kicker {
  text-align: center;
}

.about .section-kicker {
  text-align: left;
}

.section-kicker h2 {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.section-kicker .eyebrow,
.section-head .eyebrow,
.contact-copy .eyebrow {
  color: var(--accent);
  font-size: clamp(1.25rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
}

.about-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about .section-kicker .eyebrow,
.about .section-kicker h2,
.about .about-text p {
  color: var(--white);
}

.about .about-text p {
  opacity: 0.88;
}

.about .inline-actions .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--accent-dark);
}

.about .inline-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.about-text {
  max-width: 760px;
}

.about-text p {
  margin-bottom: 18px;
}

.about-highlight {
  margin: 22px 0;
  border-left: 4px solid rgba(255, 255, 255, 0.9);
  padding: 12px 0 12px 20px;
  color: var(--white);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  font-weight: 900;
  line-height: 1.48;
  opacity: 1;
}

.about-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.about-visual::before {
  content: none;
}

.about-photo {
  display: block;
  width: 100%;
  min-height: min(680px, 88svh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(27, 18, 48, 0.22);
}

.about-photo:first-child {
  object-position: 54% 20%;
}

.about-photo:last-child {
  object-position: 52% center;
}

.services,
.process {
  border-top: 1px solid var(--line);
}

.services {
  position: relative;
  width: 100%;
  max-width: none;
  border-top: 0;
  padding-left: max(18px, calc((100vw - 1440px) / 2));
  padding-right: max(18px, calc((100vw - 1440px) / 2));
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(76px, 8vw, 118px);
  background: linear-gradient(180deg, var(--soft), var(--white));
  overflow: hidden;
}

.services::before {
  content: none;
}

.services::after {
  content: none;
}

.process {
  position: relative;
  width: 100%;
  max-width: none;
  border-top: 0;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-top: clamp(76px, 8vw, 118px);
  background: linear-gradient(180deg, var(--white) 0%, #fefcff 68%, var(--white) 100%);
  color: var(--ink);
  overflow: hidden;
}

.section-head {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
}

.section-head p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

.process-intro {
  white-space: nowrap;
}

.services-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.services-kicker::before,
.services-kicker::after {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.62;
}

.about-kicker {
  justify-content: flex-start;
  color: var(--white);
}

.about-kicker::before,
.about-kicker::after {
  background: var(--white);
  opacity: 0.74;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(32px, 4.4vw, 52px);
}

.service-card {
  border: 1px solid rgba(234, 223, 246, 0.92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(76, 29, 149, 0.045);
}

.service-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 2vw, 32px);
  text-align: center;
  transform: translateY(0) scale(1);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, background 250ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(143, 67, 216, 0.28);
  background: linear-gradient(180deg, var(--white) 0%, rgba(251, 247, 255, 0.88) 100%);
  box-shadow: 0 20px 45px rgba(112, 40, 220, 0.18);
  transform: translateY(-8px) scale(1.02);
}

.service-card:active {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 18px 44px rgba(76, 29, 149, 0.1);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon,
.service-card:active .service-icon {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(143, 67, 216, 0.26);
  transform: translateY(-2px) scale(1.04);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card h3 {
  color: var(--ink);
  min-height: 0;
  font-size: clamp(1.08rem, 1.18vw, 1.28rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.92vw, 0.96rem);
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.service-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(143, 67, 216, 0.34), rgba(143, 67, 216, 0.08));
}

.service-card ul {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: auto 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  list-style: none;
  text-align: left;
}

.service-card li {
  position: relative;
  padding-left: 30px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #23c66a;
  border-radius: 50%;
  color: #23c66a;
  font-size: 0.9rem;
  line-height: 1;
}

.service-button {
  width: 100%;
  margin-top: 0;
  min-height: 48px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(143, 67, 216, 0.2);
}

.why-me-section {
  width: 100%;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 48px);
  background: linear-gradient(180deg, rgba(251, 247, 255, 0), var(--white) 36%, var(--white) 100%);
}

.why-me-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 62px);
  background:
    radial-gradient(circle at 92% 12%, rgba(143, 67, 216, 0.22), rgba(143, 67, 216, 0) 30%),
    linear-gradient(135deg, #111111 0%, #17121e 100%);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.why-me-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--accent);
}

.why-me-card .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.why-me-card .section-label::before,
.why-me-card .section-label::after {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.why-me-card h2 {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.why-me-card p {
  max-width: 840px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 650;
  line-height: 1.75;
}

.why-me-card .why-me-claim {
  position: relative;
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 24px;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.35;
}

.why-me-card .why-me-claim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.process .section-head h2 {
  color: var(--ink);
}

.process .section-head p {
  color: var(--muted);
}

.process .services-kicker {
  color: var(--accent);
}

.process .services-kicker::before,
.process .services-kicker::after {
  background: var(--accent);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px) clamp(28px, 5vw, 72px);
  max-width: 1080px;
  margin: clamp(46px, 6vw, 72px) auto 0;
  align-items: center;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: clamp(116px, 10vw, 150px);
  left: 50%;
  z-index: 2;
  width: 88px;
  transform: translateX(-50%);
  pointer-events: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  background: rgba(143, 67, 216, 0.2);
  transform: translateX(-50%);
}

.process-card {
  position: relative;
  min-height: 0;
}

.process-card:nth-of-type(odd) {
  grid-column: 1;
}

.process-card:nth-of-type(even) {
  grid-column: 3;
}

.process-card:nth-of-type(1) {
  grid-row: 1;
}

.process-card:nth-of-type(2) {
  grid-row: 2;
}

.process-card:nth-of-type(3) {
  grid-row: 3;
}

.process-card:nth-of-type(4) {
  grid-row: 4;
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.2);
  font-size: 0.92rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.process-card:nth-of-type(odd)::before {
  left: calc(100% + clamp(28px, 5vw, 72px) + 44px);
}

.process-card:nth-of-type(even)::before {
  left: auto;
  right: calc(100% + clamp(28px, 5vw, 72px) + 44px);
  transform: translate(50%, -50%);
}

.process-card.is-active::before {
  background: #23c66a;
  color: var(--white);
  box-shadow: 0 14px 32px rgba(35, 198, 106, 0.24);
}

.process-card-inner {
  min-height: 190px;
  border: 1px solid rgba(234, 223, 246, 0.92);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(27, 18, 48, 0.11);
}

.process-number {
  display: none;
}

.process-card h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
}

.process-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31c875;
  box-shadow: 0 0 0 4px rgba(49, 200, 117, 0.12);
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.process-finale {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  color: var(--accent);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.center-button {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
}

.contact {
  position: relative;
  width: 100%;
  max-width: none;
  padding-top: clamp(96px, 9vw, 140px);
  padding-bottom: clamp(82px, 9vw, 128px);
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: clamp(170px, 18vw, 280px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(143, 67, 216, 0.055), rgba(143, 67, 216, 0.025) 38%, rgba(255, 255, 255, 0) 78%),
    linear-gradient(180deg, rgba(251, 247, 255, 0.34), rgba(255, 255, 255, 0) 82%);
  pointer-events: none;
}

.contact-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(42px, 5vw, 66px);
  text-align: center;
}

.contact-head h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.contact-head p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.contact-head p strong {
  color: var(--accent-dark);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 640px);
  gap: clamp(34px, 5vw, 58px);
  align-items: stretch;
  justify-content: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border-radius: 22px;
  padding: clamp(24px, 2.45vw, 32px);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 12% 102%, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(76, 29, 149, 0.18);
}

.contact-name {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 900;
  line-height: 1.12;
}

.contact-role {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-card > p:not(.contact-name):not(.contact-role) {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.48;
}

.contact-details {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 7px 12px;
  align-items: center;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-row span {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-row svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-row small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-region {
  display: grid;
  gap: 0;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-region span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.48;
}

.contact-socials {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
}

.contact-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form {
  display: grid;
  gap: 17px;
  align-self: start;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(42, 36, 54, 0.42);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(35, 26, 52, 0.14);
  border-radius: 12px;
  padding: 17px 18px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-transform: none;
  letter-spacing: 0;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(123, 44, 191, 0.14);
}

.document-note,
.privacy-note {
  margin: -2px 0 0;
  color: rgba(109, 99, 123, 0.86);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.55;
}

.document-note a,
.privacy-note a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
  font: inherit;
}

.form-note {
  display: none;
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.contact-form.is-sent .form-note {
  display: block;
}

.form-error {
  min-height: 1.2em;
  margin: 0;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.footer {
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 42px);
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 54px);
  width: min(1440px, 100%);
  margin: 0 auto;
  border-radius: 10px;
  background:
    radial-gradient(circle at 96% 8%, rgba(143, 67, 216, 0.16), rgba(143, 67, 216, 0) 34%),
    #111111;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
  padding: clamp(28px, 4vw, 42px);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-block + .footer-block {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(22px, 4vw, 44px);
}

.footer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.footer-name {
  color: var(--accent-light);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem) !important;
  font-weight: 900;
}

.footer-label {
  color: var(--accent-light);
  font-size: 0.82rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-action {
  align-content: center;
}

.footer-inclusive {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border: 1px solid rgba(143, 67, 216, 0.3);
  border-radius: 12px;
  padding: 9px 12px;
  background: rgba(143, 67, 216, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.82rem, 1vw, 0.94rem) !important;
  font-weight: 750;
  line-height: 1.25;
}

.footer-inclusive span {
  font-size: 1rem;
  line-height: 1;
}

.footer-button {
  width: min(100%, 300px);
  margin-top: 8px;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: clamp(4px, 1vw, 12px) !important;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem !important;
  font-weight: 650;
  text-align: center;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 18;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(76, 29, 149, 0.28);
  font-size: 0.9rem;
  font-weight: 900;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

body.is-footer-visible .floating-cta {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
}

.privacy-page {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.privacy-document {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.privacy-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.privacy-document h1 {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.privacy-document section {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.privacy-document h2 {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.privacy-document p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.7;
}

.privacy-document a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .header-button {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .contact-card {
    min-height: auto;
  }

  .about-visual {
    max-width: 640px;
  }

  .about-photo {
    min-height: 560px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    overflow: visible;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: min(560px, 100%);
    max-width: 560px;
    margin-top: 26px;
    margin-left: 0;
  }

  .hero-photo::after {
    background: none;
  }

  .hero-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  body.is-scrolled .hero-photo img {
    object-position: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    max-width: 760px;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    gap: 30px;
  }

  .process-line {
    left: 50%;
    width: 70px;
  }

  .process-card:nth-of-type(odd)::before {
    left: calc(100% + 65px);
  }

  .process-card:nth-of-type(even)::before {
    left: auto;
    right: calc(100% + 65px);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    position: sticky;
    align-items: center;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 16px 10px;
    border-bottom-color: rgba(240, 216, 232, 0.96);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(111, 53, 181, 0.08);
  }

  .brand {
    justify-content: center;
    text-align: center;
    text-shadow: none;
  }

  .brand span {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 12px;
    width: auto;
    overflow-x: visible;
    padding-bottom: 0;
    color: rgba(109, 99, 123, 0.92);
    font-size: 0.78rem;
    line-height: 1;
    text-shadow: none;
  }

  .nav a {
    flex: 0 1 auto;
    padding: 6px 0;
    white-space: nowrap;
  }

  .header-socials,
  .header-button {
    display: none;
  }

  .site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(111, 53, 181, 0.08);
  }

  .section-panel {
    width: calc(100% - 32px);
    padding: 58px 0;
    scroll-margin-top: 112px;
  }

  .contact {
    width: 100%;
    padding-top: 76px;
    padding-right: 16px;
    padding-bottom: 72px;
    padding-left: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card {
    border-radius: 18px;
    padding: 24px;
  }

  .contact-name {
    font-size: 1.45rem;
  }

  .contact-role {
    margin-bottom: 14px;
    font-size: 0.88rem;
  }

  .contact-card > p:not(.contact-name):not(.contact-role),
  .contact-region {
    padding-top: 14px;
  }

  .contact-card > p:not(.contact-name):not(.contact-role),
  .contact-region span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .contact-details {
    gap: 8px;
    margin: 16px 0;
  }

  .contact-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 6px 10px;
  }

  .contact-row span {
    width: 36px;
    height: 36px;
  }

  .contact-row strong {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .contact-socials {
    margin-top: 0;
    padding-top: 16px;
  }

  .contact-socials a {
    width: 38px;
    height: 38px;
  }

  .hero.section-panel {
    width: 100%;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
    padding-top: 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .name-lockup {
    gap: 8px;
    margin-bottom: 18px;
  }

  .name-first {
    font-size: clamp(1.05rem, 7vw, 1.65rem);
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .name-last {
    font-size: clamp(2.55rem, 15vw, 3.9rem);
    letter-spacing: 0;
    line-height: 0.95;
    white-space: normal;
  }

  .lead {
    width: auto;
    max-width: 31rem;
    font-size: 1rem;
    line-height: 1.65;
    white-space: normal;
  }

  .hero-actions,
  .tags {
    margin-top: 20px;
  }

  .hero-photo {
    width: 100%;
    max-width: none;
    margin-top: 26px;
  }

  .hero-photo img {
    aspect-ratio: 4 / 3.35;
    border-radius: 0;
  }

  .hero-actions,
  .inline-actions,
  .button {
    width: 100%;
  }

  .center-button {
    width: max-content;
    min-width: min(260px, 100%);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .service-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .process-intro {
    white-space: normal;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 28px;
    padding: 82px 16px 74px;
  }

  .about::before {
    top: -44px;
    height: 76px;
  }

  .about::after {
    height: 66px;
  }

  .section-kicker h2,
  .section-head h2,
  .why-me-card h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .about .section-kicker {
    text-align: left;
  }

  .about-text {
    max-width: none;
  }

  .about-text p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .why-me-section {
    padding: 56px 16px;
  }

  .why-me-card {
    border-radius: 20px;
    padding: 36px 24px;
  }

  .why-me-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 62px;
  }

  .process-line {
    left: 8px;
    width: 46px;
    top: 34px;
    bottom: clamp(150px, 30vw, 220px);
  }

  .about-visual {
    min-height: auto;
  }

  .about-photo {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-top: 16px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card:nth-of-type(odd),
  .process-card:nth-of-type(even) {
    grid-column: auto;
    grid-row: auto;
  }

  .process-card:nth-of-type(odd)::before,
  .process-card:nth-of-type(even)::before {
    left: -62px;
    right: auto;
    width: 46px;
    height: 46px;
    font-size: 0.82rem;
    transform: translateY(-50%);
  }

  .process-card-inner {
    padding: 20px;
  }

  .floating-cta {
    display: none;
  }

  .footer {
    padding-bottom: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .footer-block + .footer-block {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .footer-button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
