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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Top Banner */
.top-banner {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    font-size: 14px;
}

.banner-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-weight: 500;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #22c55e;
    background-color: #f0fdf4;
}

.nav-link.btn-primary {
    background-color: #22c55e;
    color: white;
    font-weight: 600;
}

.nav-link.btn-primary:hover {
    background-color: #16a34a;
    color: white;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-background-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-icon {
    position: absolute;
    opacity: 0.1;
}

.hero-icon-1 { top: 10%; left: 10%; }
.hero-icon-2 { top: 20%; right: 15%; }
.hero-icon-3 { top: 60%; left: 5%; }
.hero-icon-4 { bottom: 20%; right: 10%; }
.hero-icon-5 { top: 40%; left: 20%; }
.hero-icon-6 { bottom: 30%; right: 25%; }

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    margin-bottom: 60px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #111827;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.btn-cta:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.powered-by {
    color: #6b7280;
    font-size: 14px;
    margin-top: 16px;
}

.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.social-proof-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 4px;
}

/* Lead Analysis Section */
.lead-analysis {
    background-color: #f3f4f6;
    padding: 80px 0;
    border-radius: 24px;
    margin: 0 20px;
}

.lead-analysis h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
}

.highlight {
    color: #22c55e;
    text-decoration: underline;
    text-decoration-color: #22c55e;
}

.lead-analysis p {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.analysis-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.btn-analyze {
    background-color: #111827;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.btn-analyze:hover {
    background-color: #000000;
}

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

/* Overview Section */
.overview {
    padding: 120px 0;
}

.overview-header {
    text-align: center;
    margin-bottom: 80px;
}

.overview-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.overview-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.overview-item {
    text-align: center;
    padding: 40px 20px;
}

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

.overview-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.overview-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Effect Section */
.effect {
    background-color: #111827;
    color: white;
    padding: 120px 0;
}

.effect-header {
    text-align: center;
    margin-bottom: 80px;
}

.effect-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.effect-header p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.effect-content {
    text-align: center;
    margin-bottom: 60px;
}

.effect-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #d1d5db;
}

.effect-description p {
    color: #d1d5db;
    font-size: 16px;
}

.effect-testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonial-badge span {
    color: #d1d5db;
    font-size: 14px;
}

.badge-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.effect-testimonial p {
    font-size: 18px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.cta-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    background-color: #22c55e;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo-container {
    color: white;
    margin-bottom: 24px;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #22c55e;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-items {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .banner-item {
        font-size: 12px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .analysis-form {
        flex-direction: column;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .effect-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.2s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Success Message */
.success-message {
    background-color: #f0fdf4;
    border: 1px solid #22c55e;
    color: #166534;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: #22c55e;
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.pricing-badge {
    background-color: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.pricing-period {
    color: #6b7280;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 700;
}

.pricing-button {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pricing-button:hover {
    background-color: #16a34a;
}

.pricing-button.secondary {
    background-color: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.pricing-button.secondary:hover {
    background-color: #22c55e;
    color: white;
}
