@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&family=Playfair+Display:ital@1&display=swap');

:root {
    --primary-red: #CC0000;
    --accent-red: #FF4444;
    --near-black: #1A1A1A;
    --black: #1A1A1A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --gold: #F5A623;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --transition: all 0.2s ease;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --container-width: 1200px;

    /* New Brand Variables */
    --cream: #F5F5F5;
    --red: #CC0000;
    --red-light: #FEE6E7;
    --red-dark: #8B0000;
    --red-pale: #FFF0F0;
    --red-mid: #AA0000;
    --red-bright: #E61010;
    --ink: #1A1A1A;
    --ink-light: #666666;
    --ink-faint: #999999;
    --ink-mid: #444444;
    --border: #E0E0E0;
    --border-med: #CCCCCC;
    --r: 12px;
    --font-d: var(--font-heading);
    --font-b: var(--font-body);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--near-black);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-red);
}

.logo span {
    color: var(--near-black);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--near-black);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    font-style: italic;
    font-family: var(--font-accent);
    color: #666;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 25px;
}

/* Accordion */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}


/* BOOKING MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    max-height: 800px;
    border-radius: var(--r);
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cream);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: bold;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red-light);
    color: var(--red);
}

.modal-main {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background: var(--white);
}

.order-sidebar {
    width: 320px;
    background: var(--cream);
    border-left: 1px solid var(--border);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

/* Step Bar */
.step-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-bar::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-d);
    z-index: 2;
    transition: var(--transition);
    color: var(--ink-faint);
}

.step-circle.active {
    border-color: var(--red);
    color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--red-light);
}

.step-circle.completed {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Panels */
.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.step-panel .subtitle {
    color: var(--ink-light);
    margin-bottom: 30px;
    font-family: var(--font-accent);
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pkg-card {
    border: 2px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.pkg-card:hover {
    border-color: var(--red-mid);
    background: var(--red-pale);
}

.pkg-card.selected {
    border-color: var(--red);
    background: var(--red-pale);
}

.pkg-card .check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--red);
    display: none;
}

.pkg-card.selected .check {
    display: block;
}

.pkg-name {
    font-family: var(--font-d);
    font-size: 1.5rem;
    display: block;
}

.pkg-price {
    color: var(--red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Extras */
.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.extra-item:hover {
    background: var(--cream);
}

.extra-item.selected {
    border-color: var(--red);
    background: var(--red-pale);
}

.extra-info strong {
    display: block;
}

.extra-info span {
    font-size: 0.85rem;
    color: var(--ink-light);
}

/* Form Groups */
.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modal-form-group input, 
.modal-form-group select, 
.modal-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-med);
    border-radius: 8px;
    font-family: var(--font-b);
}

.modal-form-group input:focus {
    outline: none;
    border-color: var(--red);
}

/* Order Summary */
.order-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 10px;
}

.summary-items {
    flex: 1;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 2px solid var(--border-med);
    padding-top: 15px;
    margin-top: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-d);
    font-size: 1.8rem;
    color: var(--red);
}

.deposit-note {
    font-size: 0.8rem;
    color: var(--ink-faint);
    margin-top: 10px;
    text-align: center;
}

/* Footer Buttons */
.modal-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.modal-nav .btn {
    flex: 1;
    text-align: center;
}

/* Success Screen */
.success-screen {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-screen.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 850px) {
    .modal {
        flex-direction: column;
        height: 95vh;
        max-height: none;
    }
    
    .order-sidebar {
        width: 100%;
        order: -1;
        padding: 20px 40px;
        border-left: none;
        border-bottom: 1px solid var(--border);
    }
    
    .order-sidebar h3, .summary-items {
        display: none;
    }
    
    .order-sidebar .summary-total {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}

@media (max-width: 480px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-main {
        padding: 30px 20px;
    }
}

/* â”€â”€ LANDING PAGE LAYOUT (Claude Design) â”€â”€ */

/* Header / Nav */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
  padding: 0;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.btn-nav {
  background: var(--red); color: var(--white) !important; padding: 10px 22px;
  border-radius: 6px; font-weight: 700 !important; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s !important;
}
.btn-nav:hover { background: var(--red-bright) !important; transform: translateY(-1px); }
.btn-nav2 {
  background: var(--red); color: var(--white) !important; padding: 10px 22px;
  border-radius: 6px; font-weight: 700 !important; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s !important;
}
.btn-nav2:hover { background: var(--red-bright) !important; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--black); transition: 0.3s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid #eee; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s; letter-spacing: 0.3px;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,0.3); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #f5f5f5; }

/* TRUST BAR */
.trust-bar {
  background: var(--black); padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 0.88rem; font-weight: 500;
}
.trust-item i { color: var(--red); font-size: 1.1rem; }

/* SECTION COMMON */
section { padding: 80px 24px; }
section.hero { padding: 0 !important; margin: 0 !important; line-height: 0; display: block; overflow: hidden; background: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black); margin-bottom: 16px; line-height: 1.1;
}
.section-sub { font-size: 1.05rem; color: var(--ink-light); line-height: 1.65; max-width: 580px; }
.section-header { margin-bottom: 52px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* HOW IT WORKS â€” fixed to match index.html design */
.how-bg { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: transparent;
  border-radius: 0;
  padding: 0 16px;
  text-align: center;
  box-shadow: none;
  position: static;
  border-top: none;
  transition: none;
}
.step-card:hover { transform: none; }
.step-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: #f5c0c4;
  opacity: 1;
  position: static;
  line-height: 1;
  font-weight: 900;
}
.step-icon {
  width: 60px; height: 60px; background: var(--red-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-icon i { color: var(--red); font-size: 1.5rem; }
.step-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.step-desc { font-size: 0.92rem; color: var(--ink-light); line-height: 1.6; }
.steps-cta { text-align: center; margin-top: 44px; }

/* COMPARISON */
.compare-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; border-radius: var(--r); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.compare-bad {
  background: #FFF8F8; border: 2px solid #FFCCCC; padding: 36px 28px;
}
.compare-good {
  background: #F1F8F1; border: 2px solid #B8DDB8; padding: 36px 28px;
}
.compare-vs {
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem; writing-mode: vertical-rl;
  padding: 0 16px; letter-spacing: 2px;
}
.compare-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.compare-head .badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.badge-x { background: #CC0000; color: white; }
.badge-check { background: #2E7D32; color: white; }
.compare-head h3 { font-size: 1rem; font-weight: 700; letter-spacing: 1px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.4; }
.compare-list li i { margin-top: 2px; font-size: 0.85rem; }
.ico-x { color: #CC0000; }
.ico-check { color: #2E7D32; }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: var(--light-gray); border-radius: var(--r);
  padding: 28px; text-align: center;
}
.stat-num {
  font-family: var(--font-heading); font-size: 3rem; color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; color: var(--ink-light); text-transform: uppercase; }

/* PRICING */
.pricing-bg { background: var(--light-gray); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: var(--white); border-radius: var(--r);
  padding: 28px 22px; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: all 0.25s; position: relative;
}
.price-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.price-card.featured { border-color: var(--red); }
.featured-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.pkg-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--ink-light); text-transform: uppercase; margin-bottom: 4px; }
.pkg-totes { font-family: var(--font-heading); font-size: 3.5rem; color: var(--red); line-height: 1; }
.pkg-totes span { font-size: 1.1rem; color: var(--ink-light); font-family: var(--font-body); }
.pkg-home { font-size: 0.85rem; color: var(--ink-light); margin: 8px 0 18px; }
.pkg-prices { border-top: 1px solid #eee; padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pkg-week label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; color: var(--ink-light); display: block; margin-bottom: 2px; }
.pkg-week .price-num { font-size: 1.6rem; font-weight: 700; color: var(--black); }
.pkg-ext { font-size: 0.72rem; color: var(--ink-light); margin-top: 12px; padding-top: 10px; border-top: 1px dashed #ddd; }
.pricing-cta { text-align: center; margin-top: 44px; }
.pricing-fees {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid #ddd;
}
.fee-item { text-align: center; }
.fee-num { font-size: 1.5rem; font-weight: 700; color: var(--black); }
.fee-label { font-size: 0.78rem; color: var(--ink-light); margin-top: 2px; }

/* USE CASES */
.uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.use-card {
  border-radius: var(--r); padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
}
.use-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.use-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.use-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.use-sub { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.use-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.use-list li { font-size: 0.87rem; color: var(--ink-light); display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.use-list li::before { content: 'â†’'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* REALTOR STRIP */
.realtor-strip { background: var(--red); padding: 56px 24px; }
.realtor-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.realtor-text h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-bottom: 8px; }
.realtor-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid #eee; border-radius: var(--r); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; font-size: 0.95rem; text-align: left;
  font-family: var(--font-body); color: var(--black);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--red-light); }
.faq-q i { color: var(--red); transition: transform 0.3s; font-size: 0.9rem; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 0.92rem; color: var(--ink-light); line-height: 1.65;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { margin-bottom: 0; }

/* FOOTER */
footer { background: var(--black); color: var(--white); padding: 60px 24px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-tagline { font-family: var(--font-accent); font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 14px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { height: 440px; }
  .hero-headline { font-size: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { writing-mode: horizontal-tb; padding: 14px; font-size: 1.2rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .realtor-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar-inner { gap: 20px; flex-direction: column; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
