:root {
  --bg: #ffffff;
  --paper: #f7f9fc;
  --ink: #0a1628;
  --navy: #0a1628;
  --muted: #5c6a7d;
  --line: #e5ebf3;
  --deep: #050d1a;
  --accent: #0078ff;
  --accent-2: #00c6ff;
  --blue: #0078ff;
  --blue-dark: #0063d6;
  --yellow: #f59e0b;
  --green: #16a34a;
  --shadow-soft: 0 24px 80px rgba(10, 22, 40, 0.08);
  --shadow-blue: 0 26px 90px rgba(0, 120, 255, 0.26);
  --heading-font: "Consolas", "Inter", sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 44px rgba(10, 22, 40, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-nav.scrolled {
  border-color: rgba(10, 22, 40, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wordmark img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(10, 22, 40, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 34px rgba(0, 120, 255, 0.28);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 120, 255, 0.34);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(10, 22, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
}

.site-nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 4px;
  padding: 14px 6px 10px;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  margin-top: 10px;
}

.mobile-menu a {
  padding: 12px 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(0, 120, 255, 0.08);
  color: var(--accent);
}

.mobile-menu-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
  padding: 10px;
}

.mobile-menu-meta .nav-cta {
  flex: 1;
  justify-content: center;
}

.site-nav.menu-open .mobile-menu {
  display: flex;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .nav-cta {
    display: none;
  }
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-blue);
  color: #fff;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 96px rgba(0, 120, 255, 0.32);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(0, 120, 255, 0.28);
}

.button-light {
  background: #fff;
  box-shadow: 0 18px 50px rgba(10, 22, 40, 0.18);
  color: var(--ink);
}

.button-light:hover {
  background: #edf5ff;
  box-shadow: 0 24px 60px rgba(10, 22, 40, 0.22);
}

.hero {
  position: relative;
  display: flex;
  min-height: 630px;
  height: 630px;
  max-height: 670px;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/polexpert-work-katren.jpg");
  background-position: 72% center;
  background-size: cover;
  filter: saturate(0.85);
}

.hero-shade {
  background: linear-gradient(100deg, rgba(4, 12, 23, 0.95) 12%, rgba(4, 12, 23, 0.74) 42%, rgba(4, 12, 23, 0.3) 100%);
}

.hero-overlay {
  position: absolute;
  right: calc(3% + 305px);
  top: calc(50% + 50px);
  transform: translateY(-50%);
  z-index: 1;
  max-height: 66%;
  max-width: 32%;
  object-fit: contain;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 109px;
  padding-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent-2);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 62px;
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  padding-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
}

.hero-facts {
  display: grid;
  max-width: 930px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.23);
  padding-left: 22px;
}

.hero-facts strong {
  font-size: 18px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.section {
  padding: 112px 0;
}

.audience {
  padding-top: 48px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 72px;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.sector h3,
.deliverable h3,
.timeline h3,
.qualifier-columns h3,
.case-metrics dt {
  font-family: var(--heading-font);
  letter-spacing: 0;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.sector {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.sector-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.sector-number {
  position: absolute;
  top: 28px;
  right: 26px;
  color: var(--blue);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
}

.sector h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.sector p,
.deliverable p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.problems-heading {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.problems-visual {
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
  margin: 28px 0 0;
  min-height: 0;
}

.problems-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.problem-column {
  display: flex;
  flex-direction: column;
}

.problems-intro {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.72);
}

.problems-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: cover;
}

.problems-visual figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.problem-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.problem-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 34px 0;
}

.problem-icon {
  width: 83px;
  height: 83px;
  object-fit: contain;
}

.problem-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.problem-row span {
  color: var(--accent-2);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
}

.problem-row p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 1.6;
}

.deliverables {
  background: var(--paper);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.deliverable {
  display: grid;
  min-height: 220px;
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
}

.deliverable-icon {
  width: 99px;
  height: 99px;
  grid-row: 1 / 3;
  object-fit: contain;
}

.deliverable h3 {
  align-self: end;
  margin: 0;
  font-size: 22px;
}

.case {
  scroll-margin-top: 76px;
  overflow: hidden;
}

.case-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.case-heading h2 {
  max-width: 820px;
}

.case-link {
  flex: 0 0 auto;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  padding-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.case-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 52px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(8, 21, 40, 0.14);
}

.browser-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #f5f7fa;
  padding: 0 16px;
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b7c1ce;
}

.browser-bar div {
  width: 42%;
  max-width: 390px;
  border: 1px solid #dce3eb;
  border-radius: 5px;
  background: #fff;
  color: #718094;
  margin-left: 10px;
  padding: 5px 12px;
  font-size: 14px;
}

.case-browser img {
  width: 100%;
  height: auto;
}

.case-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 62px;
}

.case-story {
  max-width: 580px;
}

.case-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
}

.case-story p:not(.case-label) {
  margin: 0 0 16px;
  color: #3d4b5d;
  font-size: 19px;
  line-height: 1.65;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0;
}

.case-metrics .metric-icon {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.case-gallery figure {
  margin: 0;
}

.case-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.case-gallery figcaption {
  color: var(--muted);
  padding-top: 11px;
  font-size: 15px;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-top: 62px;
  list-style: none;
}

.timeline li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  border-top: 2px solid var(--ink);
  padding: 22px 25px 0 0;
}

.timeline li + li {
  padding-left: 25px;
}

.timeline > li > span {
  color: var(--blue);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
}

.timeline-icon {
  width: 104px;
  height: 104px;
  margin: 22px 0 6px;
  object-fit: contain;
}

.timeline h3 {
  margin: 8px 0 10px;
  font-size: 21px;
}

.section-blue {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 198, 255, 0.28), transparent 38%),
    linear-gradient(135deg, var(--accent), #0a63d6);
  color: #fff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.pricing-copy h2 {
  max-width: 740px;
}

.pricing-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.65;
}

.price-includes {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 56px;
}

.price-includes .case-label {
  color: rgba(255, 255, 255, 0.68);
}

.price-includes ul,
.qualifier-columns ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 13px 0 13px 24px;
  font-size: 17px;
}

.price-includes li::before {
  position: absolute;
  left: 0;
  color: #fff;
  content: "✓";
  font-weight: 800;
}

.qualifier-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.qualifier-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.qualifier-columns h3 {
  margin: 0 0 18px;
  font-size: 21px;
}

.qualifier-columns li {
  position: relative;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 14px 0 14px 24px;
  font-size: 17px;
}

.qualifier-columns li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 800;
}

.qualifier-columns div:last-child li::before {
  color: #b24e4e;
  content: "–";
}

.final-cta {
  background: var(--deep);
  color: #fff;
}

.final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.final-layout h2 {
  max-width: 800px;
}

.final-layout p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.65;
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  align-items: start;
  gap: 42px;
}

.footer-mark img {
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 14px 0 0;
  font-weight: 700;
}

.site-footer .footer-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Consolas", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.legal-row a:hover {
  color: #00c6ff;
}

.footer-cta {
  display: inline-flex;
  min-height: 44px;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  margin-top: 14px;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  box-shadow: 0 12px 30px rgba(0, 120, 255, 0.28);
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
}

.legal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 46px;
  padding: 22px 0 28px;
}

.legal-links {
  display: flex;
  flex: 1 1 60%;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.legal-links > a {
  position: relative;
  font-size: 14px;
}

.legal-links > a:not(:last-of-type)::after {
  position: absolute;
  right: -10px;
  color: rgba(255, 255, 255, 0.32);
  content: "·";
}

.legal-note {
  width: 100%;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.legal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.built-by {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.cookie-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  display: flex;
  max-width: 640px;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
  margin: 0 auto;
  background: var(--ink);
  box-shadow: 0 18px 60px rgba(10, 22, 40, 0.35);
  color: #fff;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar a {
  color: #00c6ff;
  text-decoration: underline;
}

.cookie-bar button {
  min-height: 40px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  color: #fff;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 48px;
  }

  .sectors,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid,
  .pricing-layout {
    gap: 60px;
  }

  .case-summary {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .qualifier-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: 620px;
    height: 100svh;
    max-height: 720px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background: rgba(4, 12, 23, 0.84);
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 15px 0;
    margin-top: 32px;
  }

  .hero-facts li {
    min-height: 56px;
    padding-left: 14px;
  }

  .hero-facts li:last-child {
    display: none;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .hero-facts span {
    font-size: 13px;
  }

  .section {
    padding: 76px 0;
  }

  .audience {
    padding-top: 48px;
  }

  .split-heading,
  .problems-grid,
  .deliverable-grid,
  .pricing-layout,
  .final-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h2 {
    font-size: 34px;
  }

  .section-intro {
    font-size: 17px;
  }

  .sectors {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .sector {
    min-width: 0;
    min-height: 240px;
    padding: 24px;
  }

  .sector-icon {
    width: 82px;
    height: 82px;
  }

  .sector-number {
    top: 26px;
    right: 24px;
  }

  .sector h3 {
    margin-top: 22px;
    font-size: 21px;
    overflow-wrap: anywhere;
  }

  .sector p {
    font-size: 17px;
  }

  .problems-heading {
    position: static;
  }

  .problem-row {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .problem-icon {
    width: 48px;
    height: 48px;
  }

  .problem-row p {
    font-size: 19px;
  }

  .deliverable-grid {
    gap: 8px;
    margin-top: 36px;
  }

  .deliverable {
    min-height: 210px;
    grid-template-columns: 68px 1fr;
    padding: 24px;
  }

  .deliverable-icon {
    width: 60px;
    height: 60px;
  }

  .deliverable h3 {
    font-size: 20px;
  }

  .case-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .case-browser {
    width: calc(100% - 16px);
    margin-top: 36px;
  }

  .browser-bar {
    height: 34px;
  }

  .browser-bar div {
    width: 65%;
    padding: 3px 9px;
  }

  .case-summary {
    margin-top: 42px;
  }

  .case-metrics {
    gap: 12px;
  }

  .case-metrics .metric-icon {
    max-width: 92px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
  }

  .timeline {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .timeline li,
  .timeline li + li {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 6px;
    padding: 20px 0 22px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    margin: 10px 0 4px;
  }

  .timeline h3 {
    margin: 0 0 7px;
  }

  .price-includes {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
    padding-top: 34px;
    padding-left: 0;
  }

  .qualifier-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-layout {
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-links > a:not(:last-of-type)::after {
    display: none;
  }

  .legal-right {
    align-items: flex-start;
  }

  .cookie-bar {
    align-items: stretch;
    flex-direction: column;
    font-size: 15px;
  }
}

.button-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: #fff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-width: 280px;
}

.lead-form-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.lead-form-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.lead-form-copy h2 {
  margin: 10px 0 16px;
  font-size: 28px;
}

.lead-form-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.lead-form-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.lead-form-contacts a {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}

.messengers-hint {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  margin: 4px 0 0 0;
  line-height: 1.5;
}


.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-form label.full {
  grid-column: 1 / -1;
}

.lead-form label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 180ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

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

.lead-form .consent-label {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.lead-form .consent-label input {
  margin-top: 3px;
  width: auto;
}

.lead-form .consent-label a {
  color: var(--accent);
  text-decoration: underline;
}

.lead-form button {
  grid-column: 1 / -1;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-blue);
  color: #fff;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 96px rgba(0, 120, 255, 0.32);
}

.form-error {
  grid-column: 1 / -1;
  color: #c0392b;
  font-size: 15px;
}

.form-success {
  grid-column: 1 / -1;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 860px) {
  .lead-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .final-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .final-actions .button {
    flex: 1 1 200px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .pricing-copy .button-outline {
    margin-top: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
