/* Attention Appraisals — shared stylesheet
   Trust/professional blue palette. Independent property appraiser (Texas). */

:root {
  --navy: #0f2a4a;
  --navy-900: #0a1e38;
  --blue: #1f5fa8;
  --blue-600: #2b6fc0;
  --accent: #d4a531;      /* muted gold for accents/CTAs */
  --accent-dark: #b98c1e;
  --ink: #16202e;
  --muted: #5a6b7d;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-navy-soft: #eef3f9;
  --ok: #1f8a54;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.10);
  --shadow-sm: 0 4px 14px rgba(15, 42, 74, 0.08);
  --maxw: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 700; color: var(--blue); margin-bottom: .6rem;
}
.lead { font-size: 1.14rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #2a2000; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--nav { background: var(--accent); color: #2a2000; padding: 10px 20px; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand .logo { height: 44px; width: auto; display: block; }
.footer-brand .logo--footer { height: 50px; margin-bottom: 14px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center;
  background: var(--navy); color: var(--accent); font-weight: 800; font-size: 1.1rem;
}
@media (max-width: 560px) { .brand .logo { height: 38px; } }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .96rem; }
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 60%, #071628 100%); color: #eaf1f9; }
.hero .container { padding-top: 70px; padding-bottom: 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero p { color: #c6d6e8; font-size: 1.15rem; }
.hero .pill {
  display: inline-block; background: rgba(212,165,49,.15); color: var(--accent);
  border: 1px solid rgba(212,165,49,.4); padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: .82rem; margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px; border: 1px solid var(--line);
}
.hero-card h3 { color: var(--navy); }
.compare-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row .label { color: var(--muted); font-weight: 600; }
.compare-row .val { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.compare-row.win .val { color: var(--ok); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 22px 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat .cap { color: var(--muted); font-size: .92rem; font-weight: 600; }

/* Cards / steps */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.card h3 { margin-top: .3rem; }
.step-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--bg-navy-soft);
  color: var(--blue); font-weight: 800; display: grid; place-items: center; font-size: 1.1rem;
}
.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; background: var(--bg-navy-soft);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 14px;
}

/* Testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.quote p { font-style: italic; color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; }
.who .meta { font-size: .9rem; color: var(--muted); }
.who .meta strong { color: var(--navy); display: block; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); position: relative; }
.price .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.price .amount { font-size: 2.1rem; font-weight: 800; color: var(--navy); margin: 6px 0 2px; }
.price .amount small { font-size: .95rem; color: var(--muted); font-weight: 600; }
.price ul { list-style: none; margin: 16px 0 22px; padding: 0; flex: 1; }
.price li { padding: 8px 0 8px 26px; position: relative; color: var(--ink); font-size: .96rem; border-bottom: 1px solid var(--line); }
.price li:before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 400; }
.faq details[open] summary:after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details > p { padding: 14px 0; color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(160deg, var(--blue) 0%, var(--navy) 100%); color: #fff; border-radius: 20px; padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6e4f5; max-width: 620px; margin: 0 auto 22px; }

/* Forms */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue-600); border-color: var(--blue-600); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 4px; }

/* Info / disclaimer boxes */
.notice { background: var(--bg-navy-soft); border: 1px solid #d5e2f0; border-radius: 12px; padding: 18px 22px; color: var(--navy); font-size: .95rem; }
.notice strong { color: var(--navy); }
.callout { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 12px; padding: 22px 24px; box-shadow: var(--shadow-sm); }

/* Footer */
.site-footer { background: var(--navy-900); color: #b9c9db; padding: 56px 0 28px; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid a { color: #b9c9db; }
.footer-grid a:hover { color: #fff; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: #90a4bb; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; color: #7f95ab; font-size: .84rem; }
.footer-bottom p { color: #8199b2; margin-bottom: .6rem; }
.disclaimer-strip { background: #071628; color: #7f95ab; font-size: .82rem; padding: 18px 0; }
.disclaimer-strip .container > p { margin-bottom: .6rem; }

/* Page hero (interior) */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; padding: 60px 0; }
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero p { color: #c6d6e8; max-width: 680px; }
.breadcrumb { color: #9fb6cf; font-size: .85rem; margin-bottom: 14px; }
.breadcrumb a { color: #9fb6cf; }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); margin: 40px 0; border: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 20px; gap: 14px; box-shadow: var(--shadow);
  }
}
@media (max-width: 560px) {
  .grid-2, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band, .form { padding: 28px 20px; }
  .section { padding: 52px 0; }
}
