@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0F0F0F;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #00FFFF;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00FFFF;
}

#hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 6vw;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #F95300;
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.7;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta {
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background-color: #00FFFF;
    color: #0F0F0F;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.cta-text {
    margin-left: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

#features {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 300px));
    gap: 30px;
    margin: 5vh 0;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item::before {
    content: attr(data-number);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
    color: #00FFFF;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00FFFF;
}

#contact {
    margin-top: 100px;
}

#contact h2 {
    font-size: 2rem;
}

#contact-form {
    display: grid;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #FF00FF;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.circle, .square, .triangle {
    position: absolute;
    opacity: 0.1;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #00FFFF;
    top: 10%;
    left: 5%;
}

.square {
    width: 200px;
    height: 200px;
    background-color: #F95300;
    bottom: 15%;
    right: 10%;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 250px solid #C7F3DA;
    top: 40%;
    right: 20%;
}

.calendly-widget {
    min-width: 550px;
    height: 100vh;
}

@media (max-width: 1366px) {
    #features {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    h1 {
        font-size: 12vw;
    }

    .tagline {
        font-size: 1.25rem;
    }

    #hero {
        height: 65vh;
        margin-bottom: 10vh;
    }

    #features {
        grid-template-columns: repeat(2, 45vw);
        justify-content: center;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #00FFFF;
    }
    
    .background-elements {
        display: none;
    }
    
    .calendly-widget {
        min-width: 0px;
        min-height: 700px;
    }
}