:root {
  --promo-height: 54px;
  --bg: #ffffff;
  --bg-soft: #fff8fc;
  --surface: #ffffff;
  --surface-strong: #fff2f8;
  --surface-inverse: #111111;
  --text: #111111;
  --text-dark: #111111;
  --muted: #5f5f5f;
  --muted-dark: #5f5f5f;
  --line: rgba(17, 17, 17, 0.1);
  --line-dark: rgba(17, 17, 17, 0.1);
  --brand: #111111;
  --brand-dark: #000000;
  --accent: #ff2f93;
  --accent-dark: #e21f78;
  --accent-deep: #b01463;
  --ink-strong: #271f67;
  --shadow: 0 24px 60px rgba(39, 31, 103, 0.08);
  --radius: 30px;
  --radius-sm: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 4px 18px rgba(39, 31, 103, 0.04);
}

.promo-bar-inner {
  min-height: var(--promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 6px 0;
  scrollbar-width: none;
  white-space: nowrap;
}

.promo-bar-inner::-webkit-scrollbar {
  display: none;
}

.promo-city {
  font-weight: 800;
}

.promo-link,
.promo-mini,
.promo-bar-inner a {
  color: var(--accent);
  font-weight: 800;
}

.promo-link {
  color: var(--ink-strong);
}

.promo-mini {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 8px 24px rgba(39, 31, 103, 0.05);
}

.promo-bar + .site-header {
  top: var(--promo-height);
}

.header-row,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 14px 0;
  margin: 0 auto;
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: block;
  position: relative;
  background: #ffffff;
  background-image: url("./logomark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 76%;
  color: transparent;
  font-size: 0;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 32px rgba(112, 10, 57, 0.18);
  overflow: hidden;
}

.brand-mark::after {
  content: none;
}

.brand-copy span {
  display: block;
  color: var(--ink-strong);
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy small {
  display: block;
  color: rgba(39, 31, 103, 0.66);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(39, 31, 103, 0.06);
}

.language-link {
  min-width: 42px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(39, 31, 103, 0.72);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.72);
}

.language-link.is-active {
  color: #ffffff;
  background: var(--ink-strong);
}

.nav a {
  color: var(--ink-strong);
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink-strong);
  background: rgba(255, 47, 147, 0.1);
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:disabled,
.phone-link:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.button {
  background: var(--accent);
  color: var(--brand-dark);
  box-shadow: 0 14px 28px rgba(255, 47, 147, 0.18);
}

.button:hover,
.button:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(39, 31, 103, 0.14);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 12px 24px rgba(39, 31, 103, 0.05);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 47, 147, 0.36);
  background: rgba(255, 47, 147, 0.08);
  color: var(--ink-strong);
}

.phone-link {
  background: var(--ink-strong);
  color: #ffffff;
  border: 0;
  box-shadow: 0 14px 30px rgba(39, 31, 103, 0.2);
  flex: 0 0 auto;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  font-size: 1.4rem;
  color: var(--ink-strong);
}

@media (max-width: 1560px) {
  .header-row {
    gap: 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand-copy span {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding: 10px 10px;
    font-size: 0.95rem;
  }

  .phone-link {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

}

@media (max-width: 1220px) {
  .header-row {
    gap: 16px;
  }

  .nav a {
    padding: 10px 10px;
    font-size: 0.95rem;
  }

  .phone-link {
    padding: 0 18px;
    font-size: 0.96rem;
  }

}

.hero {
  padding: 8px 0 54px;
  background: #ffffff;
}

.hero-grid,
.content-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.hero > .container.hero-grid {
  grid-template-columns: 1fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(17, 17, 17, 0.03);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.6rem, 2.9vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-panel,
.card,
.service-card,
.faq-item,
.contact-card,
.price-card,
.highlight-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy,
.hero-panel,
.card,
.service-card,
.faq-item,
.contact-card,
.price-card,
.highlight-card {
  padding: 28px;
}

.hero-copy {
  padding: 0;
  background: transparent;
}

.hero-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 42px 46px 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ff2f93 0%, #ff479f 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 72px rgba(140, 12, 74, 0.18);
  color: #ffffff;
  align-items: center;
  overflow: hidden;
}

.hero-visual,
.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.hero-visual {
  align-items: center;
}

.hero-main {
  max-width: 560px;
  justify-self: center;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main h1 {
  max-width: 10.5ch;
  margin-bottom: 16px;
  line-height: 0.95;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  color: #ffffff;
}

.hero-main .lead {
  max-width: 43ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.62;
  margin-bottom: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-metric {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.hero-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.button.dark {
  background: var(--ink-strong);
  color: #ffffff;
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-form-grid > * {
  min-width: 0;
}

.hero-form {
  margin-top: 24px;
}

.hero-form-card {
  width: 100%;
  max-width: 100%;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 44px rgba(119, 10, 61, 0.16);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-form-card label {
  color: #fff7fb;
  font-weight: 700;
}

.hero-form input,
.hero-form textarea {
  min-height: 58px;
  border-radius: 18px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(109, 11, 57, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-form textarea {
  min-height: 108px;
  resize: vertical;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #9b9b9b;
}

.hero-form-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.hero-form-actions .button {
  flex: 0 0 auto;
  min-width: 236px;
  white-space: nowrap;
}

.hero-call-link {
  display: inline-grid;
  gap: 2px;
  min-height: 50px;
  font-weight: 800;
  color: #ffffff;
  min-width: 0;
  line-height: 1.35;
  white-space: normal;
  opacity: 0.92;
}

.hero-call-link strong,
.hero-call-link span {
  display: block;
}

.hero-call-link span {
  font-weight: 700;
  opacity: 0.9;
}

.hero-form-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 56ch;
}

.hero-actions,
.cta-row,
.chip-row,
.stats,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 18px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.hero-actions .button,
.hero-actions .phone-link {
  min-height: 54px;
  white-space: nowrap;
}

.hero-badge {
  margin-bottom: 12px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-visual {
  gap: 24px;
}

.hero-illustration {
  width: min(100%, 540px);
  filter: drop-shadow(0 30px 44px rgba(122, 8, 63, 0.16));
  margin: 0 auto;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 440px;
}

.hero-visual-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-review-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.hero-review-intro,
.hero-review-item {
  min-height: 120px;
  padding: 24px 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 16px 34px rgba(27, 21, 70, 0.06);
}

.hero-review-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-review-intro strong,
.hero-review-item strong {
  color: var(--ink-strong);
  font-family: "IBM Plex Sans", sans-serif;
}

.hero-review-intro strong {
  font-size: 1.65rem;
  line-height: 1;
}

.hero-review-intro span,
.hero-review-item span {
  color: #3f3a68;
}

.hero-review-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-review-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  flex: 0 0 auto;
}

.hero-review-mark.google {
  background: #4285f4;
}

.hero-review-mark.pink {
  background: var(--accent);
}

.hero-review-mark.dark {
  width: auto;
  min-width: 54px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink-strong);
}

.impact-band {
  padding: 20px 0 28px;
}

.impact-band-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 36px 40px;
  border-radius: 34px;
  background: linear-gradient(180deg, #271f67 0%, #31297a 100%);
  box-shadow: 0 24px 56px rgba(39, 31, 103, 0.14);
}

.impact-badge {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 auto;
}

.impact-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.impact-badge-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.impact-badge-label-top {
  top: 18px;
}

.impact-badge-label-bottom {
  bottom: 18px;
}

.impact-badge-icon {
  width: 84px;
  height: 84px;
  display: block;
  border-radius: 50%;
  background: #ffffff url("./logomark.svg") center / 64% no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 18px 34px rgba(255, 95, 162, 0.28);
}

.impact-copy h2 {
  margin-bottom: 12px;
  max-width: none;
  color: #ffffff;
}

.impact-copy p {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
}

.impact-button {
  background: var(--accent);
  color: #ffffff;
  min-width: 240px;
  box-shadow: 0 16px 34px rgba(255, 47, 147, 0.22);
}

.chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

.stats {
  margin-top: 28px;
}

.stat {
  flex: 1 1 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-family: "IBM Plex Sans", sans-serif;
}

.section {
  padding: 54px 0;
}

.section h2 {
  max-width: 24ch;
}

.section:nth-of-type(even):not(.accent-section) {
  position: relative;
}

.section:nth-of-type(even):not(.accent-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
  pointer-events: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 38px;
}

.section-header > div {
  display: grid;
  flex: 1 1 0;
  gap: 16px;
  max-width: 780px;
}

.section-header .eyebrow,
.section-header h2 {
  margin: 0;
}

.section-header p {
  flex: 0 1 420px;
  margin: 0;
  padding-top: 14px;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

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

:is(.content-grid, .showcase-grid, .trust-grid, .process-grid, .price-grid, .faq-grid, .contact-grid, .footer-grid, .editorial-stat-grid, .quote-grid, .timeline-grid, .contact-mini-grid, .article-grid, .region-grid, .photo-story-grid, .about-gallery-grid) > * {
  min-width: 0;
}

.content-grid-duo {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.content-grid-duo .editorial-prose h2 {
  max-width: 13ch;
}

.content-grid-duo .editorial-panel-note h3 {
  max-width: 11ch;
}

.stack-grid {
  display: grid;
  gap: 20px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  grid-auto-rows: 1fr;
  margin-top: 26px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 16px 36px rgba(39, 31, 103, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(39, 31, 103, 0.09);
}

.showcase-icon {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: #21215f;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 47, 147, 0.08) 0%, rgba(255, 47, 147, 0.02) 100%);
}

.showcase-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.showcase-card h3 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #21215f;
  text-wrap: balance;
}

.showcase-card p {
  margin: 0;
  max-width: 31ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2f2f68;
}

.showcase-link {
  margin-top: 4px;
  color: #ff2f93;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.showcase-card .showcase-link,
.service-card .inline-link,
.price-card .inline-link,
.trust-card .inline-link,
.article-card .inline-link,
.region-card .inline-link,
.timeline-card .inline-link {
  margin-top: auto;
}

.showcase-link::after {
  content: " ↗";
}

.feature-split-section {
  padding-top: 8px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.feature-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.02;
  color: var(--ink-strong);
}

.feature-copy p {
  max-width: 46ch;
  margin: 0;
  color: #3f3a68;
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-point {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 14px 30px rgba(39, 31, 103, 0.05);
}

.feature-point strong {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.12rem;
  color: var(--ink-strong);
}

.feature-point span {
  color: #4a4574;
}

.feature-visual-card {
  position: relative;
  padding: 0 28px 28px 0;
}

.feature-visual-shadow {
  position: absolute;
  inset: 34px 0 0 34px;
  border-radius: 28px;
  background: var(--accent);
}

.feature-photo-frame {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 24px 54px rgba(39, 31, 103, 0.12);
}

.feature-photo-frame svg,
.feature-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-photo-frame img {
  aspect-ratio: 1555 / 1012;
  object-fit: cover;
}

.feature-photo-badge {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 20px 22px 22px;
  max-width: none;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 249, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--ink-strong);
  border-top: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.feature-photo-badge strong {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.feature-photo-badge span {
  color: #4f4a78;
  font-size: 0.92rem;
  line-height: 1.45;
}

.photo-story-grid,
.about-gallery-grid {
  display: grid;
  gap: 24px;
}

.photo-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-gallery-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.photo-story-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.photo-story-media {
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
}

.about-gallery-grid .photo-story-media {
  aspect-ratio: 16 / 10;
}

.photo-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-story-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.photo-story-copy .kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.photo-story-copy h3 {
  margin: 0;
  color: var(--ink-strong);
  text-wrap: balance;
}

.photo-story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-card,
.price-card,
.highlight-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 18px 36px rgba(39, 31, 103, 0.06);
}

.service-card::after,
.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 147, 0.16), transparent 65%);
}

.service-card ul,
.price-card ul,
.contact-card ul,
.footer-nav {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.price-card li,
.contact-card li,
.footer-nav li {
  margin-bottom: 10px;
  color: var(--muted);
}

.service-card strong,
.price-card strong {
  color: var(--accent);
}

.compact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(39, 31, 103, 0.05);
}

.compact-card h3 {
  max-width: 14ch;
  margin: 0;
  text-wrap: balance;
}

.compact-card p {
  max-width: 31ch;
}

.service-card .kicker,
.price-card .kicker,
.contact-card .kicker,
.highlight-card .kicker {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card p,
.price-card p,
.highlight-card p,
.contact-card p,
.card p {
  color: #3e3e3e;
}

.service-card > *:last-child,
.price-card > *:last-child,
.highlight-card > *:last-child,
.contact-card > *:last-child,
.trust-card > *:last-child,
.compact-card > *:last-child,
.quote-card > *:last-child,
.timeline-card > *:last-child,
.article-card > *:last-child,
.region-card > *:last-child {
  margin-bottom: 0;
}

.service-card h3,
.price-card h3,
.contact-card h3,
.card h3,
.highlight-card h3 {
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafe 100%);
}

.trust-card h3 {
  max-width: 16ch;
  margin: 0;
  text-wrap: balance;
}

.trust-card p {
  max-width: 34ch;
}

.pricing-grid {
  gap: 22px;
}

.pricing-card {
  padding: 28px;
  border-radius: 30px;
  min-height: 100%;
}

.pricing-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 47, 147, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffafe 100%);
}

.accent-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 63, 147, 0.2), transparent 24%),
    linear-gradient(180deg, #f7f7f7, #efefef);
  color: #111111;
  margin: 38px 0;
  padding: 50px 0;
}

.accent-section .card,
.accent-section .highlight-card {
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: none;
}

.accent-section p,
.accent-section li {
  color: #4b4b4b;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.steps {
  counter-reset: step;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
}

.steps .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
}

.price-grid,
.faq-grid,
.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 800;
}

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

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.faq-item {
  min-height: 100%;
}

.contact-card h3,
.hero-panel h2 {
  margin-bottom: 12px;
}

.contact-card > .eyebrow {
  width: fit-content;
  margin-bottom: 16px;
}

.contact-card > .eyebrow + h2,
.contact-card > .eyebrow + h3 {
  margin-top: 0;
}

@media (max-width: 1440px) {
  .content-grid:not(.content-grid-duo),
  .compact-grid,
  .showcase-grid,
  .trust-grid,
  .process-grid,
  .timeline-grid,
  .editorial-stat-grid,
  .photo-story-grid,
  .about-gallery-grid,
  .article-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3,
  .price-card h3,
  .contact-card h3,
  .trust-card h3,
  .compact-card h3,
  .showcase-card h3,
  .card h3,
  .highlight-card h3 {
    max-width: none;
  }

  .showcase-card p,
  .trust-card p,
  .compact-card p,
  .service-card p,
  .price-card p,
  .contact-card p,
  .highlight-card p {
    max-width: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button,
  .hero-actions .phone-link {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hero-form-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-form-actions .button {
    flex: 1 1 220px;
    min-width: 0;
  }

  .hero-call-link {
    flex: 1 1 240px;
  }

  .form-submit {
    align-items: flex-start;
  }
}

.contact-card,
.price-card,
.highlight-card {
  background: rgba(255, 255, 255, 0.94);
}

.primary-contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 147, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
}

.primary-contact-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -44px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 147, 0.14), transparent 70%);
  pointer-events: none;
}

.contact-details-card,
.form-lead-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.contact-details-card ul {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-details-card li {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-details-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.form-lead-card .lead-form {
  margin-top: 18px;
}

.site-footer {
  margin-top: 52px;
  padding: 32px 0 46px;
  background: linear-gradient(180deg, rgba(255, 47, 147, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer-grid {
  margin-top: 28px;
}

.footer-top {
  align-items: flex-start;
}

.footer-grid > div {
  padding: 24px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 16px 34px rgba(39, 31, 103, 0.05);
}

.footer-grid h3 {
  margin-bottom: 10px;
}

.footer-note,
.breadcrumbs,
.muted {
  color: var(--muted);
}

.footer-note {
  max-width: 54ch;
  line-height: 1.65;
}

.breadcrumbs {
  margin: 18px 0 0;
  font-weight: 700;
}

.hero-page {
  padding-top: 48px;
  overflow: hidden;
}

.hero-page .section:first-child {
  padding-top: 24px;
}

.breadcrumbs + .service-hero-shell,
.breadcrumbs + .editorial-hero,
.breadcrumbs + .article-layout {
  margin-top: 20px;
}

.service-hero-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  gap: 30px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 20px 44px rgba(39, 31, 103, 0.07);
}

.service-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 47, 147, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(39, 31, 103, 0.05), transparent 32%);
  pointer-events: none;
}

.service-hero-shell > * {
  position: relative;
  z-index: 1;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-hero-copy h1 {
  max-width: 11ch;
  margin: 18px 0 16px;
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.service-hero-copy .lead {
  max-width: 46ch;
  margin: 0;
  color: #403a6d;
  font-size: 1.02rem;
  line-height: 1.68;
}

.service-tag-row,
.service-stat-row,
.service-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tag-row {
  margin-top: 20px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 47, 147, 0.08);
  border: 1px solid rgba(255, 47, 147, 0.14);
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-stat-row {
  margin-top: 24px;
}

.service-stat {
  flex: 1 1 150px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(39, 31, 103, 0.08);
  box-shadow: 0 14px 28px rgba(39, 31, 103, 0.05);
}

.service-stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  color: var(--ink-strong);
}

.service-stat span {
  display: block;
  color: #4d4778;
  font-size: 0.92rem;
  line-height: 1.4;
}

.service-link-row {
  margin-top: auto;
  padding-top: 22px;
}

.service-hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 20px;
  align-self: stretch;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #271f67 0%, #342b7d 100%);
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(39, 31, 103, 0.16);
}

.service-hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.service-hero-panel h2 {
  margin: 0;
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.service-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.service-hero-panel .check-list {
  margin-top: 0;
  margin-bottom: 0;
}

.service-hero-panel .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.service-panel-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 10px;
}

.map-list {
  columns: 2;
  gap: 24px;
  padding-left: 18px;
}

.map-list li {
  margin-bottom: 8px;
}

.coverage-card {
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 147, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.section-stack {
  margin-top: 24px;
}

.editorial-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 199, 225, 0.24), transparent 30%),
    linear-gradient(135deg, #ff2f93 0%, #ff57a6 48%, #ff68b0 100%);
  box-shadow: 0 28px 60px rgba(255, 47, 147, 0.18);
}

.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.breadcrumbs + .editorial-hero {
  margin-top: 20px;
}

.editorial-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.editorial-hero-copy,
.editorial-hero-panel,
.article-main,
.article-side {
  min-width: 0;
}

.editorial-hero-copy {
  display: grid;
  align-content: start;
}

.editorial-hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.editorial-hero-copy h1 {
  margin-top: 18px;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.editorial-hero-copy .lead {
  max-width: 58ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.7;
}

.editorial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.editorial-hero-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 46px rgba(17, 17, 17, 0.12);
}

.editorial-hero-panel .kicker,
.editorial-panel-note .kicker,
.article-aside-card .kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 47, 147, 0.1);
  color: var(--accent-deep);
}

.article-aside-card .kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.editorial-hero-panel h2,
.editorial-panel-note h3,
.article-aside-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.editorial-hero-panel p,
.editorial-panel-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.editorial-hero-panel .check-list {
  margin: 0;
}

.editorial-stat-grid,
.quote-grid,
.timeline-grid,
.contact-mini-grid {
  display: grid;
  gap: 18px;
}

.editorial-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-stat {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.editorial-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
}

.editorial-stat span {
  color: var(--muted);
  line-height: 1.55;
}

.editorial-panel-note {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 47, 147, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.editorial-prose {
  display: grid;
  gap: 20px;
}

.editorial-prose h2,
.editorial-prose h3,
.editorial-prose p {
  margin: 0;
}

.editorial-prose h2,
.editorial-prose h3 {
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.editorial-prose p,
.editorial-prose li {
  color: var(--muted);
  line-height: 1.75;
}

.editorial-prose ul,
.editorial-prose ol {
  margin: 0;
  padding-left: 20px;
}

.quote-grid,
.timeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.quote-card,
.timeline-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.quote-card p,
.timeline-card p {
  margin: 0;
  line-height: 1.75;
}

.quote-card p::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 47, 147, 0.34);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.8rem;
  line-height: 0.7;
}

.quote-card strong,
.timeline-card strong {
  display: block;
  margin-top: auto;
  padding-top: 4px;
  color: #111111;
  font-family: "IBM Plex Sans", sans-serif;
}

.timeline-card .kicker {
  margin-bottom: 12px;
}

.timeline-card p {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.06);
}

.article-main .eyebrow,
.article-main h1,
.article-main p {
  margin-top: 0;
}

.article-main h1 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 4.7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.article-side,
.article-layout > .article-aside-card {
  position: sticky;
  top: calc(var(--promo-height) + 92px);
  align-self: start;
}

.article-aside-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: #1f1a68;
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(31, 26, 104, 0.2);
}

.article-aside-card::after {
  content: "";
  position: absolute;
  inset: auto -26px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.article-aside-card p,
.article-aside-card li {
  color: rgba(255, 255, 255, 0.82);
}

.article-aside-card > * {
  margin-top: 0;
  margin-bottom: 0;
}

.article-aside-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-mini-card span {
  color: var(--muted);
}

.article-grid,
.region-grid {
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.article-card,
.region-card {
  min-height: 100%;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #111111;
}

.hero-panel .mini-grid,
.metric-grid {
  display: grid;
  gap: 14px;
}

.hero-panel .mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mini-card,
.metric-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.mini-card strong,
.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.25rem;
  color: #111111;
}

.section-band {
  margin: 10px 0 24px;
  padding: 18px 22px;
  border-radius: 24px;
  background: #f3f3f3;
  color: #111111;
}

.section-band p {
  margin: 0;
  max-width: 70ch;
  color: #2e2e2e;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  align-items: center;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.03) 0%, rgba(17, 17, 17, 0.05) 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  border-color: rgba(255, 63, 147, 0.55);
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(39, 31, 103, 0.08);
}

.contact-pill[href*="t.me"] {
  background: rgba(34, 158, 217, 0.1);
  border-color: rgba(34, 158, 217, 0.24);
}

.contact-pill[href^="viber:"] {
  background: rgba(115, 96, 242, 0.1);
  border-color: rgba(115, 96, 242, 0.24);
}

.contact-pill[href^="tel:"] {
  background: rgba(39, 31, 103, 0.08);
  border-color: rgba(39, 31, 103, 0.14);
}

.contact-pill[href^="mailto:"] {
  background: rgba(255, 47, 147, 0.08);
  border-color: rgba(255, 47, 147, 0.18);
}

.contact-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-proof-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 252, 0.96) 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.05);
}

.contact-proof-card p,
.contact-proof-note {
  margin: 0;
  color: #2e2e2e;
}

.contact-proof-card p::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 47, 147, 0.34);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.3rem;
  line-height: 0.7;
}

.contact-proof-card strong {
  color: #111111;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.98rem;
}

.contact-proof-note {
  margin-top: 14px;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-size: 0.95rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #111111;
  font: inherit;
  box-shadow: 0 12px 24px rgba(39, 31, 103, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(255, 63, 147, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 63, 147, 0.16);
}

.lead-form input.is-invalid,
.lead-form textarea.is-invalid,
.lead-form select.is-invalid {
  border-color: rgba(196, 32, 68, 0.85);
  box-shadow: 0 0 0 4px rgba(196, 32, 68, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  margin: 0;
  color: #2f2f2f;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-tone="error"] {
  color: #b42318;
}

.form-status[data-tone="success"] {
  color: #17663a;
}

.form-status[data-tone="default"] {
  color: #525252;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.form-submit .button {
  flex: 0 0 auto;
  min-width: 220px;
}

.form-submit .form-note {
  flex: 1 1 280px;
  max-width: 38ch;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(16px, calc(12px + env(safe-area-inset-bottom, 0px)));
  z-index: 40;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.sticky-cta .button,
.sticky-cta .phone-link {
  flex: 1 1 0;
  min-height: 48px;
  padding: 0 14px;
}

.sticky-cta .phone-link {
  background: #111111;
  color: #ffffff;
}

@media (max-width: 1440px) {
  .form-submit .button {
    min-width: 0;
  }
}

@media (max-width: 1280px) {
  .header-row {
    display: flex;
    padding: 12px 0;
    margin: 0 auto;
    min-height: 78px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav a {
    color: #1f1f1f;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--accent);
    background: rgba(255, 47, 147, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .desktop-only {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .language-switcher {
    margin-right: 8px;
  }

  .hero-stage {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    padding: 36px 34px 32px;
  }

  .hero-main {
    max-width: none;
  }

  .hero-main h1 {
    max-width: 9.5ch;
    font-size: clamp(2.2rem, 4vw, 4rem);
  }

  .hero-main .lead {
    max-width: none;
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-metric {
    padding: 14px 14px 12px;
  }

  .hero-metric strong {
    font-size: 1.1rem;
  }

  .hero-metric span {
    font-size: 0.84rem;
  }

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

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

  .hero-form-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-illustration {
    width: min(100%, 460px);
  }

  .service-hero-shell {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .service-hero-copy h1,
  .service-hero-copy .lead {
    max-width: none;
  }

  .editorial-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    padding: 36px;
  }

  .editorial-hero-copy h1 {
    max-width: none;
  }

  .article-side,
  .article-layout > .article-aside-card {
    position: static;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .content-grid,
  .showcase-grid,
  .price-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid,
  .photo-story-grid,
  .about-gallery-grid,
  .feature-split,
  .editorial-stat-grid,
  .quote-grid,
  .timeline-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .section-header > div {
    max-width: none;
  }

  .section h2,
  .section-header > div,
  .section-header p {
    max-width: none;
  }

  .section-header p {
    flex-basis: auto;
    padding-top: 0;
    border-top: 0;
  }

  .map-list {
    columns: 1;
  }

  .feature-photo-badge {
    max-width: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel .mini-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 22px 22px;
  }

  .hero-review-strip {
    grid-template-columns: 1fr;
  }

  .impact-band-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 24px;
  }

  .impact-badge {
    margin: 0;
  }

  .impact-copy p {
    max-width: none;
  }

  .feature-visual-card {
    max-width: 760px;
    width: 100%;
  }

  .hero-main h1,
  .hero-main .lead {
    max-width: none;
  }

  .hero-illustration {
    width: min(100%, 520px);
  }

  .hero-visual,
  .hero-main {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --promo-height: 52px;
  }

  .promo-bar-inner {
    font-size: 0.88rem;
    line-height: 1.35;
    gap: 8px;
    justify-content: flex-start;
    padding: 8px 4px;
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero-page .section:first-child {
    padding-top: 16px;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .service-card,
  .faq-item,
  .contact-card,
  .price-card,
  .highlight-card,
  .article-main,
  .quote-card,
  .timeline-card,
  .editorial-hero,
  .editorial-hero-panel,
  .editorial-panel-note,
  .article-aside-card {
    padding: 22px;
  }

  .header-row {
    min-height: 72px;
  }

  .hero-stage {
    padding: 22px 18px 18px;
  }

  .hero-main h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero-form-actions,
  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-form-actions .button,
  .hero-actions .button,
  .hero-actions .phone-link,
  .form-submit .button {
    width: 100%;
  }

  .hero-call-link {
    white-space: normal;
  }

  .hero-call-link {
    min-height: 0;
  }

  .hero-review-intro,
  .hero-review-item {
    min-height: 0;
    padding: 18px;
  }

  .impact-badge {
    width: 128px;
    height: 128px;
  }

  .impact-button {
    width: 100%;
    min-width: 0;
  }

  .showcase-grid {
    gap: 34px;
  }

  .showcase-card {
    padding: 22px;
  }

  .feature-visual-card {
    padding: 0 18px 18px 0;
  }

  .feature-photo-badge,
  .photo-story-copy {
    padding: 18px;
  }

  .editorial-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .feature-visual-shadow {
    inset: 22px 0 0 22px;
  }

  .showcase-icon {
    width: 104px;
    height: 104px;
  }

  .showcase-card h3,
  .showcase-card p {
    max-width: none;
  }

  .breadcrumbs + .service-hero-shell,
  .breadcrumbs + .editorial-hero,
  .breadcrumbs + .article-layout {
    margin-top: 16px;
  }

  .service-card h3,
  .price-card h3,
  .contact-card h3,
  .trust-card h3,
  .compact-card h3,
  .card h3,
  .highlight-card h3 {
    max-width: none;
  }

  .section {
    padding: 42px 0;
  }

  .section-header {
    gap: 16px;
    margin-bottom: 26px;
  }

  .section-header p {
    font-size: 0.98rem;
  }

  .contact-actions {
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .contact-pill {
    width: 100%;
  }

  .brand-copy span {
    display: block;
    max-width: 120px;
    white-space: normal;
  }

  .brand-copy small {
    white-space: normal;
  }

  .language-link {
    min-width: 38px;
    min-height: 34px;
    padding: 0 10px;
  }

  .sticky-cta {
    display: flex;
    left: 12px;
    right: 12px;
    gap: 8px;
    padding: 10px;
    bottom: max(12px, calc(10px + env(safe-area-inset-bottom, 0px)));
  }

  .sticky-cta .button,
  .sticky-cta .phone-link {
    min-width: 0;
    font-size: 0.95rem;
  }

  body {
    padding-bottom: 112px;
  }
}
