/* ===========================================
   Pull Station
   Main Stylesheet
=========================================== */

/* ---------- Variables ---------- */

:root {

    --bg: #080B14;
    --bg-secondary: #111827;
    --card: rgba(255,255,255,.05);

    --blue: #4F8CFF;
    --purple: #7C3AED;
    --gold: #F6C453;

    --text: #F8FAFC;
    --muted: #B8C0CC;

    --radius: 20px;

    --shadow:
        0 20px 60px rgba(0,0,0,.35);

}

/* ---------- Reset ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Outfit',sans-serif;

    background:
        radial-gradient(circle at top left,#1f3a73 0%,transparent 35%),
        radial-gradient(circle at bottom right,#50248f 0%,transparent 30%),
        var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

/* ---------- Global ---------- */

section{

    width:min(1200px,92%);
    margin:auto;

    padding:100px 0;

}

h1{

    font-size:4rem;

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:2.7rem;

    margin-bottom:20px;

}

h3{

    font-size:1.4rem;

}

p{

    color:var(--muted);

    line-height:1.8;

    font-size:1.05rem;

}

img{

    max-width:100%;

}

/* ---------- Navbar ---------- */

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(8,11,20,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar{

    width:min(1300px,92%);
    margin:auto;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:white;

    font-size:1.3rem;

    font-weight:700;

}

.logo img{

    width:44px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:var(--blue);

}

.hamburger{

    display:none;

}

/* ---------- Hero ---------- */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero h1{

    background:
        linear-gradient(
            90deg,
            white,
            #bcd8ff,
            #9f83ff
        );

    -webkit-background-clip:text;

    color:transparent;

}

.hero p{

    margin:30px 0;

    font-size:1.2rem;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ---------- Buttons ---------- */

.btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.primary{

    background:linear-gradient(
        90deg,
        var(--blue),
        var(--purple)
    );

    color:white;

}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(79,140,255,.35);

}

.secondary{

    border:1px solid rgba(255,255,255,.2);

    color:white;

}

.secondary:hover{

    background:rgba(255,255,255,.08);

}

/* ---------- Floating Cards ---------- */

.hero-cards{

    position:relative;

    height:550px;

}

.floating-card{

    position:absolute;

    width:230px;

    height:320px;

    border-radius:25px;

    background:

        linear-gradient(
            135deg,
            rgba(79,140,255,.35),
            rgba(124,58,237,.35)
        );

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.1);

    box-shadow:var(--shadow);

}

.card1{

    left:0;
    top:60px;

}

.card2{

    right:40px;
    top:0;

}

.card3{

    bottom:20px;
    left:120px;

}

/* ---------- Feature Grid ---------- */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

    margin-top:50px;

}

.feature{

    background:var(--card);

    border:1px solid rgba(255,255,255,.08);

    border-radius:var(--radius);

    padding:35px;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

    border-color:var(--blue);

}

.icon{

    font-size:2rem;

    margin-bottom:18px;

}

/* ---------- Product Cards ---------- */

.product-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.product-card{

    padding:35px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

/* ---------- Business Section ---------- */

.business{

    text-align:center;

}

.business-content{

    max-width:800px;

    margin:auto;

}

/* ---------- Stats ---------- */

.stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    text-align:center;

}

.stat{

    padding:40px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

}

.counter{

    font-size:3rem;

    color:var(--gold);

}

/* ---------- CTA ---------- */

.cta{

    text-align:center;

}

.cta p{

    margin:20px auto 40px;

    max-width:600px;

}

/* ---------- Footer ---------- */

footer{

    margin-top:80px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0;

    text-align:center;

}

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.footer-logo img{

    width:60px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    margin:40px 0;

    flex-wrap:wrap;

}

.footer-links a{

    color:var(--muted);

    text-decoration:none;

}

.footer-links a:hover{

    color:white;

}

.copyright{

    font-size:.9rem;

}

/* ===========================================
   STYLE.CSS PART 2
   Premium Sections & Components
=========================================== */

/* ---------- Section Titles ---------- */

section h2{

    text-align:center;

    margin-bottom:20px;

    font-weight:700;

}

section>p{

    max-width:750px;

    margin:0 auto 60px;

    text-align:center;

}

/* ---------- Glass Effect ---------- */

.glass{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:var(--radius);

}

/* ---------- Hero Background ---------- */

.hero{

    position:relative;

    overflow:hidden;

    padding-top:120px;

}

.hero::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    right:-350px;
    top:-250px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(79,140,255,.18),

            transparent 70%

        );

    pointer-events:none;

}

.hero::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-300px;
    bottom:-250px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(124,58,237,.16),

            transparent 70%

        );

}

/* ---------- Hero Content ---------- */

.hero-content{

    position:relative;

    z-index:2;

}

.hero h1{

    max-width:650px;

}

.hero p{

    max-width:560px;

}

/* ---------- Floating Cards ---------- */

.floating-card{

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.floating-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            135deg,

            rgba(255,255,255,.18),

            transparent 45%

        );

}

.floating-card::after{

    content:"";

    position:absolute;

    inset:1px;

    border-radius:inherit;

    border:1px solid rgba(255,255,255,.12);

}

/* ---------- Card Shine ---------- */

.feature,
.product-card{

    position:relative;

}

.feature::after,
.product-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:

        radial-gradient(

            circle,

            rgba(79,140,255,.18),

            transparent 70%

        );

    top:-140px;
    right:-140px;

    opacity:0;

    transition:.45s;

}

.feature:hover::after,
.product-card:hover::before{

    opacity:1;

}

/* ---------- Feature Text ---------- */

.feature h3{

    margin-bottom:15px;

}

.feature p{

    font-size:.97rem;

}

/* ---------- Product Cards ---------- */

.product-card{

    min-height:210px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.product-card h3{

    margin-bottom:12px;

}

.product-card:hover{

    border-color:rgba(79,140,255,.35);

}

/* ---------- Business Section ---------- */

.business{

    padding:140px 0;

}

.business-content{

    background:

        linear-gradient(

            135deg,

            rgba(79,140,255,.08),

            rgba(124,58,237,.08)

        );

    padding:70px;

    border-radius:32px;

    border:1px solid rgba(255,255,255,.08);

}

.business-content p{

    margin:30px auto;

}

/* ---------- Stats ---------- */

.stats{

    margin:100px auto;

}

.stat{

    transition:.35s;

}

.stat:hover{

    transform:translateY(-10px);

    border:1px solid rgba(79,140,255,.25);

}

.stat p{

    margin-top:12px;

}

/* ---------- CTA ---------- */

.cta{

    background:

        linear-gradient(

            135deg,

            rgba(79,140,255,.08),

            rgba(124,58,237,.08)

        );

    border-radius:30px;

    padding:100px 40px;

    border:1px solid rgba(255,255,255,.08);

}

/* ---------- Footer ---------- */

footer{

    background:

        linear-gradient(

            180deg,

            transparent,

            rgba(255,255,255,.02)

        );

}

.footer-links{

    margin-top:35px;

}

.footer-links a{

    transition:.3s;

}

.footer-links a:hover{

    transform:translateY(-2px);

}

/* ---------- Lists ---------- */

ul.clean{

    list-style:none;

}

ul.clean li{

    margin:15px 0;

}

/* ---------- Forms ---------- */

form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

input,
textarea,
select{

    width:100%;

    padding:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    border-radius:16px;

    outline:none;

    transition:.3s;

    font-family:inherit;

}

textarea{

    resize:vertical;

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--blue);

    box-shadow:

        0 0 25px rgba(79,140,255,.2);

}

/* ---------- Tables ---------- */

table{

    width:100%;

    border-collapse:collapse;

}

th,
td{

    padding:18px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

th{

    text-align:left;

}

/* ---------- Utility ---------- */

.center{

    text-align:center;

}

.hidden{

    display:none;

}

.mt-2{

    margin-top:20px;

}

.mt-4{

    margin-top:40px;

}

.mt-6{

    margin-top:60px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-4{

    margin-bottom:40px;

}

.rounded{

    border-radius:20px;

}

.shadow{

    box-shadow:var(--shadow);

}

/* ---------- Scrollbar ---------- */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0a0d16;

}

::-webkit-scrollbar-thumb{

    background:

        linear-gradient(

            var(--blue),

            var(--purple)

        );

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    opacity:.9;

}

/* ---------- Selection ---------- */

::selection{

    background:var(--blue);

    color:white;

}

/* ===========================================
   STYLE.CSS PART 3
   Internal Pages & Premium Components
=========================================== */

/* ===========================================
   PAGE HERO
=========================================== */

.page-hero{

    padding-top:170px;
    padding-bottom:90px;

    text-align:center;

}

.page-hero h1{

    max-width:900px;
    margin:auto;

}

.page-hero p{

    max-width:700px;

    margin:25px auto 0;

}

/* ===========================================
   TWO COLUMN LAYOUT
=========================================== */

.two-column{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* ===========================================
   ABOUT PAGE
=========================================== */

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

    margin-top:60px;

}

.about-card{

    padding:40px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-8px);

    border-color:rgba(79,140,255,.35);

}

.about-card h3{

    margin-bottom:18px;

}

/* ===========================================
   MISSION SECTION
=========================================== */

.mission{

    text-align:center;

}

.mission p{

    max-width:850px;

    margin:auto;

}

/* ===========================================
   TIMELINE
=========================================== */

.timeline{

    position:relative;

    margin-top:80px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    width:2px;

    top:0;

    bottom:0;

    background:rgba(255,255,255,.08);

}

.timeline-item{

    width:45%;

    margin-bottom:60px;

    padding:30px;

    background:rgba(255,255,255,.05);

    border-radius:20px;

    position:relative;

}

.timeline-item:nth-child(even){

    margin-left:auto;

}

/* ===========================================
   LOCATIONS
=========================================== */

.location-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.location-card{

    border-radius:24px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.location-card:hover{

    transform:translateY(-8px);

}

.location-image{

    height:220px;

    background:

        linear-gradient(135deg,var(--blue),var(--purple));

}

.location-content{

    padding:30px;

}

.location-content h3{

    margin-bottom:15px;

}

.location-content p{

    margin-bottom:18px;

}

/* ===========================================
   GOOGLE MAP
=========================================== */

.map{

    width:100%;

    height:500px;

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

/* ===========================================
   HOST A MACHINE
=========================================== */

.benefits{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.benefit{

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

.benefit h3{

    margin:18px 0;

}

/* ===========================================
   STEPS
=========================================== */

.steps{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.step{

    text-align:center;

    position:relative;

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:

        linear-gradient(

            135deg,

            var(--blue),

            var(--purple)

        );

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-weight:700;

    font-size:1.5rem;

    margin-bottom:25px;

}

/* ===========================================
   CONTACT
=========================================== */

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

}

.contact-card{

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

.contact-item{

    margin-bottom:30px;

}

.contact-item h4{

    margin-bottom:8px;

}

/* ===========================================
   FAQ
=========================================== */

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    padding:24px 28px;

    cursor:pointer;

    background:rgba(255,255,255,.05);

    font-weight:600;

}

.faq-answer{

    padding:0 28px;

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-item.active .faq-answer{

    max-height:250px;

    padding:24px 28px;

}

/* ===========================================
   TESTIMONIALS
=========================================== */

.testimonials{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.testimonial{

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

}

.stars{

    color:var(--gold);

    margin-bottom:15px;

}

/* ===========================================
   LOGO STRIP
=========================================== */

.logo-strip{

    display:flex;

    justify-content:center;

    gap:60px;

    flex-wrap:wrap;

    opacity:.65;

}

.logo-strip img{

    height:45px;

    filter:grayscale(100%);

    transition:.3s;

}

.logo-strip img:hover{

    filter:none;

    opacity:1;

}

/* ===========================================
   ALERT
=========================================== */

.alert{

    padding:20px;

    border-radius:18px;

    background:rgba(79,140,255,.12);

    border:1px solid rgba(79,140,255,.3);

}

/* ===========================================
   BADGES
=========================================== */

.badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(79,140,255,.15);

    color:white;

    font-size:.85rem;

}

/* ===========================================
   LOADER
=========================================== */

.loader{

    width:60px;

    height:60px;

    border:6px solid rgba(255,255,255,.12);

    border-top:6px solid var(--blue);

    border-radius:50%;

    animation:spin 1s linear infinite;

    margin:auto;

}

/* ===========================================
   DIVIDERS
=========================================== */

.divider{

    width:120px;

    height:4px;

    margin:20px auto 50px;

    border-radius:999px;

    background:

        linear-gradient(

            90deg,

            var(--blue),

            var(--purple)

        );

}

/* ===========================================
   IMAGE PLACEHOLDER
=========================================== */

.image-placeholder{

    height:420px;

    border-radius:28px;

    background:

        linear-gradient(

            135deg,

            rgba(79,140,255,.25),

            rgba(124,58,237,.25)

        );

}

/* ===========================================
   SPIN
=========================================== */

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

.ripple{

    position:absolute;

    width:20px;
    height:20px;

    border-radius:50%;

    background:rgba(255,255,255,.5);

    transform:scale(0);

    animation:ripple .6s linear;

    pointer-events:none;

}


@keyframes ripple{

    to{

        transform:scale(20);

        opacity:0;

    }

}

body{

    opacity:0;

    transition:opacity .5s ease;

}

body.loaded{

    opacity:1;

}

.fade{

    opacity:0;

    transform:translateY(50px);

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

.feature,
.product-card{

    transform-style:preserve-3d;

    will-change:transform;

}