:root {
  --bg: #f8fafc;
  --bg-deep: #ffffff;
  --bg-soft: #eff6ff;
  --panel: #ffffff;
  --panel-2: #f1f7ff;
  --line: rgba(15, 51, 89, 0.14);
  --text: #0b1f38;
  --muted: #4f6278;
  --muted-2: #6d7f94;
  --navy: #001f3f;
  --navy-2: #003366;
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --amber: #f4a900;
  --teal: #30d5c8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 51, 89, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--white);
  color: #071426;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.96), rgba(0, 51, 102, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(0, 31, 63, 0.16);
  backdrop-filter: blur(14px) saturate(1.05);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.brand-mark {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 1.36rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.92rem;
  color: #dbeafe;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown-toggle.is-active,
.nav-dropdown-toggle:hover,
.has-dropdown.is-open .nav-dropdown-toggle,
.has-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 28px;
  z-index: 1;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 2;
  width: 304px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.99));
  border: 1px solid rgba(15, 51, 89, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0, 31, 63, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
}

.dropdown a:hover,
.dropdown a.is-active {
  background: rgba(96, 165, 250, 0.14);
}

.dropdown strong {
  font-size: 0.94rem;
}

.dropdown span {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.lang-btn:hover,
.lang-btn.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.mobile-lang-switch {
  display: flex;
  gap: 10px;
  padding: 16px 8px 0;
}

.mobile-lang-switch .lang-btn {
  width: auto;
  min-width: 74px;
  gap: 8px;
  padding: 0 12px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
}

.quote-link,
.button-primary,
.button-secondary,
.button-ghost,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.quote-link,
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.24);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.quote-link:hover,
.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(47, 168, 255, 0.58);
  background: rgba(47, 168, 255, 0.1);
}

.button-primary:hover,
.button-light:hover {
  filter: brightness(1.05);
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 82px 0 auto 0;
  z-index: 95;
  max-height: calc(100svh - 82px);
  overflow: auto;
  background: rgba(0, 31, 63, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 20px 24px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a,
.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  text-align: left;
}

.mobile-submenu {
  display: none;
  padding: 6px 0 10px 16px;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  color: #dbeafe;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 74svh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.88) 0%, rgba(0, 51, 102, 0.72) 52%, rgba(15, 51, 89, 0.28) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0, 31, 63, 0), rgba(0, 31, 63, 0.56));
  pointer-events: none;
}

.home-hero {
  --hero-image: url("hero-server.jpg");
  background-position: center center;
  align-items: center;
}

.home-hero .hero-content {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(78px, 10svh, 118px) 0 78px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 86px 0 78px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.0rem, 7vw, 6.0rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--white);
}
.hero h2 {
  margin-bottom: 18px;
  font-size: clamp(2.0rem, 6vw, 3.5rem);
  line-height: 0.76;
  letter-spacing: 0;
  color: var(--white);
}

.hero-lead {
  margin: 0 auto 28px;
  color: #dbeafe;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  max-width: 680px;
}

.accent-text {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.hero-actions .button-primary,
.hero-actions .button-secondary,
.hero-actions .button-ghost,
.hero-actions .button-light {
  white-space: normal;
}

.home-hero .hero-actions {
  justify-content: center;
}

.stats-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 51, 89, 0.1);
}

.stat {
  min-height: 132px;
  padding: 28px 24px;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 74px 0;
  background: #ffffff;
}

.section.alt {
  background: #f8fafc;
}

.section-heading {
  display: grid;
  gap: 14px;
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--navy);
}

.section-heading p,
.copy-block p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card,
.service-card,
.service-detail-card,
.contact-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.value-card {
  min-height: 158px;
  padding: 24px;
}

.check-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(47, 168, 255, 0.15);
  color: var(--blue);
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--navy);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.services-preview-grid,
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.36);
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(15, 51, 89, 0.16);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-card-content {
  min-height: 112px;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 1.55vw, 1.45rem);
  color: var(--navy);
}

.service-bullet-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-bullet-title span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(244, 169, 0, 0.14);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.text-link {
  margin-top: 0;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--white);
}

.cta-inner p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.7;
}

.subpage-hero {
  min-height: clamp(390px, 46svh, 500px);
}

.subpage-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
}

.services-hero {
  --hero-image: url("hero-server.jpg");
}

.repair-hero {
  --hero-image: url("computer-repair.jpg");
}

.web-hero {
  --hero-image: url("web-development.jpg");
}

.hardware-hero {
  --hero-image: url("hardware-solutions.jpg");
}

.software-hero {
  --hero-image: url("software-solutions.jpg");
}

.business-software-hero {
  --hero-image: url("business-software.png");
}

.web-iot-hero {
  --hero-image: url("web-iot.png");
}

.hardware-new-hero {
  --hero-image: url("hardware.png");
}

.custom-solutions-hero {
  --hero-image: url("custom-solutions.png");
}

.service-support-hero {
  --hero-image: url("service-support.png");
}

.networking-hero {
  --hero-image: url("networking.png");
}

.contact-hero {
  --hero-image: url("hero-server.jpg");
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #e2e8f0;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.detail-grid > *,
.detail-grid aside,
.service-detail-card,
.detail-image,
.mini-metrics,
.mini-metric {
  min-width: 0;
}

.service-detail-card {
  padding: 28px;
  overflow-wrap: break-word;
}

.service-detail-card h2,
.service-detail-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.service-detail-card .hero-lead {
  color: var(--muted);
}

.service-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.clean-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 13px;
  color: var(--muted);
  line-height: 1.58;
  overflow-wrap: break-word;
}

.service-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.detail-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mini-metrics {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow-wrap: break-word;
}

.mini-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.mini-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-panel {
  padding: 28px;
}

.contact-card + .contact-card {
  margin-top: 18px;
}

.contact-card h2,
.form-panel h2 {
  margin-bottom: 14px;
  color: var(--navy);
}

.contact-line {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.contact-line span {
  color: var(--muted-2);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-line a,
.contact-line strong {
  color: var(--text);
  text-decoration: none;
  line-height: 1.55;
}

.contact-line a:hover {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 51, 89, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 168, 255, 0.16);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(48, 213, 200, 0.12);
  color: #aaf7ee;
  border: 1px solid rgba(48, 213, 200, 0.28);
}

.form-status.is-visible {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.1fr;
  gap: 30px;
  padding: 48px 0 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.2;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.footer-title {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 1.05rem;
}

.site-footer p {
  color: #dbeafe;
  line-height: 1.65;
}

.footer-link {
  color: #dbeafe;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--blue);
}

.map-container {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 240px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 1060px) {
  .main-nav,
  .quote-link {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .services-preview-grid,
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-grid,
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-image {
    max-width: 720px;
  }

  .contact-grid {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-subtitle {
    display: none;
  }

  .mobile-nav {
    inset: 76px 0 auto 0;
    max-height: calc(100svh - 76px);
  }

  .hero {
    min-height: 68svh;
  }

  .subpage-hero {
    min-height: auto;
  }

  .home-hero {
    min-height: 72svh;
  }

  .hero-content {
    padding: 58px 0 54px;
  }

  .home-hero .hero-content {
    width: min(100% - 28px, 760px);
    margin-inline: auto;
    padding: 72px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .hero-actions,
  .cta-inner,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary,
  .hero-actions .button-ghost,
  .hero-actions .button-light,
  .cta-inner .button-light {
    width: 100%;
  }

  .stats-grid,
  .services-preview-grid,
  .services-overview-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .stat {
    min-height: auto;
  }

  .service-card-content {
    min-height: auto;
  }

  .contact-card,
  .form-panel,
  .service-detail-card,
  .value-card {
    padding: 22px;
  }
}
