/* IdeaVault Styles */

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

/* Hero Section */
.ideavault-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}

.ideavault-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.trust-badge {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 15px;
}

.ideavault-hero-small {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}

.ideavault-hero-small h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Sections */
.ideavault-section {
    padding: 60px 20px;
}

.gray-bg {
    background: #f8fafc;
    border-radius: 12px;
    margin: 40px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #64748b;
}

/* Value Cards */
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.category-box:hover {
    border-color: #2563eb;
}

.category-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.category-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
}

/* Reason List */
.reason-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.reason-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reason-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #16a34a;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-secondary {
    font-size: 16px;
    margin-top: 20px;
}

.cta-secondary a {
    color: white;
    text-decoration: underline;
}

.trust-line {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Pillar Cards */
.pillar-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    text-align: center;
}

.pillar-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.pillar-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #475569;
}

.pillar-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* Commitment List */
.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 40px auto 0;
}

.commitment-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #1e293b;
    border-left: 4px solid #16a34a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* NDA Coverage */
.nda-coverage {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.nda-coverage h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.nda-coverage ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.nda-coverage ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.nda-coverage ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.nda-coverage p {
    font-size: 16px;
    line-height: 1.6;
}

/* Do/Don't Grid */
.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.dont-list, .do-list {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.do-dont-grid ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.do-dont-grid ul li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.criteria-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2563eb;
}

.criteria-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.criteria-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Partnership Items */
.partnership-items {
    max-width: 900px;
    margin: 0 auto;
}

.partnership-item {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partnership-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2563eb;
}

.partnership-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .ideavault-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .value-cards, .process-steps, .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Styling Enhancement */
.wpcf7-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 15px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #2563eb;
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: #2563eb;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.wpcf7-form .wpcf7-acceptance {
    margin: 20px 0;
}

.wpcf7-form .wpcf7-acceptance label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: 400;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}
