:root {
  --blue-950: #06133d;
  --blue-900: #081b58;
  --blue-800: #0a2f86;
  --blue-700: #0b4cff;
  --blue-600: #1266ff;
  --blue-500: #2f80ff;
  --blue-100: #eaf2ff;
  --cyan: #32d7ff;
  --yellow: #ffcf2f;
  --orange: #ff7a1a;
  --red: #ff3d57;
  --ink: #0f172a;
  --muted: #5f6f89;
  --line: rgba(15, 23, 42, 0.11);
  --white: #ffffff;
  --off: #f6f9ff;
  --shadow: 0 24px 70px rgba(8, 27, 88, 0.14);
  --shadow-strong: 0 32px 90px rgba(8, 27, 88, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(8, 27, 88, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.04em;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 15px 35px rgba(11, 76, 255, .28);
}
.brand__text strong {
  display: block;
  line-height: 1;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--blue-950);
}
.brand__text small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-950);
}
.nav-menu > a:not(.btn) {
  position: relative;
  padding: 10px 0;
}
.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan));
  transition: width .2s ease;
}
.nav-menu > a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--blue-100);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 18px 42px rgba(11,76,255,.26);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(11,76,255,.32); }
.btn--small { min-height: 42px; padding-inline: 17px; font-size: 13px; }
.btn--ghost {
  color: var(--blue-950);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11,76,255,.18);
  box-shadow: none;
}
.btn--ghost:hover { box-shadow: 0 18px 40px rgba(8, 27, 88, 0.12); }
.btn--light { background: var(--white); color: var(--blue-900); box-shadow: 0 18px 42px rgba(0,0,0,.18); }
.btn--outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.45); box-shadow: none; }

.section { padding: 104px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan));
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -.055em;
  color: var(--blue-950);
}
h1 { font-size: clamp(48px, 7vw, 96px); line-height: .9; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 58px); line-height: 1; margin-bottom: 20px; }
h3 { font-size: 23px; line-height: 1.08; margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.72; }
.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}
.section-heading p:not(.eyebrow) { font-size: 18px; }
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 28px;
  align-items: end;
}

.hero {
  position: relative;
  min-height: calc(100svh - 40px - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(50,215,255,.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255,207,47,.22), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
  padding: 64px 0 86px;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__lead {
  max-width: 620px;
  font-size: 19px;
}
.hero__actions, .reviews__actions, .cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.hero__checks li {
  padding: 10px 13px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(11,76,255,.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(8, 27, 88, 0.08);
}
.hero__checks li::before { content: "✓ "; color: var(--blue-700); }
.hero__visual {
  position: relative;
  min-height: 540px;
  perspective: 1000px;
}
.mockup-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}
.mockup-card--main {
  top: 56px;
  left: 24px;
  right: 12px;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg);
}
.mockup-card--main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(11,76,255,.95), rgba(50,215,255,.78)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.12) 18px 32px);
}
.mockup-card__tag {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 9px 13px;
  color: var(--blue-950);
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
}
.mockup-sign {
  position: relative;
  z-index: 2;
  margin-top: 84px;
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.075em;
  text-shadow: 0 18px 34px rgba(0,0,0,.24);
}
.mockup-lines { position: relative; z-index: 2; display: grid; gap: 10px; max-width: 260px; margin-top: 18px; }
.mockup-lines span { height: 12px; border-radius: 999px; background: rgba(255,255,255,.72); }
.mockup-lines span:nth-child(2) { width: 74%; }
.mockup-lines span:nth-child(3) { width: 48%; }
.mockup-card--float {
  z-index: 3;
  padding: 18px 20px;
  color: var(--blue-950);
  font-weight: 900;
  animation: floatCard 5s ease-in-out infinite;
}
.mockup-card--wrap { left: -6px; bottom: 84px; background: linear-gradient(135deg, #fff, #eaf2ff); }
.mockup-card--print { right: 4px; bottom: 24px; background: linear-gradient(135deg, #fff, #fff7d7); animation-delay: -2s; }
.hero__stat {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 4;
  width: 160px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}
.hero__stat strong { display: block; font-size: 42px; line-height: 1; }
.hero__stat span { display: block; margin-top: 5px; color: rgba(255,255,255,.82); font-weight: 700; font-size: 13px; }
.hero__bg-shape { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .65; }
.hero__bg-shape--one { width: 240px; height: 240px; background: rgba(11,76,255,.12); left: -80px; top: 160px; }
.hero__bg-shape--two { width: 180px; height: 180px; background: rgba(255,207,47,.18); right: -70px; top: 120px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 2px;
  height: 36px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(var(--blue-700), transparent);
}

.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(8, 27, 88, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(11,76,255,.24); }
.service-card__image {
  min-height: 190px;
  position: relative;
  background: var(--blue-100);
  overflow: hidden;
}
.service-card__image::before,
.service-card__image::after {
  content: "";
  position: absolute;
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 16px 35px rgba(0,0,0,.08);
}
.service-card__image::before { width: 70%; height: 46%; left: 14%; top: 24%; transform: rotate(-4deg); }
.service-card__image::after { width: 36%; height: 18%; right: 12%; bottom: 18%; transform: rotate(7deg); }
.service-card__image--signs { background: linear-gradient(135deg, #0b4cff, #32d7ff); }
.service-card__image--wraps { background: linear-gradient(135deg, #06133d, #0b4cff 58%, #ffcf2f); }
.service-card__image--storefronts { background: linear-gradient(135deg, #0a2f86, #8fd7ff); }
.service-card__image--printing { background: linear-gradient(135deg, #0b4cff, #ff3d57 58%, #ffcf2f); }
.service-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 900;
  border-radius: 14px;
  background: var(--blue-700);
}
.service-card p { font-size: 15px; }
.service-card a { margin-top: auto; color: var(--blue-700); font-weight: 900; }

.portfolio { background: linear-gradient(180deg, var(--off), #fff); }
.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  color: var(--blue-950);
  font-weight: 900;
  border: 1px solid rgba(11,76,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { color: var(--white); background: var(--blue-700); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: var(--shadow);
  transition: opacity .22s ease, transform .22s ease;
}
.portfolio-card.is-hidden { display: none; }
.portfolio-card:hover { transform: translateY(-8px) scale(1.01); }
.portfolio-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.portfolio-card__media::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.58), transparent 14%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.15) 0 12px, transparent 12px 28px);
  transform: rotate(8deg);
  transition: transform .55s ease;
}
.portfolio-card:hover .portfolio-card__media::before { transform: rotate(16deg) scale(1.08); }
.portfolio-card__media span {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--blue-950);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--yellow);
  border-radius: 999px;
}
.portfolio-card__media--signs { background: linear-gradient(135deg, #0b4cff, #32d7ff); }
.portfolio-card__media--wraps { background: linear-gradient(135deg, #06133d, #0b4cff, #ffcf2f); }
.portfolio-card__media--storefronts { background: linear-gradient(135deg, #0a2f86, #32d7ff, #ffffff); }
.portfolio-card__media--printing { background: linear-gradient(135deg, #0b4cff, #ff3d57, #ffcf2f); }
.portfolio-card__media--banners { background: linear-gradient(135deg, #0b4cff, #ff7a1a); }
.portfolio-card__media--branding { background: linear-gradient(135deg, #081b58, #2f80ff, #32d7ff); }
.portfolio-card__content {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 3;
  padding: 24px;
  color: var(--white);
  background: rgba(6, 19, 61, .82);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}
.portfolio-card__content p { margin: 0 0 9px; color: var(--cyan); font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.portfolio-card__content h3 { color: var(--white); margin-bottom: 15px; }
.portfolio-card__content a { color: var(--white); font-weight: 900; }

.reviews {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(50,215,255,.18), transparent 24%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}
.reviews h2, .reviews .eyebrow { color: var(--white); }
.reviews .eyebrow::before { background: var(--cyan); }
.reviews p { color: rgba(255,255,255,.76); }
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.google-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.google-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  background: rgba(50,215,255,.16);
  border-radius: 999px;
}
.google-card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.google-card__g {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  font-size: 30px;
  font-weight: 900;
  background: var(--white);
  border-radius: 17px;
}
.google-card strong { display: block; font-size: 20px; }
.google-card small { color: rgba(255,255,255,.67); }
.google-card__score {
  display: flex;
  align-items: center;
  gap: 18px;
}
.google-card__score span {
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}
.google-card__score div { color: var(--yellow); letter-spacing: .08em; }
.google-card__count { font-size: 22px; font-weight: 900; color: var(--white) !important; }
.google-card__bar {
  height: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.17);
  border-radius: 999px;
  margin: 20px 0;
}
.google-card__bar span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--yellow), var(--cyan)); border-radius: inherit; }
.google-card__note { margin-bottom: 0; }

.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 62px;
  align-items: center;
}
.about__visual { position: relative; min-height: 560px; }
.about-photo {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.08em;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.36), transparent 18%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 16px, transparent 16px 34px),
    linear-gradient(135deg, var(--blue-700), var(--blue-950));
  box-shadow: var(--shadow-strong);
}
.about-badge {
  position: absolute;
  right: -18px;
  bottom: 44px;
  width: min(260px, 72%);
  padding: 24px;
  color: var(--blue-950);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 28px; font-weight: 900; letter-spacing: -.04em; }
.about-badge small { color: var(--muted); font-weight: 800; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.value-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--off);
}
.value-card span { color: var(--blue-700); font-weight: 900; }
.value-card h3 { font-size: 19px; margin-top: 10px; }
.value-card p { margin-bottom: 0; font-size: 14px; }

.process { background: var(--off); }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(11,76,255,.13);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(8, 27, 88, 0.08);
}
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
}
.process-step p { margin-bottom: 0; font-size: 15px; }

.cta-section { padding: 20px 0; background: var(--white); }
.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 52px;
  color: var(--white);
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,207,47,.22), transparent 24%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
  box-shadow: var(--shadow-strong);
}
.cta h2, .cta .eyebrow { color: var(--white); }
.cta .eyebrow::before { background: var(--cyan); }
.cta p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.contact__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 46px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-list a, .contact-list > span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--blue-950);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--off);
}
.contact-list span span, .contact-list a span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 12px;
}
.quote-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(11,76,255,.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-form h3 { margin-bottom: 4px; }
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 900;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: rgba(11,76,255,.5);
  box-shadow: 0 0 0 4px rgba(11,76,255,.1);
}
.form-note { margin: 0; font-size: 12px; }

.map-section { padding: 0 0 104px; background: var(--white); }
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  background: var(--off);
}
.map-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px;
}
.map-card__footer strong { display: block; color: var(--blue-950); font-size: 18px; }
.map-card__footer span { display: block; margin-top: 4px; color: var(--muted); font-weight: 700; }

.footer {
  color: rgba(255,255,255,.78);
  background: var(--blue-950);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr .9fr;
  gap: 34px;
}
.footer .brand__text strong { color: var(--white); }
.footer p { color: rgba(255,255,255,.67); max-width: 360px; }
.footer h3 { color: var(--white); font-size: 18px; margin-bottom: 16px; }
.footer a, .footer span { display: block; margin-bottom: 10px; }
.footer a:hover { color: var(--cyan); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.footer__bottom a { display: inline; color: var(--cyan); }

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  display: grid;
  gap: 10px;
}
.floating-actions a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.floating-actions a:hover { transform: translateY(-3px); }
.floating-actions__wa { background: #12b76a; }
.floating-actions__call { background: var(--blue-700); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .12s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 500px; max-width: 650px; width: 100%; margin-inline: auto; }
  .reviews__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .reviews__grid { gap: 32px; }
  .google-card { max-width: 520px; }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__links { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: calc(40px + var(--header-height)) 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a { padding: 12px 8px !important; }
  .nav-menu .btn { width: 100%; }
  .section { padding: 78px 0; }
  .hero { min-height: auto; }
  .hero__grid { padding: 54px 0 82px; gap: 24px; }
  .hero__visual { min-height: 430px; }
  .mockup-card--main { left: 8px; right: 8px; min-height: 330px; }
  .mockup-sign { margin-top: 72px; }
  .hero__stat { width: 142px; right: 4px; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; }
  .cta { grid-template-columns: 1fr; padding: 34px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand__mark { width: 42px; height: 42px; }
  .brand__text strong { font-size: 20px; }
  .brand__text small { display: none; }
  .hero__actions, .reviews__actions, .cta__actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero__checks { display: grid; }
  .hero__visual { min-height: 390px; }
  .mockup-card--main { min-height: 300px; padding: 20px; border-radius: 28px; transform: none; }
  .mockup-card--wrap { left: 0; bottom: 50px; }
  .mockup-card--print { right: 0; bottom: 4px; }
  .hero__stat { top: -4px; width: 130px; padding: 15px; }
  .hero__stat strong { font-size: 35px; }
  .service-grid, .portfolio-grid, .process-line, .value-grid, .footer__grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .portfolio-card { min-height: 380px; }
  .google-card { padding: 26px; }
  .google-card__score { align-items: flex-start; flex-direction: column; gap: 8px; }
  .about__visual { min-height: auto; }
  .about-photo { min-height: 390px; border-radius: 30px; }
  .about-badge { right: 14px; bottom: 18px; }
  .quote-form { padding: 22px; }
  .map-card iframe { height: 330px; }
  .map-card__footer { align-items: stretch; flex-direction: column; }
  .footer__bottom { flex-direction: column; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-actions a { width: 48px; height: 48px; }
}

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