/* ═══════════════════════════════════════════
   AXIOM PROPERTY GROUP — Shared Styles
   Brand: Navy #1e3a5f / Slate #6B7B8D
   Font: DM Sans
   ═══════════════════════════════════════════ */

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

:root {
  --navy: #1e3a5f;
  --navy-deep: #152b47;
  --navy-light: #2a4f7a;
  --slate: #6B7B8D;
  --slate-light: #8a97a5;
  --warm-white: #f8f7f5;
  --off-white: #f0efec;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --border: #ddd9d3;
  --accent: #c8a86e;
  --green: #2e7d32;
  --green-bg: #e8f5e9;
  --amber: #f57f17;
  --amber-bg: #fff8e1;
  --red: #c62828;
  --red-bg: #fce4ec;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}

.nav-logo .shield { width: 36px; height: 36px; }

.nav-logo .wordmark {
  font-size: 17px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.2;
}

.nav-logo .wordmark span {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate);
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-cta {
  display: inline-block; padding: 9px 20px; background: var(--navy);
  color: #fff !important; border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}

.nav-cta:hover { background: var(--navy-light); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}

.mobile-toggle svg { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 14px 28px; background: var(--navy); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--navy-light); }

.btn-secondary {
  display: inline-block; padding: 14px 28px; background: transparent; color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 6px; border: 1.5px solid var(--navy); cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-white {
  display: inline-block; padding: 14px 28px; background: #fff; color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 6px; border: none; cursor: pointer; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  color: var(--navy-deep); margin-bottom: 12px; line-height: 1.25;
}

.section-sub {
  font-size: 16px; color: var(--text-light); max-width: 560px;
  margin-bottom: 48px; line-height: 1.65;
}

/* ── TRUST BAR ── */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--slate);
}
.trust-item svg { flex-shrink: 0; color: var(--navy); }

/* ── SERVICE CARDS (homepage) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--navy); box-shadow: 0 4px 20px rgba(30,58,95,0.08);
}
.service-icon {
  width: 44px; height: 44px; background: var(--warm-white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; }

.service-card .deliverable {
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 12px; letter-spacing: 0.01em;
}
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.service-card .card-link {
  margin-top: auto; font-size: 14px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.service-card:hover .card-link { gap: 10px; }
.service-card .card-link svg { transition: transform 0.2s; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ── PAGE HERO (service pages) ── */
.page-hero {
  padding: 130px 0 60px; background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  line-height: 1.2; color: var(--navy-deep); margin-bottom: 20px; max-width: 640px;
}
.page-hero .lead {
  font-size: 18px; line-height: 1.7; color: var(--text-light);
  margin-bottom: 32px; max-width: 580px;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.content-section:last-of-type { border-bottom: none; }
.content-section.shaded { background: var(--warm-white); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-section h2 {
  font-size: clamp(22px, 2.8vw, 28px); font-weight: 700;
  color: var(--navy-deep); margin-bottom: 16px; line-height: 1.3;
}
.content-section p {
  font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px;
}
.content-section p:last-child { margin-bottom: 0; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--navy); }
.feature-list li strong {
  display: block; font-size: 15px; font-weight: 600;
  color: var(--navy-deep); margin-bottom: 3px;
}
.feature-list li span { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: 15px; color: var(--text); padding-left: 26px; position: relative; line-height: 1.55;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; font-size: 14px;
}

/* ── INFO BOX ── */
.info-box {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 32px;
}

.info-box h3 { font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 16px; }

/* ── REPORT PREVIEW ── */
.report-preview { font-size: 12px; color: var(--text-light); }
.report-preview .rp-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--navy);
}
.report-preview .rp-header strong { font-size: 14px; color: var(--navy-deep); }
.report-preview .rp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.report-preview .rp-row:last-child { border-bottom: none; }
.rp-grade {
  display: inline-block; padding: 2px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.rp-grade.good { background: var(--green-bg); color: var(--green); }
.rp-grade.fair { background: var(--amber-bg); color: var(--amber); }
.rp-grade.poor { background: var(--red-bg); color: var(--red); }
.rp-footer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-light);
}
.rp-footer strong { color: var(--navy-deep); }

/* ── AUDIENCE CARDS ── */
.audience-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card {
  border: 1px solid var(--border); border-radius: 8px; padding: 24px; text-align: center;
}

.audience-card .emoji { font-size: 28px; margin-bottom: 12px; }
.audience-card h4 { font-size: 15px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 16px; font-weight: 700; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band { padding: 64px 0; background: var(--navy-deep); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 12px; }
.cta-band p {
  font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.cta-band .btn-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT SECTION ── */
.contact { padding: 80px 0; background: var(--navy-deep); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-intro h2 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.contact-intro p {
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px;
}

.contact-detail { display: flex; flex-direction: column; gap: 16px; }
.contact-detail a, .contact-detail span {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; transition: color 0.2s;
}
.contact-detail a:hover { color: #fff; }
.contact-detail svg { flex-shrink: 0; opacity: 0.6; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  color: rgba(255,255,255,0.4);
}
.contact-form select.has-value { color: #fff; }
.contact-form select option { background: var(--navy-deep); color: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(255,255,255,0.4);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-submit {
  padding: 14px 28px; background: #fff; color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  border: none; border-radius: 6px; cursor: pointer; transition: opacity 0.2s; align-self: flex-start;
}

.form-submit:hover { opacity: 0.9; }
.form-success {
  display: none; padding: 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
  color: rgba(255,255,255,0.9); font-size: 15px; text-align: center;
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px 0; background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-inner p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── SCOPE BOX ── */
.scope-box {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 32px;
}
.scope-box h3 { font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 16px; }
.scope-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.scope-col h4 {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.scope-col.does h4 { color: var(--green); }
.scope-col.doesnt h4 { color: var(--red); }
.scope-col ul { list-style: none; }
.scope-col ul li {
  font-size: 13px; color: var(--text-light); padding: 4px 0; padding-left: 16px; position: relative;
}
.scope-col.does ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }
.scope-col.doesnt ul li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-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(--border); padding: 20px 24px; gap: 16px;
  }

  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: 26px; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }
  .scope-columns { grid-template-columns: 1fr; }
  .content-section { padding: 52px 0; }
}
