/* ------------------- */
/* --- REALTOR THEME & BASE --- */
/* ------------------- */
:root {
    --bg-color: #f8f9fa;
    --bg-dark-section: #ffffff;
    --text-color: #495057;
    --heading-color: #212529;
    --primary-accent: #D4A373; /* Warm Gold/Ochre */
    --secondary-accent: #343A40; /* Dark Graphite */
    --border-color: #dee2e6;
    --shadow-md: 0 4px 15px -3px rgba(33, 37, 41, 0.07);
    --shadow-lg: 0 10px 30px -5px rgba(33, 37, 41, 0.15);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Helvetica Neue", Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ------------------- */
/* --- LAYOUT & TYPOGRAPHY --- */
/* ------------------- */
.container { max-width: 1140px; margin: 0 auto; padding: 120px 20px; }
h1, h2, h3 { font-weight: 700; color: var(--heading-color); line-height: 1.3; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; margin-bottom: 80px; }
p { font-size: 1.1rem; max-width: 550px; }

.btn {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--primary-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); filter: brightness(1.1); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ------------------- */
/* --- HEADER --- */
/* ------------------- */
.main-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; position: absolute; width: 100%; top: 0; left: 0; z-index: 100; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--heading-color); text-decoration: none; }
.logo span { color: var(--primary-accent); }

/* ------------------- */
/* --- HERO SECTION --- */
/* ------------------- */
#hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 150px;
    padding-bottom: 150px;
}
#hero p { margin: 25px 0 40px; }

.hero-visual {
    background: var(--bg-dark-section);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-mockup {
    width: 280px;
    height: 95%;
    background: #f8f9fa;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    padding: 15px;
    overflow: hidden;
    position: relative;
}
.object-card-slider {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    animation: slide-up 12s infinite ease-in-out;
}
@keyframes slide-up {
    0%, 28% { transform: translateY(0); }
    33%, 61% { transform: translateY(-160px); }
    66%, 94% { transform: translateY(-320px); }
    100% { transform: translateY(0); }
}
.object-card {
    height: 150px;
    background: var(--bg-dark-section);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 10px;
}
.object-card .photo { height: 70%; background: #e9ecef; border-radius: 6px; }
.object-card .line { height: 8px; background: #e9ecef; border-radius: 4px; margin-top: 8px; }

/* ------------------- */
/* --- PROBLEMS BLOCK --- */
/* ------------------- */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.problem-card { padding: 30px; background: var(--bg-dark-section); border-radius: 12px; border: 1px solid var(--border-color); }
.problem-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.problem-icon { font-size: 2rem; margin-bottom: 15px; }

/* ------------------- */
/* --- SOLUTION BLOCK --- */
/* ------------------- */
#solution { background: var(--secondary-accent); color: #f8f9fa; }
#solution h2 { color: #fff; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.solution-item { display: flex; align-items: flex-start; gap: 20px; }
.solution-icon { font-size: 2rem; color: var(--primary-accent); }
.solution-item h3 { color: #fff; font-size: 1.5rem; }
.solution-item p { color: #adb5bd; }

/* ------------------- */
/* --- HOW IT WORKS BLOCK --- */
/* ------------------- */
.scenario-steps { position: relative; max-width: 800px; margin: 0 auto; }
.scenario-steps::before { content: ''; position: absolute; width: 2px; background: var(--border-color); top: 0; bottom: 0; left: 24px; z-index: -1; }

.step { position: relative; padding-left: 70px; margin-bottom: 50px; }
.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-dark-section);
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 600;
}
.step h3 { font-size: 1.6rem; margin-bottom: 5px; }

/* ------------------- */
/* --- TESTIMONIAL BLOCK --- */
/* ------------------- */
#testimonial { padding-top: 60px; padding-bottom: 60px; }
.testimonial-card {
    background-color: var(--bg-dark-section);
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-accent);
    opacity: 0.2;
    line-height: 1;
}
.testimonial-text { font-size: 1.25rem; font-style: italic; margin-bottom: 20px; position: relative; z-index: 2;}
.testimonial-author { font-weight: 600; }

/* ------------------- */
/* --- FINAL CTA --- */
/* ------------------- */
#final-cta .cta-box { text-align: center; }
#final-cta p { margin: 20px auto 40px; }

/* ------------------- */
/* --- RESPONSIVENESS --- */
/* ------------------- */
@media (max-width: 992px) {
    #hero { grid-template-columns: 1fr; text-align: center; }
    #hero p { margin-left: auto; margin-right: auto; }
    .hero-visual { margin-top: 60px; }
}
@media (max-width: 768px) {
    .container { padding: 80px 20px; }
    h2 { margin-bottom: 60px; }
    .solution-grid { grid-template-columns: 1fr; }
}
.faq-item {
    margin-bottom: 2rem;
}
.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.faq-item p {
    margin: 0;
    color: #555;
}
