/* DEMO.jpeg Exact Design Styles */

:root {
    --navy-blue: #1b264c;
    --bright-green: #8bd96e;
    --light-blue: #7dd3c0;
}

/* Hero Section with Green Banner */
.demo-hero {
    background: var(--navy-blue);
    min-height: 600px;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Decorative Checkmark */
.demo-hero::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 50 L40 70 L80 30' stroke='%237dd3c0' stroke-width='8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
}

/* Green Form Container */
.green-form-box {
    background: var(--bright-green);
    border-radius: 20px;
    padding: 50px 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Diagonal Pattern Background */
.green-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    border-radius: 20px;
    pointer-events: none;
}

/* Hero Title */
.demo-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.demo-title .underline {
    position: relative;
    display: inline-block;
}

.demo-title .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--light-blue);
    border-radius: 4px;
}

/* Form Styles */
.demo-form {
    position: relative;
    z-index: 3;
}

.demo-form .form-label {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.demo-form .form-control,
.demo-form .form-select {
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--navy-blue);
}

/* Book Demo Button */
.btn-book-demo {
    background: var(--navy-blue);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 38, 76, 0.3);
}

.btn-book-demo:hover {
    background: #0f1a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 38, 76, 0.4);
    color: white;
}

/* Privacy Text */
.privacy-text {
    color: var(--navy-blue);
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.8;
}

.privacy-text a {
    color: var(--navy-blue);
    text-decoration: underline;
    font-weight: 600;
}

/* Section Below Hero */
.integrations-section {
    background: white;
    padding: 80px 0;
}

.integrations-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .demo-title {
        font-size: 2rem;
    }

    .green-form-box {
        padding: 30px 25px;
    }

    .demo-hero::before {
        width: 120px;
        height: 120px;
    }
}
