:root {
  --bg: #f7faf8;
  --text: #112118;
  --muted: #5f6f66;
  --line: #d7e2db;
  --white: #ffffff;
  --primary: #1c8b4c;
  --primary-dark: #12693a;
  --soft: #edf7f0;
  --shadow: 0 12px 35px rgba(10, 30, 18, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247,250,248,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(215,226,219,0.8);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 78px;
}
.logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.logo span { color: var(--primary); }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--text); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; padding: 13px 20px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--white); border-color: var(--line); color: var(--text); }
.hero, .page-hero { padding: 72px 0 48px; }
.page-hero.slim { padding: 64px 0 26px; }
.hero-grid, .two-col, .contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.eyebrow {
    .hero-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.hero-card {
    min-height: 420px;
    overflow: hidden;
}
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  background: var(--soft); color: var(--primary-dark); font-size: .9rem; font-weight: 700;
  margin-bottom: 16px;
}
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.5rem, 4vw, 4.6rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 14px; color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 60ch; }
.narrow { max-width: 44rem; }
.hero-list { padding-left: 18px; margin: 18px 0 24px; color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 20px;
  box-shadow: var(--shadow); min-height: 360px; display: flex; align-items: center; justify-content: center;
}
.server-rack {
  width: 100%; height: 320px; border-radius: 22px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e9eff3, #cfd9de 40%, #eef3f5 100%);
}
.rack-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0 12%, transparent 12% 18%, rgba(255,255,255,.85) 18% 30%, transparent 30% 36%, rgba(255,255,255,.9) 36% 48%, transparent 48% 54%, rgba(255,255,255,.85) 54% 66%, transparent 66% 72%, rgba(255,255,255,.95) 72% 84%, transparent 84% 90%, rgba(255,255,255,.9) 90% 100%),
    linear-gradient(180deg, rgba(68,82,94,.12), rgba(255,255,255,.0));
}
.rack-glow {
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.7));
}
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fcfffd; }
.trust-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 16px 0; }
.trust-items span { text-align: center; color: var(--muted); font-weight: 600; }
.section { padding: 74px 0; }
.section.alt { background: #f1f7f3; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card, .service-detail, .info-box, .quote-form, .step {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow);
}
.chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: var(--white); border: 1px solid var(--line); color: var(--text);
  padding: 10px 14px; border-radius: 999px; font-weight: 600;
}
.info-box ul { margin: 0; padding-left: 18px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step span {
  width: 42px; height: 42px; display: inline-grid; place-items: center;
  border-radius: 50%; background: var(--soft); color: var(--primary-dark); font-weight: 800;
  margin-bottom: 16px;
}
.cta { padding: 22px 0 74px; }
.cta-box {
  background: linear-gradient(135deg, #163526, #1f7a48);
  border-radius: 28px; padding: 34px; color: var(--white);
  display: flex; justify-content: space-between; gap: 30px; align-items: center;
}
.cta-box p, .cta-box h2 { color: var(--white); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer { background: #0f1b14; color: rgba(255,255,255,.9); padding: 42px 0 18px; }
.site-footer p, .site-footer a, .site-footer h4 { color: rgba(255,255,255,.9); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }
.footer-grid a { display: block; margin-bottom: 8px; }
.footer-logo { margin-bottom: 12px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 20px; }
.quote-form { display: grid; gap: 14px; }
.quote-form label { display: grid; gap: 8px; color: var(--text); font-weight: 600; }
input, textarea {
  width: 100%; border-radius: 12px; border: 1px solid var(--line); padding: 14px 14px;
  font: inherit; background: #fbfdfb;
}
.small-note { font-size: .95rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

@media (max-width: 960px) {
  .hero-grid, .two-col, .contact-grid, .footer-grid, .trust-items, .steps, .card-grid.three, .card-grid.two {
    grid-template-columns: 1fr;
  }
  h1 { max-width: none; }
  .nav {
    position: absolute; left: 16px; right: 16px; top: 78px; background: var(--white); border: 1px solid var(--line);
    border-radius: 18px; padding: 16px; display: none; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-wrap .btn { display: none; }
}
