@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

#goo-demo-v3 {
    font-family: "Inter", -apple-system, system-ui, sans-serif;
    color: #1e293b;
    background: #faf9f6;
    /* Cream background matching pricing */
}

.demo-header {
    background: #262926;
    padding: 100px 0 140px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.demo-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white !important;
    letter-spacing: -1.5px;
}

.demo-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.demo-container {
    max-width: 1100px;
    margin: -60px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.demo-info-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.demo-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.demo-info-card:hover {
    transform: translateY(-5px);
}

.demo-info-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: #262926;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.demo-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.demo-info-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.demo-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.demo-form-title {
    text-align: center;
    margin-bottom: 40px;
}

.demo-form-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.demo-form-title p {
    color: #64748b;
    font-size: 16px;
}

/* Customizing CF7 if possible via CSS */
.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 15px;
    transition: all 0.2s;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
    border-color: #262926;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(38, 41, 38, 0.1);
    outline: none;
}

.wpcf7-submit {
    background: #262926;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: all 0.2s;
}

.wpcf7-submit:hover {
    background: #404040;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(38, 41, 38, 0.2);
}

@media (max-width: 768px) {
    .demo-info-grid {
        flex-direction: column;
    }

    .demo-header h1 {
        font-size: 40px;
    }

    .demo-form-wrapper {
        padding: 30px;
    }
}