
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2D2420;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin: 0.5rem;
}

.trust-badge i {
    margin-right: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C83D3D;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover:after {
    transform: scaleX(1);
}

/* Star Ratings */
.star-rating {
    display: inline-flex;
    align-items: center;
}

.star-rating i {
    color: #FFD700;
    fill: #FFD700;
}

/* Guarantee Ribbon */
.guarantee-ribbon {
    position: relative;
    padding-left: 2.5rem;
}

.guarantee-ribbon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C83D3D'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E") no-repeat center;
}

/* Social Proof Grid */
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .cta-buttons {
        flex-direction: column;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.shadow-sm {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.rounded-xl {
    border-radius: 1rem;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Background Overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Utility Classes */
.hover\:bg-\[\#B03636\]:hover {
    background-color: #B03636;
}

.hover\:bg-gray-100:hover {
    background-color: #f7fafc;
}

.hover\:bg-white:hover {
    background-color: #ffffff;
}

.hover\:text-\[\#C83D3D\]:hover {
    color: #C83D3D;
}

.bg-\[\#C83D3D\] {
    background-color: #C83D3D;
}

.text-\[\#C83D3D\] {
    color: #C83D3D;
}

.bg-\[\#F7F2E8\] {
    background-color: #F7F2E8;
}

.text-\[\#2D2420\] {
    color: #2D2420;
}

.bg-\[\#F3E8D5\] {
    background-color: #F3E8D5;
}

.border-\[\#F3E8D5\] {
    border-color: #F3E8D5;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}
