:root {
  --bg: #0d1117;
  --bg-soft: #121923;
  --text: #f7f7f2;
  --muted: #c8ced8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7a74f;
  --accent-dark: #ad7f2d;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 70px);
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--white);
}
.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 5vw, 70px) 90px;
  background:
    linear-gradient(
      100deg,
      rgba(13, 17, 23, 0.94) 0%,
      rgba(13, 17, 23, 0.74) 45%,
      rgba(13, 17, 23, 0.38) 100%
    ),
    url('alac.jpeg') center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.company-name {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}

.contact-person {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary {
  background: var(--accent);
  color: var(--bg);
}
.button.primary:hover {
  background: #efc76f;
}
.button.secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
section:not(.hero) {
  padding: clamp(70px, 10vw, 120px) 0;
}
.two-column,
.why-grid,
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: var(--bg-soft);
}
.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  min-height: 260px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  background: rgba(215, 167, 79, 0.16);
  color: var(--accent);
  font-weight: 800;
}
.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.why {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  margin-right: 12px;
}

.contact {
  padding-top: 30px !important;
}
.contact-card {
  background: var(--text);
  color: var(--bg);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.contact-card .section-label {
  color: var(--accent-dark);
}
.contact-card p {
  color: #3b424d;
}
.contact-details {
  background: #eef0f3;
  border-radius: 24px;
  padding: 28px;
}
.contact-details p {
  margin-bottom: 10px;
}
.contact-details a {
  font-weight: 800;
  color: #111827;
}

.site-footer {
  padding: 26px 20px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-column,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
  }

  .site-header {
    position: absolute;
  }
  .nav {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 130px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: auto;
  }
}
