:root {
  --bg: #0c1418;
  --bg-soft: #101d24;
  --card: #132730;
  --text: #e9f4f4;
  --muted: #b8ced0;
  --accent: #ef7f33;
  --accent-2: #4dc3ad;
  --border: #2f4a53;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, #17303a 0%, rgba(23, 48, 58, 0) 35%),
    radial-gradient(circle at 85% 8%, #2d4027 0%, rgba(45, 64, 39, 0) 25%),
    var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.glow-1 {
  background: #f08b3d;
  top: -140px;
  left: -100px;
}

.glow-2 {
  background: #53b79f;
  right: -120px;
  bottom: -180px;
}

.label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d8f7f4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Rubik", sans-serif;
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4.3vw, 3.75rem);
  line-height: 1.04;
}

.lead {
  max-width: 760px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #f2a046);
  color: #101215;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(239, 127, 51, 0.32);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(239, 127, 51, 0.38);
}

.section {
  padding: 60px 0;
}

.statement p {
  margin-top: 16px;
  max-width: 920px;
  color: var(--muted);
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.services li {
  padding: 18px 18px 18px 56px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.services li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), #7be2cf);
  box-shadow: 0 0 0 5px rgba(77, 195, 173, 0.15);
}

.contacts .cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  padding: 20px;
}

.card h3 {
  font-size: 1.14rem;
}

.role {
  margin: 10px 0 14px;
  color: var(--muted);
}

.card a {
  color: #9ae5d6;
  text-decoration: none;
  word-break: break-word;
}

.card a:hover {
  text-decoration: underline;
}

.phone {
  margin-top: 12px;
  color: #ffd09f;
  font-weight: 700;
}

@media (max-width: 960px) {
  .contacts .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 56px 0 66px;
  }

  .section {
    padding: 42px 0;
  }

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