@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f8fafc;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    background-color: var(--gray-50);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--white);
}
.header-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/assets/img/bg_min_fixed_final.png) no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.left-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.head-cover {
    display: none;
}
.content-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.rating-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars-container {
    display: flex;
    gap: 0.25rem;
}

.fa-star, .fa-star-half {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.fa-star.checked, .fa-star-half.checked {
    color: #fbbf24;
}

.rating-number, .reviews-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.buttons_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.get-quote, .custom_phone_number {
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.get-quote:hover, .custom_phone_number:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.get-quote:active, .custom_phone_number:active {
    transform: translateY(0);
}
.benefits-wrapper {
    padding: 5rem 1rem;
    background: var(--white);
    position: relative;
}

.benefits-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.benefits-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.headline-subtext {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit:hover::before {
    transform: scaleX(1);
}

.benefit-image-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.benefit-image-wrapper img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefit-headline {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-subtext {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}
.reviews-section {
    padding: 5rem 1rem;
    background: var(--gray-50);
    text-align: center;
}

.reviews-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.review-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.review-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.name-date-review {
    text-align: left;
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-stars-wrapper {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    flex: 1;
}

.show-more-button {
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.show-more-button:hover {
    background: var(--gray-100);
}
.frame-wrapper {
    padding: 5rem 1rem;
    background: var(--white);
    text-align: center;
}

.frame-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.frame-wrapper iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    margin-top: 2rem;
}

.pre-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pre-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.footer-headline {
    position: relative;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-subtext {
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.direct-form {
    position: relative;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.direct-form:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .review-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-wrapper {
        min-height: 60vh;
        padding: 1.5rem 1rem;
    }
    
    .logo {
        width: 150px;
        margin-bottom: 1.5rem;
    }
    
    .rating-wrapper {
        padding: 0.75rem 1rem;
    }
    
    .buttons_wrapper {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .get-quote, .custom_phone_number {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .benefits-wrapper {
        padding: 3rem 1rem;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem 1rem;
    }
    
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .review-wrapper {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    
    .review-box {
        padding: 1.5rem;
    }
    
    .pre-footer {
        padding: 3rem 1rem;
    }
    
    .footer-subtext {
        font-size: 1rem;
    }
    
    .frame-wrapper {
        padding: 2rem 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-wrapper {
        min-height: 50vh;
        padding: 1rem 0.5rem;
    }
    
    .logo {
        width: 120px;
    }
    
    .benefits-wrapper, .reviews-section, .pre-footer {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .benefit, .review-box {
        padding: 1rem;
    }
    
    .get-quote, .custom_phone_number, .direct-form {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        min-width: 160px;
    }
}