/* 
 * Snilld Landing Page CSS
 * Implements Snilld's brand design system
 * Colors: #3B1A54 (primary), #EC00D2 (secondary), #BE3CB6 (accent), #F8F5FB (neutral)
 * Typography: Work Sans (all text)
 */

/* Import Work Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.snilld-landing-page {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAF4F9;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #BE3CB6;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #3B1A54;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cta-button::before {
    content: '';
    position: relative;
    width: 25px;
    height: 25px;
    background: url(/wp-content/uploads/2024/06/SnilldSegmentStar.svg);
    display: inline-block;
    float: left;
    margin-right: 0px;
    top: 2px;
    filter: brightness(10);
}

.cta-button.primary {
    background-color: #3B1A54;
    color: #FAF4F9;
}

.cta-button.primary:hover {
    background-color: #6B3EB8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 26, 84, 0.3);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.2rem;
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Trust Indicator */
.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    justify-content: center;
}

.trust-indicator i {
    color: #EC00D2;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3B1A54 0%, #2d0b48 50%, #EC00D2 100%);
    color: #FAF4F9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-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 1000 100" fill="white" opacity="0.05"><path d="M0,50 Q250,20 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #EC00D2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    text-align: left;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    background: #FAF4F9;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #3B1A54;
    min-width: 120px;
    border: 1px solid #eddaec;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #EC8B5E;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: #F2F0EA;
}

.trusted-by {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-by h3 {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logos img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: #01257D;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Problem Solution Section */
.problem-solution-section {
    padding: 100px 0;
    background: white;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem-side, .solution-side {
    padding: 40px;
    border-radius: 15px;
}

.problem-side {
    background-color: #FFF5F5;
    border-left: 5px solid #E53E3E;
}

.solution-side {
    background-color: #F0FFF4;
    border-left: 5px solid #38A169;
}

.problem-side h3, .solution-side h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.problem-side h3 {
    color: #E53E3E;
}

.solution-side h3 {
    color: #38A169;
}

.problem-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #FAF4F9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eddaec;
}

.problem-icon {
    color: #DC3545;
    font-size: 1.2rem;
    margin-top: 2px;
}

.solution-icon {
    color: #EC00D2;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Plugins Section */
.plugins-section {
    padding: 100px 0;
    background: #F8F5FB;
}

.plugins-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #FAF4F9;
    border: 2px solid #eddaec;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: #3B1A54;
}

.tab-button.active,
.tab-button:hover {
    background: #3B1A54;
    color: #FAF4F9;
    border-color: #3B1A54;
}

.tab-content {
    background: #FAF4F9;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eddaec;
}

.plugin-tab {
    display: none;
}

.plugin-tab.active {
    display: block;
}

.plugin-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.plugin-info h3 {
    color: #3B1A54;
    margin-bottom: 15px;
}

.plugin-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.plugin-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.benefit-item i {
    color: #EC00D2;
    font-size: 1.1rem;
}

.plugin-demo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #FAF4F9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 20px;
    background: #F8F5FB;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eddaec;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 26, 84, 0.15);
    background: #EFDFEE;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.step-icon i {
    font-size: 3rem;
    color: #EC00D2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #3B1A54;
    color: #FAF4F9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-item h3 {
    color: #3B1A54;
    margin-bottom: 20px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #01257D;
    color: white;
}

.team-section .section-title {
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #EC8B5E;
}

.team-member h3 {
    color: white;
    margin-bottom: 10px;
}

.role {
    color: #EC8B5E;
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: #F2F0EA;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-study {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    padding: 30px;
    background: #01257D;
    color: white;
    text-align: center;
}

.case-header img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.case-header h3 {
    color: white;
    margin: 0;
}

.case-content {
    padding: 30px;
}

.case-problem, .case-solution, .case-result {
    margin-bottom: 20px;
}

.case-problem h4 {
    color: #E53E3E;
    margin-bottom: 10px;
}

.case-solution h4 {
    color: #00ABE4;
    margin-bottom: 10px;
}

.case-result h4 {
    color: #EC00D2;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #F8F5FB;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FAF4F9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eddaec;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(59, 26, 84, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAF4F9;
    border-bottom: 1px solid #eddaec;
}

.faq-question h3 {
    color: #3B1A54;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #666;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: #3B1A54;
    color: #FAF4F9;
}

.faq-item.active .faq-question h3 {
    color: #FAF4F9;
}

.faq-item.active .faq-question i {
    color: #FAF4F9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 25px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3B1A54 0%, #2d0b48 50%, #EC00D2 100%);
    color: #FAF4F9;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FAF4F9;
}

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.trial-signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(250, 244, 249, 0.9);
    color: #333;
    border: 2px solid transparent;
}

.form-group input:focus {
    outline: none;
    background: #FAF4F9;
    box-shadow: 0 0 0 3px rgba(236, 0, 210, 0.3);
    border-color: #EC00D2;
}

.form-group input::placeholder {
    color: #999;
}

/* Footer */
.landing-footer {
    background: #3B1A54;
    color: #FAF4F9;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(250, 244, 249, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EC00D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plugin-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-stats {
        position: relative;
        top: 20px;
        right: 0;
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .testimonial-highlight {
        padding: 30px 20px;
    }
    
    .problem-side, .solution-side {
        padding: 20px;
    }
    
    .step-item, .team-member {
        padding: 30px 15px;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .plugin-tab.active {
    animation: fadeInUp 0.6s ease;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
} 