
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: #1f2937;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text: #1f2937;
    --text-light: #6b7280;
    --gradient: linear-gradient(135deg, #3B82F6, #6366F1);
    --light: #ffffff;
    --gray-light: #e5e7eb;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 2rem 0rem 2rem;
    background: white;
    margin-top: 1rem;
}

.hero-split {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
    align-items: center;
    max-width: 1800px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text);
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--primary-ultra-light);
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Interactive Demo Styles */
.demo-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dot:nth-child(1) { background: #ff5f56; }
.demo-dot:nth-child(2) { background: #ffbd2e; }
.demo-dot:nth-child(3) { background: #27ca3f; }

.demo-title {
    margin-left: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: white;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
    background: #f9fafb;
}

.tab-btn:hover {
    color: #4f46e5;
    background: #f9fafb;
}

.tab-content {
    display: none;
    flex: 1;
    overflow: hidden;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

/* Campaigns Tab Styles */
.campaigns-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.campaigns-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #111827;
}

.campaigns-header p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.btn-create {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-create:hover {
    background: #4338ca;
}

.campaigns-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.campaign-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.campaign-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.campaign-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.campaign-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.campaign-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-active {
    background-color: #dcfce7;
    color: #166534;
}

.status-paused {
    background-color: #ffedd5;
    color: #ea580c;
}

.status-draft {
    background-color: #f3f4f6;
    color: #374151;
}

.campaign-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.campaign-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.campaign-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: #f9fafb;
}

.btn-view {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.btn-pause {
    background: #ffedd5;
    border-color: #f59e0b;
    color: #ea580c;
}

/* Template Library */
.template-library {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.template-library h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.template-library p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

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

.template-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.template-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.template-card-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.template-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.template-type {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background-color: #f3f4f6;
    color: #4b5563;
}

.template-card-body {
    padding: 1rem;
}

.template-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.template-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.template-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-use-template {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-use-template:hover {
    background: #4338ca;
}

/* Leads Tab Styles */
.leads-toolbar {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.search-filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: white;
}

.search-box input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: white;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.leads-table-container {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
}

.leads-table th {
    background-color: #f9fafb;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    border-bottom: 1px solid #e5e7eb;
}

.leads-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #1f2937;
}

.leads-table tr:hover {
    background-color: #f9fafb;
}

.lead-name {
    font-weight: 500;
    color: #111827;
}

.lead-email {
    color: #4b5563;
}

.source-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.source-website {
    background-color: #dcfce7;
    color: #166534;
}

.source-contact-form {
    background-color: #fed7d7;
    color: #9b2c2c;
}

.source-maiya-hermosa {
    background-color: #e9d5ff;
    color: #7c3aed;
}

.source-referral {
    background-color: #fce7f3;
    color: #be185d;
}

.source-manual-entry {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-lead .status-dot {
    background-color: #9ca3af;
}

.status-client .status-dot {
    background-color: #10b981;
}

.lead-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.action-email {
    background-color: #3b82f6;
    color: white;
}

.action-email:hover {
    background-color: #2563eb;
}

.action-delete {
    background-color: #ef4444;
    color: white;
}

.action-delete:hover {
    background-color: #dc2626;
}

.feature-disabled {
    color: var(--text-light);
    opacity: 0.7;
    color: var(--text-light);
    opacity: 0.7;
    marker: none;
}

.leads-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #f9fafb;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#pageInfo {
    font-size: 0.875rem;
    color: #6b7280;
}

.enterprise-tier {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.enterprise-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.enterprise-info {
    flex: 1;
}

.enterprise-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.enterprise-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.enterprise-features svg {
    flex-shrink: 0;
    color: var(--primary);
}

.enterprise-cta {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.enterprise-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.enterprise-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enterprise-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.enterprise-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}    

.testimonials-section {
padding: 2rem 2rem;
background-color: var(--bg-white);
}

.testimonials-carousel {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.testimonial-slide {
display: none;
}

.testimonial-content {
background-color: var(--bg-light);
border-radius: var(--border-radius);
padding: 2.5rem;
margin: 0 1rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
font-size: 1.25rem;
line-height: 1.7;
color: var(--text);
margin-bottom: 2rem;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
}

.avatar-placeholder {
color: white;
font-weight: 600;
font-size: 1.25rem;
}

.author-name {
font-weight: 600;
font-size: 1.1rem;
color: var(--text);
}

.author-title {
color: var(--text-light);
font-size: 0.9rem;
}

.carousel-controls {
display: flex;
align-items: center;
justify-content: center;
margin-top: 2rem;
gap: 1rem;
}

.carousel-control {
background: none;
border: none;
color: var(--text-light);
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: var(--transition);
}

.carousel-control:hover {
background-color: var(--primary-ultra-light);
color: var(--primary);
}

.carousel-indicators {
display: flex;
gap: 0.5rem;
}

.indicator {
width: 8px;
height: 8px;
background-color: var(--text-light);
border-radius: 50%;
cursor: pointer;
transition: var(--transition);
}

.indicator.active {
background-color: var(--primary);
transform: scale(1.25);
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-header h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-section {
padding: 6rem 2rem;
background-color: var(--bg-light);
}

.pricing-cards {
display: flex;
justify-content: center;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
flex-wrap: wrap;
}

.pricing-card {
background-color: white;
border-radius: var(--border-radius);
padding: 2.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
flex: 1;
min-width: 300px;
max-width: 350px;
position: relative;
transition: var(--transition);
}

.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
border: 2px solid var(--primary);
transform: scale(1.05);
}

.pricing-card.popular:hover {
transform: scale(1.05) translateY(-10px);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 0.4rem 1rem;
border-radius: 99px;
font-size: 0.75rem;
font-weight: 600;
white-space: nowrap;
}

.pricing-header {
text-align: center;
margin-bottom: 2rem;
border-bottom: 1px solid var(--bg-light);
}

.pricing-header h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.pricing {
margin-bottom: 1rem;
}

.price {
font-size: 3rem;
font-weight: 700;
color: var(--text);
}

.period {
font-size: 1rem;
color: var(--text-light);
}

.pricing-description {
color: var(--text-light);
font-size: 0.9rem;
}

.pricing-features {
margin-bottom: 2rem;
}

.pricing-feature {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}

.pricing-feature svg {
color: var(--primary);
flex-shrink: 0;
}

.pricing-cta {
display: block;
text-align: center;
padding: 0.75rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border-radius: var(--border-radius);
font-weight: 600;
transition: var(--transition);
}

.pricing-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
color: white;
}
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-container {
        margin-top: 0.5rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }
    
    
    .campaigns-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
    max-width: none;
    width: 100%;
}

.pricing-card.popular {
    transform: none;
}

.pricing-card.popular:hover {
    transform: translateY(-10px);
}
.pricing-cards {
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 492px) {
    .hero-content h1 {
        line-height: 1;
    }
}