:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #1b1f24;
  --muted: #5b6470;
  --border: #e3e6ea;
  --primary: #1a73e8;
  --primary-dark: #0d5bbd;
  --accent: #12161c;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 22, 28, 0.08);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--accent); }
.nav-links a { margin-left: 24px; text-decoration: none; color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

/* Sections */
section { padding: 64px 0; }
h1 { font-size: 2.4rem; line-height: 1.2; margin: 0 0 16px; }
h2 { font-size: 1.8rem; margin: 0 0 28px; text-align: center; }
h3 { margin: 0 0 10px; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--accent), #2b3450); text-align: center; color: #fff; }
.hero p { max-width: 640px; margin: 0 auto 28px; color: #dfe4ea; font-size: 1.1rem; }
.hero h1 { color: #fff; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Cards */
.grid { display: grid; gap: 20px; }
.services .grid, .locations .grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card address { font-style: normal; color: var(--muted); text-align: center; }

/* Pricing */
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price { text-align: center; display: flex; flex-direction: column; }
.price .amount { font-size: 2rem; font-weight: 800; margin: 8px 0 4px; }
.price .amount span { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.price ul { list-style: none; padding: 0; margin: 12px 0 20px; text-align: left; flex: 1; }
.price li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.price li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.price.featured { border-color: var(--primary); transform: translateY(-6px); }

/* Contact */
.contact { background: var(--surface); border-top: 1px solid var(--border); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { text-align: left; }
.contact-info p { color: var(--muted); }

form { display: flex; flex-direction: column; gap: 4px; }
label { font-weight: 600; margin-top: 12px; }
input, select, textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
button { margin-top: 18px; cursor: pointer; }
.form-status { margin-top: 12px; font-weight: 600; }
.form-status.error { color: #c0392b; }
.form-status.success { color: #1e7a43; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-outline { border-color: var(--primary); color: var(--primary); }

/* Footer */
.site-footer { background: var(--accent); color: #aeb5bd; text-align: center; padding: 28px 0; }
.site-footer p { margin: 0; }

/* Disclaimer */
.disclaimer {
  background: #fdf3e3;
  border-top: 2px solid #ecc36a;
  color: #6b5320;
  padding: 18px 0;
  font-size: 0.9rem;
}
.disclaimer p { margin: 0; }

@media (max-width: 820px) {
  .services .grid, .locations .grid, .pricing-grid, .contact-wrap { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .nav-links a { margin-left: 14px; }
}