/* ============================================
   CONCEPT 06 — "Statement Blue"
   Palette: Deep Blue, Slate, Coral Highlight
   Editorial / asymmetric / bento-grid layout
   ============================================ */

:root {
    /* Blue Scale */
    --blue-950: #0c1a2e;
    --blue-900: #0f2044;
    --blue-800: #162d5a;
    --blue-700: #1e3f7a;
    --blue-600: #2654a0;
    --blue-500: #3366bb;
    --blue-400: #5588cc;
    --blue-300: #7eaad9;
    --blue-200: #a8c5e6;
    --blue-100: #d0e1f2;
    --blue-50: #eaf1f9;

    /* Slate */
    --slate-900: #1a1d23;
    --slate-800: #2a2d35;
    --slate-700: #3d414c;
    --slate-600: #52576a;
    --slate-500: #6e748a;
    --slate-400: #8b91a5;
    --slate-300: #a8adc0;
    --slate-200: #c8cbd6;
    --slate-100: #e4e5ec;
    --slate-50: #f3f3f7;

    /* Coral Highlight */
    --coral-600: #c44030;
    --coral-500: #e04e3c;
    --coral-400: #ea6c5c;
    --coral-300: #f08e80;
    --coral-200: #f5b0a6;
    --coral-100: #fde8e5;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;

    /* Typography */
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;

    /* Spacing */
    --section-pad: 120px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-coral {
    background: var(--coral-500);
    color: var(--white);
}
.btn-coral:hover {
    background: var(--coral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224,78,60,0.25);
}

.btn-blue {
    background: var(--blue-600);
    color: var(--white);
}
.btn-blue:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(38,84,160,0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--blue-700);
    border: 1.5px solid var(--slate-300);
}
.btn-ghost-dark:hover {
    border-color: var(--blue-600);
    background: var(--blue-50);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-full { width: 100%; }

/* ═══ TOP BAR ═══ */
.topbar {
    background: var(--blue-950);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topbar a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.topbar a:hover { color: rgba(255,255,255,0.85); }

.topbar-sep {
    color: rgba(255,255,255,0.15);
}

.topbar-right {
    display: flex;
    gap: 20px;
}

/* ═══ NAVIGATION ═══ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-100);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(12,26,46,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-height: 44px;
    width: auto;
    height: 33px;
}

.logo-icon {
    width: 36px; height: 36px;
    color: var(--blue-700);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--blue-900);
    letter-spacing: -0.02em;
}

.logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--slate-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: -2px;
}

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

.nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 8px;
    transition: all 0.2s var(--ease);
}

.nav-link:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.nav-cta {
    background: var(--coral-500);
    color: var(--white) !important;
    margin-left: 12px;
    border-radius: 100px;
    padding: 10px 22px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--coral-600);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--slate-800);
    border-radius: 1px;
    transition: 0.3s;
}

/* ═══ HERO — Asymmetric Split ═══ */
.hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
    margin-top: 72px;
}

.hero-left {
    display: flex;
    align-items: center;
    background: var(--blue-900);
    position: relative;
    overflow: hidden;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15,32,68,0.3));
    pointer-events: none;
}

.hero-content-inner {
    padding: 80px 80px 80px 0;
    max-width: 680px;
    margin-left: auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-300);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px; height: 8px;
    background: var(--coral-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--coral-300);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Right */
.hero-right {
    background: var(--blue-800);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--coral-300);
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.stat-divider {
    display: none;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* ═══ SECTION SHARED ═══ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--coral-500);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--blue-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--blue-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title-large em {
    font-style: italic;
    color: var(--coral-500);
}

/* ═══ LISTINGS — BENTO GRID ═══ */
.listings-section {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.listings-header-left .section-title {
    margin-bottom: 0;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-500);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.pill:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
}

.pill.active {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

/* Bento Grid */
.listings-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-map {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.map-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(15, 32, 68, 0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
}

/* Bento Cards */
.bento-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--slate-100);
    transition: all 0.25s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: var(--blue-200);
    box-shadow: 0 8px 32px rgba(12,26,46,0.06);
    transform: translateY(-3px);
}

.bento-wide {
    grid-column: 3;
}

.bento-card-top {
    margin-bottom: 20px;
}

.bento-card-top h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--blue-900);
    margin-bottom: 4px;
}

.listing-location {
    font-size: 13px;
    color: var(--slate-400);
    font-weight: 500;
}

.listing-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.badge-hot {
    background: var(--coral-100);
    color: var(--coral-600);
}

.badge-new {
    background: var(--blue-50);
    color: var(--blue-600);
}

.bento-card-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-400);
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-800);
    font-variant-numeric: tabular-nums;
}

.metric-highlight {
    color: var(--coral-500);
}

.listing-snippet {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-600);
    transition: color 0.2s;
    margin-top: auto;
}

.card-link:hover { color: var(--coral-500); }

/* Bento CTA Card */
.bento-cta {
    background: var(--blue-800);
    border-color: var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-cta:hover {
    background: var(--blue-700);
    border-color: var(--blue-600);
    transform: translateY(-3px);
}

.bento-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-number {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    line-height: 1;
}

.cta-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 16px;
}

/* ═══ SELL SECTION ═══ */
.sell-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.sell-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.sell-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 36px;
    max-width: 600px;
}

/* Accordion */
.sell-accordion {
    margin-bottom: 36px;
}

.accordion-item {
    border-top: 1px solid var(--slate-100);
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--slate-100);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.accordion-header span {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--coral-500);
    min-width: 28px;
}

.accordion-header h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-900);
}

.accordion-icon {
    width: 20px; height: 20px;
    color: var(--slate-400);
    transition: transform 0.3s var(--ease);
}

.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item[open] .accordion-header h4 {
    color: var(--coral-500);
}

.accordion-body {
    padding: 0 0 20px 44px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
}

.accordion-item[open] .accordion-body {
    max-height: 300px;
    padding-bottom: 20px;
}

.accordion-body p {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* Sell Sidebar */
.sell-sidebar {
    position: sticky;
    top: 100px;
}

.testimonial-float {
    background: var(--blue-50);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
    border: 1px solid var(--blue-100);
}

.testimonial-float blockquote p {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: var(--blue-900);
    margin-bottom: 20px;
}

.testimonial-float footer strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-800);
}

.testimonial-float footer span {
    font-size: 13px;
    color: var(--slate-400);
}

.sell-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mini-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--slate-100);
}

.mini-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--coral-500);
    line-height: 1;
    margin-bottom: 6px;
}

.mini-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══ BUY SECTION ═══ */
.buy-section {
    padding: var(--section-pad) 0;
    background: var(--blue-50);
}

.buy-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.buy-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-500);
}

.buy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.buy-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--blue-100);
    transition: all 0.25s var(--ease);
}

.buy-feature-card:hover {
    border-color: var(--blue-300);
    box-shadow: 0 8px 24px rgba(12,26,46,0.06);
    transform: translateY(-3px);
}

.feature-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--blue-100);
    margin-bottom: 16px;
    line-height: 1;
}

.buy-feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.buy-feature-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}

.buy-cta-row {
    display: flex;
    gap: 16px;
}

/* ═══ ABOUT SECTION ═══ */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 32px;
    max-width: 560px;
}

.about-differentiators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-900);
}

.diff-item svg {
    width: 20px; height: 20px;
    min-width: 20px;
    color: var(--coral-500);
}

/* About Testimonial */
.about-testimonial {
    position: sticky;
    top: 100px;
}

.big-quote {
    background: var(--blue-900);
    border-radius: 20px;
    padding: 48px;
}

.big-quote p {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
}

.big-quote footer strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.big-quote footer span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ═══ CONTACT SECTION ═══ */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-left p {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-900);
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--slate-100);
    transition: all 0.2s var(--ease);
}

.contact-detail:hover {
    border-color: var(--blue-300);
}

.contact-detail svg {
    width: 20px; height: 20px;
    color: var(--blue-500);
    flex-shrink: 0;
}

.confidential-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: var(--blue-50);
    border-radius: 12px;
    border: 1px solid var(--blue-100);
}

.confidential-badge svg {
    width: 18px; height: 18px;
    min-width: 18px;
    color: var(--blue-500);
    margin-top: 1px;
}

.confidential-badge span {
    font-size: 13px;
    color: var(--blue-700);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(12,26,46,0.06);
    border: 1px solid var(--slate-100);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-full {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--slate-800);
    background: var(--off-white);
    border: 1.5px solid var(--slate-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(51,102,187,0.08);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--blue-950);
    padding: 64px 0 0;
    color: rgba(255,255,255,0.45);
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 48px;
}

.footer-logo .logo-icon {
    color: var(--blue-500);
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 20px;
}

.footer-tagline {
    font-size: 14px;
    max-width: 400px;
    color: rgba(255,255,255,0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral-300); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.25);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--coral-300); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-left {
        min-height: auto;
    }
    .hero-content-inner {
        padding: 100px 28px 60px;
        max-width: 100%;
        margin: 0;
    }
    .hero-right {
        padding: 60px 28px;
    }
    .hero-left::after { display: none; }

    .listings-bento {
        grid-template-columns: 1fr 1fr;
    }
    .bento-map {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .bento-wide {
        grid-column: auto;
    }

    .sell-layout,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .buy-features {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .navbar {
        position: sticky;
        top: 0;
    }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--blue-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.3s var(--ease);
        z-index: 9999;
    }
    .nav-menu.active { right: 0; }
    .nav-link {
        color: rgba(255,255,255,0.7) !important;
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }

    .hero { margin-top: 0; }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .stat-number { font-size: 36px; }

    .listings-bento {
        grid-template-columns: 1fr;
    }
    .bento-map { min-height: 300px; }

    .buy-features {
        grid-template-columns: 1fr;
    }
    .about-differentiators {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form { padding: 28px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .buy-cta-row { flex-direction: column; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    .pill { white-space: nowrap; }
    .sell-stats-mini {
        grid-template-columns: 1fr;
    }
    .hero-image { display: none; }
}