:root {
  --bg: #ffffff;
  --bg-2: #f6f8fb;
  --panel: #ffffff;
  --panel-strong: #f1f4f8;
  --border: #dfe5ec;
  --border-strong: rgba(255, 159, 61, 0.72);
  --text: #111827;
  --muted: #526070;
  --soft: #7b8794;
  --orange: #ff9f3d;
  --orange-2: #ffa94d;
  --orange-3: #ffb35c;
  --green: #3ddc84;
  --radius: 0;
  --shadow: 0 28px 80px rgba(17, 24, 39, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: none;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 14px auto 0;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-bottom-color: var(--border);
  border-radius: 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}

.footer-logo {
  width: 154px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--orange);
  color: #07090c;
  box-shadow: 0 12px 32px rgba(255, 159, 61, 0.18);
}

.nav-cta {
  min-height: 42px;
  padding: 0 20px;
}

.button {
  padding: 0 24px;
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: #ffffff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 90px);
  padding: clamp(66px, 9vw, 130px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.seo-panel p,
.final-panel p,
.maintenance-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero p {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

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

.trust-line {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.dashboard-shell,
.service-card,
.seo-panel,
.seo-card,
.package-card,
.maintenance-card,
.work-card,
.final-panel,
.floating-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dashboard-shell {
  position: absolute;
  top: 42px;
  left: 0;
  width: min(560px, 100%);
  padding: 18px;
  border-radius: 0;
  backdrop-filter: blur(22px);
}

.dashboard-top,
.mini-brand,
.metric-card span,
.floating-card,
.traffic-card span {
  display: flex;
  align-items: center;
}

.dashboard-top {
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-brand {
  gap: 9px;
  font-weight: 800;
}

.mini-mark {
  width: 22px;
  height: 22px;
  border: 3px solid var(--orange);
  border-radius: 0;
  transform: rotate(45deg);
}

.status-dot {
  padding: 7px 10px;
  border-radius: 0;
  background: rgba(61, 220, 132, 0.14);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.metric-card {
  position: relative;
  min-height: 142px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg-2);
}

.metric-card span,
.traffic-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-card strong,
.traffic-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1;
}

.metric-card em {
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
}

.metric-card small,
.floating-card small,
.traffic-card small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-weight: 700;
}

.metric-card small {
  color: var(--green);
}

.metric-card.wide {
  grid-column: 1 / -1;
}

.ring {
  position: absolute;
  right: 22px;
  top: 46px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 10px solid var(--green);
  background: transparent;
}

.ring::after {
  content: none;
}

.spark {
  width: 100%;
  height: 46px;
  margin-top: 12px;
}

.spark path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
}

.progress {
  height: 9px;
  margin-top: 14px;
  border-radius: 0;
  background: #e7ecf2;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 0;
  background: var(--orange);
}

.floating-card {
  position: absolute;
  right: 0;
  width: 230px;
  min-height: 88px;
  padding: 16px;
  gap: 12px;
  border-radius: 0;
  backdrop-filter: blur(20px);
  --float-x: 0px;
  animation: float 6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 0.86rem;
}

.float-icon,
.google-dot,
.trend-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(255, 159, 61, 0.16);
  color: var(--orange);
  font-weight: 900;
}

.lead {
  top: 106px;
}

.index {
  top: 238px;
  animation-delay: -1.8s;
}

.improve {
  top: 370px;
  animation-delay: -3.4s;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  background: var(--border);
}

.strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  background: var(--panel-strong);
  color: var(--muted);
  font-weight: 800;
}

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

.section-heading h2,
.why-title h2,
.seo-panel h2,
.maintenance-card h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 680px;
}

#services,
.why-section,
.seo-section,
.process-section,
.packages-section,
.maintenance-section,
.work-section,
.final-cta {
  padding-top: clamp(84px, 11vw, 150px);
}

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

.service-card,
.package-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card.featured,
.package-card.highlight {
  border-color: var(--border-strong);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 159, 61, 0.42);
  border-radius: 0;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  background: rgba(255, 159, 61, 0.08);
}

.service-card h3,
.why-item h3,
.seo-card h3,
.timeline-step h3,
.package-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-card p,
.why-item p,
.seo-card p,
.timeline-step p,
.package-card p {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li,
.maintenance-card li {
  margin: 12px 0;
  color: var(--muted);
}

.service-card li::before,
.package-card li::before,
.maintenance-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange);
  font-weight: 900;
}

.service-card > a:not(.button) {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 800;
}

.why-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.why-title {
  position: sticky;
  top: 118px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.why-item {
  min-height: 250px;
  padding: 28px;
  background: var(--panel-strong);
}

.why-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--orange);
  font-weight: 900;
}

.seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 0;
}

.traffic-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
}

.traffic-card strong {
  font-size: 3.2rem;
}

.traffic-card svg {
  width: 100%;
  height: 170px;
  margin-top: 18px;
}

.traffic-card .area {
  fill: rgba(255, 159, 61, 0.22);
}

.traffic-card .line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
}

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

.seo-card {
  padding: 28px;
  border-radius: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255, 159, 61, 0.42);
}

.timeline-step {
  position: relative;
  text-align: center;
}

.timeline-step span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid var(--orange);
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
}

.package-card .button {
  width: 100%;
  margin-top: 18px;
}

.maintenance-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px 34px;
  align-items: start;
  padding: clamp(26px, 4.8vw, 58px);
  border-radius: 0;
}

.maintenance-card h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

.shield {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 0;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
}

.maintenance-card ul {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 10px 0 0;
  columns: initial;
}

.maintenance-card li {
  margin: 0;
}

.maintenance-card .button {
  grid-column: 2 / -1;
  width: min(280px, 100%);
  justify-self: start;
  margin-top: 6px;
}

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

.work-card {
  min-height: 116px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 0;
  color: var(--text);
  font-weight: 800;
}

.final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-color: rgba(255, 159, 61, 0.36);
  border-radius: 0;
}

.contact-line {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 900;
}

.final-actions {
  display: flex;
  gap: 14px;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: 32px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: clamp(66px, 9vw, 116px) 0 clamp(44px, 7vw, 86px);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--muted);
}

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

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.65rem, 5.1vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 730px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.74;
}

.page-summary {
  padding: 24px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
}

.page-summary strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.page-summary ul {
  margin: 0;
}

.page-summary li {
  margin: 12px 0;
  color: var(--muted);
  font-weight: 700;
}

.page-summary li::before,
.content-list li::before,
.area-list a::before {
  content: "/";
  margin-right: 10px;
  color: var(--orange);
  font-weight: 900;
}

.content-section {
  padding-top: clamp(72px, 9vw, 120px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.content-copy h2,
.areas-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.04;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.72;
}

.content-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.content-panel {
  display: grid;
  gap: 16px;
}

.content-card {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-card h3 {
  margin: 0 0 12px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.local-proof-section {
  padding-top: clamp(70px, 8vw, 118px);
}

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

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.proof-list li {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.proof-list strong {
  color: var(--text);
}

.proof-list span {
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  padding-top: clamp(70px, 8vw, 118px);
}

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

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

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

.content-list li {
  color: var(--muted);
}

.areas-section {
  padding-top: clamp(74px, 9vw, 130px);
}

.industry-group {
  margin-top: clamp(34px, 5vw, 62px);
}

.industry-group h2 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

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

.area-list a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.area-list a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translate(var(--float-x), 0);
  }
  50% {
    transform: translate(var(--float-x), -12px);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

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

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 8px 0 10px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px;
    border-top: 1px solid var(--border);
  }

  .hero,
  .why-section,
  .seo-panel,
  .maintenance-card,
  .final-panel,
  .page-hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 76px;
  }

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

  .dashboard-shell {
    left: 50%;
    transform: translateX(-50%);
  }

  .floating-card {
    right: auto;
    left: 50%;
    --float-x: -50%;
  }

  .lead {
    top: 450px;
    margin-left: -150px;
  }

  .index {
    top: 450px;
    margin-left: 110px;
  }

  .improve {
    top: 552px;
    margin-left: 0;
  }

  .why-title {
    position: static;
  }

  .service-grid,
  .package-grid,
  .seo-grid,
  .timeline,
  .work-grid,
  .local-insight-grid,
  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .maintenance-card ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    columns: initial;
  }

  .maintenance-card .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 8px;
  }

  .brand-logo {
    width: 132px;
  }

  .footer-logo {
    width: 126px;
  }

  .section,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .dashboard-shell {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .dashboard-grid,
  .strip,
  .service-grid,
  .why-grid,
  .seo-grid,
  .package-grid,
  .timeline,
  .work-grid,
  .content-list,
  .local-insight-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 132px;
  }

  .floating-card {
    position: static;
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
    --float-x: 0px;
    animation: none;
  }

  .lead {
    margin-left: 0;
  }

  .index {
    margin-left: 0;
  }

  .service-card,
  .package-card,
  .seo-card {
    padding: 24px;
  }

  .seo-panel,
  .maintenance-card,
  .final-panel {
    padding: 24px;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
