/* ============================================================
   hotLister — Global Stylesheet
   ============================================================ */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

/* ========== COLOURS ========== */
:root {
    --red: #b44848;
    --red-dark: #933a3a;
    --dark: #1a1a1a;
    --grey: #666;
    --grey-light: #999;
    --grey-bg: #f5f5f5;
    --white: #ffffff;
    --border: rgba(0,0,0,0.06);
}

/* ========== UTILITY ========== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-white {
    background: var(--white);
}

.section-grey {
    background: var(--grey-bg);
}

.text-center { text-align: center; }
.text-red { color: var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    letter-spacing: -0.2px;
}

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

.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(--dark);
}
.btn-white:hover {
    background: #eee;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #333;
}

/* ========== FLOATING GLASS NAV ========== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 20px 0 20px;
}

.nav {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo-icon { height: 40px; }
.nav-logo-text { height: 44px; }

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

.nav-links a {
    color: var(--grey);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: -0.2px;
}
.nav-links a:hover {
    color: var(--dark);
    background: rgba(0,0,0,0.04);
}
.nav-links a.active {
    color: var(--red);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-login {
    color: var(--grey);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: all 0.2s;
}
.nav-login:hover {
    color: var(--red);
    border-color: var(--red);
}

/* Mobile menu button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== NAV SPACER ========== */
.nav-spacer { height: 96px; }

/* ========== HERO SECTIONS ========== */
.hero {
    padding: 60px 0 80px;
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.hero h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 32px;
}
.hero p {
    font-size: 16px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ========== CARDS ========== */
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.2s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

/* ========== PRICING CARDS ========== */
.pricing-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}
.pricing-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(180,72,72,0.15);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 4px;
}
.pricing-card .price-sub {
    font-size: 14px;
    color: var(--grey-light);
    margin-bottom: 24px;
}
.pricing-card .feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.pricing-card .feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card .feature-list li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* ========== GRID LAYOUTS ========== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

/* ========== STEPS ========== */
.step {
    text-align: center;
    padding: 24px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}
.step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonial {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--red);
}
.testimonial blockquote {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial cite {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    font-style: normal;
}

/* ========== STRATEGY CARDS ========== */
.strategy-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.strategy-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.strategy-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.strategy-card p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    padding: 28px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid #eee;
}
.service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}
.service-card ul {
    list-style: none;
}
.service-card ul li {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}
.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* ========== SPLIT CONTENT ========== */
.split {
    display: flex;
    gap: 60px;
    align-items: center;
}
.split-text { flex: 1; }
.split-image { flex: 1; }
.split-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

/* ========== INCLUDE/EXCLUDE LISTS ========== */
.include-list, .exclude-list {
    list-style: none;
}
.include-list li, .exclude-list li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.include-list li::before {
    content: '✔';
    color: var(--red);
    font-weight: 700;
}
.exclude-list li::before {
    content: '✗';
    color: #ccc;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 48px 0 32px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-logo img { height: 32px; }
.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
}

/* ========== LEGAL / LONG TEXT ========== */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 48px;
}
.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px;
}
.legal-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.legal-content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--dark);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}
.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin-bottom: 24px;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

/* ========== RESPONSIVE ========== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 38px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .split { gap: 40px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 16px;
        right: 16px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        gap: 4px;
    }
    .nav-links.open a {
        padding: 12px 16px;
        font-size: 15px;
    }

    .section { padding: 60px 0; }
    .hero h1 { font-size: 32px; }
    .hero h2 { font-size: 17px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .split {
        flex-direction: column;
        gap: 30px;
    }
    .split-image { order: -1; }
    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-links { flex-direction: column; gap: 12px; }
}

/* Phone */
@media (max-width: 480px) {
    .nav-wrapper { padding: 8px 10px 0 10px; }
    .nav {
        padding: 0 16px;
        height: 60px;
        border-radius: 24px;
    }
    .nav-logo-icon { height: 32px; }
    .nav-logo-text { height: 36px; }
    .nav-spacer { height: 80px; }

    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 28px; }
    .hero h2 { font-size: 16px; }
    .section { padding: 48px 0; }

    .pricing-card { padding: 28px 20px; }
    .pricing-card .price { font-size: 36px; }

    .btn { padding: 12px 24px; font-size: 13px; }

    .cta-banner h2 { font-size: 24px; }
    .cta-banner p { font-size: 14px; }

    .legal-content h2 { font-size: 22px; }
}

/* ========== JOIN BUTTON (NAV) ========== */
.nav-join {
    background: var(--red);
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s;
}
.nav-join:hover {
    background: var(--red-dark);
}

/* ========== VIDEO HERO ========== */
.hero-video-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    margin: 16px 20px 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.9) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-video-content h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 40px;
}

/* ========== HERO SEARCH BAR ========== */
.hero-search {
    max-width: 620px;
    margin: 0 auto;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 6px 6px 6px 18px;
    gap: 0;
}

.hero-search-icon {
    width: 20px;
    height: 20px;
    color: var(--grey-light);
    flex-shrink: 0;
}

.hero-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    color: var(--dark);
    background: transparent;
}
.hero-search-bar input::placeholder {
    color: #bbb;
}

.hero-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-right: 6px;
}
.hero-filter-btn:hover {
    border-color: var(--dark);
    color: var(--dark);
}
.hero-filter-btn svg {
    width: 16px;
    height: 16px;
}

.hero-search-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.hero-search-btn:hover {
    background: var(--red-dark);
}

/* ========== HOOK LINE ========== */
.hook-section {
    background: var(--white);
    padding: 56px 0;
    text-align: center;
}

.hook-line {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hook-subline {
    font-size: 18px;
    color: var(--grey);
    font-weight: 500;
}

/* ========== PILLAR CARDS ========== */
.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.25s;
}
.pillar-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pillar-icon {
    margin-bottom: 16px;
}
.pillar-icon svg {
    width: 44px;
    height: 44px;
    color: var(--red);
}

.pillar-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pillar-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.pillar-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* ========== FOOTER GRID ========== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-col h4 {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--white);
}

.footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.5;
}

/* ========== VIDEO HERO RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-video-section {
        min-height: 70vh;
        margin: 10px 12px 0;
        border-radius: 28px;
    }
    .hero-video-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .hero-search-bar {
        flex-wrap: wrap;
        padding: 8px;
        border-radius: 16px;
    }
    .hero-search-icon {
        display: none;
    }
    .hero-search-bar input {
        width: 100%;
        padding: 12px 14px;
    }
    .hero-filter-btn {
        margin-right: 4px;
    }
    .hook-line {
        font-size: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        margin: 8px 10px 0;
        border-radius: 24px;
    }
    .hero-video-content h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hook-line {
        font-size: 18px;
    }
    .hook-subline {
        font-size: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========== EMPTY LISTINGS PLACEHOLDER ========== */
.empty-listings {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed #ddd;
}
.empty-listings-icon {
    margin-bottom: 16px;
}
.empty-listings-icon svg {
    width: 48px;
    height: 48px;
    color: #ccc;
}

/* ========== HOMEPAGE LISTING CARDS ========== */
.home-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-listing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
}
.home-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.home-listing-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home-listing-body {
    padding: 16px;
}

.home-listing-body h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.home-listing-body .home-listing-type {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 4px;
}

.home-listing-body .home-listing-price {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.home-listing-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--grey);
}

.home-listing-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .home-listings-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== RIGHT-CLICK / COPY PROTECTION ========== */
.protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
