:root {
  --color-primary: #3d5aae;
  --color-primary-dark: #2f478e;
  --color-white: #ffffff;
  --color-surface: #f5f5f5;
  --color-soft-blue: #eef2fb;
  --color-text: #2b2b2b;
  --color-text-muted: #666666;
  --color-border: #d9dde8;
  --shadow-soft: 0 18px 45px rgba(43, 43, 43, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --container-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: 4.5rem 0;
}

body[data-page="contact"] .section {
  padding: 20px 0;
}

.section-soft {
  background: var(--color-soft-blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(61, 90, 174, 0.08);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--color-primary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--color-white);
}

.text-link {
  color: var(--color-primary);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 221, 232, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.brand-copy span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before {
  top: -6px;
  position: absolute;
}

.nav-toggle span::after {
  top: 6px;
  position: absolute;
}

.site-nav {
  position: absolute;
  inset: calc(100% + 0.5rem) 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.site-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-soft-blue);
  color: var(--color-primary);
}

.header-cta {
  display: none;
}

.hero {
  padding-top: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(61, 90, 174, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 247, 252, 0.92));
}

.hero-grid,
.showcase-grid,
.contact-layout,
.two-column-panel {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
  align-content: center;
}

.hero-accent {
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), rgba(61, 90, 174, 0.3));
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-list {
  display: grid;
  gap: 0;
  margin-top: 0.35rem;
}

.trust-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(217, 221, 232, 0.88);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.08rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  line-height: 1.32;
}

.trust-item p {
  color: #2d3652;
  font-weight: 600;
  line-height: 1.35;
}

.trust-item-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
}

.trust-item-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(45%) saturate(1228%) hue-rotate(194deg) brightness(92%) contrast(94%);
}

.trust-item-copy {
  min-width: 0;
}

.hero-card,
.before-after-card,
.contact-panel,
.form-panel,
.note-panel,
.facebook-callout,
.review-panel,
.two-column-panel,
.detail-card,
.info-card,
.feature-card,
.stat-card,
.project-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.before-after-card,
.contact-panel,
.form-panel,
.note-panel,
.facebook-callout,
.detail-card,
.info-card,
.feature-card,
.project-copy {
  padding: 1.5rem;
}

.stat-card {
  display: grid;
  gap: 1rem;
}

.stat-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Montserrat", sans-serif;
}

.hero-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-card .stat-card {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(217, 221, 232, 0.92);
  box-shadow: 0 22px 55px rgba(43, 43, 43, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #dfe7f4;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(392px, calc(100% - 2.4rem));
  padding: 1.5rem 1.45rem;
  border: 1px solid rgba(217, 221, 232, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(43, 43, 43, 0.12);
}

.hero-overlay h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 2vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1f2b4a;
}

.hero-overlay .stat-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(217, 221, 232, 0.95);
}

.hero-overlay .stat-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.hero-overlay .stat-item:last-of-type {
  padding-bottom: 0;
}

.hero-overlay .stat-item p {
  color: #4e596f;
  line-height: 1.55;
}

.hero-overlay .stat-item strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #243252;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #eef3ff;
}

.stat-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(45%) saturate(1228%) hue-rotate(194deg) brightness(92%) contrast(94%);
}

.stat-copy {
  min-width: 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-bottom: 2rem;
  text-align: center;
  margin-inline: auto;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.service-grid,
.feature-grid,
.detail-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.info-card h3,
.feature-card h3 {
  margin-bottom: 0.7rem;
}

.before-after-visual,
.project-media {
  display: grid;
  gap: 1rem;
}

.before-after-visual img,
.project-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.before-after-visual span,
.project-media figcaption {
  display: inline-flex;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.before-after-card p,
.info-card p,
.feature-card p,
.detail-card p,
.project-copy p,
.review-panel p,
.contact-panel p,
.note-panel li,
.check-list li {
  color: var(--color-text-muted);
}

.feature-card {
  background: var(--color-surface);
}

.detail-card {
  min-height: 100%;
}

.two-column-panel,
.review-panel {
  padding: 1.7rem;
}

.check-list {
  border-radius: var(--radius-sm);
  background: var(--color-soft-blue);
  padding: 1.2rem;
}

.site-cta {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-white);
  display: grid;
  gap: 1rem;
}

.site-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.site-cta .button,
.site-cta .button-secondary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
}

.site-cta .button:hover,
.site-cta .button:focus-visible,
.site-cta .button-secondary:hover,
.site-cta .button-secondary:focus-visible {
  background: var(--color-soft-blue);
  border-color: var(--color-soft-blue);
  color: var(--color-primary-dark);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.site-footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-meta a {
  color: var(--color-text-muted);
}

.contact-card-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
  align-items: start;
}

.contact-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.contact-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.contact-item strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.4;
}

.contact-reveal {
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font-weight: 600;
  white-space: nowrap;
}

.contact-reveal-email {
  font-size: 0.95rem;
}

@media (min-width: 700px) and (max-width: 1014px) {
  .contact-card-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1015px) {
  .contact-card-list {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  }
}

.contact-reveal.is-revealed {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.contact-reveal.is-revealed:hover,
.contact-reveal.is-revealed:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.contact-inline-map {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 245, 0.95));
  box-shadow: inset 0 0 0 1px rgba(217, 221, 232, 0.9);
}

.contact-inline-map img {
  width: min(100%, 420px);
  height: auto;
}

.intervention-panel {
  align-items: center;
  padding: 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(61, 90, 174, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 242, 251, 0.88));
}

.intervention-copy {
  display: grid;
  gap: 1rem;
}

.intervention-copy p {
  color: var(--color-text-muted);
}

.intervention-points {
  margin: 0;
}

.intervention-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 245, 0.95));
  box-shadow: inset 0 0 0 1px rgba(217, 221, 232, 0.9);
}

.intervention-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(61, 90, 174, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 90, 174, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.intervention-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 15px;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-text);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(61, 90, 174, 0.22);
  border-color: var(--color-primary);
}

.form-feedback {
  min-height: 1.4rem;
  color: var(--color-primary);
  font-weight: 600;
}

.project-card {
  overflow: hidden;
}

.project-media {
  padding: 1.5rem 1.5rem 0;
}

.project-media figure {
  margin: 0;
}

.facebook-callout {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.facebook-callout p {
  color: var(--color-text-muted);
}

.page-hero {
  padding-top: 3rem;
}

.services-showcase {
  padding-top: 2.25rem;
  background:
    linear-gradient(135deg, rgba(238, 242, 251, 0.92), rgba(245, 245, 245, 0.72)),
    radial-gradient(circle at top right, rgba(61, 90, 174, 0.12), transparent 38%);
}

.services-hero-shell {
  min-height: 500px;
  padding: 2rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(35, 49, 86, 0.42), rgba(35, 49, 86, 0.12)),
    linear-gradient(135deg, #cdd8ec 0%, #e8eef9 35%, #c6d0e6 100%);
  box-shadow: var(--shadow-soft);
}

.services-hero-shell::before,
.services-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.services-hero-shell::before {
  width: 220px;
  height: 220px;
  right: -30px;
  top: 40px;
}

.services-hero-shell::after {
  width: 320px;
  height: 180px;
  left: -40px;
  bottom: -30px;
}

.services-hero-panel {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 1.6rem;
  border: 1px solid rgba(217, 221, 232, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.service-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.service-feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(43, 43, 43, 0.06);
}

.services-showcase-home {
  background: var(--color-white);
}

.services-home-shell {
  display: grid;
  gap: 1rem;
}

.services-home-shell > .eyebrow {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0;
  padding-inline: 1.15rem;
  background: rgba(61, 90, 174, 0.14);
}

.services-home-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.services-home-tags {
  display: grid;
  gap: 0.9rem;
}

.services-home-tags span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.services-home-content {
  display: grid;
  gap: 1rem;
}

.services-home-content h2 {
  margin-bottom: 0;
}

.services-home-content .lead {
  max-width: 46ch;
}

.services-home-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.services-home-actions .button-secondary {
  min-width: 190px;
}

.services-catalogue {
  padding-top: 2rem;
}

.services-detail-grid {
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.95));
}

.service-card-content {
  min-width: 0;
}

.service-card h2 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.service-card p {
  max-width: 50ch;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  pointer-events: none;
}

.service-card-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--color-primary);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.service-card-icon img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(31%) sepia(45%) saturate(1228%) hue-rotate(194deg) brightness(92%) contrast(94%);
}

.testimonials-section {
  padding-top: 0.75rem;
  padding-bottom: 1.2rem;
}

.testimonials-strip {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 0.35rem;
  color: var(--color-primary);
  letter-spacing: 0.12em;
}

.service-method-grid {
  display: grid;
  gap: 1rem;
}

.service-method-layout {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 248, 253, 0.94));
  box-shadow: var(--shadow-soft);
}

.service-method-panel {
  padding: 0.2rem;
  border-radius: 0;
  background: transparent;
}

.service-method-panel .process-strip-cards {
  margin-top: 1.8rem;
}

.process-strip {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.process-strip-cards {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-step {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.9rem 0.65rem;
  border-radius: 16px;
  background: var(--color-soft-blue);
  text-align: center;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
}

.process-step strong {
  font-size: 0.9rem;
}

.process-step-card {
  position: relative;
  align-content: start;
  min-height: 142px;
  padding: 1.2rem 0.9rem 0.95rem;
  border: 1px solid rgba(217, 221, 232, 0.92);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 242, 251, 0.98), rgba(232, 238, 250, 0.92));
  overflow: visible;
}

.process-step-card span {
  position: absolute;
  top: 12px;
  left: -14px;
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
  box-shadow: 0 10px 20px rgba(43, 43, 43, 0.08);
}

.process-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 0.35rem;
}

.process-step-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-primary);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.process-step-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(45%) saturate(1228%) hue-rotate(194deg) brightness(92%) contrast(94%);
  opacity: 0.92;
}

.process-step-card strong {
  max-width: 15ch;
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (min-width: 700px) {
  .service-grid,
  .feature-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-visual,
  .project-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-cta,
  .facebook-callout,
  .review-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr;
  }

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

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

  .services-home-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-header-inner {
    min-height: 88px;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    inset: auto;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    align-items: center;
    gap: 2.5rem;
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0.6rem;
  }

  .trust-item {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    padding: 0 1.15rem;
    border-top: 0;
    border-right: 1px solid rgba(217, 221, 232, 0.92);
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .trust-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .showcase-grid,
  .contact-layout,
  .two-column-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

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

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

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

  .services-showcase {
    padding-top: 1.5rem;
  }

  .services-hero-shell {
    display: flex;
    align-items: center;
    padding: 2.4rem;
  }

  .service-method-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-method-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .services-home-layout {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .services-home-content .lead {
    max-width: none;
  }

  .services-home-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 960px) and (max-width: 1014px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 959px) {
  .trust-item:first-child {
    border-top: 0;
  }

  .hero-card .stat-card {
    min-height: auto;
  }

  .hero-image {
    min-height: 360px;
    max-height: 420px;
  }

  .hero-overlay {
    position: static;
    width: auto;
    margin: 1rem;
  }
}
