:root {
  color-scheme: light;
  --ink: #101319;
  --muted: #5f6873;
  --line: #dce2e8;
  --paper: #f7f9f8;
  --white: #ffffff;
  --teal: #0d8f8c;
  --coral: #ef6f54;
  --lime: #c8e07f;
  --navy: #152236;
  --shadow: 0 22px 60px rgba(16, 19, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 249, 248, 0.82);
  border-bottom: 1px solid rgba(220, 226, 232, 0.72);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--ink);
  font-weight: 800;
}

.nav-cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 104px clamp(20px, 6vw, 86px) 64px;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 249, 248, 0.96) 0%, rgba(247, 249, 248, 0.84) 34%, rgba(247, 249, 248, 0.2) 72%),
    linear-gradient(0deg, rgba(16, 19, 25, 0.28), rgba(16, 19, 25, 0));
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  margin-top: clamp(16px, 5vh, 54px);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3.6rem, 5.7vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.55vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: #333b44;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.slogan {
  display: inline-flex;
  width: fit-content;
  margin: 20px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(16, 19, 25, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 19, 25, 0.16);
}

.intro,
.section,
.domains-section,
.maintenance-section,
.process,
.contact-section {
  padding-inline: clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro > div {
  min-height: 170px;
  padding: 28px;
  background: var(--paper);
}

.metric {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 900;
}

.intro p,
.service-card p,
.domain-grid p,
.maintenance-section p,
.process p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.section,
.domains-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 1180px;
}

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

.service-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(16, 19, 25, 0.05);
}

.service-card:nth-child(2) {
  border-top-color: var(--teal);
}

.service-card:nth-child(3) {
  border-top-color: var(--coral);
}

.service-card:nth-child(4) {
  border-top-color: var(--lime);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
}

.domains-section {
  background:
    linear-gradient(180deg, #eef4f2 0%, #f7f9f8 100%);
}

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

.domain-grid article {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(207, 215, 222, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: 0 20px 48px rgba(16, 19, 25, 0.11);
  overflow: hidden;
}

.domain-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--teal);
}

.domain-grid article:nth-child(3n)::before {
  background: var(--coral);
}

.domain-grid article:nth-child(3n + 2)::before {
  background: var(--lime);
}

.domain-grid h3 {
  margin-top: 8px;
  color: var(--ink);
}

.card-tag {
  display: grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.maintenance-section {
  display: block;
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    linear-gradient(90deg, rgba(13, 143, 140, 0.08), rgba(239, 111, 84, 0.06)),
    var(--white);
}

.maintenance-copy {
  display: block;
  margin-bottom: 34px;
}

.maintenance-copy p {
  max-width: 760px;
  margin-top: 22px;
}

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

.maintenance-list div {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(207, 215, 222, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(16, 19, 25, 0.08);
}

.maintenance-list div > span:not(.maintenance-number) {
  color: var(--coral);
  font-size: 1.08rem;
  font-weight: 900;
}

.maintenance-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  padding-top: 96px;
  padding-bottom: 96px;
  color: var(--white);
  background: var(--ink);
}

.process h2 {
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
  white-space: nowrap;
}

.process-copy p {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}

.steps li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 26px;
  background: var(--ink);
}

.steps span {
  color: var(--lime);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--white);
}

.contact-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.contact-copy p {
  max-width: 460px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid #cfd7de;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(13, 143, 140, 0.18);
  border-color: var(--teal);
}

.submit-button {
  width: fit-content;
  min-width: 210px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success {
  color: #0b716e;
}

.form-status.error {
  color: #b8432b;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 720px;
  }

  .intro,
  .service-grid,
  .domain-grid,
  .maintenance-section,
  .maintenance-list,
  .process,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-block: 14px;
  }

  .brand {
    gap: 7px;
    font-size: 0.9rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
  }

  .nav-cta {
    padding-inline: 10px;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .hero {
    min-height: 690px;
    padding-top: 76px;
  }

  .hero-content {
    margin-top: 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 249, 248, 0.97) 0%, rgba(247, 249, 248, 0.88) 52%, rgba(247, 249, 248, 0.2) 100%),
      linear-gradient(0deg, rgba(16, 19, 25, 0.2), rgba(16, 19, 25, 0));
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3rem);
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .form-row,
  .steps li {
    grid-template-columns: 1fr;
  }

  .submit-button,
  .button {
    width: 100%;
  }

  .slogan {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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