@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --brand-black: #000000;
    --brand-purple: #7B3FE4;
    --brand-dark-gray: #1A1A1A;
    --brand-medium-gray: #333333;
    --brand-light-gray: #F5F5F5;
    --brand-gradient: linear-gradient(135deg, #7B3FE4 0%, #000000 100%);
}

body {
    background: var(--brand-black);
    color: var(--brand-light-gray);
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

header {
    background: var(--brand-black);
    color: var(--brand-light-gray);
    text-align: center;
    padding: 2rem 0 1rem 0;
    box-shadow: 0 2px 8px rgba(123, 63, 228, 0.08);
}

nav {
    margin-top: 1rem;
}

nav a {
    color: var(--brand-purple);
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 600;
    padding: 0.4em 1em;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

nav a:hover, nav a.active {
    color: var(--brand-light-gray);
    background: var(--brand-purple);
    box-shadow: 0 2px 8px rgba(123, 63, 228, 0.15);
}

.hero {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 2rem 1rem;
    background: var(--brand-gradient);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(123, 63, 228, 0.12);
    color: var(--brand-light-gray);
}

.hexagon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 60px;
    background: linear-gradient(135deg, #7B3FE4 0%, #a084e8 100%);
    clip-path: polygon(25% 5.77%, 75% 5.77%, 100% 50%, 75% 94.23%, 25% 94.23%, 0% 50%);
    color: var(--brand-light-gray);
    font-weight: bold;
    font-size: 2.2em;
    line-height: 1;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(123, 63, 228, 0.25), 0 2px 8px rgba(0,0,0,0.10);
    border: none;
    transition:
        box-shadow 0.2s,
        transform 0.2s,
        background 0.2s;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.hexagon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 18px 0 rgba(123,63,228,0.18) inset;
    pointer-events: none;
}

.hexagon:hover {
    box-shadow: 0 16px 48px rgba(123, 63, 228, 0.35), 0 4px 16px rgba(0,0,0,0.15);
    transform: scale(1.07) rotate(-2deg);
    background: linear-gradient(135deg, #a084e8 0%, #7B3FE4 100%);
    border-color: #a084e8;
}

.cta {
    display: inline-block;
    background: var(--brand-purple);
    color: var(--brand-light-gray);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--brand-dark-gray);
    margin-top: 2rem;
    font-size: 1.2em;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta:hover {
    background: var(--brand-light-gray);
    color: var(--brand-purple);
    box-shadow: 0 8px 32px var(--brand-purple);
}

.services {
    margin: 3rem 0;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-card {
    background: var(--brand-dark-gray);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(123, 63, 228, 0.12);
    padding: 2rem 1.5rem;
    width: 270px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(123, 63, 228, 0.22);
}

.service-card .hexagon {
    margin-bottom: 1rem;
    font-size: 1.3em;
    width: 70px;
    height: 38px;
    line-height: 38px;
    border-width: 2px;
}

.usp {
    background: var(--brand-medium-gray);
    color: var(--brand-light-gray);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(123, 63, 228, 0.10);
}

.usp ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: 1.1em;
}

.usp li {
    margin-bottom: 0.7rem;
    padding-left: 1.2em;
    position: relative;
}

.usp li:before {
    content: "\25A0";
    color: var(--brand-purple);
    position: absolute;
    left: 0;
    font-size: 1em;
}

.social-proof {
    background: var(--brand-dark-gray);
    color: var(--brand-light-gray);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(123, 63, 228, 0.10);
    text-align: center;
}

blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #B8B8B8;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--brand-purple);
    font-weight: 600;
}

footer {
    background: var(--brand-dark-gray);
    color: var(--brand-light-gray);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    border-top: 2px solid var(--brand-purple);
}

@media (max-width: 800px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90vw;
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 1rem 0 0.5rem 0;
    }
    .hero {
        margin: 1.5rem 0;
        padding: 1rem 0.5rem;
    }
    .hexagon {
        width: 60px;
        height: 33px;
        font-size: 1.2em;
        line-height: 33px;
    }
    .cta {
        padding: 0.5rem 1.2rem;
        font-size: 1em;
    }
    footer {
        padding: 1rem 0;
        font-size: 0.9rem;
    }
}
