/* SolidWebCare — Bamford-inspired Refined */
:root {
  --bg: #faf8f4;
  --bg-card: #ffffff;
  --bg-hover: #f5f3ee;
  --text: #2c2c2c;
  --text-muted: #8a8a82;
  --accent: #6b6b5e;
  --accent-hover: #555549;
  --border: #e8e6e0;
  --radius: 0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.3s; }
a:hover { border-color: var(--text); }

.container { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ---- NAV ---- */
nav {
  background: var(--bg);
  padding: 28px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  border-bottom: none;
}
nav .logo a span { font-style: italic; }
nav .logo a:hover { border-bottom: none; }
nav ul { list-style: none; display: flex; gap: 40px; }
nav ul li a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: none;
  transition: color 0.3s;
}
nav ul li a:hover { color: var(--text); border-bottom: none; }

/* ---- HERO ---- */
.hero {
  padding: 180px 0 140px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero h1 .accent { font-style: italic; }
.hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 380px;
  margin: 0 auto 52px;
  line-height: 1.8;
}
.hero .cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.hero .cta:hover { opacity: 0.6; border-bottom: 1px solid var(--text); }

/* ---- SECTION ---- */
section { padding: 120px 0; }
section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}
section .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 80px;
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 48px;
}
.feature-card {
  padding: 0;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: start;
}
.pricing-card {
  padding: 0;
  position: relative;
}
.pricing-card.popular::before {
  content: 'Most Popular';
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.pricing-card .tier {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.pricing-card .price span {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card .desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.pricing-card ul { list-style: none; margin-bottom: 40px; }
.pricing-card ul li {
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card .cta-outline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.pricing-card .cta-outline:hover { opacity: 0.6; border-bottom: 1px solid var(--text); }

/* ---- TRUST ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 48px;
}
.trust-card {
  padding: 0;
}
.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.trust-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ---- FAQ ---- */
.faq-list { max-width: 600px; margin: 0 auto; }
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.faq-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ---- CONTACT ---- */
.contact-box {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.contact-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.contact-box p { color: var(--text-muted); margin-bottom: 40px; font-size: 0.92rem; line-height: 1.8; }
.contact-box a.cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.contact-box a.cta:hover { opacity: 0.6; border-bottom: 1px solid var(--text); }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  nav ul { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 56px; }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-grid { grid-template-columns: 1fr; gap: 48px; }
  section { padding: 80px 0; }
  .hero { padding: 100px 0 80px; }
}