/* =====================================================
   EstateOS Marketing Website
   style.css
   Part 1
=====================================================*/

/* ==========================
   Google Font
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================
   CSS Variables
==========================*/

:root{

--primary:#2563EB;
--primary-dark:#1D4ED8;

--secondary:#7C3AED;

--accent:#14B8A6;

--success:#22C55E;

--danger:#EF4444;

--dark:#0F172A;

--text:#475569;

--light:#F8FAFC;

--white:#FFFFFF;

--border:#E2E8F0;

--shadow-sm:0 8px 20px rgba(15,23,42,.06);

--shadow:0 15px 45px rgba(15,23,42,.08);

--shadow-lg:0 30px 70px rgba(15,23,42,.12);

--radius:18px;

--transition:.35s ease;

max-width:1280px;

}

/* ==========================
   Reset
==========================*/

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

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:var(--white);

color:var(--dark);

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

button{

font-family:inherit;

cursor:pointer;

border:none;

}

/* ==========================
Container
==========================*/

.container{

width:min(92%,1280px);

margin:auto;

}

/* ==========================
Section
==========================*/

section{

padding:100px 0;

}

.section-tag{

display:inline-block;

padding:8px 16px;

background:#EFF6FF;

color:var(--primary);

border-radius:999px;

font-size:14px;

font-weight:700;

letter-spacing:.5px;

margin-bottom:20px;

}

.section-title{

font-size:clamp(2rem,5vw,3.5rem);

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

.section-description{

max-width:700px;

font-size:18px;

color:var(--text);

margin-bottom:60px;

}

/* ==========================
Buttons
==========================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-weight:700;

border-radius:999px;

transition:var(--transition);

box-shadow:var(--shadow);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:var(--shadow-lg);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border:2px solid var(--border);

border-radius:999px;

font-weight:700;

transition:var(--transition);

background:#fff;

}

.btn-outline:hover{

background:var(--dark);

color:#fff;

border-color:var(--dark);

}

/* ==========================
Navbar
==========================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

background:rgba(255,255,255,.85);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(0,0,0,.05);

}

.nav-container{

height:82px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

font-size:32px;

font-weight:900;

color:var(--dark);

}

.logo span{

color:var(--primary);

}

.navbar ul{

display:flex;

gap:35px;

}

.navbar a{

font-weight:600;

color:var(--text);

transition:.3s;

}

.navbar a:hover{

color:var(--primary);

}

.nav-buttons{

display:flex;

gap:15px;

}

.menu-btn{

display:none;

font-size:34px;

cursor:pointer;

}

/* ==========================
Hero
==========================*/

.hero{

padding-top:170px;

padding-bottom:120px;

background:

radial-gradient(circle at top left,#DBEAFE 0%,transparent 35%),

radial-gradient(circle at bottom right,#EDE9FE 0%,transparent 35%),

#fff;

overflow:hidden;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.badge{

display:inline-flex;

padding:10px 18px;

border-radius:999px;

background:#EEF2FF;

color:var(--secondary);

font-weight:700;

margin-bottom:25px;

}

.hero h1{

font-size:clamp(3rem,6vw,4.7rem);

font-weight:900;

line-height:1.08;

margin-bottom:30px;

}

.hero h1 span{

background:linear-gradient(135deg,#2563EB,#7C3AED);

-webkit-background-clip:text;

color:transparent;

}

.hero p{

font-size:20px;

color:var(--text);

margin-bottom:40px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:50px;

}

/* ==========================
Hero Stats
==========================*/

.hero-stats{

display:flex;

gap:55px;

}

.hero-stats h3{

font-size:34px;

font-weight:800;

color:var(--primary);

}

.hero-stats p{

margin:0;

font-size:15px;

}

/* ==========================
Dashboard
==========================*/

.dashboard{

background:#fff;

border-radius:28px;

padding:30px;

box-shadow:var(--shadow-lg);

border:1px solid var(--border);

position:relative;

}

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.online{

width:14px;

height:14px;

border-radius:50%;

background:#22C55E;

}

.cards{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:30px;

}

.card{

padding:22px;

background:#F8FAFC;

border-radius:18px;

}

.card h4{

font-size:15px;

color:var(--text);

margin-bottom:10px;

}

.card h2{

font-size:34px;

margin-bottom:6px;

}

.card small{

color:var(--success);

font-weight:600;

}

.recent-leads{

background:#F8FAFC;

padding:20px;

border-radius:18px;

}

.recent-leads table{

width:100%;

border-collapse:collapse;

}

.recent-leads th{

text-align:left;

padding-bottom:15px;

font-size:15px;

}

.recent-leads td{

padding:12px 0;

border-top:1px solid #E5E7EB;

font-size:15px;

}

.new{

color:#2563EB;

font-weight:700;

}

.follow{

color:#F59E0B;

font-weight:700;

}

.closed{

color:#22C55E;

font-weight:700;

}

/* ==========================
Trusted
==========================*/

.trusted{

padding:70px 0;

background:#F8FAFC;

border-top:1px solid var(--border);

border-bottom:1px solid var(--border);

}

.trusted p{

text-align:center;

font-weight:600;

color:var(--text);

margin-bottom:35px;

}

.trusted-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

}

.trusted-grid div{

background:#fff;

padding:22px;

text-align:center;

border-radius:16px;

font-weight:700;

border:1px solid var(--border);

transition:.3s;

}

.trusted-grid div:hover{

transform:translateY(-6px);

box-shadow:var(--shadow);

}

/*======================================================
  PROBLEM SECTION
======================================================*/

.problem{

    background:#ffffff;

}

.problem-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;

}

.problem-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px 28px;

    transition:all .35s ease;

    cursor:pointer;

}

.problem-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:#dbeafe;

}

.problem-card .icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    background:#eff6ff;

    border-radius:18px;

    margin-bottom:25px;

}

.problem-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.problem-card p{

    color:var(--text);

    line-height:1.8;

}


/*======================================================
  FEATURES
======================================================*/

.features{

    background:linear-gradient(to bottom,#ffffff,#f8fafc);

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.feature-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.feature-icon{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:#eef2ff;

    font-size:32px;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.feature-card p{

    color:var(--text);

    line-height:1.8;

}


/*======================================================
  PRODUCT SUITE
======================================================*/

.products{

    background:#ffffff;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.product-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    transition:.35s;

    position:relative;

}

.product-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.product-box h3{

    font-size:24px;

    margin-bottom:18px;

}

.product-box p{

    color:var(--text);

    line-height:1.8;

}

.coming-soon{

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    color:#fff;

}

.coming-soon p{

    color:#fff;

}

.coming-soon span{

    display:inline-block;

    margin-bottom:20px;

    background:rgba(255,255,255,.18);

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}


/*======================================================
  FEATURE SHOWCASE
======================================================*/

.showcase{

    background:#f8fafc;

}

.showcase-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.showcase-content h2{

    font-size:48px;

    line-height:1.2;

    margin:20px 0;

}

.showcase-content p{

    color:var(--text);

    margin-bottom:30px;

    font-size:18px;

}

.feature-list{

    margin-bottom:40px;

}

.feature-list li{

    padding:12px 0;

    color:var(--text);

    font-weight:500;

}


/*======================================================
  DASHBOARD MOCKUP
======================================================*/

.mock-browser{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

    border:1px solid var(--border);

}

.browser-top{

    height:55px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:0 25px;

    background:#f8fafc;

    border-bottom:1px solid var(--border);

}

.browser-top span{

    width:14px;

    height:14px;

    border-radius:50%;

}

.browser-top span:nth-child(1){

    background:#ef4444;

}

.browser-top span:nth-child(2){

    background:#f59e0b;

}

.browser-top span:nth-child(3){

    background:#22c55e;

}

.browser-body{

    display:flex;

    min-height:500px;

}

.browser-sidebar{

    width:90px;

    background:#f8fafc;

    border-right:1px solid var(--border);

    padding:20px;

}

.browser-sidebar div{

    height:42px;

    border-radius:12px;

    background:#e2e8f0;

    margin-bottom:18px;

}

.browser-content{

    flex:1;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    padding:25px;

}

.property-card{

    border-radius:18px;

    background:linear-gradient(135deg,#dbeafe,#ede9fe);

    min-height:170px;

}


/*======================================================
  WORKFLOW
======================================================*/

.workflow{

    background:#ffffff;

}

.workflow-grid{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-top:70px;

}

.step{

    flex:1;

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:30px;

    text-align:center;

    transition:.35s;

}

.step:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:800;

    margin:0 auto 20px;

}

.step h3{

    margin-bottom:15px;

}

.step p{

    color:var(--text);

}

.arrow{

    font-size:34px;

    color:var(--primary);

    font-weight:700;

}

/*======================================================
  STATS
======================================================*/

.stats{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:56px;

    font-weight:800;

    margin-bottom:10px;

}

.stat p{

    opacity:.9;

    font-size:18px;

}


/*======================================================
  COMPARISON TABLE
======================================================*/

.comparison{

    background:#fff;

}

.comparison-table{

    margin-top:60px;

    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.table-header{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-weight:700;

}

.table-header div{

    padding:22px;

    text-align:center;

}

.table-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

}

.table-row div{

    padding:20px;

    border-top:1px solid var(--border);

    text-align:center;

}

.table-row div:first-child{

    text-align:left;

    font-weight:600;

}


/*======================================================
  TESTIMONIALS
======================================================*/

.testimonials{

    background:#F8FAFC;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.quote{

    color:#FBBF24;

    font-size:24px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:30px;

}

.author{

    display:flex;

    align-items:center;

    gap:15px;

}

.avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}


/*======================================================
  PRICING
======================================================*/

.pricing{

    background:#fff;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.price-card{

    position:relative;

    padding:40px;

    border-radius:24px;

    border:1px solid var(--border);

    background:#fff;

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.price-card.featured{

    border:2px solid var(--primary);

    transform:scale(1.04);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    padding:8px 20px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

}

.price-card h2{

    font-size:48px;

    margin:25px 0;

}

.price-card h2 span{

    font-size:16px;

    color:var(--text);

}

.price-card ul{

    margin:35px 0;

}

.price-card li{

    margin-bottom:16px;

    color:var(--text);

}


/*======================================================
  FAQ
======================================================*/

.faq{

    background:#F8FAFC;

}

.faq-list{

    max-width:850px;

    margin:60px auto 0;

}

.faq-item{

    background:#fff;

    margin-bottom:18px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid var(--border);

}

.faq-question{

    width:100%;

    padding:25px;

    background:#fff;

    text-align:left;

    font-size:18px;

    font-weight:700;

}

.faq-answer{

    display:none;

    padding:0 25px 25px;

    color:var(--text);

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}


/*======================================================
  CTA
======================================================*/

.cta{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:56px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    max-width:750px;

    margin:0 auto 40px;

    opacity:.95;

}

.cta .btn-outline{

    background:#fff;

    color:var(--dark);

    border:none;

}


/*======================================================
  FOOTER
======================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer h3{

    color:#fff;

    margin-bottom:20px;

}

.footer h4{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

    line-height:1.8;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul a{

    transition:.3s;

}

.footer ul a:hover{

    color:#fff;

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    font-size:15px;

}


/*======================================================
  SMOOTH HOVER
======================================================*/

button,
a,
.card,
.problem-card,
.feature-card,
.product-box,
.price-card,
.testimonial-card,
.step{

    transition:all .35s ease;

}