/*
Theme Name: SolidMark Home One Page
Theme URI: https://solidmarkhome.com/
Author: OpenAI
Description: One-page WordPress theme for SolidMark Home handyman services.
Version: 1.0
Text Domain: solidmark-home
*/

:root {
  --bg: #0b1830;
  --bg-2: #122645;
  --panel: #13294b;
  --panel-2: #0f223e;
  --text: #eef3f9;
  --muted: #b9c4d3;
  --accent: #f58220;
  --accent-dark: #d96f12;
  --line: rgba(255,255,255,.08);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,0,0,.25);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #0f223e 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-size: .78rem; margin-bottom: 12px;
}
.h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; margin: 0 0 14px; }
.lead { color: var(--muted); max-width: 720px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff; padding: 14px 22px; border-radius: 999px;
  font-weight: 700; border: 0; transition: .2s ease; box-shadow: 0 12px 24px rgba(245,130,32,.25);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn.secondary { background: transparent; border: 1px solid rgba(255,255,255,.18); box-shadow: none; }
.topbar {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px);
  background: rgba(11, 24, 48, .88); border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand strong { display: block; font-size: 1.2rem; }
.brand span { display: block; color: var(--muted); font-size: .9rem; margin-top: 3px; }
.menu { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: .95rem; }
.menu a:hover { color: #fff; }
.hero { padding: 72px 0 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; align-items: center;
}
.hero-card, .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; margin: 0 0 16px;
}
.hero-copy p { color: var(--muted); font-size: 1.06rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  padding: 18px; background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 16px;
}
.stat strong { display: block; font-size: 1.3rem; }
.stat span { color: var(--muted); font-size: .92rem; }
.hero-side { padding: 26px; }
.hero-side .badge {
  display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(245,130,32,.14);
  color: #ffb678; font-weight: 700; font-size: .82rem; margin-bottom: 16px;
}
.hero-list { display: grid; gap: 14px; margin: 22px 0 0; }
.hero-list div {
  padding: 14px 16px; border-radius: 14px; background: var(--panel-2); border: 1px solid var(--line);
}
.grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.pricing-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.price {
  font-size: 2rem; font-weight: 800; margin: 14px 0 6px; color: var(--accent);
}
.small { color: var(--muted); font-size: .92rem; }
.checklist { display: grid; gap: 8px; padding: 0; margin: 16px 0 0; list-style: none; }
.checklist li { color: var(--muted); position: relative; padding-left: 22px; }
.checklist li::before {
  content: "•"; color: var(--accent); position: absolute; left: 0; top: -1px; font-size: 1.1rem;
}
.steps { counter-reset: step; }
.steps .card::before {
  counter-increment: step; content: "0" counter(step); display: inline-flex; align-items: center;
  justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(245,130,32,.14);
  color: var(--accent); font-weight: 800; margin-bottom: 16px;
}
.cta {
  background: linear-gradient(135deg, rgba(245,130,32,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(245,130,32,.25); border-radius: 24px; padding: 36px;
}
.faq details {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: rgba(255,255,255,.025);
}
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 12px 0 0; }
.footer {
  padding: 28px 0 50px; color: var(--muted); font-size: .92rem;
}
.note { font-size: .86rem; color: var(--muted); margin-top: 10px; }
.notice {
  margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.035); color: var(--muted);
  border: 1px solid var(--line); font-size: .92rem;
}
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .menu { display: none; }
  .stats { grid-template-columns: 1fr; }
}
