:root {
  --navy: #071B4D;
  --orange: #F25A1D;
  --orange-light: #FFF0E8;
  --blue: #3557FF;
  --text: #34405F;
  --muted: #69728A;
  --bg: #F7F8FB;
  --white: #FFFFFF;
  --border: #E6E8EF;
  --shadow: 0 26px 70px rgba(7, 27, 77, 0.10);
  --shadow-strong: 0 34px 90px rgba(7, 27, 77, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

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

img,
svg {
  display: block;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 48px, var(--container));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  flex: 0 0 auto;
}

.logo {
  width: 144px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--navy);
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  background: var(--orange);
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(242, 90, 29, 0.22);
  font-weight: 650;
}

.header-cta:hover,
.button-primary:hover {
  background: #de4e16;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(7, 27, 77, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto 16px;
  max-height: calc(100vh - 108px);
  max-height: calc(100dvh - 108px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 14px 36px;
  border: 1px solid rgba(230, 232, 239, 0.9);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.08);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: #F8FAFD;
}

.mobile-nav .mobile-nav-cta {
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(242, 90, 29, 0.2);
}

.mobile-nav .mobile-nav-cta:hover {
  background: #de4e16;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(53, 87, 255, 0.05), transparent 28%),
    linear-gradient(180deg, var(--white), var(--bg));
}

.hero::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 6%;
  width: 190px;
  height: 150px;
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(7, 27, 77, 0.13) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 14%;
  width: 190px;
  height: 240px;
  opacity: 0.35;
  background: repeating-linear-gradient(120deg, transparent 0 16px, rgba(7, 27, 77, 0.08) 17px 18px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--container));
  min-height: 660px;
  margin: 0 auto;
  padding: 78px 0 82px;
  display: grid;
  grid-template-columns: minmax(640px, 0.96fr) minmax(730px, 1fr);
  align-items: center;
  gap: 22px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 4.25vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.024em;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 665px;
  margin: 24px 0 28px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-weight: 550;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 28px;
  padding-left: 42px;
  display: flex;
  align-items: center;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: var(--white);
  font-size: 16px;
  font-weight: 800;
}

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

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 36px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 26px rgba(242, 90, 29, 0.22);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--navy);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Dashboard cards */
.hero-dashboard {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(288px, 0.9fr);
  grid-template-areas:
    "audience value"
    "consult value";
  align-items: center;
  gap: 22px;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 232, 239, 0.82);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.audience-card {
  grid-area: audience;
  padding: 36px;
}

.value-card {
  grid-area: value;
  padding: 38px 36px;
}

.consult-card {
  grid-area: consult;
  min-height: 136px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}

.card-heading h2,
.consult-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.consult-card h2 {
  margin-bottom: 3px;
}

.line-icon svg,
.mini-icon svg,
.consult-icon svg,
.security-note svg,
.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.line-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
}

.line-icon.blue {
  color: var(--blue);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.mini-card {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  background: var(--white);
}

.mini-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.mini-icon,
.consult-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #F2F5FA;
}

.mini-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
}

.mini-icon svg {
  overflow: visible;
}

.mini-card.accent .mini-icon {
  color: var(--blue);
  background: var(--orange-light);
}

.value-list {
  margin: 30px 0;
  padding: 0 0 30px;
  display: grid;
  gap: 22px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 650;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 42px;
}

.value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 14px;
}

.security-note > span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--blue);
  transform: translateY(1px);
}

.security-note p,
.consult-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.security-note p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.security-note p span {
  color: inherit;
}

.consult-card p {
  line-height: 1.43;
}

.security-note p span,
.consult-card p span {
  display: block;
  white-space: nowrap;
}

.consult-icon {
  width: 68px;
  height: 68px;
  padding: 17px;
  color: var(--blue);
}

.time-badge {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.time-badge small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-top: 1px solid rgba(230, 232, 239, 0.75);
  border-bottom: 1px solid rgba(230, 232, 239, 0.75);
}

.trust-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 142px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px 38px;
  color: var(--navy);
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(230, 232, 239, 0.72);
}

.trust-icon {
  width: 46px;
  height: 46px;
  color: var(--navy);
}

.trust-item strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.trust-item:nth-child(1) strong {
  max-width: 120px;
}

.trust-item:nth-child(2) strong {
  max-width: 185px;
}

.trust-item:nth-child(3) strong,
.trust-item:nth-child(4) strong {
  max-width: 220px;
}

/* Shared sections */
.section-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 14px;
  font-weight: 750;
}

/* Intro section */
.intro-section {
  background: var(--bg);
  padding: 106px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
}

.intro-copy {
  max-width: 760px;
}

.intro-copy h2 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: -0.018em;
}

.intro-copy h2 span {
  display: block;
}

.intro-copy p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  text-wrap: pretty;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(242, 90, 29, 0.18);
  border-radius: var(--radius-md);
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 27, 77, 0.06);
  font-size: 18px;
  font-weight: 700;
}

.intro-cta span {
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.values-card {
  align-self: start;
  margin-top: -10px;
  padding: 34px;
  border: 1px solid rgba(230, 232, 239, 0.82);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.values-card h3 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.values-list {
  display: grid;
  gap: 16px;
}

.value-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #FBFCFF;
}

.value-item span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 13px;
  font-weight: 800;
}

.value-item strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Collaboration section */
.collaboration-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  padding: 108px 0 116px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: -0.018em;
}

.section-heading h1 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: -0.018em;
}

.section-heading p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.collaboration-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(230, 232, 239, 0.82);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.07);
}

.collaboration-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 13px;
  border-radius: 50%;
  color: var(--navy);
  background: #F2F5FA;
}

.collaboration-icon.accent {
  color: var(--blue);
  background: var(--orange-light);
}

.collaboration-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.collaboration-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 750;
}

.collaboration-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

/* Services section */
.services-section {
  background: var(--bg);
  padding: 112px 0 122px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(230, 232, 239, 0.82);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(7, 27, 77, 0.065);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  padding: 13px;
  border-radius: 50%;
  color: var(--navy);
  background: #F2F5FA;
}

.service-icon.accent {
  color: var(--blue);
  background: var(--orange-light);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 750;
  letter-spacing: -0.006em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

/* Process section */
.process-section {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 112px 0 124px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(230, 232, 239, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 54px;
  left: calc(100% + 4px);
  width: 16px;
  height: 1px;
  background: rgba(255, 111, 43, 0.28);
}

.process-step:nth-child(3n)::after {
  display: none;
}

.process-number {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.006em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  text-align: left;
  text-wrap: pretty;
}

/* Pricing section */
.pricing-section {
  background: var(--white);
  padding: 112px 0 124px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 28px;
  border: 1px solid rgba(230, 232, 239, 0.88);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.pricing-section h2,
.pricing-section h3,
.pricing-section p,
.pricing-section li,
.pricing-section span,
.pricing-section strong,
.pricing-section small {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.pricing-card.is-featured {
  border-color: rgba(255, 111, 43, 0.26);
  box-shadow: 0 24px 68px rgba(7, 27, 77, 0.085);
}

.pricing-card-head {
  min-height: 166px;
}

.recommended-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 12px;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.012em;
}

.pricing-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 22px;
}

.price-list div {
  padding: 14px 16px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 18px;
  background: #F8FAFD;
}

.price-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-list strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.price-list small {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.price-list-single {
  margin-bottom: 22px;
}

.price-list-single strong {
  font-size: 26px;
}

.price-detail {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.pricing-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.42;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset 0 0 0 4px var(--navy);
}

.pricing-features li::after {
  content: "";
  position: absolute;
  top: calc(0.48em + 3px);
  left: 3px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg);
}

.pricing-note {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pricing-footer {
  max-width: 920px;
  margin: 44px auto 0;
  padding: 32px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 28px;
  background: #F8FAFD;
  text-align: center;
}

.pricing-footer p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.pricing-footer p + p {
  margin-top: 12px;
}

.pricing-footer .button {
  margin-top: 24px;
}

/* References section */
.references-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  padding: 112px 0 124px;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.trust-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 13px;
  border-radius: 50%;
  color: var(--navy);
  background: #F2F5FA;
}

.trust-card-icon.accent {
  color: var(--blue);
  background: var(--orange-light);
}

.trust-card-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 750;
  letter-spacing: -0.006em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  text-align: left;
  text-wrap: pretty;
}

.references-note {
  max-width: 880px;
  margin: 36px auto 0;
  padding: 30px 34px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.055);
  text-align: center;
}

.references-note p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
  text-wrap: pretty;
}

/* Inquiry section */
.inquiry-section {
  background: var(--bg);
  padding: 112px 0 124px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.inquiry-info,
.inquiry-form {
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.inquiry-info {
  padding: 32px;
}

.inquiry-info-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 13px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--orange-light);
}

.inquiry-info-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.inquiry-info h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.16;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.inquiry-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inquiry-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.inquiry-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-light);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.inquiry-steps p,
.inquiry-info-note {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  text-wrap: pretty;
}

.inquiry-info-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.inquiry-form {
  padding: 32px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.form-grid label > span {
  color: var(--navy);
  font-weight: 750;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(207, 214, 229, 0.9);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--navy);
  background: #F8FAFD;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid select {
  color: var(--muted);
  font-weight: 400;
}

.form-grid select:focus,
.form-grid select:has(option:not([value=""]):checked) {
  color: var(--navy);
  font-weight: 500;
}

.form-grid select option {
  color: var(--navy);
  font-weight: 400;
}

.form-grid select option[value=""] {
  color: var(--muted);
}

.form-grid textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(47, 91, 255, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 91, 255, 0.08);
}

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

.form-consent {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text);
  font-weight: 650;
}

.form-consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.form-consent a {
  color: var(--navy);
  text-decoration-color: rgba(255, 111, 43, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.form-consent a:hover {
  color: var(--orange);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form .button {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.inquiry-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(230, 232, 239, 0.9);
  border-radius: 16px;
  background: #F8FAFD;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(65, 142, 92, 0.22);
  color: #1F5D3A;
  background: #F1FAF4;
}

.form-status.is-error {
  border-color: rgba(194, 67, 67, 0.24);
  color: #8F2E2E;
  background: #FFF4F4;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  text-wrap: pretty;
}

/* Contact section */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, #F8FAFD 100%);
  padding: 84px 0 64px;
}

.contact-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 30px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.72fr) minmax(220px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.contact-column h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.005em;
}

.contact-brand p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
  text-wrap: pretty;
}

.company-meta {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.company-meta div {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.company-meta dt {
  color: var(--muted);
  font-weight: 750;
}

.company-meta dd {
  margin: 0;
  color: var(--text);
}

.contact-menu div,
.contact-direct-links {
  display: grid;
  gap: 7px;
}

.contact-menu a,
.contact-direct-links a,
.contact-email-link,
.contact-footer-inner a,
.social-links a {
  color: var(--navy);
  text-decoration: none;
}

.contact-menu a,
.contact-direct-links a {
  font-size: 14.5px;
  line-height: 1.35;
}

.contact-menu a:hover,
.contact-direct-links a:hover,
.contact-email-link:hover,
.contact-footer-inner a:hover,
.social-links a:hover {
  color: var(--orange);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 20px;
}

.contact-social > span {
  width: 100%;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 232, 239, 0.9);
  border-radius: 50%;
  background: #F8FAFD;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 232, 239, 0.86);
}

.contact-actions .button {
  min-height: 48px;
  padding-inline: 24px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(255, 111, 43, 0.18);
}

.contact-email-link {
  font-size: 15px;
  font-weight: 750;
}

.contact-footer-row {
  margin-top: 0;
  background: var(--navy);
}

.contact-footer-inner {
  display: flex;
  width: min(100% - 48px, var(--container));
  min-height: 58px;
  margin: 0 auto;
  padding: 14px 0;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.contact-footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.contact-footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

/* Privacy section */
.privacy-section {
  background: #F8FAFD;
  padding: 92px 0 104px;
}

.contact-section + .privacy-section {
  display: none;
}

.privacy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(230, 232, 239, 0.86);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 56px rgba(7, 27, 77, 0.065);
}

.privacy-block + .privacy-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(230, 232, 239, 0.86);
}

.privacy-block h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.006em;
}

.privacy-block p,
.privacy-block address,
.privacy-block li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  text-wrap: pretty;
}

.privacy-block p {
  margin: 0;
}

.privacy-block p + p,
.privacy-block address + p {
  margin-top: 14px;
}

.privacy-block address {
  margin: 0;
  font-style: normal;
}

.privacy-block ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-block li {
  position: relative;
  padding-left: 22px;
}

.privacy-block li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.privacy-block a {
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: rgba(255, 111, 43, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.privacy-block a:hover {
  color: var(--orange);
}

/* Responsive layout */
@media (max-width: 1320px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy h1,
  .hero-lead {
    max-width: 760px;
  }

  .hero-dashboard {
    max-width: 760px;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 84px;
    gap: 16px;
  }

  .logo-link {
    margin-right: 0;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .mobile-nav.is-open {
    display: block;
  }

  .hero-copy h1,
  .hero-lead {
    max-width: 780px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .values-card {
    max-width: 720px;
  }

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

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

  .service-card {
    min-height: 270px;
  }

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

  .process-step {
    min-height: 245px;
  }

  .process-step::after {
    display: none;
  }

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

  .pricing-card {
    min-height: 610px;
  }

  .pricing-card-head {
    min-height: 128px;
  }

  .trust-card {
    min-height: 280px;
  }

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

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

  .contact-direct {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-dashboard {
    grid-template-columns: 1fr;
    grid-template-areas:
      "audience"
      "consult"
      "value";
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .intro-section {
    padding: 76px 0;
  }

  .intro-copy h2 {
    font-size: 34px;
  }

  .collaboration-section {
    padding: 78px 0 84px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 34px;
  }

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

  .collaboration-card {
    grid-column: auto;
  }

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

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

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

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

  .trust-card-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-direct {
    grid-column: auto;
  }

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

@media (max-width: 620px) {
  .header-inner,
  .hero-inner,
  .trust-inner,
  .section-inner {
    width: min(100% - 32px, var(--container));
  }

  .logo {
    width: 120px;
  }

  .mobile-nav-inner {
    width: min(100% - 32px, var(--container));
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
    margin-bottom: 12px;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 54px 0 58px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .audience-card,
  .value-card,
  .consult-card {
    padding: 22px;
  }

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

  .consult-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .time-badge {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    justify-self: start;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .intro-section {
    padding: 62px 0;
  }

  .intro-copy p,
  .intro-cta {
    font-size: 16px;
  }

  .intro-copy p {
    text-align: left;
  }

  .intro-copy h2,
  .section-heading h1,
  .section-heading h2 {
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.014em;
  }

  .button {
    min-height: 56px;
    padding-inline: 20px;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .values-card {
    padding: 22px;
  }

  .value-item {
    grid-template-columns: 1fr;
  }

  .value-item span {
    grid-row: auto;
  }

  .collaboration-section {
    padding: 64px 0 70px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .collaboration-card {
    min-height: auto;
    padding: 24px;
  }

  .collaboration-card h3 {
    font-size: 20px;
  }

  .services-section {
    padding: 86px 0 94px;
  }

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

  .service-card h3 {
    font-size: 19px;
  }

  .process-section {
    padding: 86px 0 96px;
  }

  .process-step {
    min-height: auto;
    padding: 24px;
  }

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

  .pricing-section {
    padding: 86px 0 96px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card-head {
    min-height: auto;
  }

  .pricing-card h3 {
    font-size: 25px;
  }

  .price-list strong,
  .price-list-single strong {
    font-size: 21px;
  }

  .pricing-footer {
    padding: 24px;
    text-align: left;
  }

  .references-section {
    padding: 86px 0 96px;
  }

  .trust-card,
  .references-note {
    padding: 24px;
  }

  .trust-card h3 {
    font-size: 20px;
  }

  .references-note {
    text-align: left;
  }

  .references-note p {
    font-size: 16px;
  }

  .inquiry-section {
    padding: 86px 0 96px;
  }

  .inquiry-info,
  .inquiry-form {
    padding: 24px;
  }

  .inquiry-info h3 {
    font-size: 22px;
  }

  .form-grid .form-consent {
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
  }

  .form-grid .form-consent > span {
    color: var(--text);
    font-weight: 500;
  }

  .form-grid .form-consent input {
    width: 22px;
    height: 22px;
    min-height: 22px;
  }

  .inquiry-form .button {
    width: 100%;
  }

  .contact-section {
    padding: 72px 0 44px;
  }

  .privacy-section {
    padding: 72px 0 80px;
  }

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

  .privacy-block + .privacy-block {
    margin-top: 26px;
    padding-top: 24px;
  }

  .privacy-block h3 {
    font-size: 20px;
  }

  .privacy-block p,
  .privacy-block address,
  .privacy-block li {
    font-size: 15.5px;
    line-height: 1.65;
  }

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

  .company-meta div {
    align-items: flex-start;
  }

  .company-meta .company-address-row {
    display: block;
  }

  .company-meta .company-address-row dt {
    margin-bottom: 4px;
  }

  .company-address {
    line-height: 1.5;
  }

  .company-address span {
    display: block;
  }

  .contact-column h3 {
    font-size: 18px;
  }

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

  .contact-actions {
    justify-content: stretch;
  }

  .contact-footer-inner {
    width: min(100% - 32px, var(--container));
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .contact-footer-inner {
    gap: 10px;
    padding: 16px 0;
  }
}

@media (max-width: 360px) {
  .intro-copy h2,
  .section-heading h1,
  .section-heading h2 {
    font-size: 28px;
  }

  .button {
    padding-inline: 16px;
    font-size: 15.5px;
  }
}

@media (max-width: 1100px) and (max-height: 560px) {
  .mobile-nav-inner {
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    padding: 10px 12px 44px;
  }

  .mobile-nav a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 15px;
  }

  .mobile-nav .mobile-nav-cta {
    min-height: 44px;
    margin-top: 6px;
  }
}
