/* =============================================
   OWENSEO.CO.UK — Stylesheet
   Headings: Inter | Body text: Poppins
   ============================================= */

/* --- Colour tokens — change each h1–h6 colour here --- */
:root {
  --color-h1: #0f172a;   /* Change me */
  --color-h2: #1e293b;   /* Change me */
  --color-h3: #334155;   /* Change me */
  --color-h4: #475569;   /* Change me */
  --color-h5: #64748b;   /* Change me */
  --color-h6: #94a3b8;   /* Change me */

  --color-body:      #374151;
  --color-bg:        #ffffff;
  --color-bg-alt:    #f8fafc;
  --color-accent:    #2563eb;
  --color-accent-hv: #1d4ed8;
  --color-border:    #e2e8f0;

  --radius: 12px;
  --max-width: 1100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Base --- */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* --- Typography — Headings use Inter --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--color-h1); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); color: var(--color-h2); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--color-h3); font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem;  color: var(--color-h4); font-weight: 600; margin-bottom: 0.5rem; }
h5 { font-size: 1rem;     color: var(--color-h5); font-weight: 600; margin-bottom: 0.4rem; }
h6 { font-size: 0.85rem;  color: var(--color-h6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }

p { font-family: 'Poppins', sans-serif; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn:hover { background: var(--color-accent-hv); transform: translateY(-2px); }

/* --- Header / Nav --- */
.site-header {
  position: relative;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  column-gap: 1rem;
  padding: 0.25rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
}

.site-logo img {
  width: clamp(250px, 26vw, 310px);
  height: auto;
  border-radius: 0;
  max-height: 90px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.8rem);
  flex-wrap: wrap;
  justify-self: center;
}

.site-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 650;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.2s, transform 0.2s;
}

.site-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.78rem 1.35rem;
  border-radius: 10px;
  white-space: nowrap;
}

.site-menu-button,
.site-mobile-menu {
  display: none;
}

.site-menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-menu-button {
  cursor: pointer;
}

.site-menu-button span {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 8px;
  background: #ffffff;
}

.site-mobile-menu__label {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.site-mobile-menu a {
  font-family: 'Inter', sans-serif;
}

.site-mobile-menu__logo {
  display: inline-flex;
  margin: 0;
}

.site-mobile-menu__logo img {
  width: min(86vw, 460px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.site-mobile-menu__nav,
.site-mobile-menu__contact,
.site-mobile-menu__areas {
  border-top: 1px solid rgba(255,255,255,0.55);
  padding: 0.9rem 0;
}

.site-mobile-menu__nav {
  display: grid;
  padding: 0.25rem 0;
}

.site-mobile-menu__nav a,
.site-mobile-menu__contact a {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 750;
  padding: 0.55rem 0;
}

.site-mobile-menu__nav a + a {
  border-top: 1px solid rgba(255,255,255,0.55);
}

.site-mobile-menu__contact {
  display: grid;
  gap: 0.8rem;
}

.site-mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding: 0;
}

.site-mobile-menu__contact span {
  font-weight: 800;
}

.site-mobile-menu__icon {
  flex: 0 0 auto;
}

.site-mobile-menu__areas ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: start;
}

.site-mobile-menu__areas li {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 8px;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  padding: 0.4rem 0.55rem;
  text-align: center;
  white-space: normal;
}

.site-mobile-menu__areas-note {
  color: #ffffff;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.9rem;
}

/* --- Hero --- */
.hero {
  background: #000000;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* concentric rings */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 120px rgba(255,255,255,0.04),
    0 0 0 240px rgba(255,255,255,0.035),
    0 0 0 360px rgba(255,255,255,0.025),
    0 0 0 480px rgba(255,255,255,0.018),
    0 0 0 600px rgba(255,255,255,0.01);
  pointer-events: none;
  z-index: 0;
}

/* soft centre glow */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero__content {
  flex: 1;
  min-width: 0;
}

/* badge pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #000000;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.hero__badge-icon {
  flex-shrink: 0;
  color: #ffffff;
}

.page-banner {
  background: #000000;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 100px rgba(255,255,255,0.04),
    0 0 0 200px rgba(255,255,255,0.035),
    0 0 0 300px rgba(255,255,255,0.025),
    0 0 0 400px rgba(255,255,255,0.018);
  pointer-events: none;
  z-index: 0;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-banner__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
}

.page-banner p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
}

.breadcrumbs {
  background: #f4f4f4;
  padding: 1.25rem 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  color: #475569;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 650;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #94a3b8;
}

.breadcrumbs a {
  color: #0f172a;
}

/* hero headings — override global colours */
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 750;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.hero h2 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

/* hero buttons */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn--hero {
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn--hero:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
}

.btn--hero-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}
.btn--hero-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

/* hero photo */
.hero__image-wrap {
  flex-shrink: 0;
  width: 320px;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  border: 5px solid rgba(255,255,255,0.75);
  pointer-events: none;
  z-index: 2;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px;
  border: none;
  display: block;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 32px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.3);
}

/* --- About --- */
.about,
.content-block {
  background: #000000;
  padding: 3.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.content-block--light {
  background: #f4f4f4;
  border-top: 1px solid #e2e8f0;
}

.about__inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__inner h2,
.content-block .about__inner h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.content-block--light .about__inner h2 {
  color: #0f172a;
}

.content-block--light .about__right h2,
.content-block--light .about__right h3,
.content-block--light .about__right p {
  color: #0f172a;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__right p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.content-block--light .about__right p {
  color: #0f172a;
}

.content-split__heading {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.section-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin: 0;
}

.content-split {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.content-split h2 {
  max-width: 12ch;
  letter-spacing: -0.02em;
}

.content-split .about__right {
  max-width: 78ch;
  gap: 1.1rem;
}

.content-split .about__right p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-stack {
  max-width: 100%;
  gap: 1.25rem;
}

.content-stack .content-split__heading h2 {
  max-width: none;
}

.content-stack .about__right {
  max-width: 100%;
}

.seo-feature {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.seo-feature .about__right {
  max-width: 100%;
}

.seo-feature__media {
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.seo-feature__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* --- Content blocks --- */
.content-block {}

.standout__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.standout__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.standout__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.standout__currency {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.standout__card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin: 0;
}

.standout__card p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.standout__card--light {
  background: #ffffff;
  border-color: #e2e8f0;
}

.standout__card--light .standout__icon {
  background: rgba(0,0,0,0.06);
  color: #0f172a;
}

.standout__card--light h3,
.standout__card--light p {
  color: #000000;
}

.content-block--light.standout .about__inner h2,
.content-block--light.standout .about__right p {
  color: #0f172a;
}

.content-block--light.standout .standout__card:not(.standout__card--light) {
  background: #000000;
  border-color: rgba(0,0,0,0.08);
}

.content-block--light.standout .standout__card:not(.standout__card--light) .standout__icon {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.content-block--light.standout .standout__card:not(.standout__card--light) h3,
.content-block--light.standout .standout__card:not(.standout__card--light) p {
  color: #ffffff;
}

.working-with-me__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.working-with-me__item {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  padding: 1.25rem;
}

.working-with-me__item > span {
  align-items: center;
  background: #000000;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.content-block--light .working-with-me__item h3 {
  color: #0f172a;
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.content-block--light .working-with-me__item p {
  color: #0f172a;
  font-size: 0.94rem;
  line-height: 1.7;
}

.client-proof__head {
  margin-bottom: 2rem;
}

.client-proof__head h2 {
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  margin: 0;
}

.client-proof__head p {
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0.9rem 0 0;
  max-width: 760px;
}

.client-proof__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-proof__card {
  align-items: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.4rem;
}

.client-proof__logo {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  min-height: 190px;
  padding: 1rem;
}

.client-proof__logo img {
  display: block;
  max-height: 132px;
  max-width: 88%;
  object-fit: contain;
  width: auto;
}

.client-proof__logo img.client-proof__logo--bisaf {
  max-height: 152px;
  max-width: 96%;
}

.client-proof__copy h3 {
  color: #0f172a;
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
}

.client-proof__copy p {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.location-about-me__inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
}

.location-about-me__copy h2 {
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  margin: 0 0 1rem;
}

.location-about-me__copy p {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.location-about-me__copy p:last-child {
  margin-bottom: 0;
}

.location-about-me__image {
  border-radius: 24px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 32px 80px rgba(0,0,0,0.28),
    0 8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
}

.location-about-me__image::after {
  border: 5px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  content: '';
  inset: -1px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.location-about-me__image img {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}

.technical-error-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.technical-error-list span {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.55rem 0.8rem;
}

.audit-deliverables {
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  margin-top: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.content-block--light .about__right .audit-deliverables h3 {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0 0 1rem;
}

.audit-deliverables__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audit-deliverables__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1rem;
}

.audit-deliverables__item span {
  color: #ffffff;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.content-block--light .about__right .audit-deliverables__item p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.coverage-map {
  align-items: center;
  background: #000000;
  border-radius: 8px;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr minmax(220px, 320px);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}

.coverage-map::before {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,0.035),
    0 0 0 140px rgba(255,255,255,0.028),
    0 0 0 210px rgba(255,255,255,0.02);
  content: '';
  height: 18rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18rem;
}

.coverage-map__copy,
.coverage-map__visual {
  position: relative;
  z-index: 1;
}

.coverage-map__copy span {
  color: #ffffff;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.content-block--light .coverage-map__copy h3,
.content-block--light .coverage-map__copy p {
  color: #ffffff;
}

.coverage-map__copy h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.coverage-map__copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  max-width: 34rem;
}

.coverage-map__visual {
  justify-self: center;
  max-width: 18rem;
  width: 100%;
}

.coverage-map__visual svg {
  display: block;
  overflow: visible;
  width: 100%;
}

.coverage-map__visual path:first-child {
  fill: rgba(255,255,255,0.08);
  stroke: rgba(255,255,255,0.5);
  stroke-width: 2;
}

.coverage-map__visual circle {
  fill: #ffffff;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.75));
}

.coverage-map__line {
  fill: none;
  stroke: rgba(255,255,255,0.4);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 2;
}

.industry-map {
  aspect-ratio: 1;
  max-width: 19rem;
}

.industry-map::before {
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 3.2rem 3.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  content: '';
  inset: 0;
  opacity: 0.45;
  position: absolute;
}

.industry-map__line {
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 44% 56% 48% 52%;
  inset: 14%;
  position: absolute;
}

.industry-map__line::before,
.industry-map__line::after {
  background: rgba(255,255,255,0.28);
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(28deg);
  width: 112%;
}

.industry-map__line::after {
  transform: translate(-50%, -50%) rotate(-34deg);
}

.industry-map__node {
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 4.8rem;
  padding: 0.65rem 0.55rem;
  position: absolute;
  text-align: center;
}

.industry-map__node svg {
  background: #ffffff;
  border-radius: 999px;
  color: #000000;
  display: block;
  height: 2.25rem;
  padding: 0.48rem;
  width: 2.25rem;
}

.coverage-map__visual .industry-map__node svg path,
.coverage-map__visual .industry-map__node svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-map__node span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
}

.industry-map__node--dentists {
  left: 7%;
  top: 10%;
}

.industry-map__node--trades {
  right: 5%;
  top: 17%;
}

.industry-map__node--legal {
  left: 34%;
  top: 39%;
}

.industry-map__node--property {
  bottom: 18%;
  left: 4%;
}

.industry-map__node--saas {
  bottom: 7%;
  left: 41%;
}

.industry-map__node--creative {
  bottom: 22%;
  right: 0;
}

.areas-cover-grid article {
  align-items: center;
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.areas-cover-grid article::after {
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 60%);
  content: '';
  height: 7rem;
  pointer-events: none;
  position: absolute;
  right: -3.5rem;
  top: -3.5rem;
  width: 7rem;
}

.areas-cover-grid > article > span:not(.industry-card__label) {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  color: #000000;
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  height: 2.9rem;
  justify-content: center;
  margin-bottom: 1.15rem;
  width: 2.9rem;
}

.areas-cover-grid .areas-cover-pin svg {
  height: 1.65rem;
  width: 1.65rem;
}

.areas-cover-grid .areas-cover-pin svg path,
.areas-cover-grid .areas-cover-pin svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.content-block--light .areas-cover-grid h3,
.content-block--light .areas-cover-grid p {
  color: #ffffff;
}

.areas-cover-grid h3 {
  font-size: 1rem;
  margin: 0 0 0.55rem;
}

.html-sitemap {
  background: #f4f4f4;
}

.html-sitemap__intro {
  max-width: 760px;
}

.html-sitemap__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.html-sitemap__overview {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.html-sitemap__stat {
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.html-sitemap__stat::after {
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 64%);
  content: '';
  height: 8rem;
  pointer-events: none;
  position: absolute;
  right: -3.75rem;
  top: -4rem;
  width: 8rem;
}

.html-sitemap__stat strong,
.html-sitemap__stat span {
  display: block;
  position: relative;
  z-index: 1;
}

.html-sitemap__stat strong {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.html-sitemap__stat span {
  color: rgba(255,255,255,0.76);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.html-sitemap__panel {
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  padding: 1.4rem;
  position: relative;
}

.html-sitemap__panel::before {
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: '';
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  position: absolute;
}

.html-sitemap__panel::after {
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 64%);
  content: '';
  height: 12rem;
  pointer-events: none;
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 12rem;
}

.html-sitemap__panel > * {
  position: relative;
  z-index: 1;
}

.content-block--light .html-sitemap__panel h2,
.content-block--light .html-sitemap__panel h3,
.content-block--light .html-sitemap__panel p {
  color: #ffffff;
}

.html-sitemap__panel h2,
.html-sitemap__panel h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.html-sitemap__list {
  display: grid;
  gap: 0.5rem;
}

.html-sitemap__list a,
.html-sitemap__locations a {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  display: flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.25;
  padding: 0.58rem 0.75rem;
}

.html-sitemap__list a:hover,
.html-sitemap__locations a:hover {
  background: rgba(255,255,255,0.88);
}

.html-sitemap__regions {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.html-sitemap__region {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  padding: 0;
}

.html-sitemap__region summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 850;
  justify-content: space-between;
  list-style: none;
  padding: 1.1rem 1.25rem;
}

.html-sitemap__region summary::-webkit-details-marker {
  display: none;
}

.html-sitemap__region summary span {
  background: #ffffff;
  border-radius: 999px;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 850;
  padding: 0.35rem 0.65rem;
}

.html-sitemap__locations {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.25rem;
}

.areas-cover-grid p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.areas-cover-btn {
  align-self: center;
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: auto;
  padding: 0.55rem 0.8rem;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.reviews-section {
  background: #f4f4f4;
  padding: 5rem 0;
}

.reviews-section__head {
  margin-bottom: 2.5rem;
}

.reviews-section__intro {
  max-width: 760px;
}

.reviews-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.reviews-section__head p {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  border-radius: 20px;
  padding: 2.4rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
}

.review-card--dark {
  background: #000000;
  color: #ffffff;
}

.review-card--light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.review-card__stars {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: currentColor;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  color: currentColor;
}

.review-card__author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-card__author strong {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: currentColor;
}

.review-card__author span {
  font-size: 0.9rem;
  color: currentColor;
  opacity: 0.72;
}

.faq-section {
  background: #f4f4f4;
  padding: 5rem 0;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__inner h2 {
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.faq__intro p {
  color: #000000;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0.9rem 0 0;
  max-width: 760px;
}

.faq__list {
  display: grid;
  gap: 1.5rem;
}

.faq-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 22px 50px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f172a 0%, #64748b 100%);
}

.faq-card h3 {
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.faq-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}

.why-choose {
  background: #000000;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.why-choose__inner {
  gap: 2rem;
}

.why-choose__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.why-choose__head h2 {
  color: #ffffff;
}

.why-choose__head .about__right p {
  max-width: 760px;
}

.why-choose__sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-choose__section {
  max-width: 100%;
}

.why-choose__sections h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin: 0;
}

.why-choose__sections p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 860px) {
  .client-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .standout__grid { grid-template-columns: 1fr; }
  .working-with-me__grid { grid-template-columns: 1fr; }
  .location-about-me__inner { grid-template-columns: 1fr; }
  .audit-deliverables__grid { grid-template-columns: 1fr; }
  .coverage-map { grid-template-columns: 1fr; }
  .areas-cover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-section__grid { grid-template-columns: 1fr; }
  .content-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .content-split h2,
  .content-split .about__right {
    max-width: 100%;
  }
  .seo-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .seo-feature__media {
    justify-self: start;
    max-width: 100%;
  }
  .why-choose__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Services --- */
.services {
  background: #f4f4f4;
  padding: 3.5rem 0 5rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.stats-card {
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.stats-card--dark {
  background: #000000;
}

.stats-card--light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.stats-card__value {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.stats-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

.stats-card--dark .stats-card__value,
.stats-card--dark .stats-card__label {
  color: #ffffff;
}

.stats-card--light .stats-card__value {
  color: #0f172a;
}

.stats-card--light .stats-card__label {
  color: #475569;
}

.services__head {
  display: block;
  gap: 2rem;
  margin-bottom: 3rem;
}

.services__intro {
  max-width: 760px;
}

.services__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.services__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.national-seo-intro h2,
.national-seo-section h2,
.local-seo-section h2,
.ecommerce-seo-section h2,
.technical-seo-section h2,
.seo-audit-section h2,
.wordpress-seo-section h2,
.shopify-seo-section h2,
.ai-seo-section h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.national-seo-intro {
  padding-top: 2.5rem;
}

.national-seo-intro__lead {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.9rem 0 2rem;
  max-width: 760px;
}

.local-seo-stat,
.national-seo-stat {
  background: #000000;
  border-radius: 8px;
  color: #ffffff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.content-block--light .about__right .local-seo-stat h2,
.content-block--light .about__right .local-seo-stat p,
.content-block--light .about__right .national-seo-stat h2,
.content-block--light .about__right .national-seo-stat p {
  color: #ffffff;
}

.local-seo-stat h2,
.national-seo-stat h2 {
  margin-bottom: 0.8rem;
}

.local-seo-stat p,
.national-seo-stat p {
  margin: 0;
}

.seo-includes-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.seo-includes-item {
  align-items: flex-start;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.seo-includes-item::after {
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 60%);
  content: '';
  height: 7rem;
  pointer-events: none;
  position: absolute;
  right: -3.5rem;
  top: -3.5rem;
  width: 7rem;
}

.seo-includes-item > span {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  color: #000000;
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  grid-row: 1 / span 2;
  position: relative;
  width: 2rem;
  z-index: 1;
}

.content-block--light .about__right .seo-includes-item h3 {
  color: #ffffff;
  font-size: 1rem;
  grid-column: 2;
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
}

.content-block--light .about__right .seo-includes-item p {
  color: #ffffff;
  font-size: 0.92rem;
  grid-column: 2;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.services__head p {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.services__cta {
  background: #0f172a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.services__cta:hover { background: #1e293b; transform: translateY(-1px); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-intro {
  background: #f4f4f4;
  padding: 0 0 3rem;
}

.about-intro__head {
  display: block;
}

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

.about-intro__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.about-intro__head p {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.help-section {
  background: #f4f4f4;
  padding: 5rem 0;
}

.help-section__head {
  margin-bottom: 2.5rem;
}

.help-section__intro {
  max-width: 760px;
}

.help-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.help-section__head p {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.help-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.help-card {
  min-height: 100%;
  border-radius: 20px;
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}

.help-card h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

.help-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
}

.help-card--dark {
  background: #000000;
  color: #ffffff;
}

.help-card--dark h3,
.help-card--dark p {
  color: #ffffff;
}

.help-card--light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.help-card--light h3 {
  color: #0f172a;
}

.help-card--light p {
  color: #475569;
}

.help-card__btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  background: #0f172a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
}

.svc-card {
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.svc-card--dark {
  background: #000000;
}
.svc-card--dark h3 { color: #ffffff; font-size: 1.35rem; margin: 0; }
.svc-card--dark p  { color: #ffffff; font-size: 1rem; line-height: 1.75; margin: 0; flex: 1; }

.svc-card--light {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
}
.svc-card--light h3 { color: #000000; font-size: 1.35rem; margin: 0; }
.svc-card--light p  { color: #000000; font-size: 1rem; line-height: 1.75; margin: 0; flex: 1; }

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.svc-card--dark  .svc-icon { background: rgba(255,255,255,0.08); color: #ffffff; }
.svc-card--light .svc-icon { background: rgba(0,0,0,0.06); color: #0f172a; }

.svc-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  margin-top: auto;
  transition: transform 0.15s ease, background 0.2s ease;
  align-self: flex-start;
}
.svc-card--dark  .svc-btn { background: rgba(255,255,255,0.1); color: #ffffff; border: 1px solid rgba(255,255,255,0.15); }
.svc-card--dark  .svc-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.svc-card--light .svc-btn { background: #0f172a; color: #ffffff; }
.svc-card--light .svc-btn:hover { background: #1e293b; transform: translateY(-1px); }

@media (max-width: 860px) {
  .stats-strip { grid-template-columns: 1fr; }
  .help-section__grid { grid-template-columns: 1fr; }
  .help-section__grid .help-card:nth-child(3) { order: 4; }
  .help-section__grid .help-card:nth-child(4) { order: 3; }
  .services__grid  { grid-template-columns: 1fr 1fr; }
  .seo-includes-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .client-proof__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .areas-cover-grid { grid-template-columns: 1fr; }
  .faq-card {
    padding: 1.75rem;
    border-radius: 18px;
  }
}

.card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card p { color: #6b7280; font-size: 0.95rem; }

/* --- About --- */

/* --- Process --- */
.process { background: var(--color-bg); }
.process > .container > p { color: #6b7280; margin-bottom: 3rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.step p { color: #6b7280; font-size: 0.95rem; }

/* --- Contact --- */
.contact-section {
  background: #f4f4f4;
  padding: 5rem 0;
}

.contact-section__head {
  margin-bottom: 2.5rem;
}

.contact-section__intro {
  max-width: 760px;
}

.contact-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.contact-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  color: #0f172a;
  margin: 0;
}

.contact-section__head p {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.contact-section__panel {
  background: #000000;
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-section__copy h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 0 0 1rem;
}

.contact-section__copy p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.contact-section__links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}

.contact-section__links a span {
  font-weight: 800;
}

.contact-section__links a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}

.contact-section__icon {
  flex: 0 0 auto;
  color: #ffffff;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__honeypot {
  display: none;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #0f172a;
}

.contact-form__submit {
  border: none;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .html-sitemap__overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .contact-section__panel,
  .contact-section__copy,
  .contact-form,
  .contact-form label {
    min-width: 0;
    width: 100%;
  }

  .contact-section__links a {
    width: 100%;
    font-size: 0.98rem;
    line-height: 1.35;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-width: 0;
  }
}

/* --- Footer --- */
.site-footer {
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(255,255,255,0.04),
    0 0 0 220px rgba(255,255,255,0.032),
    0 0 0 330px rgba(255,255,255,0.022),
    0 0 0 440px rgba(255,255,255,0.014);
  content: '';
  height: 420px;
  pointer-events: none;
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  z-index: 0;
}

.site-footer::after {
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 68%);
  content: '';
  height: 560px;
  pointer-events: none;
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  z-index: 0;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  max-width: 380px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 1.2rem;
}

.site-footer__logo img {
  display: block;
  height: auto;
  width: 180px;
}

.site-footer__brand p,
.site-footer__col p,
.site-footer__bottom p {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.site-footer__contact {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.site-footer__contact a {
  align-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  width: fit-content;
}

.site-footer__contact a:hover,
.site-footer__col a:hover,
.site-footer__bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer .site-footer__title {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.site-footer__col ul {
  display: grid;
  gap: 0.7rem;
}

.site-footer__col a {
  color: rgba(255,255,255,0.74);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-footer__coverage {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  position: relative;
  z-index: 1;
}

.site-footer__coverage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-footer__coverage-note {
  color: rgba(255,255,255,0.74);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: -0.35rem 0 0.9rem;
  max-width: 640px;
}

.site-footer__coverage-links a {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.55rem 0.7rem;
}

.site-footer__coverage-links a:hover {
  border-color: rgba(255,255,255,0.32);
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.35rem;
  position: relative;
  z-index: 1;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__bottom a {
  color: rgba(255,255,255,0.76);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .site-footer {
    padding: 3.25rem 0 1.75rem;
  }

  .site-footer::before,
  .site-footer::after {
    right: -240px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__coverage {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    flex-direction: column-reverse;
    gap: 2.5rem;
    text-align: center;
  }
  .hero__badge { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__image-wrap {
    width: 320px;
  }
  .hero__photo { aspect-ratio: 3 / 4; border-radius: 22px; }
  .hero p { max-width: 100%; margin-inline: auto; }
}

@media (max-width: 640px) {
  .html-sitemap__overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .html-sitemap__grid,
  .html-sitemap__locations {
    grid-template-columns: 1fr;
  }

  .html-sitemap__region summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__logo img {
    width: 160px;
  }

  .site-footer__contact a {
    width: 100%;
  }

  .site-header {
    background: #000000;
    border-bottom: 0;
  }

  .site-header__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.45rem;
    padding: 0.2rem 0.75rem;
  }

  .site-logo {
    position: relative;
    z-index: 1002;
    width: auto;
    background: #000000;
    justify-content: flex-start;
    max-height: 78px;
    overflow: hidden;
    padding: 0;
  }

  .site-logo img {
    width: min(76vw, 380px);
    height: 78px;
    max-height: 78px;
    object-fit: cover;
    object-position: center 42%;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-menu-button {
    display: flex;
    position: relative;
    z-index: 1002;
    width: 42px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
  }

  .site-menu-toggle:checked + .site-menu-button {
    position: fixed;
    top: 0.65rem;
    right: 0.75rem;
    z-index: 1004;
    width: 42px;
    min-height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .site-menu-toggle:checked + .site-menu-button span {
    width: 22px;
  }

  .site-mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #000000;
    border-left: 0;
    box-shadow: none;
    padding: 1rem max(1.25rem, 7vw) 1.4rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, visibility 0.24s ease;
  }

  .site-menu-toggle:checked ~ .site-mobile-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-menu-button span {
    width: 22px;
    height: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .hero { padding: 3.5rem 0; }
  section { padding: 3.5rem 0; }
  .hero__badge {
    font-size: 0.8rem;
    line-height: 1.25;
    padding: 0.5rem 0.85rem;
  }
  .hero__image-wrap {
    width: 240px;
    margin-inline: auto;
  }
  .hero__photo { height: 290px; }
}
