/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #fafafa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

@media (min-width: 768px) {
    .header {
        padding: 1rem 0;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 2rem;
    width: auto;
}

@media (min-width: 768px) {
    .logo {
        height: 2.5rem;
    }
}

.company-name h1 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    text-align: right;
}

@media (min-width: 768px) {
    .company-name h1 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .company-name h1 {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4db6ac, #26a69a);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 0;
    }
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* CTA Button */
.cta-container {
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #26a69a;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    margin-right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
    .trust-indicators {
        flex-direction: row;
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .trust-item i {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.trust-number {
    font-size: 1.125rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .trust-number {
        font-size: 1.25rem;
    }
}

.trust-label {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .trust-label {
        font-size: 1.25rem;
    }
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    color: #ffc107;
    fill: #ffc107;
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .star-filled {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Widget Section */
.widget-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

@media (min-width: 768px) {
    .widget-section {
        padding: 6rem 0;
    }
}

.widget-content {
    text-align: center;
    margin-bottom: 3rem;
}

.widget-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2d3748;
}

@media (min-width: 768px) {
    .widget-title {
        font-size: 2.5rem;
    }
}

.widget-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .widget-subtitle {
        font-size: 1.25rem;
        padding-bottom: 30px;
    }
}

/* Widget Container */
.fbl_w_2v3mzk0x9OFbp9ck5m4f {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-number, .trust-label {
        font-size: 1rem;
    }
    
    .widget-title {
        font-size: 1.75rem;
    }
    
    .widget-subtitle {
        font-size: 1rem;
        padding-bottom: 30px;
    }
}

/* Smooth animations */
.cta-button,
.trust-item {
    transition: all 0.3s ease;
}

/* Hover effects */
.trust-item:hover {
    transform: translateY(-1px);
}

/* Loading states for icons */
i[data-lucide] {
    display: inline-block;
}
