/* ===========================================
   GLOBAL
=========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        #07111f;

    color:white;

    line-height:1.6;

}

@media (max-width:1100px){

#hero{

    flex-direction:column;

    text-align:center;

    padding:120px 30px 60px;

    gap:40px;

}

.hero-left{

    width:100%;

}

.hero-right{

    width:100%;

}

.browser-placeholder{

    max-width:600px;

}

.browser-preview{

    width:100%;

}

.hero-buttons{

    justify-content:center;

}

}

/* ===========================================
   NAVBAR
=========================================== */

#navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:75px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 70px;

    background:rgba(7,17,31,.75);

    backdrop-filter:blur(14px);

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

    z-index:999;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#3b82f6;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#60a5fa;

}

.download-btn{

    background:#3b82f6;

    color:white;

    text-decoration:none;

    padding:12px 28px;

    border-radius:12px;

    transition:.3s;

}

.download-btn:hover{

    transform:translateY(-2px);

}

/* ===========================================
   HERO
=========================================== */

#hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:140px 80px;

    gap:50px;

}

.hero-left{

    flex:1;
    min-width:320

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-left h1{

    font-size:clamp(2.8rem,5vw,4.2rem);

    line-height:1.1;

    margin-bottom:25px;

}

.hero-left p{

    font-size:20px;

    color:#b7c5d7;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-buttons button{

    cursor:pointer;

    border:none;

    border-radius:14px;

    padding:16px 34px;

    font-size:17px;

    transition:.3s;

}

.hero-buttons button:first-child{

    background:#3b82f6;

    color:white;

}

.hero-buttons button:last-child{

    background:#162338;

    color:white;

}

.hero-buttons button:hover{

    transform:translateY(-4px);

}

/* ===========================================
   BROWSER MOCKUP
=========================================== */

.browser-placeholder{

    width:100%;

    max-width:650px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:transparent;

    border:none;

    box-shadow:none;

}

.browser-preview{

    width:100%;

    max-width:650px;

    height:auto;

    display:block;

    border-radius:18px;

    object-fit:contain;

}

.pricing-note{

    margin-top:45px;

    text-align:center;

    color:#a9b8cc;

    font-size:16px;

    line-height:1.7;

    max-width:700px;

    margin-left:auto;

    margin-right:auto;

    padding:16px 24px;

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

    border-radius:14px;

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

}
/* ----------------------------- */
/* Setup Section */
/* ----------------------------- */

.setup-section{

    padding:120px 0;

    background:#111827;

}

.setup-section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}

.setup-intro{

    text-align:center;

    color:#a6b0cf;

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

    line-height:1.8;

}

.setup-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:45px;

}

.setup-card{

    text-align:center;

}

.setup-card h3{

    margin-bottom:18px;

    color:#ff4040;

    letter-spacing:1px;

    font-size:24px;

}

.setup-image{

    overflow:hidden;

    border-radius:20px;

    height:600px;

    box-shadow:0 15px 45px rgba(0,0,0,.35);

    transition:.45s;

    cursor:pointer;

}

.setup-image img{

    width:100%;

    display:block;

    transition:.55s;

    transform:translateY(0);

}

/* only reveal about 75% */

.setup-image{

    clip-path: inset(0 0 25% 0);

}

/* hover */

.setup-image:hover{

    clip-path: inset(0);

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.setup-image:hover img{

    transform:scale(1.03);

}

.setup-card p{

    margin-top:22px;

    color:#bfc6db;

    line-height:1.8;

    font-size:16px;

}

/* ===========================================
   SECTIONS
=========================================== */

section{

    padding:120px 80px;

}

section h2{

    text-align:center;

    margin-bottom:60px;

    font-size:42px;

}

/* ===========================================
   FEATURE GRID
=========================================== */

.feature-grid{

    display:grid;

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

    gap:35px;

}

.feature-card{

    background:#101b2b;

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card h3{

    margin-bottom:18px;

}

/* ===========================================
   HOW
=========================================== */

.steps{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    font-size:26px;

    flex-wrap:wrap;

}

/* ===========================
   IMAGE LIGHTBOX
=========================== */

.image-modal{

    display:none;

    position:fixed;

    z-index:9999;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    backdrop-filter:blur(8px);

    animation:fadeIn .25s;

    width:100%;

    height:100%;

}

.modal-image{

    max-width:92%;

    max-height:92vh;

    border-radius:14px;

    box-shadow:0 25px 70px rgba(0,0,0,.6);

    animation:zoomIn .25s;

}

.close-modal{

    position:absolute;

    top:25px;

    right:35px;

    font-size:48px;

    color:white;

    cursor:pointer;

    transition:.25s;

}

.close-modal:hover{

    color:#ff4040;

}

.setup-lightbox{

    display:block;

    cursor:pointer;

}

.setup-lightbox:hover{

    transform:translateY(-4px);

}

@keyframes fadeIn{

from{opacity:0;}

to{opacity:1;}

}

@keyframes zoomIn{

from{

transform:scale(.9);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

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

.pricing-grid{

    display:grid;

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

    gap:30px;

}

.price-card{

    background:#101b2b;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.price-card:hover{

    transform:translateY(-8px);

}

.price-card h3{

    font-size:30px;

}

.price-card p{

    margin-top:15px;

    font-size:24px;

    color:#60a5fa;

}

.screenshots{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

}

.shot{

    width:220px;

    background:#101b2b;

    border-radius:18px;

    overflow:hidden;

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

    transition:.35s;

    cursor:pointer;

    position:relative;

}

.shot img{

    width:100%;

    height:420px;

    object-fit:cover;

    object-position:top;

    display:block;

}

.shot-caption{

    padding:18px;

}

.shot h3{

    margin-bottom:8px;

    font-size:18px;

}

.shot p{

    color:#b7c5d7;

    font-size:15px;

}

.shot:hover{

    transform:translateY(-12px) scale(1.12);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    z-index:50;

}


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

#faq{
    max-width:950px;
    margin:auto;
}

.faq-item{

    max-width:900px;
    margin:18px auto;
    padding:0;

    background:#101b2b;

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

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-3px);

    border-color:#3b82f6;

    box-shadow:0 10px 25px rgba(59,130,246,.15);

}

.faq-item h3{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 26px;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

}

.faq-item h3 span{

    color:#60a5fa;

    font-size:28px;

    transition:.3s;

}

.faq-item p{

    max-height:0;

    overflow:hidden;

    padding:0 26px;

    color:#b7c5d7;

    transition:max-height .45s ease,
               padding .35s ease;

}

.faq-item:hover p{

    max-height:220px;

    padding:0 26px 24px;

}

.faq-item:hover h3 span{

    transform:rotate(45deg);

}

/* ===========================================
   CONTACT
=========================================== */

#contact{

    text-align:center;

}

#contact p{

    margin:15px;

    font-size:20px;

}

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

footer{

    text-align:center;

    padding:40px;

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

}

footer a{

    color:#60a5fa;

    text-decoration:none;

}

/* Add this to your CSS for the Linear/Stripe-esque floating animation */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #10c28d;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
