/* ICP Pages Styling - Consistent with main theme */

/* ICP Hero Section */
.icp-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 2rem 2rem 2rem;
    box-sizing: border-box;
}

.icp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.icp-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(111, 168, 220, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 168, 220, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: subtle-grid-shift 20s ease-in-out infinite;
}

.icp-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.icp-floating-particles::before,
.icp-floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(111, 168, 220, 0.6);
    border-radius: 50%;
    animation: float-up 15s linear infinite;
}

.icp-floating-particles::before {
    left: 20%;
    animation-delay: 0s;
}

.icp-floating-particles::after {
    left: 80%;
    animation-delay: 7s;
}

.icp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.icp-header {
    color: white;
}

.icp-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.icp-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #42a5f5, #69f0ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icp-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.icp-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Hero CTA Section */
.hero-cta-section {
    margin-top: 2rem;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #42a5f5, #6fa8dc);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.3);
    color: white;
}

.hero-cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.hero-social-proof {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-social-proof p {
    margin: 0;
}

/* Social Proof Grid */
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.proof-metric {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6fa8dc;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Testimonial Hero */
.testimonial-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.testimonial-hero blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: #6fa8dc;
}

.testimonial-author em {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6fa8dc, #42a5f5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    margin: 0;
}

/* Main Content Area */
.icp-main {
    background: #f8fafc;
    min-height: 40vh;
    padding: 4rem 0;
}

.icp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.icp-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

/* Content Typography */
.icp-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #6fa8dc;
    padding-bottom: 0.5rem;
}

.icp-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #334155;
    margin: 2.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icp-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.icp-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    margin: 1.5rem 0 0.8rem 0;
}

.icp-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.icp-content ul, .icp-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.icp-content li {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Feature Cards */
.icp-content .feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.icp-content .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6fa8dc, #42a5f5);
}

.icp-content .feature-card h3 {
    color: #1e293b;
    margin-top: 0;
}

.icp-content .feature-card ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.icp-content .feature-card li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* Highlight Boxes */
.icp-content .highlight-box {
    background: linear-gradient(135deg, #6fa8dc 0%, #42a5f5 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.icp-content .highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.icp-content .highlight-box h3,
.icp-content .highlight-box h4 {
    color: white;
    margin-top: 0;
}

.icp-content .highlight-box p,
.icp-content .highlight-box li {
    color: rgba(255, 255, 255, 0.9);
}

/* Quote Boxes */
.icp-content .quote-box {
    background: #f1f5f9;
    border-left: 4px solid #6fa8dc;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.icp-content .quote-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #6fa8dc;
    font-family: serif;
    line-height: 1;
}

.icp-content .quote-box p {
    margin: 0;
    font-size: 1.2rem;
    color: #334155;
}

.icp-content .quote-box .attribution {
    margin-top: 1rem;
    font-weight: 600;
    color: #6fa8dc;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    margin: 3rem 0;
}

.urgency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.urgency-banner h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.urgency-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.urgency-cta {
    position: relative;
    z-index: 1;
}

.urgency-button {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 0.5rem;
}

.urgency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #dc2626;
}

.urgency-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-section-enhanced h2 {
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.cta-section-enhanced p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-option h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #42a5f5, #6fa8dc);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.3);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.risk-reversal {
    position: relative;
    z-index: 1;
}

.risk-reversal p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Sections (Legacy) */
.icp-content .cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.icp-content .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.icp-content .cta-section h2 {
    color: white;
    margin-top: 0;
}

.icp-content .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.icp-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.icp-content .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #42a5f5, #6fa8dc);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    /* FORCE REMOVE ALL BORDERS */
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
}

.icp-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.3);
}

.icp-content .cta-button.secondary {
    background: transparent;
    color: white;
}

.icp-content .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.icp-footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .icp-hero {
        min-height: 50vh;
        padding: 70px 1rem 1rem 1rem;
    }
    
    .icp-title {
        font-size: 2.5rem;
    }
    
    .icp-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icp-main {
        padding: 2rem 0;
    }
    
    .icp-container {
        padding: 0 1rem;
    }
    
    .icp-content {
        padding: 2rem;
    }
    
    .icp-content h1 {
        font-size: 2rem;
    }
    
    .icp-content h2 {
        font-size: 1.5rem;
    }
    
    .icp-content h3 {
        font-size: 1.3rem;
    }
    
    .icp-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .icp-content .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .icp-hero {
        min-height: 40vh;
        padding: 60px 0.5rem 0.5rem 0.5rem;
    }
    
    .icp-title {
        font-size: 2rem;
    }
    
    .icp-subtitle {
        font-size: 1.1rem;
    }
    
    .icp-content {
        padding: 1.5rem;
    }
    
    .icp-content h1 {
        font-size: 1.8rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .testimonial-hero {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-hero blockquote {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes subtle-grid-shift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10px) translateY(5px); }
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
} 