
:root {
  --bg: #020b0c;
  --panel: #061315;
  --panel2: #082124;
  --cyan: #14cbd3;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(20,203,211,.24);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(20,203,211,.14), transparent 32%),
    linear-gradient(180deg, #020b0c 0%, #061315 50%, #020b0c 100%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2,11,12,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.links a:hover { color: var(--cyan); }

.call {
  background: var(--cyan);
  color: #001011;
  padding: 18px 28px;
  font-weight: 950;
  box-shadow: 0 0 38px rgba(20,203,211,.28);
}

main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 32px 0;
}

.hero {
  text-align: center;
  padding: 28px 0 46px;
}

h1 {
  margin: 0 auto 30px;
  max-width: 1060px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .94;
  letter-spacing: -.07em;
  color: #fff;
}

.lead {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 32px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #001011;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 36px rgba(20,203,211,.25);
}

.team {
  padding: 0 0 70px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.team img {
  display: block;
  width: min(1050px, 92vw);
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow:
    0 34px 100px rgba(0,0,0,.46),
    0 0 90px rgba(20,203,211,.12);
}

.section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -.06em;
}

p, li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.028);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  margin: 0;
  font-size: 16px;
}

.contact {
  padding: 86px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.address {
  margin-top: 36px;
  max-width: 560px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(20,203,211,.08);
}

.address strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.address p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 28px;
}

.full { grid-column: 1 / -1; }

label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 0 14px;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.72);
  border-radius: 0;
  outline: none;
  font: inherit;
}

select { background-color: #020b0c; }

textarea {
  min-height: 120px;
  resize: vertical;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  box-shadow: 0 0 0 1000px #061315 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #061315 inset !important;
}

.submit {
  width: fit-content;
  min-width: 230px;
  height: 64px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.submit:hover {
  background: var(--cyan);
  color: #001011;
}

#form-message {
  display: none;
  grid-column: 1 / -1;
  padding: 18px 20px;
  border: 1px solid rgba(20,203,211,.48);
  background: rgba(20,203,211,.10);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

#form-message.show { display: block; }

footer {
  border-top: 1px solid var(--line);
  padding: 38px 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20,203,211,.10), transparent 36%),
    linear-gradient(180deg, #061315 0%, #020b0c 100%);
  color: var(--muted);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 850;
}

.footer-links a:hover { color: var(--cyan); }

.service-main {
  padding-bottom: 90px;
}

.service-hero {
  padding: 92px 0 58px;
}

.service-hero h1 {
  text-align: left;
  margin-left: 0;
}

.service-hero .lead {
  margin-left: 0;
}

.service-panel {
  margin-top: 40px;
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.028);
}

.service-panel h2 {
  font-size: 36px;
  letter-spacing: -.04em;
}

.service-panel li {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .links {
    flex-wrap: wrap;
    gap: 14px;
  }

  main {
    padding: 56px 22px 0;
  }

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

  .cards,
  form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(48px, 13vw, 84px);
  }
}
