:root {
  --blue: #0757b8;
  --blue-dark: #08366f;
  --blue-soft: #e9f2ff;
  --yellow: #f6c443;
  --yellow-soft: #fff5d8;
  --ink: #101828;
  --muted: #5d6b82;
  --line: #e3e8f0;
  --surface: #ffffff;
  --bg: #f6f8fb;
  --shadow: 0 22px 60px rgba(21, 46, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button.primary {
  color: #101828;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(246, 196, 67, 0.28);
}

.button.ghost {
  color: var(--blue);
  border: 1px solid rgba(7, 87, 184, 0.24);
  background: #fff;
}

.button.dark {
  color: #fff;
  background: var(--blue-dark);
}

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

main,
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: center;
  padding: 72px 0 58px;
}

.hero-copy {
  position: relative;
  padding: 8px 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.22;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.2vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.hero-copy p,
.intro-section p,
.service-card p,
.project-card p,
.process-grid p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.08rem;
}

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

.hero-panel {
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 87, 184, 0.96), rgba(8, 54, 111, 0.96)),
    var(--blue-dark);
  box-shadow: var(--shadow);
}

.panel-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-header span,
.service-snapshot span,
.project-card span,
.contact-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-header span,
.service-snapshot span {
  color: rgba(255, 255, 255, 0.7);
}

.panel-header strong {
  display: block;
  max-width: 15ch;
  font-size: 2rem;
  line-height: 1.15;
}

.service-snapshot {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.service-snapshot article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.service-snapshot article span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  color: #101828;
  background: var(--yellow);
  border-radius: 8px;
}

.section {
  padding: 72px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 32px;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--blue);
}

.icon-block {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.icon-block.web {
  background: #14a2d4;
}

.icon-block.forms {
  color: #101828;
  background: var(--yellow);
}

.icon-block.security {
  background: #1d976c;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.55;
}

.estimate-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 24px 24px 8px;
  padding: 34px;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.estimate-band .eyebrow {
  color: var(--blue-dark);
}

.estimate-band h2 {
  margin-bottom: 8px;
}

.estimate-band p {
  margin-bottom: 0;
  color: #3b3f48;
  line-height: 1.65;
}

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

.project-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-card.feature {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 87, 184, 0.92), rgba(8, 54, 111, 0.94)),
    var(--blue-dark);
}

.project-card span {
  color: var(--blue);
}

.project-card.feature span,
.project-card.feature p {
  color: rgba(255, 255, 255, 0.78);
}

.project-card.feature h3 {
  margin-top: 50px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

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

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

.process-grid article {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.map-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-grid a {
  display: block;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-grid span {
  color: var(--muted);
}

.contact-grid strong {
  display: block;
  color: var(--blue-dark);
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .estimate-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    padding: 16px;
  }

  .brand strong {
    display: none;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  main,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 40px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  h2 {
    max-width: 100%;
  }

  .service-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .estimate-band {
    padding: 24px;
    margin-left: 0;
    margin-right: 0;
  }

  .project-card.feature {
    grid-row: auto;
  }

  .project-card.feature h3 {
    margin-top: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
