/* ============================================
   CONCEPT 05 — "Ledger & Sage"
   Palette: Sage Green, Warm Cream, Copper Accent
   Contemporary brokerage for accountants
   Spreadsheet/data-inspired utility design
   ============================================ */

:root {
    /* Sage Green Scale */
    --sage-900: #1a2e23;
    --sage-800: #243d2f;
    --sage-700: #2f503c;
    --sage-600: #3d6650;
    --sage-500: #4a7d62;
    --sage-400: #6b9e82;
    --sage-300: #8fb9a2;
    --sage-200: #b5d4c4;
    --sage-100: #d8e8de;
    --sage-50: #f0f7f2;

    /* Complementary — Warm Cream/Taupe */
    --cream-50: #fdfcf9;
    --cream-100: #f8f5ee;
    --cream-200: #f0ebe0;
    --cream-300: #e4dcd0;
    --cream-400: #c9b99e;

    /* Contrast Highlight — Copper */
    --copper-600: #8f5e2d;
    --copper-500: #b07335;
    --copper-400: #c98a4d;
    --copper-300: #daa56e;
    --copper-200: #ecc49a;
    --copper-100: #f5dfc0;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-300: #c8ccd3;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;

    /* Spreadsheet-inspired */
    --grid-line: #e2e4e8;
    --grid-header-bg: #f0f1f3;
    --cell-hover: #f0f7f2;
    --row-new-bg: #f0f7f2;
    --row-hot-bg: #fef7ed;

    /* Typography */
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26,46,35,0.06);
    --shadow-md: 0 4px 16px rgba(26,46,35,0.08);
    --shadow-lg: 0 12px 40px rgba(26,46,35,0.12);
    --shadow-xl: 0 24px 64px rgba(26,46,35,0.16);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transition */
    --transition: 0.2s ease;
}

*, *::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(--gray-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: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--copper-500);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--copper-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary-dark {
    background: transparent;
    color: var(--sage-700);
    border: 1.5px solid var(--sage-700);
}
.btn-secondary-dark:hover {
    background: var(--sage-700);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--sage-700);
    border: 1.5px solid var(--sage-300);
}
.btn-outline:hover {
    border-color: var(--sage-700);
    background: var(--sage-50);
}

.btn-full { width: 100%; }

/* =========== NAVIGATION =========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gray-200);
    padding: 10px 0;
}

.navbar.scrolled .logo-text { color: var(--sage-800); }
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover { color: var(--sage-700); }
.navbar.scrolled .nav-highlight { color: var(--copper-500); }
.navbar.scrolled .nav-cta {
    background: var(--copper-500);
    color: var(--white);
}
.navbar.scrolled .nav-toggle span { background: var(--sage-800); }

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

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

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--copper-500);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.2px;
    transition: color 0.3s;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-highlight {
    color: var(--copper-300);
    font-weight: 600;
}

.nav-cta {
    background: var(--copper-500);
    color: var(--white) !important;
    margin-left: 8px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--copper-600);
}

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

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

/* =========== HERO =========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../media/teamwork.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(26,46,35,0.88) 0%, rgba(47,80,60,0.82) 40%, rgba(61,102,80,0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.hero-left {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-300);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--copper-300);
    line-height: 1;
}

.trust-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* Hero Card / Quick Valuation Calculator */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--sage-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.hero-card-header .card-icon {
    width: 20px; height: 20px;
    color: var(--copper-300);
}

.hero-card-body {
    padding: 20px;
}

.calc-row {
    margin-bottom: 14px;
}

.calc-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    overflow: hidden;
    transition: border-color var(--transition);
}

.calc-input-wrap:focus-within {
    border-color: var(--sage-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74,125,98,0.1);
}

.calc-prefix {
    padding: 0 10px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    user-select: none;
}

.calc-input {
    flex: 1;
    padding: 10px 12px 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    background: transparent;
    border: none;
    outline: none;
}

.calc-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 16px 0;
}

.calc-result label {
    color: var(--sage-700);
    font-weight: 700;
}

.calc-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--copper-500);
    line-height: 1.2;
}

.hero-card-body .btn {
    margin-top: 16px;
}

/* =========== SECTION HEADERS =========== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header.light .section-eyebrow { color: var(--copper-300); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.6); }

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--sage-800);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =========== LISTINGS — MAP + SPREADSHEET =========== */
.listings-section {
    padding: 80px 0;
    background: var(--cream-50);
}

.listings-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Map Panel */
.map-panel {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Spreadsheet Panel */
.spreadsheet-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.spreadsheet-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--cream-100);
    border-bottom: 1px solid var(--gray-200);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar-icon {
    width: 20px; height: 20px;
    color: var(--sage-500);
}

.toolbar-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage-800);
}

.toolbar-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--sage-500);
    background: var(--sage-100);
    padding: 2px 8px;
    border-radius: 10px;
}

.toolbar-right {
    display: flex;
    gap: 6px;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.toolbar-btn:hover {
    border-color: var(--sage-400);
    color: var(--sage-700);
    background: var(--sage-50);
}

.sm-icon {
    width: 14px; height: 14px;
}

/* Spreadsheet Table */
.spreadsheet-table-wrap {
    overflow-x: auto;
}

.spreadsheet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.spreadsheet-table thead th {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    background: var(--grid-header-bg);
    border-bottom: 2px solid var(--gray-200);
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.col-action { width: 80px; }

.spreadsheet-table tbody tr {
    border-bottom: 1px solid var(--grid-line);
    transition: background var(--transition);
}

.spreadsheet-table tbody tr:hover {
    background: var(--cell-hover);
}

.spreadsheet-table tbody tr.row-new {
    background: var(--row-new-bg);
}

.spreadsheet-table tbody tr.row-hot {
    background: var(--row-hot-bg);
}

.spreadsheet-table tbody td {
    padding: 12px 14px;
    vertical-align: middle;
    color: var(--gray-600);
}

.firm-name {
    font-weight: 600;
    color: var(--sage-800);
}

.num {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    color: var(--gray-700);
}

.num.asking {
    font-weight: 700;
    color: var(--sage-700);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 3px;
}

.badge-new {
    background: var(--sage-100);
    color: var(--sage-700);
}

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

.badge-active {
    background: var(--gray-100);
    color: var(--gray-500);
}

.table-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--copper-500);
    transition: color var(--transition);
}

.table-link:hover {
    color: var(--copper-600);
}

/* Spreadsheet Footer */
.spreadsheet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    background: var(--cream-50);
}

.spreadsheet-footer span {
    font-size: 13px;
    color: var(--gray-400);
}

/* =========== SELLER SECTION =========== */
.seller-section {
    padding: 100px 0;
    background: var(--white);
}

.seller-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.seller-content .section-eyebrow { margin-bottom: 12px; }

.seller-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.seller-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    min-width: 36px;
    background: var(--sage-50);
    color: var(--sage-600);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    border-radius: 50%;
    border: 1.5px solid var(--sage-200);
}

.step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--sage-800);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.seller-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--cream-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.highlight-card {
    position: relative;
    background: var(--white);
    border-color: var(--copper-200);
    border-width: 1.5px;
}

.card-accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--copper-500);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--sage-800);
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.card-checklist li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    width: 18px; height: 18px;
    color: var(--sage-500);
    font-weight: 700;
    font-size: 14px;
}

.card-links {
    list-style: none;
}

.card-links li {
    margin-bottom: 10px;
}

.card-links a {
    font-size: 14px;
    color: var(--copper-500);
    font-weight: 500;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-links a::before {
    content: '→';
    font-size: 12px;
    transition: gap var(--transition);
}

.card-links a:hover {
    color: var(--copper-600);
}

/* =========== BUYER SECTION =========== */
.buyer-section {
    padding: 100px 0;
    background: var(--sage-50);
}

.buyer-content {
    max-width: 800px;
}

.buyer-content .section-eyebrow { margin-bottom: 12px; }

.buyer-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.buyer-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.buyer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.buyer-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--sage-200);
    border-radius: var(--radius-md);
}

.feature-icon-wrap svg {
    width: 22px; height: 22px;
    color: var(--sage-500);
}

.buyer-feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--sage-800);
    margin-bottom: 4px;
}

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

/* =========== WHY ATB SECTION =========== */
.why-section {
    padding: 100px 0;
    background: var(--sage-800);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(176,115,53,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(176,115,53,0.25);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176,115,53,0.12);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px; height: 24px;
    color: var(--copper-300);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

/* =========== TESTIMONIALS =========== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--cream-50);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--cream-200);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: var(--sage-300);
    opacity: 0.4;
    position: absolute;
    top: 16px; left: 20px;
}

.testimonial p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

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

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

/* =========== CONTACT SECTION =========== */
.contact-section {
    padding: 100px 0;
    background: var(--cream-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { text-align: left; margin-bottom: 16px; }

.contact-info .lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 28px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contact-method:hover {
    border-color: var(--sage-400);
    box-shadow: var(--shadow-sm);
}

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

.contact-method span {
    font-size: 15px;
    font-weight: 600;
    color: var(--sage-800);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: var(--sage-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--sage-200);
}

.contact-note .sm-icon {
    width: 18px; height: 18px;
    min-width: 18px;
    color: var(--sage-500);
    margin-top: 1px;
}

.contact-note span {
    font-size: 13px;
    color: var(--sage-600);
    line-height: 1.5;
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74,125,98,0.1);
}

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

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
}

/* =========== FOOTER =========== */
.footer {
    background: var(--sage-900);
    padding: 64px 0 0;
    color: rgba(255,255,255,0.55);
}

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--copper-300); }

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

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

.footer-legal a {
    color: rgba(255,255,255,0.3);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--copper-300); }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-right {
        justify-content: flex-start;
    }
    .hero-card {
        max-width: 100%;
    }
    .listings-workspace {
        grid-template-columns: 1fr;
    }
    .map-panel {
        position: relative;
        top: auto;
    }
    .seller-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .buyer-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--sage-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.3s ease;
    }
    .nav-menu.active { right: 0; }
    .nav-link {
        color: var(--white) !important;
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
    }
    .nav-cta { margin-left: 0; margin-top: 12px; }

    .hero-content { padding-top: 120px; }
    .hero-trust { gap: 20px; }
    .trust-divider { display: none; }

    .spreadsheet-table {
        font-size: 13px;
    }
    .spreadsheet-table thead th,
    .spreadsheet-table tbody td {
        padding: 10px 10px;
    }
    .col-location { display: none; }
    .col-cashflow { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .seller-ctas { flex-direction: column; }
    .seller-ctas .btn { width: 100%; }
    .contact-form { padding: 24px; }
    .col-revenue { display: none; }
}