/* ==========================================
   ZEVIACARE
   Premium Landing Page
   Part 1
==========================================*/

:root{

--primary:#4B3FB5;
--secondary:#5C8CFF;
--accent:#E94F9B;
--dark:#101828;
--text:#475467;
--light:#ffffff;
--bg:#F8FAFC;
--border:#E4E7EC;

--gradient:linear-gradient(135deg,#4B3FB5 0%,#5C8CFF 55%,#E94F9B 100%);

--shadow:0 15px 45px rgba(0,0,0,.08);

--radius:18px;

--transition:.35s ease;

}



*{

margin:0;
padding:0;
box-sizing:border-box;

}



html{

scroll-behavior:smooth;

}



body{

font-family:'Poppins',sans-serif;

background:var(--bg);

color:var(--dark);

line-height:1.7;

overflow-x:hidden;

}



a{

text-decoration:none;

transition:var(--transition);

}



ul{

list-style:none;

}



img{

max-width:100%;

display:block;

}



.container{

width:min(1200px,92%);

margin:auto;

}



/*===============================
Buttons
================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 32px;

background:var(--gradient);

color:#fff;

border-radius:50px;

font-weight:600;

box-shadow:0 12px 35px rgba(91,67,220,.25);

transition:.35s;

}



.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(91,67,220,.35);

}



.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 32px;

border:2px solid var(--primary);

color:var(--primary);

border-radius:50px;

font-weight:600;

background:#fff;

transition:.35s;

}



.btn-secondary:hover{

background:var(--primary);

color:#fff;

}



/*===============================
Header
================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.75);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.3);

transition:.4s;

}



.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 0;

}



.logo img{

height:65px;

}



nav ul{

display:flex;

gap:35px;

}



nav ul li a{

font-size:15px;

font-weight:500;

color:var(--dark);

}



nav ul li a:hover{

color:var(--primary);

}



.menu-btn{

display:none;

font-size:34px;

cursor:pointer;

color:var(--primary);

}



/*===============================
Hero
================================*/

.hero{

padding:170px 0 110px;

background:

radial-gradient(circle at top left,#e5e8ff 0%,transparent 45%),

radial-gradient(circle at bottom right,#ffe4f1 0%,transparent 40%),

#fff;

}



.hero-grid{

display:grid;

grid-template-columns:1fr 480px;

gap:70px;

align-items:center;

}



.tag{

display:inline-block;

padding:10px 18px;

background:#EEF4FF;

color:var(--primary);

font-weight:600;

border-radius:100px;

margin-bottom:25px;

font-size:14px;

}



.hero h1{

font-size:58px;

font-weight:800;

line-height:1.1;

margin-bottom:28px;

}



.hero h1 span{

display:block;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.hero p{

font-size:18px;

color:var(--text);

margin-bottom:35px;

}



.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:40px;

}



/*===============================
Hero Points
================================*/

.hero-points{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}



.hero-points div{

background:#fff;

padding:18px;

border-radius:14px;

box-shadow:var(--shadow);

font-weight:600;

display:flex;

align-items:center;

gap:12px;

}



.hero-points i{

font-size:22px;

color:#23B26D;

}



/*===============================
Hero Card
================================*/

.hero-card{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 30px 60px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

}



.hero-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

background:var(--gradient);

}



.hero-card h3{

font-size:28px;

margin-bottom:25px;

}



.hero-card ul{

display:flex;

flex-direction:column;

gap:18px;

}



.hero-card li{

font-weight:500;

color:var(--text);

}



/*===============================
Trusted
================================*/

.trusted{

padding:80px 0;

background:#fff;

}



.trusted h4{

text-align:center;

font-size:20px;

margin-bottom:45px;

color:var(--dark);

}



.trusted-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}



.trusted-grid div{

background:#fff;

padding:30px;

border-radius:18px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

}



.trusted-grid div:hover{

transform:translateY(-10px);

}



.trusted-grid i{

font-size:45px;

margin-bottom:18px;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



/*===============================
Section Heading
================================*/

.section-heading{

text-align:center;

margin-bottom:70px;

}



.section-tag{

display:inline-block;

padding:8px 18px;

background:#EEF4FF;

border-radius:50px;

font-size:13px;

font-weight:700;

color:var(--primary);

margin-bottom:18px;

}



.section-heading h2{

font-size:44px;

font-weight:800;

margin-bottom:18px;

}



.section-heading p{

max-width:720px;

margin:auto;

font-size:18px;

color:var(--text);

}


/*=========================================
ABOUT SECTION
=========================================*/

.about{
    padding:120px 0;
    background:#F8FAFC;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
}

.about h2{
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin:18px 0 25px;
    color:var(--dark);
}

.about p{
    font-size:17px;
    color:var(--text);
    margin-bottom:22px;
    line-height:1.8;
}

.about-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-card{
    background:#fff;
    padding:35px 20px;
    border-radius:22px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.about-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--gradient);
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card h3{
    font-size:42px;
    font-weight:800;
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:15px;
    line-height:1.1;
    word-break:break-word;
}

.about-card p{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:var(--dark);
    line-height:1.5;
}



/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

.about-grid{
    grid-template-columns:1fr;
}

.about-box{
    margin-top:40px;
}

}



/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.about{
    padding:70px 0;
}

.about h2{
    font-size:32px;
}

.about p{
    font-size:15px;
}

.about-box{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.about-card{
    min-height:170px;
    padding:20px 12px;
}

.about-card h3{
    font-size:30px;
    margin-bottom:10px;
}

.about-card p{
    font-size:15px;
    line-height:1.4;
}

}

@media (max-width:768px){

.menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:38px;
    color:var(--primary);
    cursor:pointer;
    z-index:1001;
}

nav{
    position:fixed;
    top:90px;
    left:-100%;
    width:100%;
    height:calc(100vh - 90px);
    background:#fff;
    transition:left .35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:999;
    padding:25px;
    overflow-y:auto;
}

nav.active{
    left:0;
}

nav ul{
    display:flex;
    flex-direction:column;
    gap:5px;
}

nav ul li{
    width:100%;
}

nav ul li a{
    display:block;
    padding:15px;
    font-size:18px;
    font-weight:600;
    color:#111827;
    border-bottom:1px solid #ececec;
}

.desktop-btn{
    display:none;
}

}

/*=========================================
WHY CHOOSE ZEVIACARE
=========================================*/

.why-section{

padding:120px 0;

background:#fff;

}



.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}



.why-card{

background:#fff;

padding:40px 35px;

border-radius:24px;

box-shadow:0 20px 45px rgba(0,0,0,.06);

transition:.4s;

position:relative;

overflow:hidden;

}



.why-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:var(--gradient);

transform:scaleX(0);

transition:.4s;

transform-origin:left;

}



.why-card:hover::before{

transform:scaleX(1);

}



.why-card:hover{

transform:translateY(-15px);

}



.why-card .icon{

width:75px;

height:75px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--gradient);

margin-bottom:28px;

}



.why-card .icon i{

font-size:34px;

color:#fff;

}



.why-card h3{

font-size:24px;

margin-bottom:16px;

font-weight:700;

}



.why-card p{

color:var(--text);

font-size:16px;

line-height:1.8;

}





/*=========================================
SERVICES
=========================================*/

.services{

padding:120px 0;

background:#F8FAFC;

}



.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}



.service-box{

background:#fff;

padding:45px 35px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.4s;

position:relative;

overflow:hidden;

}



.service-box::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:5px;

background:var(--gradient);

transform:scaleX(0);

transition:.4s;

transform-origin:right;

}



.service-box:hover::after{

transform:scaleX(1);

transform-origin:left;

}



.service-box:hover{

transform:translateY(-15px);

}



.service-box i{

font-size:55px;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:25px;

display:inline-block;

}



.service-box h3{

font-size:24px;

font-weight:700;

margin-bottom:16px;

color:var(--dark);

}



.service-box p{

font-size:16px;

color:var(--text);

line-height:1.8;

}





/*=========================================
COMMON CARD EFFECT
=========================================*/

.about-card,
.why-card,
.service-box{

border:1px solid rgba(91,140,255,.08);

}



.about-card:hover,
.why-card:hover,
.service-box:hover{

box-shadow:

0 30px 70px rgba(91,140,255,.18),

0 15px 35px rgba(233,79,155,.12);

}





/*=========================================
SECTION SPACING
=========================================*/

.about,
.services,
.why-section{

position:relative;

overflow:hidden;

}



.about::before,

.services::before,

.why-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:radial-gradient(circle,#EEF3FF 0%,transparent 70%);

top:-200px;

right:-150px;

z-index:0;

}



.about .container,

.services .container,

.why-section .container{

position:relative;

z-index:2;

}


/*=========================================
PATIENT ACQUISITION PROCESS
=========================================*/

.process{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.timeline{

display:flex;

justify-content:space-between;

align-items:flex-start;

gap:20px;

margin-top:70px;

flex-wrap:wrap;

}

.step{

background:#fff;

width:180px;

padding:35px 25px;

border-radius:22px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

position:relative;

border:1px solid rgba(91,140,255,.08);

}

.step:hover{

transform:translateY(-15px);

box-shadow:0 30px 70px rgba(91,140,255,.18);

}

.step span{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:var(--gradient);

color:#fff;

font-weight:700;

font-size:22px;

}

.step h3{

font-size:20px;

margin-bottom:12px;

}

.step p{

font-size:15px;

color:var(--text);

}

.arrow{

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-top:70px;

color:var(--primary);

}



/*=========================================
COMPARISON TABLE
=========================================*/

/*=================================
Comparison
=================================*/

.comparison{

padding:120px 0;

background:#F8FAFC;

}

.comparison-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-top:60px;

}

.compare-card{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

transition:.35s;

}

.compare-card:hover{

transform:translateY(-10px);

}

.compare-card h3{

padding:28px;

color:#fff;

font-size:28px;

text-align:center;

}

.traditional h3{

background:#F04438;

}

.zevia h3{

background:var(--gradient);

}

.compare-card ul{

padding:25px;

}

.compare-card ul li{

padding:18px 0;

border-bottom:1px solid #ECECEC;

font-size:17px;

font-weight:500;

display:flex;

align-items:center;

gap:12px;

}

.traditional li::before{

content:"✖";

color:#F04438;

font-weight:bold;

}

.zevia li::before{

content:"✔";

color:#22C55E;

font-weight:bold;

}

@media(max-width:768px){

.comparison-grid{

grid-template-columns:1fr;

gap:25px;

}

.compare-card h3{

font-size:22px;

padding:22px;

}

.compare-card ul{

padding:20px;

}

.compare-card ul li{

font-size:15px;

padding:14px 0;

}

}


/*=========================================
STATISTICS
=========================================*/

.stats{

padding:120px 0;

background:var(--gradient);

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-card{

text-align:center;

padding:40px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

border-radius:22px;

border:1px solid rgba(255,255,255,.15);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.18);

}

.stat-card h2{

font-size:52px;

font-weight:800;

margin-bottom:12px;

}

.stat-card p{

font-size:17px;

}



/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

padding:120px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.testimonial-card{

padding:40px;

background:#fff;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-15px);

box-shadow:0 30px 70px rgba(91,140,255,.18);

}

.testimonial-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:var(--gradient);

}

.quote{

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--gradient);

margin-bottom:30px;

}

.quote i{

font-size:34px;

color:#fff;

}

.testimonial-card p{

font-size:16px;

line-height:1.9;

color:var(--text);

margin-bottom:25px;

}

.testimonial-card h4{

font-size:18px;

margin-bottom:5px;

}

.testimonial-card span{

font-size:14px;

color:#667085;

}



/*=========================================
ANIMATION
=========================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.hero-card{

animation:float 4s ease-in-out infinite;

}

.about-card:nth-child(2){

animation:float 5s ease-in-out infinite;

}

.about-card:nth-child(4){

animation:float 6s ease-in-out infinite;

}



/*=========================================
BACKGROUND SHAPES
=========================================*/

.process::before,

.testimonials::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:radial-gradient(circle,#EEF3FF 0%,transparent 70%);

left:-200px;

top:-150px;

z-index:0;

}

.process .container,

.testimonials .container{

position:relative;

z-index:2;

}


/*=========================================
FAQ
=========================================*/

.faq{
    padding:120px 0;
    background:#F8FAFC;
}

.faq-box{
    max-width:950px;
    margin:auto;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.faq-item:hover{
    transform:translateY(-5px);
}

.faq-item h3{
    font-size:22px;
    margin-bottom:15px;
    color:var(--dark);
}

.faq-item p{
    color:var(--text);
    line-height:1.8;
}

/*=========================================
CTA
=========================================*/

.cta-section{
    padding:110px 0;
    background:var(--gradient);
}

.cta-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border-radius:28px;
    padding:70px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    max-width:760px;
    margin:auto auto 35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*=========================================
CONTACT
=========================================*/

.contact{
    padding:120px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:start;
}

.contact-left h2{
    font-size:44px;
    margin:20px 0;
}

.contact-left p{
    color:var(--text);
    margin-bottom:35px;
}

.contact-info div{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
    font-size:17px;
}

.contact-info i{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gradient);
    color:#fff;
    font-size:22px;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:18px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:15px;
    outline:none;
    transition:.3s;
    font-family:'Poppins',sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(91,67,220,.08);
}

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:var(--gradient);
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.35s;
    font-weight:600;
}

.contact-form button:hover{
    transform:translateY(-4px);
}

/*=========================================
FOOTER
=========================================*/

footer{
    background:#0F172A;
    color:#fff;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

footer p{
    color:#CBD5E1;
    line-height:1.8;
}

footer h3{
    margin-bottom:25px;
    font-size:20px;
}

footer ul li{
    margin-bottom:15px;
}

footer ul li a{
    color:#CBD5E1;
}

footer ul li a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--gradient);
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    color:#94A3B8;
}

/*=========================================
WHATSAPP
=========================================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 40px rgba(37,211,102,.35);
    z-index:999;
    transition:.35s;
}

.whatsapp:hover{
    transform:scale(1.08);
}

/*=========================================
HEADER SCROLL
=========================================*/

header.scrolled{
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.hero-grid,
.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.hero{
padding-top:150px;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-points{
grid-template-columns:1fr;
}

.trusted-grid,
.why-grid,
.services-grid,
.stats-grid,
.testimonial-grid,
.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.timeline{
justify-content:center;
}

.arrow{
display:none;
}

nav{
display:none;
}

.menu-btn{
display:block;
}

.contact-form{
margin-top:40px;
}

}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.section-heading h2{
font-size:34px;
}

.about h2,
.contact-left h2,
.cta-box h2{
font-size:34px;
}

.trusted-grid,
.why-grid,
.services-grid,
.stats-grid,
.testimonial-grid,
.footer-grid{
grid-template-columns:1fr;
}

.cta-box{
padding:40px 25px;
}

.contact-form{
padding:30px;
}

.hero-card{
margin-top:30px;
}

.step{
width:100%;
}

.table-head,
.table-row{
grid-template-columns:1fr;
}

.table-head div{
border-bottom:1px solid rgba(255,255,255,.15);
}

.table-row div{
border-bottom:1px solid #eee;
}

.whatsapp{
width:58px;
height:58px;
font-size:30px;
}

}