:root {
  --purple: #430841;
  --pink: #dd3059;
  --white: #fafafa;
  --ink: #131313;
  --muted: #6d6670;
  --soft: #f4f0f4;
  --dark: #160515;
  --line: rgba(67, 8, 65, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

.site-header {
  position: relative;
  min-height: 100vh;
  background: var(--white);
}

.header-main {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, calc(100% - 40px));
  padding: 28px 0;
  transform: translateX(-50%);
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.header-main.is-scrolled {
  width: 100%;
  padding: 16px calc((100% - min(1140px, calc(100% - 40px))) / 2);
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 0 16px 40px rgba(67, 8, 65, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 176px;
  height: 64px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--pink);
  background: rgba(250, 250, 250, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--purple);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--pink);
}

.nav-cta {
  padding: 12px 20px;
  border: 2px solid var(--pink);
  color: var(--purple);
}

.banner {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 84px;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.96) 0%, rgba(250, 250, 250, 0.82) 42%, rgba(250, 250, 250, 0.16) 100%),
    url("assets/linup-hero.jpg") center right / cover no-repeat;
}

.banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 22%, rgba(221, 48, 89, 0.18), transparent 28%);
}

.banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 90px minmax(0, 820px);
  align-items: center;
  gap: 22px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.social-rail {
  display: grid;
  gap: 18px;
  color: var(--purple);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.banner-content {
  position: relative;
  max-width: 800px;
  padding: 54px 58px 48px;
}

.line {
  position: absolute;
  display: block;
  background: var(--pink);
}

.line-top,
.line-bottom {
  left: 0;
  width: 96px;
  height: 3px;
}

.line-top {
  top: 0;
}

.line-bottom {
  bottom: 0;
}

.line-left,
.line-right {
  top: 0;
  width: 3px;
  height: 96px;
}

.line-left {
  left: 0;
}

.line-right {
  right: 0;
}

.sub-heading,
.heading-xs {
  color: var(--pink);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sub-heading {
  margin-bottom: 22px;
}

.banner h1 {
  max-width: 780px;
  color: var(--purple);
  font-size: clamp(50px, 7.4vw, 96px);
  font-weight: 900;
  line-height: 0.98;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.banner-btn span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.btn-scroll {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 24px;
  font-weight: 700;
}

.btn-scroll:hover,
.btn:hover {
  transform: translateY(-3px);
}

.section {
  position: relative;
  padding: 110px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: 74px;
}

.dash {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.dash::after,
.dash-both::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--pink);
}

.dash-both::before {
  order: -1;
}

.centered {
  max-width: 760px;
  text-align: center;
}

.centered .dash {
  justify-content: center;
}

.section-intro {
  margin: 22px auto 0;
  max-width: 680px;
  color: rgba(250, 250, 250, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.text-block h2,
.centered h2 {
  color: var(--purple);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
}

.text-block .lead {
  margin-top: 28px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.text-block p:not(.lead) {
  margin-top: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 28px;
  border: 2px solid var(--pink);
  background: var(--pink);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.system-card {
  min-height: 188px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(67, 8, 65, 0.08);
}

.system-card.large {
  grid-column: span 2;
  min-height: 250px;
  background: var(--soft);
}

.system-card.dark {
  background: var(--purple);
  color: var(--white);
}

.system-card span {
  display: block;
  margin-bottom: 64px;
  color: var(--pink);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.system-card strong {
  display: block;
  max-width: 260px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 70px;
}

.proof {
  min-height: 285px;
  display: flex;
  align-items: flex-end;
  padding: 38px;
}

.proof-primary {
  background: var(--purple);
  color: var(--white);
}

.proof-secondary {
  background: var(--soft);
  color: var(--purple);
}

.proof h4 {
  margin-bottom: 14px;
  font-size: 28px;
}

.proof p {
  max-width: 440px;
  color: inherit;
  opacity: 0.82;
}

.local-seo {
  margin-top: 92px;
  padding: 58px 0 0;
  border-top: 1px solid var(--line);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 74px;
  align-items: start;
}

.local-seo h2 {
  color: var(--purple);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
}

.local-seo p:not(.heading-xs) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.local-seo ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.local-seo li {
  position: relative;
  padding-left: 28px;
  color: var(--purple);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.local-seo li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--pink);
}

.services-section {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--dark);
  color: var(--white);
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 5, 21, 0.88), rgba(22, 5, 21, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(221, 48, 89, 0.24), transparent 36%);
}

.services-section .container,
.service-row {
  position: relative;
  z-index: 2;
}

.services-section h2,
.cta h2 {
  color: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: 68px;
  border-top: 1px solid rgba(250, 250, 250, 0.14);
}

.feature {
  min-height: 420px;
  padding: 58px 34px 54px;
  border-right: 1px solid rgba(250, 250, 250, 0.14);
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 36px;
  border: 1px solid rgba(250, 250, 250, 0.22);
  border-radius: 50%;
  color: var(--pink);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.feature h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
}

.feature p {
  color: rgba(250, 250, 250, 0.72);
}

.feature a {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature a::after {
  content: " →";
  color: var(--pink);
}

.work {
  background: var(--white);
}

.work-intro {
  margin: 22px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(1140px, calc(100% - 40px));
  margin: 46px auto 0;
}

.project-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--soft);
}

.project-image {
  position: absolute;
  inset: 0;
  background: var(--placeholder);
  transition: transform 0.6s ease;
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover .project-image {
  transform: scale(1.06);
}

.project-image::before,
.project-image::after {
  content: "";
  position: absolute;
}

.project-image::before {
  inset: 42px;
  border: 1px solid rgba(250, 250, 250, 0.5);
  background: linear-gradient(145deg, rgba(250, 250, 250, 0.08), rgba(250, 250, 250, 0));
  box-shadow: inset 0 0 0 1px rgba(67, 8, 65, 0.05);
}

.project-image::after {
  left: 62px;
  right: 62px;
  top: 78px;
  height: 12px;
  background: var(--pink);
}

.project-one {
  --placeholder: linear-gradient(135deg, #f4ecf4, #ffffff);
}

.project-two {
  --placeholder: linear-gradient(135deg, #fbf3f5, #ffffff);
}

.project-three {
  --placeholder: linear-gradient(135deg, #f2eef8, #ffffff);
}

.project-four {
  --placeholder: linear-gradient(135deg, #f9eff2, #ffffff);
}

.project-five {
  --placeholder: linear-gradient(135deg, #f4f4f6, #ffffff);
}

.project-six {
  --placeholder: linear-gradient(135deg, #f8edf4, #ffffff);
}

.project-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(transparent 18%, rgba(22, 5, 21, 0.88));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-over,
.project-card:focus-within .project-over {
  opacity: 1;
}

.project-over h4 {
  font-size: 24px;
}

.project-over p {
  margin-top: 8px;
  color: var(--pink);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-over span {
  display: block;
  max-width: 300px;
  margin-top: 14px;
  color: rgba(250, 250, 250, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.seo-links {
  background: var(--white);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.seo-link-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(67, 8, 65, 0.07);
}

.seo-link-card span {
  color: var(--pink);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.seo-link-card strong {
  display: block;
  margin-top: 34px;
  color: var(--purple);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 1.12;
}

.seo-link-card p {
  margin-top: 18px;
  color: var(--muted);
}

.seo-link-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}

.process {
  background: #fff;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 64px 180px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span,
.process-list strong {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.process-list span {
  color: var(--pink);
}

.process-list p {
  color: var(--muted);
}

.faq {
  background: var(--soft);
}

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

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--purple);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--purple);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 50%, rgba(221, 48, 89, 0.36), transparent 32%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.cta h2 {
  font-size: clamp(32px, 4.8vw, 66px);
  font-weight: 800;
}

.cta h2 span {
  display: block;
  color: rgba(250, 250, 250, 0.68);
  font-weight: 500;
}

.btn-light {
  margin-top: 0;
  border-color: var(--white);
  background: var(--white);
  color: var(--purple);
}

.cta-action {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.cta-action p {
  max-width: 260px;
  color: rgba(250, 250, 250, 0.72);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

.footer {
  padding: 72px 0;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 44px;
}

.footer p,
.footer a,
.footer-cookie-link {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.footer-cookie-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-cookie-link:hover {
  color: var(--pink);
}

.footer h3 {
  color: var(--purple);
  font-size: 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer .social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple);
  background: var(--white);
}

.footer .social-links a:hover {
  border-color: var(--pink);
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-logo {
  margin-bottom: 18px;
}

.legal-page {
  background: var(--white);
}

.legal-container {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 90px;
}

.legal-logo {
  margin-bottom: 62px;
}

.legal-container h1 {
  margin-bottom: 48px;
  color: var(--purple);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900;
}

.legal-container section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-container h2 {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 26px;
}

.legal-container p {
  color: var(--muted);
  line-height: 1.75;
}

.seo-page {
  background: var(--white);
}

.seo-hero {
  padding: 52px 0 82px;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.seo-hero .header-main {
  position: static;
  transform: none;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-hero-content {
  width: min(1140px, calc(100% - 40px));
  margin: 86px auto 0;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.seo-hero-content h1 {
  max-width: 920px;
  color: var(--purple);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 0.98;
}

.seo-hero-content .lead {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.seo-hero-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--purple);
  box-shadow: 0 34px 90px rgba(67, 8, 65, 0.18);
}

.seo-hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(250, 250, 250, 0.58);
  pointer-events: none;
}

.seo-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(67, 8, 65, 0), rgba(67, 8, 65, 0.38));
  pointer-events: none;
}

.seo-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}

.seo-article {
  display: grid;
  gap: 34px;
}

.seo-article section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.seo-article h2 {
  color: var(--purple);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
}

.seo-article h3 {
  margin-top: 24px;
  color: var(--purple);
  font-size: 24px;
}

.seo-article p,
.seo-article li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.seo-article p {
  margin-top: 18px;
}

.seo-article ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.seo-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(67, 8, 65, 0.08);
}

.seo-sidebar h2 {
  color: var(--purple);
  font-size: 24px;
}

.seo-sidebar p,
.seo-sidebar a {
  color: var(--muted);
}

.seo-sidebar a:hover {
  color: var(--pink);
}

.seo-sidebar .btn {
  width: 100%;
  margin-top: 10px;
  color: var(--white);
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.mini-proof div {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-proof strong {
  display: block;
  color: var(--purple);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.mini-proof p {
  margin-top: 8px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(640px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.96);
  box-shadow: 0 24px 70px rgba(67, 8, 65, 0.16);
  backdrop-filter: blur(18px);
}

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

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: transparent;
  color: var(--purple);
}

.cookie-btn:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1020px) {
  .menu-toggle {
    position: relative;
    z-index: 41;
    display: block;
  }

  .nav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    z-index: 40;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(250, 250, 250, 0.96);
    box-shadow: 0 24px 80px rgba(67, 8, 65, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
    margin-top: 10px;
    text-align: center;
  }

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

  .social-rail {
    display: none;
  }

  .split-layout,
  .proof-grid,
  .local-seo-grid,
  .seo-link-grid,
  .service-row,
  .project-grid,
  .mini-proof,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .seo-hero-visual {
    min-height: 320px;
  }

  .seo-hero-visual img {
    min-height: 320px;
  }

  .seo-sidebar {
    position: static;
  }

  .service-row {
    border-bottom: 1px solid rgba(250, 250, 250, 0.14);
  }

  .process-list div {
    grid-template-columns: 48px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .container,
  .header-main,
  .banner-inner,
  .project-grid {
    width: min(100% - 28px, 1140px);
  }

  .header-main,
  .header-main.is-scrolled {
    padding: 14px;
  }

  .logo {
    width: 136px;
    height: 50px;
  }

  .banner {
    padding: 96px 0 58px;
  }

  .banner-bg {
    background:
      linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.96)),
      url("assets/linup-hero-mobile.jpg") center / cover no-repeat;
  }

  .banner-content {
    padding: 34px 24px 32px;
  }

  .line-top,
  .line-bottom {
    width: 68px;
  }

  .line-left,
  .line-right {
    height: 68px;
  }

  .banner h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .section {
    padding: 76px 0;
  }

  .split-layout,
  .proof-grid,
  .local-seo-grid,
  .seo-link-grid,
  .service-row,
  .project-grid,
  .mini-proof,
  .footer-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding: 30px 0 62px;
  }

  .seo-hero .header-main {
    width: min(100% - 28px, 1140px);
    padding: 0;
  }

  .seo-hero-content {
    width: min(100% - 28px, 1140px);
    margin-top: 62px;
  }

  .seo-hero-actions {
    display: grid;
  }

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

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

  .about-visual {
    grid-template-columns: 1fr;
  }

  .system-card.large {
    grid-column: auto;
  }

  .proof,
  .feature {
    min-height: auto;
  }

  .local-seo {
    margin-top: 70px;
    padding-top: 42px;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.14);
  }

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

  .project-over {
    opacity: 1;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

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

  .cookie-btn {
    flex: 1;
  }

  .process-list p {
    grid-column: auto;
  }

  .cta-inner {
    text-align: center;
  }

  .cta-action {
    justify-items: center;
  }

  .cta-action p {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
