:root {
  --bg: #ffffff;
  --surface: #f7f7f5;
  --surface-2: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --primary: #374151;
  --primary-strong: #111827;
  --accent: #c7b9a5;
  --shadow: 0 20px 45px rgba(17, 24, 39, 0.08);
  --radius: 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.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary-strong);
  color: #fff;
  font-size: 0.93rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topbar a { color: #fff; font-weight: 700; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover { color: var(--primary-strong); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(199,185,165,0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.03);
  z-index: 0;
}
.hero::before {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -40px;
}
.hero::after {
  width: 240px;
  height: 240px;
  left: -60px;
  bottom: -80px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199,185,165,0.2);
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.hero h1,
.section-head h2,
.section-intro h2,
.benefit-wrap h2,
.cta-box h2,
.contact-card h2 {
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--primary-strong);
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 24px;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
}
.btn-primary {
  background: var(--primary-strong);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--primary-strong);
  border: 1px solid var(--line);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-points span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}
.hero-card {
  display: flex;
  justify-content: center;
}
.info-panel {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-panel h2 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  color: var(--primary-strong);
}
.info-list {
  display: grid;
  gap: 14px;
}
.info-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
}
.info-item strong {
  display: block;
  margin-bottom: 4px;
}
.info-item p {
  margin: 0;
  color: var(--muted);
}

.section { padding: 82px 0; }
.centered { text-align: center; }
.section-intro {
  max-width: 880px;
  margin: 0 auto;
}
.section-intro p,
.section-head p,
.cta-box p,
.contact-card p,
.benefit-wrap p {
  color: var(--muted);
}
.section-head {
  margin-bottom: 30px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.coverage-card,
.contact-card,
.benefit-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}
.service-card {
  padding: 24px;
  min-height: 250px;
}
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}

.benefits {
  background: linear-gradient(180deg, #fbfbfa 0%, #ffffff 100%);
}
.benefit-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.benefit-item {
  padding: 18px 20px;
  font-weight: 600;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.coverage-card {
  text-align: center;
  padding: 34px 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-box h2,
.cta-box p,
.cta-box .section-tag { color: #fff; }
.cta-box .section-tag { background: rgba(255,255,255,0.14); }
.cta-box .btn-secondary {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.contact-card {
  padding: 28px;
}
.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.contact-info span {
  display: block;
  font-weight: 700;
  color: var(--primary-strong);
  margin-bottom: 4px;
}
.contact-info a {
  font-size: 1.1rem;
  font-weight: 800;
}
.secondary-contact h3 {
  margin-top: 0;
}
.secondary-contact ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
}
.secondary-contact li + li { margin-top: 10px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}
.footer a {
  font-weight: 800;
  color: var(--primary-strong);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--primary-strong);
  color: #fff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.25);
  z-index: 90;
}

.fade-in,
.fade-in-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-delay { transition-delay: 0.15s; }
.fade-in.show,
.fade-in-delay.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .benefit-wrap,
  .cta-box,
  .contact-grid,
  .cards-grid,
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: 220px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero,
  .section { padding: 64px 0; }
  .hero-grid,
  .benefit-wrap,
  .cta-box,
  .contact-grid,
  .coverage-grid,
  .cards-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 2.5rem; }
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
