:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #edf2ff;
  --ink: #120d37;
  --muted: #62677f;
  --line: #dde2ef;
  --accent: #442896;
  --accent-2: #7f5cff;
  --cyan: #18c7e8;
  --dark: #0d0828;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(18, 13, 55, 0.12);
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(127, 92, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 32%, rgba(24, 199, 232, 0.16), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  min-height: 76px;
  margin: 0 auto;
  padding: 16px 24px;
  background: rgba(246, 247, 251, 0.82);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  width: 54px;
  min-width: 54px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #252044;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  opacity: 1;
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18, 13, 55, 0.16);
}

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

.text-link {
  font-weight: 800;
  color: var(--accent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.16;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  max-width: var(--wrap);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 80px 24px 90px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(68, 40, 150, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.hero-panel > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: saturate(0.92) contrast(1.04);
}

.metric-card,
.signal-card {
  padding: 24px;
  border-radius: 22px;
}

.metric-card {
  background:
    radial-gradient(circle at 12% 100%, rgba(127, 92, 255, 0.85), transparent 42%),
    linear-gradient(145deg, #17083f, #020106);
  color: #fff;
}

.metric-card strong {
  display: block;
  font-size: 64px;
  line-height: 0.92;
}

.metric-card span {
  display: block;
  max-width: 270px;
  margin-top: 14px;
  color: #e4ddff;
  font-size: 14px;
}

.signal-card {
  display: grid;
  gap: 8px;
  background: var(--surface-2);
}

.signal-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  color: var(--ink);
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.proof-strip article:first-child {
  border-radius: 22px 0 0 22px;
}

.proof-strip article:last-child {
  border-radius: 0 22px 22px 0;
}

.proof-strip strong {
  font-size: 46px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px 24px;
}

.intro,
.fit,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: start;
}

.intro-grid,
.service-grid,
.process-grid,
.local-seo-grid {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.service-grid article,
.process-grid article,
.local-seo-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 35px rgba(18, 13, 55, 0.05);
}

.intro-grid p,
.service-grid p,
.process-grid p,
.local-seo-grid p,
.section-heading p,
.fit-list,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: 42px;
}

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

.local-seo {
  display: grid;
  gap: 42px;
}

.local-seo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  min-height: 250px;
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #ebe5ff;
  color: var(--accent);
  font-weight: 800;
}

.process {
  border-radius: 34px;
  background: var(--dark);
  color: #fff;
}

.process .eyebrow,
.process-grid span {
  color: #bba8ff;
}

.process .section-heading p,
.process-grid p {
  color: #c9c3e8;
}

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

.process-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.process-grid span {
  display: block;
  margin-bottom: 38px;
  font-size: 34px;
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: 52px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 112px 24px;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
}

.showcase-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.showcase-images img:first-child {
  grid-row: span 2;
  height: 500px;
}

.showcase-images img:not(:first-child) {
  height: 242px;
}

.fit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 22px 22px 22px 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 700;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.contact-section {
  max-width: var(--wrap);
  margin: 0 auto 96px;
  padding: 72px 24px;
}

.contact-copy {
  padding: 46px;
  border-radius: 30px;
  background: var(--dark);
  color: #fff;
}

.contact-copy p,
.contact-copy .eyebrow {
  color: #d8d0ff;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.blog-preview {
  padding-top: 72px;
}

.blog-preview-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-preview-grid article,
.post-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(18, 13, 55, 0.08);
}

.blog-preview-grid span,
.post-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-preview-grid h3,
.post-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.blog-preview-grid p,
.post-card p {
  color: var(--muted);
}

.blog-preview-link {
  width: fit-content;
  margin-top: 26px;
}

.local-page {
  min-height: 100vh;
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 80px 24px;
}

.local-card {
  padding: 32px;
  border: 1px solid rgba(68, 40, 150, 0.12);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.local-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.local-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 800;
}

.local-content {
  display: grid;
  gap: 34px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px 24px 90px;
}

.local-content .section-heading {
  margin-bottom: 0;
}

.local-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.local-columns article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 35px rgba(18, 13, 55, 0.05);
}

.local-columns p,
.local-faq p {
  color: var(--muted);
}

.local-faq {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.local-faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 13, 55, 0.07);
}

.local-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.blog-hero,
.semantic-core,
.blog-grid,
.article-shell {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px 24px;
}

.blog-hero {
  padding-top: 96px;
  padding-bottom: 46px;
}

.blog-hero h1 {
  max-width: 940px;
}

.semantic-core {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 34px;
}

.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-grid span {
  padding: 10px 14px;
  border: 1px solid rgba(68, 40, 150, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.article-shell {
  max-width: 900px;
  padding-top: 58px;
}

.article-body {
  margin-top: 28px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.article-body h1 {
  font-size: clamp(42px, 6vw, 70px);
}

.article-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.article-body p {
  color: var(--muted);
  font-size: 17px;
}

.article-lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.article-image {
  width: 100%;
  height: 420px;
  margin: 34px 0;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(18, 13, 55, 0.12);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.spam-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(68, 40, 150, 0.1);
}

.site-footer {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: start;
  padding: 70px max(24px, calc((100vw - var(--wrap)) / 2 + 24px)) 74px;
  min-height: 210px;
  background: var(--dark);
  color: #fff;
}

.site-footer .logo img {
  filter: brightness(0) invert(1);
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.site-footer a,
.site-footer p {
  color: #d8d0ff;
}

.site-footer strong {
  color: #fff;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 44px));
  padding: 20px;
  border: 1px solid rgba(68, 40, 150, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .fit,
  .contact-section,
  .showcase {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .service-grid,
  .process-grid,
  .local-seo-grid,
  .local-columns,
  .blog-preview-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 68px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  h1 {
    font-size: 44px;
  }

  .hero,
  .local-hero,
  .local-content,
  .section,
  .showcase,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .proof-strip,
  .service-grid,
  .process-grid,
  .local-seo-grid,
  .local-columns,
  .showcase-images,
  .blog-preview-grid,
  .blog-grid,
  .semantic-core,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:first-child,
  .proof-strip article:last-child {
    border-radius: 20px;
  }

  .hero-panel > img,
  .showcase-images img:first-child,
  .showcase-images img:not(:first-child) {
    height: 260px;
  }

  .contact-copy,
  .request-form,
  .article-body {
    padding: 26px;
  }

  .article-image {
    height: 260px;
    border-radius: 18px;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
  }

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

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