:root {
  --primary: #7cc6c8;
  --primary-dark: #5ba5a7;
  --secondary: #f9cdd7;
  --text-main: #243b53;
  --text-muted: #6b7b93;
  --bg-soft: #f7fafc;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#ffffff;
  color: var(--text-main);
  line-height: 1.6;
}

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

.page { min-height: 100vh; display:flex; flex-direction:column; }

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff, #f9fafb, #fdf2f8);
  border-bottom:1px solid #edf2f7;
  backdrop-filter: blur(10px);
}

.nav {
  max-width:1120px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo { display:flex; align-items:center; gap:10px; }

.logo-icon {
  width:34px; height:34px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #fdf2f8, #7cc6c8);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft);
}

.logo-text span:first-child {
  font-weight:700; font-size:18px; letter-spacing:0.03em;
}

.logo-text span:last-child {
  font-size:11px; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.12em;
}

.nav-links { display:flex; gap:18px; font-size:14px; color:var(--text-muted); }

.nav-cta { display:flex; gap:10px; }

.btn {
  border-radius:999px;
  padding:8px 16px;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fff;
  box-shadow:0 12px 28px rgba(124,198,200,0.35);
}

.btn-primary:hover { transform:translateY(-1px); box-shadow:0 16px 32px rgba(124,198,200,0.45); }

.btn-outline {
  border:1px solid #cbd5f5;
  background:#ffffff;
  color:var(--text-main);
}

.btn-outline:hover { background:#f7fafc; }

/* Hero */

.hero {
  max-width:1120px;
  margin:0 auto;
  padding:28px 20px 36px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:28px;
}

@media (max-width:880px) {
  .hero {
    grid-template-columns:minmax(0,1fr);
  }
}

.hero-copy h1 {
  font-size:clamp(28px, 4vw, 36px);
  line-height:1.1;
  margin-bottom:12px;
}

.hero-copy h1 span {
  background:linear-gradient(120deg, #7cc6c8, #f472b6);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-copy p {
  font-size:15px;
  color:var(--text-muted);
  max-width:540px;
  margin-bottom:16px;
}

.hero-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }

.badge {
  font-size:11px;
  padding:4px 10px;
  border-radius:999px;
  border:1px dashed #e2e8f0;
  background:#f8fafc;
}

/* Services card */

.hero-services-card {
  margin-top:8px;
  background:#ffffff;
  border-radius:24px;
  border:1px solid #edf2ff;
  padding:18px 18px 16px;
  box-shadow:var(--shadow-soft);
}

.hero-services-header h2 { font-size:16px; margin-bottom:2px; }
.hero-services-header p { font-size:12px; color:var(--text-muted); }

.services-grid {
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

@media (max-width:680px) {
  .services-grid { grid-template-columns:minmax(0,1fr); }
}

.service-card {
  padding:14px 14px 12px;
  border-radius:18px;
  background:linear-gradient(145deg,#ffffff,#f9fafb,#fef3f8);
  border:1px solid #edf2ff;
}

.service-icon {
  width:34px; height:34px;
  border-radius:14px;
  background:#ffffff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:6px;
  box-shadow:0 6px 16px rgba(15,23,42,0.09);
}

.service-title { font-size:14px; margin-bottom:2px; }
.service-description { font-size:12px; color:var(--text-muted); margin-bottom:8px; }

.service-toggle-btn {
  width:100%;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid #dbe3ff;
  background:#ffffff;
  font-size:12px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.service-toggle-btn .chevron { font-size:11px; }

.service-menu {
  display:none;
  margin-top:8px;
  padding:8px 10px;
  border-radius:14px;
  border:1px dashed #e2e8f0;
  background:#ffffff;
}

.service-menu.open { display:block; }

.service-option-btn {
  width:100%;
  text-align:left;
  padding:7px 9px;
  margin-bottom:6px;
  border-radius:12px;
  border:none;
  background:#f9fafb;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.service-option-btn .label { font-size:12px; font-weight:600; }
.service-option-btn .meta { font-size:11px; color:var(--text-muted); }

/* Estimate panel */

.estimate-panel {
  background:#ffffff;
  border-radius:24px;
  border:1px solid #edf2ff;
  padding:18px 18px 20px;
  box-shadow:var(--shadow-soft);
  position:sticky;
  top:88px;
  align-self:flex-start;
}

.estimate-panel h2 { font-size:16px; margin-bottom:4px; }

.estimate-subtitle { font-size:12px; color:var(--text-muted); margin-bottom:12px; }

.form-label {
  font-size:11px;
  font-weight:600;
  color:var(--text-muted);
  margin-bottom:2px;
}

.input, .textarea, select {
  width:100%;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid #d1d9e6;
  font-size:13px;
  margin-bottom:10px;
  outline:none;
  background:#f9fafb;
}

.input:focus, .textarea:focus, select:focus {
  border-color:var(--primary);
  box-shadow:0 0 0 1px rgba(124,198,200,0.35);
  background:#ffffff;
}

.textarea { min-height:70px; resize:vertical; }

.phone-contact { font-size:12px; color:var(--text-muted); margin-top:8px; }

/* Contact & footer */

.contact {
  max-width:1120px;
  margin:0 auto 24px;
  padding:0 20px;
}

.contact h3 { font-size:16px; margin-bottom:6px; }
.contact p { font-size:13px; color:var(--text-muted); }

footer {
  border-top:1px solid #edf2f7;
  padding:16px 20px 20px;
  font-size:11px;
  color:var(--text-muted);
  text-align:center;
  background:#fafafc;
}

/* Responsive */

@media (max-width:880px) {
  .nav { flex-wrap:wrap; }
  .estimate-panel { position:static; margin-top:10px; }
}
