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

:root {
    --night-bordeaux: #4E0110;
    --dark-garnet: #6B0C08;
    --blood-red: #881600;
    --rust-brown: #A53C00;
    --burnt-caramel: #C16200;
    --golden-bronze: #D2A335;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(78, 1, 16, 0.85) 0%, rgba(107, 12, 8, 0.85) 50%, rgba(136, 22, 0, 0.85) 100%),
        url('hero-image.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(210, 163, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(193, 98, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--golden-bronze);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    background: var(--golden-bronze);
    color: var(--night-bordeaux);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #e0b645;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section {
    padding: 5rem 2rem;
}

.section-light {
    background: #fafafa;
}

.section-dark {
    background: linear-gradient(to bottom, var(--night-bordeaux), var(--dark-garnet));
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 920px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--night-bordeaux);
}

.feature-description {
    color: #555;
    line-height: 1.7;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 920px) {
    .use-cases {
        grid-template-columns: 1fr;
    }
}

.use-case {
    text-align: center;
    padding: 2rem;
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.use-case-description {
    opacity: 0.9;
    font-size: 1rem;
}

.form-section {
    background: linear-gradient(135deg, var(--rust-brown), var(--burnt-caramel));
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-logo {
    display: block;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--night-bordeaux);
    text-align: center;
}

.form-description {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hubspot-placeholder {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.hubspot-placeholder p {
    color: #666;
    font-style: italic;
}

footer {
    background: var(--night-bordeaux);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }
}