/* Windt IT PHP redesign - CSS version 1.0.3 */
:root {
  color-scheme: light;
  --ink: #122033;
  --muted: #627087;
  --line: #d9e2ec;
  --paper: #f7fafc;
  --surface: #ffffff;
  --blue: #1458a8;
  --blue-dark: #0c376b;
  --cyan: #16a4b8;
  --green: #198754;
  --amber: #f2b84b;
  --shadow: 0 18px 45px rgba(18, 32, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.76);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 12px 28px rgba(18, 32, 51, 0.1);
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #e9f3fb;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(18px, 5vw, 72px) 42px;
  background: #0d1c2e;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 20, 34, 0.9) 0%, rgba(9, 20, 34, 0.68) 43%, rgba(9, 20, 34, 0.14) 100%),
    linear-gradient(0deg, rgba(9, 20, 34, 0.72), rgba(9, 20, 34, 0.04) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-services li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--amber);
  color: #18210f;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd06f;
  outline: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  display: grid;
  gap: 8px;
  min-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel a {
  font-weight: 800;
  text-decoration: none;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.local-seo-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-grid div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--surface);
}

.intro-grid strong {
  font-size: 18px;
}

.intro-grid span,
.section-heading p,
.service-card p,
.timeline p,
.contact p,
.form-note {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(18, 32, 51, 0.07);
}

.service-card h3,
.timeline h3 {
  margin: 0;
  font-size: 22px;
}

.service-card p {
  margin: 0;
}

.service-card small {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #e7f5f8;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.approach {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
  background: #102238;
  color: #fff;
}

.approach .section-heading {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.timeline article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 24px;
  background: #132a46;
}

.timeline span {
  color: var(--amber);
  font-weight: 900;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.brand-strip img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: contain;
  padding: 24px;
  background: var(--surface);
  filter: saturate(0.9);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-copy p {
  max-width: 620px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.contact-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d3df;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(22, 164, 184, 0.16);
}

.form-status,
.form-note {
  margin: 0;
  font-size: 13px;
}

.form-status {
  padding: 12px 13px;
  border: 1px solid #c8d3df;
  border-radius: 6px;
  background: #f5f8fb;
  color: var(--muted);
}

.form-status.is-success {
  border-color: rgba(25, 135, 84, 0.38);
  background: rgba(25, 135, 84, 0.1);
  color: #12613d;
  font-weight: 800;
}

.form-status.is-error {
  border-color: rgba(177, 48, 48, 0.34);
  background: rgba(177, 48, 48, 0.09);
  color: #8a2020;
  font-weight: 800;
}

.form-note.is-active {
  color: var(--green);
  font-weight: 800;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.site-footer img {
  width: 116px;
  height: auto;
  aspect-ratio: 5 / 1;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

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

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 34px;
  }

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

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

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 780px;
    padding: 112px 18px 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-services li {
    padding: 7px 9px;
    font-size: 12px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 58px 0;
  }

  .approach {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-grid,
  .timeline,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .brand-strip img {
    aspect-ratio: 2.3 / 1;
  }

  .site-footer {
    display: grid;
  }
}
