:root {
  --gold: #f4c300;
  --dark: #333333;
  --blue: #349ed8;
  --text: #666666;
  --muted: #b7b7b7;
  --soft: #f7f7f7;
  --white: #ffffff;
  --line: #e8e8e8;
  --shadow: 0 20px 60px rgba(51, 51, 51, 0.12);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
.anchor-target,
.step-card,
.method-timeline article {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--gold);
  border-radius: var(--radius);
}

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

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.05;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p,
li,
a,
span,
strong,
small,
dd,
dt {
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--dark);
  background: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 14px 34px rgba(244, 195, 0, 0.28);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 82px;
}

.brand img {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.main-nav a.is-active {
  color: var(--dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--dark);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--dark);
}

.hero {
  min-height: 520px;
  padding-top: 38px;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(244, 195, 0, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(244, 195, 0, 0.16) 0 18%, transparent 18% 100%);
}

.hero::after {
  position: absolute;
  right: -14vw;
  bottom: -18vw;
  width: 56vw;
  height: 56vw;
  content: "";
  background: var(--gold);
  clip-path: polygon(42% 0, 100% 100%, 0 74%);
  opacity: 0.18;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: center;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 5.2vw, 4.55rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.hero-actions-center {
  justify-content: center;
  margin-top: 34px;
  margin-bottom: 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  gap: 14px;
  margin: 0;
}

.hero-proof div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(51, 51, 51, 0.06);
}

.hero-proof dt {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.88rem;
}

.hero-insights {
  width: 100%;
  padding: 20px 0;
  color: var(--dark);
  background: var(--gold);
}

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

.insights-grid div {
  min-width: 0;
  padding: 6px 24px;
  border-left: 1px solid rgba(51, 51, 51, 0.24);
}

.insights-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.insights-grid div:last-child {
  padding-right: 0;
}

.insights-grid dt {
  margin-bottom: 4px;
  color: var(--dark);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 900;
  line-height: 0.95;
}

.insights-grid dd {
  max-width: 260px;
  margin: 0;
  color: rgba(35, 37, 41, 0.84);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(82%, 355px);
  filter: drop-shadow(0 26px 35px rgba(51, 51, 51, 0.22));
  animation: float 5s ease-in-out infinite;
}

.page-hero {
  min-height: auto;
  padding: 90px 0 74px;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero .hero-visual {
  min-height: 300px;
}

.page-hero .hero-visual img {
  max-height: 340px;
  object-fit: contain;
}

.visual-orbit {
  position: absolute;
  width: min(82vw, 520px);
  aspect-ratio: 1;
  border: 28px solid rgba(52, 158, 216, 0.16);
  border-radius: 50%;
}

.visual-orbit::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 2px dashed rgba(244, 195, 0, 0.45);
  border-radius: 50%;
}

.scope-strip {
  padding: 18px 0;
  color: var(--dark);
  background: var(--gold);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.scope-grid span {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

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

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

.section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.problem-match-list {
  display: grid;
  gap: 10px;
  margin: -16px 0 32px;
}

.problem-match-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.05);
}

.problem-match-list article::before {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 999px;
  content: "";
  justify-self: center;
}

.problem-match-list article::after {
  grid-column: 2;
  grid-row: 1;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--dark);
  justify-self: center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.problem-match-list span {
  display: block;
  grid-column: 1;
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 900;
  text-align: right;
}

.problem-match-list p {
  grid-column: 3;
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.orientation-intro {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.orientation-intro p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.55;
}

.steps-section,
.methodology-section,
.resources-section {
  background: var(--soft);
}

.steps-grid,
.metrics-grid,
.method-cards,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card,
.method-cards article,
.resource-grid a,
.metric-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 34px 28px 28px;
  overflow: hidden;
}

.step-card::after {
  position: absolute;
  right: -46px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.14;
}

.step-number {
  display: inline-grid;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  place-items: center;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}

.split-grid-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.media-frame {
  position: relative;
  padding: 30px;
  background: linear-gradient(145deg, rgba(244, 195, 0, 0.18), rgba(52, 158, 216, 0.08));
  border-radius: var(--radius);
}

.media-frame::before {
  position: absolute;
  inset: 18px auto auto -14px;
  width: 110px;
  height: 110px;
  content: "";
  background: var(--gold);
  clip-path: polygon(0 0, 100% 28%, 52% 100%);
}

.media-frame img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0 auto;
}

.media-frame-dark {
  background: linear-gradient(145deg, rgba(51, 51, 51, 0.08), rgba(244, 195, 0, 0.14));
}

.split-copy p {
  max-width: 720px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--dark);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  content: "✓";
  color: var(--dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.82rem;
  place-items: center;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.link-list a {
  min-width: 0;
  padding: 14px 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  box-shadow: 0 12px 32px rgba(51, 51, 51, 0.08);
  transform: translateY(-2px);
}

.content-band {
  background: var(--white);
}

.content-band-soft {
  background: var(--soft);
}

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

.narrow-content {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
}

.content-card {
  position: relative;
  min-height: 148px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
  overflow: hidden;
}

.content-card::before {
  position: absolute;
  top: 26px;
  left: 30px;
  width: 52px;
  height: 52px;
  content: "";
  background: var(--card-icon-color, var(--gold));
  border-radius: 15px;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--card-icon-color, var(--gold)) 24%, transparent);
}

.content-card::after {
  position: absolute;
  top: 39px;
  left: 43px;
  width: 26px;
  height: 26px;
  content: "";
  background: var(--white);
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
}

.content-card h3 {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding-left: 72px;
  font-size: clamp(1.18rem, 1.45vw, 1.35rem);
}

.content-card p:last-child,
.content-card ul:last-child {
  margin-bottom: 0;
}

.legal-content .content-card {
  display: grid;
  gap: 14px;
}

.legal-content .content-card::before,
.legal-content .content-card::after {
  content: none;
}

.legal-content .content-card h2 {
  margin: 20px 0 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.legal-content .content-card h2:first-child {
  margin-top: 0;
}

.legal-content .content-card p,
.legal-content .content-card li {
  margin-bottom: 0;
}

.legal-content .content-card a {
  color: var(--dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.content-grid .content-card:nth-child(8n+1) {
  --card-icon-color: #f4c300;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M7 15l4-4 3 3 5-7M16 7h3v3'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+2) {
  --card-icon-color: #349ed8;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m16 16 4 4M8 10.5h5M10.5 8v5'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+3) {
  --card-icon-color: #2fbf71;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+4) {
  --card-icon-color: #ef6f6c;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h14v16H5zM8 8h8M8 12h5M8 16h8'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+5) {
  --card-icon-color: #8a63d2;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 7H8a5 5 0 0 0 0 10h2M14 7h2a5 5 0 0 1 0 10h-2M9 12h6'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+6) {
  --card-icon-color: #ff8f3d;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l4.5-1 10-10a2.1 2.1 0 0 0-3-3l-10 10L4 20ZM14 7l3 3'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n+7) {
  --card-icon-color: #1fb6aa;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3.5 12h17M12 3c2.4 2.6 3.6 5.6 3.6 9S14.4 18.4 12 21M12 3c-2.4 2.6-3.6 5.6-3.6 9s1.2 6.4 3.6 9'/%3E%3C/g%3E%3C/svg%3E");
}

.content-grid .content-card:nth-child(8n) {
  --card-icon-color: #d95f9f;
  --card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.4 4.1L17.5 8l-4.1 1.4L12 13.5l-1.4-4.1L6.5 8l4.1-1.4L12 3ZM18 13l.9 2.6 2.6.9-2.6.9L18 21l-.9-3.6-2.6-.9 2.6-.9L18 13Z'/%3E%3C/g%3E%3C/svg%3E");
}

.numbered-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: page-steps;
}

.numbered-list li {
  position: relative;
  min-height: 96px;
  padding: 24px 24px 24px 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(51, 51, 51, 0.05);
}

.numbered-list li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--dark);
  content: counter(page-steps, decimal-leading-zero);
  counter-increment: page-steps;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.numbered-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(244, 195, 0, 0.24), transparent 38%),
    var(--dark);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.seo-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.results-section {
  background:
    linear-gradient(118deg, transparent 0 55%, rgba(244, 195, 0, 0.11) 55% 100%),
    var(--white);
}

.metric-card {
  padding: 32px 24px;
  text-align: center;
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--dark);
  font-weight: 800;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-gallery figure {
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(51, 51, 51, 0.08);
}

.proof-gallery img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 6px;
}

.proof-gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.strengths-section {
  background: var(--white);
}

.strengths-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.strengths-list article {
  padding: 24px 18px;
  border-top: 8px solid var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-radius: var(--radius);
}

.strengths-list span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.strengths-list h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.strengths-list p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.method-section {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
}

.method-section h2,
.method-section h3 {
  color: var(--white);
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.method-timeline article {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.method-timeline article:nth-child(even) {
  transform: translateY(28px);
}

.method-timeline span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.method-timeline p {
  margin-bottom: 0;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.5;
}

.method-timeline h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.method-cards article {
  padding: 28px;
}

.method-cards img {
  width: min(220px, 70%);
  height: 180px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.guarantee-section {
  background: linear-gradient(145deg, rgba(244, 195, 0, 0.08), transparent 36%);
}

.international-section {
  background:
    linear-gradient(135deg, rgba(52, 158, 216, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(244, 195, 0, 0.12), transparent 34%),
    var(--white);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.market-grid span {
  padding: 16px 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(51, 51, 51, 0.06);
  font-weight: 800;
  text-align: center;
}

.guarantee-section strong {
  display: block;
  margin-top: 24px;
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 800;
}

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

.resource-grid a {
  display: flex;
  min-width: 0;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.resource-grid span {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.resource-grid a:hover,
.resource-grid a:focus-visible {
  outline: 3px solid rgba(244, 195, 0, 0.45);
}

.faq-section {
  background: var(--white);
}

.faq-grid,
.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-grid article,
.faq-item {
  background: var(--soft);
  border-radius: var(--radius);
}

.faq-grid h3,
.faq-item h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
}

.faq-grid p,
.faq-answer p {
  margin-bottom: 0;
}

.faq-item button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 64px 22px 26px;
  color: var(--dark);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.05);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--dark);
  background: var(--gold);
  border-radius: 999px;
  content: "+";
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(244, 195, 0, 0.45);
  outline-offset: 3px;
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--text);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.05);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.trust-row img {
  max-width: 150px;
  max-height: 86px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audit-mini-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audit-mini-form label {
  display: grid;
  gap: 6px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.audit-mini-form input,
.audit-mini-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
}

.audit-mini-form textarea {
  min-height: 120px;
  resize: vertical;
}

.audit-mini-form input:focus,
.audit-mini-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(244, 195, 0, 0.25);
}

.audit-mini-form .form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: -2px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-success {
  color: #236c3b;
}

.form-status.is-error {
  color: #a5282c;
}

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

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

.service-card {
  display: grid;
  min-width: 0;
  min-height: 210px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card span {
  color: var(--dark);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.seo-services-grid {
  counter-reset: seo-service;
}

.seo-services-grid .service-card {
  position: relative;
  min-height: 236px;
  padding: 26px 24px 24px;
  background: var(--white);
  border-top: 5px solid var(--gold);
  overflow: hidden;
}

.seo-services-grid .service-card::before {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 56px;
  height: 56px;
  content: "";
  background: var(--service-color, var(--gold));
  border-radius: 16px;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--service-color, var(--gold)) 28%, transparent);
}

.seo-services-grid .service-card::after {
  position: absolute;
  top: 40px;
  left: 38px;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--white);
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
}

.seo-services-grid .service-card span:not(.sr-only) {
  min-height: 56px;
  padding-right: 28px;
  padding-left: 72px;
  display: flex;
  align-items: center;
}

.seo-services-grid .service-card span:not(.sr-only)::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease, background 180ms ease;
}

.seo-services-grid .service-card p {
  padding-right: 18px;
}

.seo-services-grid .service-card:hover span:not(.sr-only)::after,
.seo-services-grid .service-card:focus-visible span:not(.sr-only)::after {
  background: var(--blue);
  transform: translateX(3px);
}

.seo-services-grid .service-card:nth-child(1) {
  --service-color: #f4c300;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m16 16 4 4M8 10.5h5M10.5 8v5'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(2) {
  --service-color: #349ed8;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M7 15l4-4 3 3 5-7M16 7h3v3'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(3) {
  --service-color: #2fbf71;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M12 8v8M8 12h8M8 2h8M8 22h8'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(4) {
  --service-color: #ef6f6c;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h16M4 16h16M8 4v16M16 4v16M6 6h2M16 18h2'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(5) {
  --service-color: #8a63d2;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3Cpath d='M8 8h8M8 12h5M8 16h8'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(6) {
  --service-color: #ff8f3d;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l4.5-1 10-10a2.1 2.1 0 0 0-3-3l-10 10L4 20ZM14 7l3 3M12 20h8'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(7) {
  --service-color: #1fb6aa;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 7H8a5 5 0 0 0 0 10h2M14 7h2a5 5 0 0 1 0 10h-2M9 12h6'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(8) {
  --service-color: #d95f9f;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='5' r='2'/%3E%3Ccircle cx='18' cy='5' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M8 5h8M7 7l4 10M17 7l-4 10'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(9) {
  --service-color: #6f9f2f;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.4 6-11a6 6 0 1 0-12 0c0 5.6 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(10) {
  --service-color: #3b7ddd;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3.5 12h17M12 3c2.4 2.6 3.6 5.6 3.6 9S14.4 18.4 12 21M12 3c-2.4 2.6-3.6 5.6-3.6 9s1.2 6.4 3.6 9'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(11) {
  --service-color: #7c8794;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Crect x='8' y='8' width='8' height='8' rx='1'/%3E%3Cpath d='M3 9h2M3 15h2M19 9h2M19 15h2'/%3E%3C/g%3E%3C/svg%3E");
}

.seo-services-grid .service-card:nth-child(12) {
  --service-color: #111827;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.4 4.1L17.5 8l-4.1 1.4L12 13.5l-1.4-4.1L6.5 8l4.1-1.4L12 3ZM18 13l.9 2.6 2.6.9-2.6.9L18 21l-.9-3.6-2.6-.9 2.6-.9L18 13ZM6 14l.7 2 2 .7-2 .7L6 20l-.7-2.6-2-.7 2-.7L6 14Z'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card {
  position: relative;
  min-height: 236px;
  padding: 26px 24px 24px;
  overflow: hidden;
}

.services-grid:not(.seo-services-grid) .service-card::before {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 56px;
  height: 56px;
  content: "";
  background: var(--service-color, var(--gold));
  border-radius: 16px;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--service-color, var(--gold)) 28%, transparent);
}

.services-grid:not(.seo-services-grid) .service-card::after {
  position: absolute;
  top: 40px;
  left: 38px;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--white);
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
}

.services-grid:not(.seo-services-grid) .service-card span:not(.sr-only) {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding-left: 72px;
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+1) {
  --service-color: #f4c300;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m16 16 4 4M8 10.5h5M10.5 8v5'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+2) {
  --service-color: #349ed8;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M7 15l4-4 3 3 5-7M16 7h3v3'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+3) {
  --service-color: #2fbf71;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M12 8v8M8 12h8M8 2h8M8 22h8'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+4) {
  --service-color: #ef6f6c;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h16M4 16h16M8 4v16M16 4v16M6 6h2M16 18h2'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+5) {
  --service-color: #8a63d2;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3Cpath d='M8 8h8M8 12h5M8 16h8'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+6) {
  --service-color: #ff8f3d;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l4.5-1 10-10a2.1 2.1 0 0 0-3-3l-10 10L4 20ZM14 7l3 3M12 20h8'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+7) {
  --service-color: #1fb6aa;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 7H8a5 5 0 0 0 0 10h2M14 7h2a5 5 0 0 1 0 10h-2M9 12h6'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+8) {
  --service-color: #d95f9f;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='5' r='2'/%3E%3Ccircle cx='18' cy='5' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M8 5h8M7 7l4 10M17 7l-4 10'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+9) {
  --service-color: #6f9f2f;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.4 6-11a6 6 0 1 0-12 0c0 5.6 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+10) {
  --service-color: #3b7ddd;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3.5 12h17M12 3c2.4 2.6 3.6 5.6 3.6 9S14.4 18.4 12 21M12 3c-2.4 2.6-3.6 5.6-3.6 9s1.2 6.4 3.6 9'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n+11) {
  --service-color: #7c8794;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Crect x='8' y='8' width='8' height='8' rx='1'/%3E%3Cpath d='M3 9h2M3 15h2M19 9h2M19 15h2'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid:not(.seo-services-grid) .service-card:nth-child(12n) {
  --service-color: #111827;
  --service-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.4 4.1L17.5 8l-4.1 1.4L12 13.5l-1.4-4.1L6.5 8l4.1-1.4L12 3ZM18 13l.9 2.6 2.6.9-2.6.9L18 21l-.9-3.6-2.6-.9 2.6-.9L18 13ZM6 14l.7 2 2 .7-2 .7L6 20l-.7-2.6-2-.7 2-.7L6 14Z'/%3E%3C/g%3E%3C/svg%3E");
}

.text-link {
  color: var(--dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(244, 195, 0, 0.25);
}

.form-note {
  margin: -4px 0 0;
  color: var(--text);
  font-size: 0.84rem;
}

.site-footer {
  padding: 58px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 34px;
}

.footer-grid-wide {
  grid-template-columns: 1.25fr repeat(4, minmax(0, 0.72fr));
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--dark);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-banner-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner-title {
  margin-bottom: 4px;
  color: var(--dark);
  font-weight: 800;
}

.cookie-banner p:last-child {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner-link {
  color: var(--dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .split-grid-reverse,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .strengths-list,
  .method-timeline,
  .resource-grid,
  .services-grid,
  .services-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .insights-grid div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .insights-grid div:nth-child(even) {
    padding-right: 0;
  }

  .method-timeline article:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 22px;
  }

  .hero-proof,
  .insights-grid,
  .steps-grid,
  .metrics-grid,
  .content-grid,
  .method-cards,
  .proof-gallery,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-match-list {
    margin-top: -8px;
  }

  .problem-match-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-match-list article::before {
    grid-column: 1;
    grid-row: 2;
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
  }

  .problem-match-list article::after {
    grid-column: 1;
    grid-row: 2;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    transform: rotate(90deg);
  }

  .problem-match-list span,
  .problem-match-list p {
    grid-column: 1;
    text-align: left;
  }

  .problem-match-list span {
    grid-row: 1;
  }

  .problem-match-list p {
    grid-row: 3;
  }

  .hero-insights {
    padding: 24px 0;
  }

  .insights-grid {
    gap: 18px;
  }

  .insights-grid div {
    padding: 0 0 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.22);
  }

  .insights-grid div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .insights-grid dd {
    max-width: none;
  }

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

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

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

  .cookie-banner-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

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

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 260px;
  }

  .strengths-list,
  .method-timeline {
    grid-template-columns: 1fr;
  }

  .scope-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

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