/* =====================================================
   Prime Auto Listings — Main Stylesheet v1.0
   Prime Auto Listings Ltd
===================================================== */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #F4F5F7; color: #1A1A2E; font-size: 15px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── VARIABLES ── */
:root {
  --navy: #0D1B3E; --navy-mid: #1A2F5A;
  --green: #00B87A; --green-light: #00D68F; --green-bg: #EEF9F5;
  --orange: #FF6B2B; --orange-bg: #FFF3EE; --gold: #F5C518;
  --white: #fff; --off: #F4F5F7; --gl: #E8EAED; --grey: #9CA3AF;
  --dark: #1A1A2E; --muted: #6B7280;
  --shadow: 0 4px 24px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.16);
  --r: 12px; --rs: 8px;
}

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.65); font-size: 12.5px; padding: 7px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-right { display: flex; gap: 18px; }
.topbar-right a { color: rgba(255,255,255,.7); transition: color .15s; }
.topbar-right a:hover { color: var(--green-light); }

/* ── NAVBAR ── */
.site-nav { background: #fff; border-bottom: 2px solid var(--gl); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(13,27,62,.07); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; height: 64px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; flex-shrink: 0; }
.logo-mark::after { content: ''; position: absolute; bottom: -4px; right: -4px; width: 16px; height: 16px; background: var(--green); border-radius: 50%; }
.logo-mark svg { position: relative; z-index: 1; }
.logo-text .brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.logo-text .sub { font-size: 10px; color: var(--green); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a { color: var(--dark); font-weight: 500; font-size: 13.5px; padding: 6px 11px; border-radius: var(--rs); transition: all .15s; }
.nav-links a:hover, .nav-links a.active { background: #EEF2FF; color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--navy); padding: 4px; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gl); padding: 12px 20px; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 10px 12px; color: var(--dark); font-weight: 500; border-radius: var(--rs); }
.mobile-menu a:hover { background: var(--off); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: var(--rs); font-weight: 600; font-size: 13.5px; cursor: pointer; border: none; transition: all .18s; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--gl); }
.btn-ghost:hover { border-color: var(--navy); background: var(--off); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #e85c22; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,107,43,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }
.btn-sm { padding: 7px 13px; font-size: 12.5px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }

/* ── LAYOUT ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 52px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-white { background: #fff; }
.section-navy { background: var(--navy); }
.section-off { background: var(--off); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; }
.section-title { font-family: 'Syne', sans-serif; font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.section-title span { color: var(--green); }
.section-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.see-all { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.see-all:hover { color: var(--green); }

/* ── PAGE HEADER ── */
.page-header { background: linear-gradient(135deg, var(--navy), #162B55); padding: 44px 20px; color: #fff; }
.page-header h1 { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 7px; }
.page-header p { color: rgba(255,255,255,.6); font-size: 15px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--green-light); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .04em; text-transform: uppercase; }
.badge-new { background: var(--green); color: #fff; }
.badge-used { background: var(--navy); color: #fff; }
.badge-foreign { background: var(--orange); color: #fff; }

/* ── DOT PULSE ── */
.dot-pulse { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #162B55 55%, #0D2040 100%); padding: 68px 20px 76px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,184,122,.15), transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -50px; left: 8%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,107,43,.1), transparent 70%); pointer-events: none; }
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,184,122,.15); border: 1px solid rgba(0,184,122,.3); color: var(--green-light); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(28px,5vw,52px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; }

/* ── HERO SEARCH ── */
.hero-search { background: #fff; border-radius: 14px; padding: 8px; box-shadow: var(--shadow-lg); }
.hs-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; align-items: center; }
.hsf { display: flex; flex-direction: column; padding: 10px 14px; border-radius: var(--rs); border: 1.5px solid var(--gl); cursor: pointer; transition: border-color .15s; }
.hsf:hover { border-color: var(--navy); }
.hsf label { font-size: 10.5px; font-weight: 600; color: var(--grey); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px; cursor: pointer; }
.hsf select { border: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--dark); outline: none; cursor: pointer; padding: 0; }
.hsb { height: 64px; background: var(--orange); border: none; border-radius: var(--rs); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .18s; font-size: 20px; width: 64px; }
.hsb:hover { background: #e85c22; transform: translateY(-1px); }

/* ── FILTER STRIP ── */
.filter-strip { background: #fff; border-bottom: 1.5px solid var(--gl); padding: 0 20px; }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 6px; overflow-x: auto; padding: 11px 0; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.ftag { flex-shrink: 0; padding: 6px 15px; border-radius: 100px; border: 1.5px solid var(--gl); font-size: 13px; font-weight: 500; color: var(--dark); cursor: pointer; background: #fff; font-family: 'DM Sans', sans-serif; transition: all .15s; white-space: nowrap; }
.ftag:hover { border-color: var(--navy); background: var(--off); }
.ftag.on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── CAR CARDS ── */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 20px; }
.car-card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: all .2s; border: 1.5px solid transparent; }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.car-card-link { display: block; text-decoration: none; color: inherit; }
.car-img-wrap { position: relative; }
.car-ph { width: 100%; height: 190px; background: linear-gradient(135deg, #1A2F5A, #0D1B3E); display: flex; align-items: center; justify-content: center; font-size: 54px; color: rgba(255,255,255,.6); overflow: hidden; }
.car-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.car-card:hover .car-ph img { transform: scale(1.03); }
.car-emoji { font-size: 54px; }
.car-badge { position: absolute; top: 12px; left: 12px; }
.car-body { padding: 16px; }
.car-make { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.car-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.car-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.cmeta { font-size: 12px; color: var(--muted); }
.car-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--gl); padding-top: 12px; }
.car-price { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); }
.neg-tag { font-size: 11px; font-weight: 600; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.car-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.no-results { text-align: center; padding: 48px 20px; color: var(--muted); grid-column: 1/-1; }
.no-results-icon { font-size: 48px; margin-bottom: 12px; }
.no-results h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.how-card { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 24px; }
.how-card:hover { background: rgba(0,184,122,.12); border-color: var(--green); }
.how-icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.how-card h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.how-card p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── TRUST ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.trust-card { background: #fff; border-radius: var(--r); padding: 26px 22px; box-shadow: var(--shadow); }
.trust-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.trust-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.trust-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── PROMO CARD ── */
.promo-card { border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--orange), #e85c22); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.promo-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.promo-card p { font-size: 14px; opacity: .8; margin-bottom: 20px; max-width: 380px; }
.btn-white { background: #fff; color: var(--navy); font-weight: 700; font-size: 13px; padding: 9px 20px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; transition: transform .15s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.promo-bg { position: absolute; right: -20px; bottom: -20px; font-size: 120px; opacity: .08; line-height: 1; pointer-events: none; }

/* ── RESULTS PAGE ── */
.results-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 32px 20px; }
.sidebar { position: sticky; top: 84px; height: fit-content; }
.sidebar-card { background: #fff; border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); margin-bottom: 16px; }
.sidebar-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1.5px solid var(--gl); }
.filter-group { margin-bottom: 16px; }
.filter-group label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; display: block; }
.filter-group select, .filter-group input { width: 100%; padding: 9px 12px; border: 1.5px solid var(--gl); border-radius: var(--rs); font-family: 'DM Sans', sans-serif; font-size: 13.5px; outline: none; transition: border-color .15s; color: var(--dark); background: #fff; }
.filter-group select:focus, .filter-group input:focus { border-color: var(--navy); }
.price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.results-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.sort-bar { display: flex; align-items: center; gap: 10px; }
.sort-bar label { font-size: 13px; color: var(--muted); }
.sort-bar select { padding: 7px 12px; border: 1.5px solid var(--gl); border-radius: var(--rs); font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--gl); border-radius: var(--rs); font-size: 14px; font-weight: 600; color: var(--dark); transition: all .15s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── CAR DETAIL ── */
.det-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 32px 20px; }
.gallery { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 20px; }
.main-img { width: 100%; height: 360px; background: linear-gradient(135deg, #162B55, #0D1B3E); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.main-img img { width: 100%; height: 100%; object-fit: cover; }
.car-emoji-lg { font-size: 80px; color: rgba(255,255,255,.5); }
.thumb-row { display: flex; gap: 8px; padding: 12px; overflow-x: auto; }
.thumb { width: 76px; height: 56px; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid transparent; transition: border-color .15s; flex-shrink: 0; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.on, .thumb:hover { border-color: var(--green); }
.det-card { background: #fff; border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); margin-bottom: 18px; }
.det-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1.5px solid var(--gl); }
.det-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 10px; }
.det-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.dmeta { font-size: 13px; color: var(--muted); }
.customs-cleared { color: var(--green) !important; font-weight: 600; }
.det-description { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 11px; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: .04em; }
.spec-val { font-size: 14px; font-weight: 600; color: var(--dark); }
.feat-list { display: flex; flex-wrap: wrap; gap: 7px; }
.feat-tag { padding: 5px 12px; background: var(--off); border-radius: 100px; font-size: 12.5px; font-weight: 500; color: var(--dark); border: 1px solid var(--gl); }
.similar-section { margin-top: 32px; }
.det-sidebar { height: fit-content; position: sticky; top: 84px; }
.cta-card { background: #fff; border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-lg); border: 2px solid var(--green-bg); }
.cta-price { font-family: 'Syne', sans-serif; font-size: 29px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cta-price small { font-size: 13px; font-weight: 400; color: var(--muted); font-family: 'DM Sans', sans-serif; margin-left: 6px; }
.cta-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.escrow-note { margin-top: 14px; padding: 12px; background: var(--off); border-radius: var(--rs); font-size: 12.5px; color: var(--muted); line-height: 1.6; text-align: center; }
.quick-facts { display: flex; flex-direction: column; gap: 10px; }
.qf-row { display: flex; justify-content: space-between; font-size: 13.5px; padding-bottom: 9px; border-bottom: 1px solid var(--gl); }
.qf-row:last-child { border-bottom: none; padding-bottom: 0; }
.qf-row span { color: var(--muted); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; padding: 52px 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon { width: 44px; height: 44px; background: var(--green-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-label { font-size: 12px; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: .04em; }
.c-val { font-size: 14.5px; font-weight: 500; color: var(--dark); margin-top: 3px; line-height: 1.6; }
.c-val a { color: var(--dark); }
.form-card { background: #fff; border-radius: var(--r); padding: 32px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

/* ── CF7 FORM OVERRIDES ── */
.wpcf7 form .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel],
.wpcf7 input[type=number], .wpcf7 select, .wpcf7 textarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--gl); border-radius: var(--rs);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark); background: #fff;
  outline: none; transition: border-color .15s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { border-color: var(--navy); }
.wpcf7 textarea { resize: vertical; min-height: 90px; }
.wpcf7 input[type=submit] {
  width: 100%; padding: 13px 26px; background: var(--orange); color: #fff; border: none;
  border-radius: var(--rs); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .18s;
}
.wpcf7 input[type=submit]:hover { background: #e85c22; transform: translateY(-1px); }
.wpcf7-response-output { margin-top: 12px !important; border-radius: var(--rs) !important; padding: 10px 14px !important; font-size: 14px !important; }
.wpcf7 .wpcf7-validation-errors { border-color: var(--orange) !important; background: var(--orange-bg) !important; color: #92400e !important; }
.wpcf7 .wpcf7-mail-sent-ok { border-color: var(--green) !important; background: var(--green-bg) !important; color: #065f46 !important; }

/* ── SELL PAGE ── */
.sell-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; padding: 52px 20px; }
.sell-steps-row { display: flex; align-items: center; margin-bottom: 28px; }
.sell-step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.step-label { font-size: 12px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.step-line { flex: 1; height: 2px; background: var(--gl); margin-bottom: 22px; }
.sell-info-cards { display: flex; flex-direction: column; gap: 14px; }
.sell-info-card { background: #fff; border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 14px; }
.sell-info-icon { font-size: 24px; flex-shrink: 0; }
.sell-info-card h4 { font-family: 'Syne', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sell-info-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.sell-form-card { background: #fff; border-radius: var(--r); padding: 32px; box-shadow: var(--shadow-lg); }
.sell-form-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

/* ── ABOUT ── */
.about-hero { background: linear-gradient(135deg, var(--navy), #162B55); padding: 72px 20px; text-align: center; color: #fff; }
.about-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.about-hero h1 em { font-style: normal; color: var(--green-light); }
.about-hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 600px; margin: 0 auto; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-split p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 14px; }
.about-visual { background: linear-gradient(135deg, var(--navy), #162B55); border-radius: 20px; height: 320px; display: flex; align-items: center; justify-content: center; font-size: 72px; color: rgba(255,255,255,.3); }

/* ── MODAL ── */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(13,27,62,.6); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: 20px; padding: 32px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; position: relative; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:none} }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--off); border: none; border-radius: 8px; width: 32px; height: 32px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.modal-close:hover { background: var(--gl); }
.modal-icon { font-size: 32px; margin-bottom: 8px; }
.modal h2 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.modal-wa-btn-wrap { margin-top: 14px; }
.modal-wa-btn { display: flex; justify-content: center; width: 100%; }

/* ── FOOTER ── */
.site-footer { background: #0A1628; color: rgba(255,255,255,.6); padding: 52px 20px 22px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; margin-top: 12px; line-height: 1.7; max-width: 260px; color: rgba(255,255,255,.4); }
.footer-socials { display: flex; gap: 9px; margin-top: 18px; }
.soc { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: background .15s; font-weight: 700; color: rgba(255,255,255,.7); }
.soc:hover { background: var(--green); color: #fff; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: 13.5px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: 12.5px; }
.footer-legal a:hover { color: var(--green-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .results-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .det-layout { grid-template-columns: 1fr; }
  .det-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .sell-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hs-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}
