/*
Theme Name: Surveys Near Me
Version: 2.0.0
Description: Clean directory theme for surveysnearme.co.uk
Author: Surveys Near Me
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 15px; line-height: 1.6; color: #1a1a2e; background: #f8f9fc; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

/* === VARIABLES === */
:root {
  --navy: #0f2137; --blue: #1d6fbf; --blue-lt: #e8f2fc;
  --green: #0e7c5a; --green-lt: #e6f5ef;
  --amber: #b45309; --border: #e4e8ef;
  --text: #1a1a2e; --muted: #6b7280; --bg: #f8f9fc; --white: #fff;
  --shadow: 0 4px 16px rgba(0,0,0,.08); --rad: 10px; --rad-sm: 6px;
  --max: 1140px;
}

/* === LAYOUT === */
.snm-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.snm-section { padding: 3rem 0; background: var(--white); }
.snm-section-alt { background: var(--bg); }
.snm-section h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.snm-section p.lead { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 9999; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.site-header .snm-wrap { display: flex; align-items: center; height: 64px; gap: 8px; }
.site-logo { display: flex; align-items: center; gap: 10px; margin-right: 24px; flex-shrink: 0; font-weight: 800; font-size: 17px; color: var(--navy); }
.site-logo img { max-height: 44px; max-width: 150px; width: auto; object-fit: contain; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-nav { display: flex; align-items: center; flex: 1; gap: 2px; }
.site-nav a, .site-nav button { display: inline-flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--muted); border-radius: var(--rad-sm); border: none; background: none; cursor: pointer; white-space: nowrap; transition: color .15s, background .15s; }
.site-nav a:hover, .site-nav button:hover { color: var(--navy); background: var(--bg); }
.site-nav .current { color: var(--blue); }

/* Dropdown */
.hdr-dd { position: relative; }
.hdr-dd-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; width: 240px; background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 6px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 100; }
.hdr-dd.open .hdr-dd-menu { display: block; }
.hdr-dd-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--rad-sm); font-size: 13px; color: var(--text); transition: background .1s; }
.hdr-dd-menu a:hover { background: var(--bg); color: var(--blue); }
.dd-icon { width: 24px; text-align: center; font-size: 15px; flex-shrink: 0; }

/* Nav end */
.site-nav-end { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hdr-cta { background: var(--navy); color: var(--white) !important; padding: 8px 18px; border-radius: var(--rad-sm); font-size: 13px; font-weight: 600; transition: background .15s; }
.hdr-cta:hover { background: var(--blue) !important; }
.hdr-user { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--rad-sm); font-size: 13px; font-weight: 500; color: var(--navy); cursor: pointer; }
.hdr-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: 1px solid var(--border); border-radius: var(--rad-sm); cursor: pointer; }
.hdr-burger span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }

/* Mobile nav */
.site-mob-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 0; }
.site-mob-nav.open { display: flex; }
.site-mob-nav a { padding: 12px 20px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--bg); font-weight: 500; }
.site-mob-nav a.sub { padding-left: 40px; font-size: 13px; color: var(--muted); font-weight: 400; }
.site-mob-nav a:hover { color: var(--blue); background: var(--bg); }
.site-mob-nav .mob-cta { padding: 12px 20px; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .hdr-burger { display: flex; }
  .site-nav-end .hdr-cta { display: none; }
}

/* === HERO === */
.snm-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); padding: 4rem 0 3rem; color: var(--white); }
.snm-hero h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.snm-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 2rem; line-height: 1.65; }
.snm-search { display: flex; background: var(--white); border-radius: 8px; overflow: hidden; max-width: 680px; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.snm-search input { flex: 1; padding: 14px 16px; border: none; outline: none; font-size: 15px; min-width: 0; }
.snm-search select { padding: 14px 12px; border: none; border-left: 1px solid var(--border); outline: none; font-size: 13px; color: var(--muted); background: var(--white); cursor: pointer; }
.snm-search button { padding: 14px 24px; background: var(--blue); color: var(--white); border: none; cursor: pointer; font-size: 15px; font-weight: 600; white-space: nowrap; transition: background .15s; }
.snm-search button:hover { background: #1558a0; }
.snm-hero-trust { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.snm-hero-trust span { font-size: 13px; color: rgba(255,255,255,.8); }
.snm-hero-trust span::before { content: '✓ '; color: #4ade80; }
#snm-default-msg { padding: 16px 0; color: var(--blue); font-size: 14px; }
#snm-default-msg::before { content: '🔍 '; }

@media (max-width: 640px) {
  .snm-hero h1 { font-size: 1.75rem; }
  .snm-search { flex-direction: column; border-radius: 8px; }
  .snm-search select { border-left: none; border-top: 1px solid var(--border); }
  .snm-search button { border-radius: 0 0 8px 8px; }
}

/* === TRUST BAR === */
.snm-trust { background: var(--navy); padding: 12px 0; }
.snm-trust .snm-wrap { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.snm-trust span { font-size: 13px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.snm-trust-tick { color: #4ade80; font-weight: 700; }

/* === SURVEY TYPE GRID === */
.snm-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.snm-type-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.5rem 1.25rem; display: flex; flex-direction: column; text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s; }
.snm-type-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue); }
.snm-type-icon { font-size: 2rem; margin-bottom: .75rem; }
.snm-type-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.snm-type-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.snm-type-price { font-size: 13px; font-weight: 600; color: var(--blue); margin-top: .75rem; }
.snm-type-cta { font-size: 13px; font-weight: 600; color: var(--blue); margin-top: .5rem; }

/* === HOW IT WORKS === */
.snm-hiw { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.snm-hiw-step { display: flex; gap: 1rem; }
.snm-hiw-num { width: 38px; height: 38px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.snm-hiw h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.snm-hiw p { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 640px) { .snm-hiw { grid-template-columns: 1fr; } }

/* === POPULAR LOCATIONS === */
.snm-locs { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.snm-loc { display: block; padding: 11px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--rad-sm); font-size: 14px; font-weight: 500; text-align: center; color: var(--text); transition: all .15s; }
.snm-loc:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

/* === LISTING CARDS === */
.snm-cards { display: flex; flex-direction: column; gap: 1rem; }
.snm-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.25rem; transition: box-shadow .15s; }
.snm-card:hover { box-shadow: var(--shadow); }
.snm-featured { border-color: var(--blue); border-left: 3px solid var(--blue); }
.snm-card-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.snm-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: var(--white); flex-shrink: 0; }
.snm-card-title { flex: 1; }
.snm-card-name { font-size: 16px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 3px; }
.snm-card-name:hover { color: var(--blue); }
.snm-badge-verified { background: var(--green-lt); color: var(--green); font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.snm-stars { font-size: 14px; color: #f59e0b; margin: 4px 0; }
.snm-stars span { font-weight: 600; color: var(--navy); font-size: 13px; margin-left: 4px; }
.snm-rc { color: var(--muted); font-size: 12px; font-weight: 400; }
.snm-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.snm-tag { background: var(--bg); border: 1px solid var(--border); font-size: 11px; padding: 2px 8px; border-radius: 20px; color: var(--muted); }
.snm-card-price { font-size: 15px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.snm-card-meta { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .5rem; font-size: 13px; color: var(--muted); border-top: 1px solid var(--bg); border-bottom: 1px solid var(--bg); padding: .75rem 0; margin-bottom: .75rem; }
.snm-card-meta strong { color: var(--text); }
.snm-card-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.snm-covers { font-size: 12px; color: var(--muted); flex: 1; }
.snm-card-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* === BUTTONS === */
.snm-btn { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: var(--rad-sm); font-size: 13px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all .15s; white-space: nowrap; }
.snm-btn-primary { background: var(--blue); color: var(--white); }
.snm-btn-primary:hover { background: #1558a0; color: var(--white); }
.snm-btn-outline { background: var(--white); color: var(--navy); border: 1px solid var(--border); }
.snm-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.snm-btn-ghost { background: var(--bg); color: var(--navy); }
.snm-btn-ghost:hover { background: var(--border); }

/* === SEARCH RESULTS PAGE === */
.snm-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.snm-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.25rem; position: sticky; top: 80px; }
.snm-sidebar h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: .75rem; }
.snm-filter-option { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--text); cursor: pointer; border-bottom: 1px solid var(--bg); }
.snm-filter-option:hover { color: var(--blue); }
.snm-filter-option.active { color: var(--blue); font-weight: 600; }
.snm-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.snm-results-header p { font-weight: 600; color: var(--navy); }
.snm-results-header select { padding: 6px 10px; border: 1px solid var(--border); border-radius: var(--rad-sm); font-size: 13px; }
@media (max-width: 768px) { .snm-page-layout { grid-template-columns: 1fr; } .snm-sidebar { position: static; } }

/* === LISTING PROFILE === */
.snm-profile-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.snm-profile-head { display: flex; gap: 1.5rem; align-items: flex-start; }
.snm-profile-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 28px; color: var(--white); flex-shrink: 0; }
.snm-profile-body { padding: 2rem 0; }
.snm-profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.snm-profile-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.5rem; position: sticky; top: 80px; }
@media (max-width: 860px) { .snm-profile-grid { grid-template-columns: 1fr; } .snm-profile-sidebar { position: static; } .snm-profile-head { flex-direction: column; } }

/* === ENQUIRY FORM === */
.snm-enquiry h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.snm-enquiry input, .snm-enquiry textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--rad-sm); font-size: 14px; margin-bottom: 10px; outline: none; transition: border-color .15s; }
.snm-enquiry input:focus, .snm-enquiry textarea:focus { border-color: var(--blue); }
.snm-enquiry textarea { min-height: 100px; resize: vertical; }

/* === BREADCRUMB === */
.snm-breadcrumb { font-size: 13px; color: var(--muted); padding: .75rem 0; }
.snm-breadcrumb a { color: var(--blue); }
.snm-breadcrumb a:hover { text-decoration: underline; }
.snm-breadcrumb span { margin: 0 6px; }

/* === TAXONOMY / AREA PAGE === */
.snm-tax-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); color: var(--white); padding: 2.5rem 0; }
.snm-tax-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.snm-tax-hero p { color: rgba(255,255,255,.8); max-width: 560px; }
.snm-tax-stats { display: flex; gap: 2rem; margin-top: 1.25rem; flex-wrap: wrap; }
.snm-tax-stat span:first-child { font-size: 1.5rem; font-weight: 800; display: block; }
.snm-tax-stat span:last-child { font-size: 12px; color: rgba(255,255,255,.6); }
.snm-content-block { background: var(--white); padding: 2rem; border-radius: var(--rad); border: 1px solid var(--border); margin-bottom: 1.5rem; line-height: 1.75; color: #374151; }
.snm-content-block h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .75rem; }
.snm-content-block p { margin-bottom: .75rem; }
.snm-faq-item { border: 1px solid var(--border); border-radius: var(--rad-sm); margin-bottom: .5rem; overflow: hidden; }
.snm-faq-q { padding: .875rem 1rem; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--navy); background: var(--white); }
.snm-faq-q:hover { background: var(--bg); }
.snm-faq-toggle { font-size: 18px; color: var(--muted); flex-shrink: 0; }
.snm-faq-a { display: none; padding: 0 1rem 1rem; font-size: 14px; color: #374151; line-height: 1.65; }
.snm-faq-a.open { display: block; }

/* === INTERNAL LINKS === */
.snm-il { border-top: 1px solid var(--border); padding: 2.5rem 0; margin-top: 2rem; background: var(--white); }
.snm-il h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.snm-il h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .75rem; }
.snm-il-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.snm-il-pill { display: inline-block; padding: 6px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--text); transition: all .15s; }
.snm-il-pill:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.snm-il-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.snm-il-card { display: flex; flex-direction: column; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--rad-sm); transition: border-color .15s; }
.snm-il-card:hover { border-color: var(--blue); }
.snm-il-card strong { font-size: 14px; color: var(--navy); }
.snm-il-card span { font-size: 12px; color: var(--muted); margin-top: 2px; }
.snm-region-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bg); flex-wrap: wrap; }
.snm-region-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); min-width: 130px; padding-top: 7px; flex-shrink: 0; }

/* === REVIEWS === */
.snm-reviews { display: flex; flex-direction: column; gap: 1rem; }
.snm-review { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.25rem; }
.snm-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: .5rem; flex-wrap: wrap; }
.snm-review-stars { color: #f59e0b; font-size: 16px; }
.snm-review-pc { font-size: 12px; color: var(--muted); }
.snm-review-title { font-weight: 700; color: var(--navy); margin-bottom: .25rem; font-size: 14px; }
.snm-review-body { font-size: 14px; color: #374151; line-height: 1.6; }
.snm-review-date { font-size: 12px; color: var(--muted); margin-top: .5rem; display: block; }

/* === FOOTER === */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
.site-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.site-footer-brand .footer-logo img { filter: brightness(0) invert(1); max-height: 36px; opacity: .85; }
.site-footer-brand .footer-logo span { font-size: 17px; font-weight: 800; color: var(--white); }
.site-footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: .5rem; }
.site-footer-brand .copyright { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--white); margin-bottom: .875rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-regions { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; }
.footer-regions-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.4); flex-shrink: 0; padding-top: 4px; }
.footer-regions a { font-size: 12px; color: rgba(255,255,255,.5); padding: 3px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; transition: all .15s; }
.footer-regions a:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
@media (max-width: 860px) { .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (max-width: 500px) { .site-footer-grid { grid-template-columns: 1fr; } }

/* === UTILITY === */
.snm-no-results { padding: 2rem; text-align: center; color: var(--muted); background: var(--bg); border-radius: var(--rad); }
.snm-loading { text-align: center; padding: 2rem; color: var(--muted); }
.snm-empty { color: var(--muted); font-size: 14px; }

/* === SITEMAP PAGE === */
.snm-sm-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 4px; margin: .5rem 0 1.5rem; }
.snm-sm-list a { font-size: 13px; color: var(--blue); padding: 2px 0; display: block; }
.snm-sm-list a:hover { text-decoration: underline; }

/* === BLOG === */
.snm-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.snm-post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; }
.snm-post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.snm-post-body { padding: 1.25rem; }
.snm-post-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.snm-post-body h3 a:hover { color: var(--blue); }
.snm-post-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.snm-post-meta { font-size: 12px; color: var(--muted); margin-top: .75rem; }

/* ═══ TOOLS / CALCULATORS ═══ */
.snm-tool { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 2rem; max-width: 600px; margin: 2rem 0; }
.snm-tool-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.snm-tool-desc { font-size: 14px; color: var(--muted); margin-bottom: 1.5rem; }
.snm-tool-form { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.5rem; }
.snm-tool-row { display: flex; flex-direction: column; gap: 4px; }
.snm-tool-row label { font-size: 13px; font-weight: 600; color: var(--navy); }
.snm-tool-row select, .snm-tool-row input { padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--rad-sm); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .15s; }
.snm-tool-row select:focus, .snm-tool-row input:focus { border-color: var(--blue); }
.snm-tool-result { background: var(--blue-lt); border: 1px solid #bfdbfe; border-radius: var(--rad-sm); padding: 1.25rem; }
.snm-tool-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.snm-tool-result p { font-size: 14px; color: #374151; margin-bottom: 1rem; }

/* ═══ INNER PAGE CONTENT STYLES ═══ */
.page-content h1 { font-size:2rem;font-weight:800;color:var(--navy);margin-bottom:1.5rem; }
.page-content h2 { font-size:1.25rem;font-weight:700;color:var(--navy);margin:1.5rem 0 .75rem; }
.page-content p { color:#374151;line-height:1.75;margin-bottom:1rem; }
.page-content ul { padding-left:1.5rem;margin-bottom:1rem; }
.page-content ul li { color:#374151;line-height:1.75;list-style:disc; }
.page-content a { color:var(--blue); }
.page-content table { width:100%;border-collapse:collapse; }
.page-content table th,.page-content table td { padding:10px 12px;text-align:left;border:1px solid var(--border); }
.page-content table th { background:var(--navy);color:#fff; }

/* Footer 5-column grid */
@media(min-width:1024px){ .site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }

/* Footer menus from wp_nav_menu */
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-menu a { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-menu a:hover { color: #fff; }

/* Widget styles */
.widget { margin-bottom: 1.5rem; }
.widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: .75rem; }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 4px 0; font-size: 13px; border-bottom: 1px solid var(--bg); }
.widget ul li a { color: var(--text); }
.widget ul li a:hover { color: var(--blue); }
.widget p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* WordPress admin bar fix */
.admin-bar .site-header { top: 32px; }
@media(max-width:782px) { .admin-bar .site-header { top: 46px; } }

/* Hero full width - no left gap */
.snm-hero { width: 100%; box-sizing: border-box; }
.snm-wrap { box-sizing: border-box; width: 100%; }
