/* 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: #111827;
    background-color: #ffffff;
}

/* Utility Classes */
.text-blue {
    color: #2563EB;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Common Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding: 0 2rem;
    }
}

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

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 50%, #1E3A8A 100%);
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 6rem 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .hero-content-inner {
        gap: 1rem;
    }
}

.hero-badge {
    background-color: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    width: fit-content;
}

@media (min-width: 640px) {
    .hero-badge {
        font-size: 0.875rem;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-highlight {
    display: block;
    color: #FDE047;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .hero-title-highlight {
        margin-top: 0;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #BFDBFE;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-benefits {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
    .hero-benefits {
        padding: 1.5rem;
    }
}

.hero-benefits-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-benefits-inner {
        gap: 1rem;
    }
}

.hero-benefits-title {
    color: #FDE047;
    font-weight: 600;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .hero-benefits-title {
        font-size: 1.125rem;
    }
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

.hero-benefits-disclaimer {
    font-size: 0.75rem;
    color: #BFDBFE;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .hero-cta {
        gap: 1rem;
    }
}

.hero-cta-button {
    background-color: #10B981;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.25rem;
        gap: 0.75rem;
        width: auto;
    }
}

.hero-cta-button:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.hero-phone-icon {
    width: 1.25rem;
    height: 1.25rem;
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .hero-phone-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.hero-cta-button span {
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-cta-button span {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta-button span {
        font-size: 1.125rem;
    }
}

.hero-cta-subtitle {
    color: #BFDBFE;
    text-align: center;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-cta-subtitle {
        text-align: left;
        font-size: 1rem;
    }
}

.hero-visual {
    position: relative;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .hero-visual {
        margin-top: 0;
    }
}

.hero-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

@media (min-width: 1024px) {
    .hero-card {
        border-radius: 1.5rem;
        padding: 2rem;
        transform: rotate(2deg);
    }
}

.hero-card:hover {
    transform: rotate(0deg);
}

.hero-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hero-card-inner {
        gap: 1.5rem;
    }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .hero-card-header {
        gap: 0.75rem;
    }
}

.shield-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563EB;
}

@media (min-width: 1024px) {
    .shield-icon {
        width: 2rem;
        height: 2rem;
    }
}

.hero-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 1024px) {
    .hero-card-header h3 {
        font-size: 1.5rem;
    }
}

.hero-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .hero-card-benefits {
        gap: 0.75rem;
    }
}

.hero-card-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .hero-card-benefit {
        gap: 0.75rem;
    }
}

.benefit-dot {
    width: 1rem;
    height: 1rem;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .benefit-dot {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.benefit-dot::after {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: white;
    border-radius: 50%;
}

@media (min-width: 1024px) {
    .benefit-dot::after {
        width: 0.5rem;
        height: 0.5rem;
    }
}

.hero-card-benefit span {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .hero-card-benefit span {
        font-size: 1rem;
    }
}

.hero-card-disclaimer {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0;
    background-color: white;
}

@media (min-width: 640px) {
    .benefits-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .benefits-section {
        padding: 6rem 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.benefit-card-content {
    padding: 1rem;
}

@media (min-width: 640px) {
    .benefit-card-content {
        padding: 2rem;
    }
}

.benefit-card-content > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .benefit-card-content > div {
        gap: 1rem;
    }
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .benefit-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
    }
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

@media (min-width: 640px) {
    .benefit-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 640px) {
    .benefit-title {
        font-size: 1.5rem;
    }
}

.benefit-description {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .benefit-description {
        font-size: 1rem;
    }
}

.benefit-highlight {
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .benefit-highlight {
        padding: 0.75rem;
    }
}

.benefit-highlight p {
    color: #1D4ED8;
    font-weight: 600;
    font-size: 0.75rem;
    margin: 0;
}

@media (min-width: 640px) {
    .benefit-highlight p {
        font-size: 0.875rem;
    }
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 2rem;
    background: linear-gradient(90deg, #EFF6FF, #DBEAFE);
    border-radius: 1rem;
    padding: 1rem;
}

@media (min-width: 640px) {
    .trust-indicators {
        margin-top: 4rem;
        border-radius: 1.5rem;
        padding: 2rem;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .trust-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }
}

.trust-label {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .trust-label {
        font-size: 1rem;
    }
}

.trust-disclaimer {
    font-size: 0.75rem;
    color: #6B7280;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .trust-disclaimer {
        margin-top: 1rem;
    }
}

/* Call To Action Section */
.cta-section {
    padding: 2rem 0;
    background: linear-gradient(90deg, #059669, #047857, #065f46);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .cta-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 5rem 0;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(45deg, white 25%, transparent 25%), linear-gradient(-45deg, white 25%, transparent 25%);
    background-size: 40px 40px;
}

.cta-container {
    position: relative;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-container {
        padding: 0 2rem;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-content {
        gap: 2rem;
    }
}

.cta-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cta-header {
        gap: 1rem;
    }
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-title-highlight {
    display: block;
    color: #FDE047;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .cta-title-highlight {
        margin-top: 0;
    }
}

.cta-subtitle {
    font-size: 1rem;
    color: #BBFFF1;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .cta-benefit {
        gap: 0.75rem;
        padding: 1rem;
    }
}

.cta-benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #FDE047;
}

@media (min-width: 640px) {
    .cta-benefit-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.cta-benefit span {
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .cta-benefit span {
        font-size: 1rem;
    }
}

.cta-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-main {
        gap: 1.5rem;
    }
}

.cta-button {
    background-color: #FDE047;
    color: #111827;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.5rem;
        gap: 1rem;
        width: auto;
    }
}

.cta-button:hover {
    background-color: #FACC15;
    transform: scale(1.05);
}

.cta-phone-icon {
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce 1s infinite;
}

@media (min-width: 640px) {
    .cta-phone-icon {
        width: 2rem;
        height: 2rem;
    }
}

.cta-button span {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .cta-button span {
        font-size: 1.25rem;
    }
}

.cta-additional {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-call-text {
    color: #BBFFF1;
    font-size: 1rem;
    padding: 0 1rem;
    margin: 0;
}

@media (min-width: 640px) {
    .cta-call-text {
        font-size: 1.125rem;
    }
}

.cta-call-text span {
    font-weight: 700;
}

.cta-guide {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-guide {
        padding: 1rem;
    }
}

.cta-guide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #FDE047;
    font-weight: 600;
}

.gift-icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .gift-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.cta-guide-inner span {
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .cta-guide-inner span {
        font-size: 1rem;
    }
}

.cta-disclaimer {
    font-size: 0.75rem;
    color: #BBFFF1;
    padding: 0 1rem;
    margin: 0;
}

.cta-trust {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-trust {
        padding: 1.5rem;
    }
}

.cta-trust-text {
    color: #BBFFF1;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-trust-text {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

.cta-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .cta-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        font-size: 0.875rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

@media (min-width: 640px) {
    .testimonials-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.testimonial-content {
    padding: 1rem;
    position: relative;
}

@media (min-width: 640px) {
    .testimonial-content {
        padding: 2rem;
    }
}

.quote-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    color: #DBEAFE;
}

@media (min-width: 640px) {
    .quote-icon {
        top: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
}

.testimonial-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .testimonial-inner {
        gap: 1.5rem;
    }
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #FBBF24;
    fill: #FBBF24;
}

@media (min-width: 640px) {
    .star-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.testimonial-text {
    color: #374151;
    line-height: 1.6;
    font-size: 1rem;
    font-style: italic;
    padding-right: 1.5rem;
    margin: 0;
}

@media (min-width: 640px) {
    .testimonial-text {
        font-size: 1.125rem;
    }
}

.testimonial-highlight {
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .testimonial-highlight {
        padding: 1rem;
    }
}

.testimonial-highlight p {
    color: #1D4ED8;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .testimonial-highlight p {
        font-size: 1.125rem;
    }
}

.testimonial-customer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F3F4F6;
}

@media (min-width: 640px) {
    .testimonial-customer {
        gap: 1rem;
        padding-top: 1rem;
    }
}

.customer-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 640px) {
    .customer-image {
        width: 4rem;
        height: 4rem;
    }
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .customer-name {
        font-size: 1rem;
    }
}

.customer-age {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
}

.customer-location {
    color: #9CA3AF;
    font-size: 0.75rem;
    margin: 0;
}

@media (min-width: 640px) {
    .customer-location {
        font-size: 0.875rem;
    }
}

/* Testimonials Social Proof */
.testimonials-social-proof {
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .testimonials-social-proof {
        margin-top: 4rem;
    }
}

.social-proof-inner {
    background-color: #2563EB;
    color: white;
    border-radius: 1rem;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .social-proof-inner {
        padding: 2rem;
    }
}

.social-proof-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .social-proof-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .social-proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-proof-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDE047;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .social-proof-number {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }
}

.social-proof-label {
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .social-proof-label {
        font-size: 1rem;
    }
}

.social-proof-disclaimer {
    font-size: 0.75rem;
    color: #BFDBFE;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .social-proof-disclaimer {
        margin-top: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background-color: white;
}

@media (min-width: 640px) {
    .faq-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 6rem 0;
    }
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .faq-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-container {
        padding: 0 2rem;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .faq-list {
        gap: 1rem;
    }
}

.faq-item {
    border: 2px solid #F3F4F6;
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #BFDBFE;
}

.faq-content {
    padding: 0;
}

.faq-button {
    width: 100%;
    text-align: left;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .faq-button {
        padding: 1.5rem;
    }
}

.faq-button:hover {
    background-color: #F9FAFB;
}

.faq-question {
    color: #111827;
    font-weight: 600;
    font-size: 0.875rem;
    padding-right: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 640px) {
    .faq-question {
        font-size: 1.125rem;
        padding-right: 1rem;
    }
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

@media (min-width: 640px) {
    .faq-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    display: none;
}

@media (min-width: 640px) {
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .faq-answer p {
        font-size: 1rem;
    }
}

.faq-footer {
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .faq-footer {
        margin-top: 3rem;
    }
}

.faq-footer-text {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .faq-footer-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.faq-tip {
    background-color: #EFF6FF;
    border: 2px solid #BFDBFE;
    border-radius: 1rem;
    padding: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .faq-tip {
        padding: 1.5rem;
    }
}

.faq-tip-text {
    color: #1E40AF;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 1rem;
    margin: 0;
}

@media (min-width: 640px) {
    .faq-tip-text {
        font-size: 1.125rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #111827;
    color: white;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .footer-section {
        padding: 4rem 0;
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-column {
        gap: 1rem;
    }
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-shield {
    width: 1.5rem;
    height: 1.5rem;
    color: #60A5FA;
}

@media (min-width: 640px) {
    .footer-shield {
        width: 2rem;
        height: 2rem;
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 1.5rem;
    }
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 1rem;
    }
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-heading {
        font-size: 1.125rem;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .footer-contact {
        gap: 0.75rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .contact-item {
        gap: 0.75rem;
    }
}

.contact-icon {
    width: 1rem;
    height: 1rem;
    color: #60A5FA;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.contact-link {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .contact-link {
        font-size: 1rem;
    }
}

.contact-link:hover {
    color: #60A5FA;
}

.contact-text {
    color: #9CA3AF;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-text {
        font-size: 1rem;
    }
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .footer-services {
        gap: 0.5rem;
    }
}

.service-item {
    color: #9CA3AF;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .service-item {
        font-size: 1rem;
    }
}

.footer-cta-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-cta-text {
        font-size: 1rem;
    }
}

.footer-cta-button {
    background-color: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}

@media (min-width: 640px) {
    .footer-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.footer-cta-button:hover {
    background-color: #047857;
}

.footer-phone-icon {
    width: 0.75rem;
    height: 0.75rem;
}

@media (min-width: 640px) {
    .footer-phone-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

.footer-bottom-content {
    display: flex;
    flex-col;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        gap: 1rem;
    }
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.75rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-copyright {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #6B7280;
    text-align: center;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .footer-disclaimer {
        margin-top: 1rem;
    }
}

.footer-disclaimer p {
    margin: 0;
    line-height: 1.4;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Responsive Improvements */
@media (max-width: 639px) {
    .hero-card {
        margin: 0 1rem;
    }
    
    .benefit-card,
    .testimonial-card {
        margin: 0 0.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Focus states for accessibility */
button:focus,
.contact-link:focus,
.footer-link:focus {
    outline: 2px solid #60A5FA;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-section,
    .cta-section,
    .footer-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-cta-button,
    .cta-button,
    .footer-cta-button {
        display: none;
    }
}