/* =====================================================
   AUTOVIQ
   Version 3.0
   ===================================================== */


/* =====================================================
   RESET
===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Manrope",sans-serif;

    background:#050B18;

    color:#FFFFFF;

    line-height:1.7;

    overflow-x:hidden;

}


/* =====================================================
   ROOT
===================================================== */

:root{

    --primary:#4AA8FF;

    --primary-dark:#1F73FF;

    --primary-light:#8ED1FF;

    --background:#050B18;

    --background-light:#0D162A;

    --card:#111C33;

    --border:rgba(255,255,255,.08);

    --white:#FFFFFF;

    --text:#C8D8F2;

    --text-light:#8FA7C7;

    --success:#2ECC71;

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

    --transition:.35s ease;

}


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

body{

    background:
        radial-gradient(circle at top right,
        rgba(74,168,255,.10),
        transparent 35%),

        radial-gradient(circle at bottom left,
        rgba(74,168,255,.05),
        transparent 40%),

        var(--background);

}

section{

    padding:120px 0;

    position:relative;

}

.container{

    width:min(1320px,92%);

    margin:0 auto;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4{

    color:var(--white);

    line-height:1.15;

    font-weight:800;

}

h1{

    font-size:70px;

}

h2{

    font-size:52px;

}

h3{

    font-size:28px;

}

p{

    color:var(--text);

    font-size:18px;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    display:block;

    max-width:100%;

}


/* =====================================================
   BADGES
===================================================== */

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(74,168,255,.08);

    border:1px solid rgba(74,168,255,.18);

    color:var(--primary);

    font-weight:600;

    margin-bottom:24px;

}/* =====================================================
   HEADER
===================================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:90px;

    z-index:1000;

    background:rgba(5,11,24,.75);

    backdrop-filter:blur(18px);

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

    transition:all .35s ease;

}

.header.scrolled{

    background:rgba(5,11,24,.95);

    border-bottom:1px solid rgba(74,168,255,.15);

    box-shadow:0 10px 40px rgba(0,0,0,.30);

}


/* =====================================================
   HEADER CONTAINER
===================================================== */

.header-container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}


/* =====================================================
   LOGO
===================================================== */

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.logo img{

    height:45px;

    width:auto;

    transition:var(--transition);

}

.logo:hover img{

    transform:scale(1.04);

}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar{

    display:flex;

    align-items:center;

    gap:40px;

    margin-left:auto;

}

.navbar a{

    position:relative;

    font-size:16px;

    font-weight:600;

    color:var(--text);

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--white);

}.navbar a.active{

    color: var(--primary);

}

.navbar a.active::after{

    width: 100%;

}


/* Unterstrich */

.navbar a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 32px;

    border-radius:14px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;

    border:none;

}

.btn-primary{

    color:#fff;

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

    box-shadow:
        0 15px 35px rgba(74,168,255,.30);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 20px 50px rgba(74,168,255,.40);

}

.btn-secondary{

    color:#fff;

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

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

    backdrop-filter:blur(12px);

}

.btn-secondary:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:#fff;

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    overflow:hidden;

}


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

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}


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

.hero-left{

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    margin-bottom:30px;

    border-radius:999px;

    background:rgba(74,168,255,.08);

    border:1px solid rgba(74,168,255,.18);

    color:var(--primary);

    font-size:15px;

    font-weight:600;

}

.hero h1{

    font-size:72px;

    max-width:700px;

    margin-bottom:30px;

}

.hero p{

    max-width:620px;

    margin-bottom:45px;

    color:var(--text);

}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}


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

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.hero-features span{

    padding:10px 18px;

    border-radius:999px;

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

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

    color:var(--text);

    font-size:14px;

}


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

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}


/* =====================================================
   AI CORE
===================================================== */

.ai-core{

    position:relative;

    width:520px;

    height:520px;

    display:flex;

    justify-content:center;

    align-items:center;

}


/* Kern */

.core{

    width:170px;

    height:170px;

    border-radius:50%;

    background:radial-gradient(circle,
        #9fdcff,
        #4aa8ff,
        #1f73ff);

    box-shadow:
        0 0 60px rgba(74,168,255,.8),
        0 0 120px rgba(74,168,255,.5),
        0 0 220px rgba(74,168,255,.2);

}


/* =====================================================
   RINGE
===================================================== */

.ring{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(74,168,255,.25);

}

.ring1{

    width:300px;

    height:300px;

}

.ring2{

    width:430px;

    height:430px;

    border-style:dashed;

}


/* =====================================================
   LINIEN
===================================================== */

.line{

    position:absolute;

    background:rgba(74,168,255,.15);

}

.horizontal{

    width:430px;

    height:2px;

}

.vertical{

    width:2px;

    height:430px;

}


/* =====================================================
   FLOATING BOXES
===================================================== */

.floating{

    position:absolute;

    padding:12px 22px;

    border-radius:14px;

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

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

    backdrop-filter:blur(16px);

    color:#fff;

    font-size:14px;

    font-weight:600;

    box-shadow:var(--shadow);

}

.top{

    top:-25px;

}

.bottom{

    bottom:-25px;

}

.left{

    left:-80px;

}

.right{

    right:-80px;

}

.top-left{

    top:80px;

    left:-70px;

}

.bottom-right{

    bottom:80px;

    right:-70px;

}/* =====================================================
   PARTNER
===================================================== */

.partners{

    padding:120px 0;

}

.partners-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.partners-header h2{

    margin-bottom:20px;

}

.partners-header p{

    color:var(--text-light);

}


/* =====================================================
   PARTNER GRID
===================================================== */

.partner-grid{

    display:grid;

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

    gap:35px;

    margin-bottom:80px;

}


/* =====================================================
   PARTNER CARD
===================================================== */

.partner-card{

    background:var(--card);

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

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:var(--transition);

}

.partner-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:
        0 20px 50px rgba(74,168,255,.15);

}


/* =====================================================
   PARTNER LOGO
===================================================== */

.partner-logo{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    font-weight:800;

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

    color:#fff;

}

.partner-card h3{

    margin-bottom:10px;

}

.partner-card span{

    display:block;

    color:var(--primary);

    margin-bottom:20px;

    font-weight:600;

}

.partner-card p{

    color:var(--text-light);

}


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

.trust-stats{

    display:grid;

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

    gap:25px;

}

.trust-item{

    background:var(--card);

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

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:var(--transition);

}

.trust-item:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

}

.trust-item h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:12px;

}

.trust-item p{

    font-size:15px;

    color:var(--text-light);

}


/* =====================================================
   SERVICES
===================================================== */

.services{

    padding:120px 0;

}

.services-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.services-header h2{

    margin-bottom:20px;

}

.services-header p{

    color:var(--text-light);

}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid{

    display:grid;

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

    gap:35px;

}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card{

    background:var(--card);

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

    border-radius:24px;

    padding:40px;

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:
        0 20px 55px rgba(74,168,255,.15);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    background:rgba(74,168,255,.12);

    color:var(--primary);

    font-size:28px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    color:var(--text-light);

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

}

.service-card a:hover{

    color:var(--primary-light);

}/* =====================================================
   VORTEILE
===================================================== */

.benefits{

    padding:120px 0;

}

.benefits-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.benefits-header h2{

    margin-bottom:20px;

}

.benefits-header p{

    color:var(--text-light);

}


/* =====================================================
   BENEFITS GRID
===================================================== */

.benefits-grid{

    display:grid;

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

    gap:35px;

}


/* =====================================================
   BENEFIT CARD
===================================================== */

.benefit-card{

    background:var(--card);

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

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:var(--transition);

}

.benefit-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:
        0 20px 55px rgba(74,168,255,.18);

}

.benefit-number{

    font-size:54px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:18px;

}

.benefit-card h3{

    margin-bottom:15px;

}

.benefit-card p{

    color:var(--text-light);

}


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

.pricing{

    padding:120px 0;

}

.pricing-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.pricing-header h2{

    margin-bottom:20px;

}

.pricing-header p{

    color:var(--text-light);

}


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

.pricing-grid{

    display:grid;

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

    gap:35px;

    align-items:stretch;

}


/* =====================================================
   PRICE CARD
===================================================== */

.price-card{

    position:relative;

    background:var(--card);

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

    border-radius:26px;

    padding:45px;

    transition:var(--transition);

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:
        0 25px 60px rgba(74,168,255,.18);

}


/* =====================================================
   EMPFOHLENE KARTE
===================================================== */

.price-card.featured{

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

    transform:scale(1.03);

    box-shadow:
        0 25px 70px rgba(74,168,255,.25);

}

.price-card.featured:hover{

    transform:translateY(-10px) scale(1.03);

}


/* =====================================================
   BADGE
===================================================== */

.price-badge{

    position:absolute;

    top:25px;

    right:25px;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}


/* =====================================================
   PREIS
===================================================== */

.price{

    margin:25px 0;

    font-size:52px;

    font-weight:800;

    color:#fff;

}

.price span{

    font-size:20px;

    color:var(--text-light);

}


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

.price-features{

    margin:35px 0;

}

.price-features li{

    margin-bottom:16px;

    color:var(--text);

}/* =====================================================
   ABLAUF
===================================================== */

.process{

    padding:120px 0;

}

.process-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.process-header h2{

    margin-bottom:20px;

}

.process-header p{

    color:var(--text-light);

}


/* =====================================================
   TIMELINE
===================================================== */

.process-timeline{

    position:relative;

    max-width:900px;

    margin:0 auto;

}

.process-timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:2px;

    height:100%;

    background:rgba(74,168,255,.20);

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 50px;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-number{

    position:absolute;

    top:35px;

    width:54px;

    height:54px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-weight:700;

}

.timeline-item.left .timeline-number{

    right:-27px;

}

.timeline-item.right .timeline-number{

    left:-27px;

}

.timeline-card{

    background:var(--card);

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

    border-radius:22px;

    padding:30px;

    transition:var(--transition);

}

.timeline-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(74,168,255,.18);

}


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

.faq{

    padding:120px 0;

}

.faq-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.faq-container{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    margin-bottom:18px;

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

    border-radius:18px;

    overflow:hidden;

    background:var(--card);

}

.faq-question{

    width:100%;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

}

.faq-answer p{

    color:var(--text-light);

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-icon{

    font-size:28px;

    color:var(--primary);

}


/* =====================================================
   KONTAKT
===================================================== */

.contact{

    padding:120px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-content h2{

    margin-bottom:25px;

}

.contact-content p{

    margin-bottom:35px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-icon{

    width:55px;

    height:55px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(74,168,255,.10);

    color:var(--primary);

    font-size:22px;

}

.contact-form{

    background:var(--card);

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

    border-radius:24px;

    padding:40px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 20px;

    border-radius:14px;

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

    background:#0B1426;

    color:#fff;

    outline:none;

}

.contact-form textarea{

    min-height:180px;

    resize:vertical;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

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

.footer{

    padding:100px 0 30px;

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

    background:#040915;

}

.footer-grid{

    display:grid;

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

    gap:50px;

    margin-bottom:60px;

}

.footer-logo img{

    height:60px;

    margin-bottom:20px;

}

.footer-text{

    color:var(--text-light);

    max-width:380px;

    margin-bottom:25px;

}

.footer-column h3{

    margin-bottom:20px;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-column a{

    color:var(--text-light);

    transition:var(--transition);

}

.footer-column a:hover{

    color:var(--primary);

}

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    color:var(--text-light);

    font-weight:600;

}

.footer-bottom{

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

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}



/* =====================================================
   GLASS
===================================================== */

.glass{

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

    backdrop-filter:blur(16px);

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

}



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

.hover-up{

    transition:var(--transition);

}

.hover-up:hover{

    transform:translateY(-8px);

}

.glow{

    transition:var(--transition);

}

.glow:hover{

    box-shadow:

    0 20px 60px rgba(74,168,255,.18);

}



/* =====================================================
   SCROLL ANIMATION
===================================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero-right{

margin-top:60px;

}

.process-timeline::before{

left:25px;

}

.timeline-item{

width:100%;

left:0 !important;

padding-left:80px;

padding-right:0;

text-align:left !important;

}

.timeline-number{

left:0 !important;

right:auto !important;

}

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}



@media(max-width:768px){

h1{

font-size:44px;

}

h2{

font-size:36px;

}

.hero{

padding-top:120px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.navbar{

display:none;

}

.menu-toggle{

display:block;

}

.trust-stats{

grid-template-columns:1fr 1fr;

}

.services-grid,

.benefits-grid,

.pricing-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.ai-core{

width:360px;

height:360px;

}

.ring1{

width:220px;

height:220px;

}

.ring2{

width:320px;

height:320px;

}

.core{

width:120px;

height:120px;

}

}



@media(max-width:480px){

.container{

width:94%;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:16px;

}

.section-badge{

font-size:13px;

padding:10px 18px;

}

.btn{

padding:14px 24px;

}

}/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07101F;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--primary),
        var(--primary-dark)
    );

    border-radius:20px;

}



/* =====================================================
   TEXT SELECTION
===================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}



/* =====================================================
   IMAGE SETTINGS
===================================================== */

img{

    max-width:100%;

    height:auto;

}



/* =====================================================
   INPUT PLACEHOLDER
===================================================== */

input::placeholder,
textarea::placeholder{

    color:var(--text-light);

}



/* =====================================================
   INPUT AUTOFILL
===================================================== */

input:-webkit-autofill{

    -webkit-text-fill-color:#fff;

    transition:background-color 5000s ease-in-out 0s;

}



/* =====================================================
   FOCUS
===================================================== */

button:focus,
a:focus,
input:focus,
textarea:focus{

    outline:none;

}



/* =====================================================
   DISABLE BLUE TAP
===================================================== */

*{

    -webkit-tap-highlight-color:transparent;

}



/* =====================================================
   SMOOTH TRANSITIONS
===================================================== */

button,
a,
input,
textarea{

    transition:var(--transition);

}



/* =====================================================
   END
===================================================== */