*{padding:0px; margin:0px;}
body{min-height:100vh;}
img{width:100%;cursor:pointer;}
ul.haufw{width:100%; height:100%; position:fixed; left:0px; top:0px; background:rgba(0,0,0,0.95); z-index:1000;}
ul.haufw>li{width: 5vh;height: 5vh;border: 4px solid #e3e3e3;border-top: 4px solid #3498db;border-radius: 50%;animation: rring 1s linear infinite;margin:auto; margin-top:47.5vh;list-style:none;}
@keyframes rring{0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}

:root {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #0f1b2b;
    background-color: #f5f7fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #0f1b2b;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4vw;
    background: #ffffff;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #e4e8f0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b72ff, #2cf0ff);
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-text strong {
    font-size: 1.2rem;
}

.logo-text small {
    display: block;
    color: #4b5c74;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

nav a {
    margin-left: 1.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: #1c2b42;
}

nav a.active,
nav a:hover {
    border-color: #0b72ff;
    color: #0b72ff;
}

.hero {
    padding: 4rem 4vw 3rem;
    background: radial-gradient(circle at top left, #e1edff, #f5f7fb);
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    text-transform: uppercase;
    color: #0b72ff;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.lead {
    font-size: 1.15rem;
    color: #445066;
}

.cta-group {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #0b72ff, #2cf0ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 114, 255, 0.25);
}

.btn.ghost {
    border-color: #0b72ff;
    color: #0b72ff;
}

.btn:hover {
    transform: translateY(-2px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem 4vw;
}

.stats article {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 27, 43, 0.1);
}

.stats h2 {
    margin: 0;
    font-size: 2rem;
    color: #0b72ff;
}

.grid,
.highlight,
.split,
.cta-panel,
.timeline,
.contact-details,
.process-grid,
.quote-steps {
    padding: 2rem 4vw;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.highlight > div {
    grid-column: span 2;
}

.split > div {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(15, 27, 43, 0.08);
}

.grid article,
.highlight ul,
.timeline article,
.contact-details article,
.process-grid article,
.quote-steps article {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 27, 43, 0.08);
}

.highlight ul {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
}

.highlight li::before {
    content: "-";
    color: #0b72ff;
    margin-right: 0.5rem;
}

.cta-panel {
    align-items: center;
    background: #0f1b2b;
    color: #fff;
    border-radius: 1.5rem;
}

.cta-panel .btn {
    justify-self: flex-start;
}

.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #4b5c74;
}

.page {
    padding-bottom: 4rem;
}

.page-hero {
    padding: 3rem 4vw 1rem;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    nav a {
        margin-left: 0;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}
