:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f4;
  --text: #18181b;
  --muted: #52525b;
  --border: #e4e4e7;
  --dark: #18181b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius-xl: 32px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.subbrand {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #3f3f46;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #71717a;
}

.eyebrow-light {
  color: #a1a1aa;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy {
  margin-top: 24px;
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-light {
  border: 1px solid #d4d4d8;
  background: var(--white);
  color: var(--text);
}

.hero-card,
.info-card,
.card,
.contact-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-box {
  margin-top: 30px;
  background: #f4f4f5;
  border-radius: 20px;
  padding: 22px;
  color: #3f3f46;
  font-size: 0.98rem;
  line-height: 1.8;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: #fafaf9;
  border-radius: var(--radius-xl);
  padding: 30px;
}

.info-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-card li {
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.services-layout {
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 0.98rem;
  color: #3f3f46;
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-section {
  background: var(--bg);
}

.contact-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px;
}

.contact-card h2,
.contact-card .contact-value {
  color: var(--white);
}

.contact-copy {
  max-width: 760px;
  color: #d4d4d8;
  margin-top: 20px;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.contact-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
}

.contact-label {
  color: #a1a1aa;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .card-grid,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .header-inner {
    padding: 18px 0;
  }

  .hero-grid {
    padding: 64px 0 72px;
  }

  .section {
    padding: 72px 0;
  }

  .contact-card {
    padding: 30px;
  }
}