/* Hero Section - Completely Redesigned */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 3.5rem;
    overflow: hidden;
    background: #0f172a;
}

.hero-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-svg-background {
    width: 100%;
    height: 100%;
    display: block;
}

.animated-circle {
    filter: blur(40px);
}

.speed-lines {
    opacity: 0.6;
}

.gear-icon {
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-section h1 {
    margin: 0;
    padding: 0;
}

.hero-title-main {
    display: inline-block;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Search Form - Premium Design */
.vin-search-form {
    max-width: 750px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.625rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-container:focus-within {
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.35), 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
    background: white;
}

.search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: #64748b;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-container:focus-within .search-icon-wrapper {
    color: #2563eb;
}

.search-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.vin-input {
    flex: 1;
    padding: 1.125rem 0.75rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.0625rem;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.vin-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: 0;
}

.vin-input:focus {
    outline: none;
}

.search-button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 1.125rem 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.search-button:hover::before {
    left: 100%;
}

.search-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-button:active {
    transform: translateY(0);
}

.search-button span {
    position: relative;
    z-index: 1;
}

.search-button svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.search-button:hover svg {
    transform: translateX(3px);
}

/* API Region Switch */
.api-region-switch-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.api-region-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.api-region-label-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
}

.api-region-toggle {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.api-region-toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.api-region-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.api-region-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.api-region-text {
    font-size: 0.875rem;
}

.api-region-toggle input[type="radio"]:checked + .api-region-option {
    color: white;
    background: rgba(37, 99, 235, 0.3);
}

.api-region-slider {
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
    width: calc(50% - 0.25rem);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.api-region-toggle input[type="radio"]#api-region-eu-other:checked ~ .api-region-slider {
    transform: translateX(100%);
}

.api-region-toggle input[type="radio"]#api-region-us-ca:checked ~ .api-region-slider {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .api-region-switch-container {
        margin-top: 0.75rem;
    }
    
    .api-region-label {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .api-region-label-text {
        font-size: 0.875rem;
    }
    
    .api-region-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .api-region-option {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.75rem;
    }
    
    .api-region-text {
        font-size: 0.8125rem;
    }
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.error-message svg {
    flex-shrink: 0;
    color: #ef4444;
}

/* Hero Stats - Premium Design */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Section Header - Shared Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section - Modern Redesign */
.features-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
}

.features-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #93c5fd;
}

.feature-icon-wrapper {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
}

.feature-image {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    height: 200px;
    position: relative;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img,
.feature-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card:hover .feature-image img,
.feature-card:hover .feature-image svg {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.9375rem;
}

.feature-list li svg {
    flex-shrink: 0;
    color: #10b981;
    width: 18px;
    height: 18px;
}

/* How It Works Section - Modern Redesign */
.how-it-works-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.how-it-works-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #93c5fd;
}

.step-number-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.step-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
    margin:auto;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.9375rem;
}

.step-details li svg {
    flex-shrink: 0;
    color: #10b981;
    width: 16px;
    height: 16px;
}

/* Testimonials Section - Modern Redesign */
.testimonials-section {
    padding: 6rem 1.5rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
}

.testimonials-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: start;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: #6ee7b7;
}

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

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.125rem;
    line-height: 1;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    opacity: 0.6;
}

.testimonial-quote {
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.7;
    font-size: 0.9375rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #10b981;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.testimonial-image-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    flex-shrink: 0;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 2rem;
    border: 2px solid #86efac;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.badge-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.trust-badge span {
    color: #059669;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1rem 1rem;
        min-height: auto;
    }
    
    .hero-title-main {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .hero-text {
        margin-bottom: 0.75rem;
    }
    
    .vin-search-form {
        margin-bottom: 0.75rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        border-radius: 0.875rem;
    }
    
    .search-icon-wrapper {
        display: none;
    }
    
    .vin-input {
        padding: 0.875rem;
        text-align: center;
        font-size: 0.9375rem;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 0.5rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        padding: 0.375rem 0.125rem;
        gap: 0.125rem;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0;
    }
    
    .stat-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .stat-number {
        font-size: 1.125rem;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem 1.25rem;
    }
    
    .hero-title-main {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-text {
        margin-bottom: 0.875rem;
    }
    
    .vin-search-form {
        margin-bottom: 0.875rem;
    }
    
    .search-container {
        padding: 0.625rem;
        gap: 0.5rem;
    }
    
    .vin-input {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .search-button {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
        margin-top: 0.5rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 0.375rem 0.125rem;
        gap: 0.125rem;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-section,
    .how-it-works-section,
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-section .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-icon,
    .step-icon {
        width: 3rem;
        height: 3rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-svg-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: auto;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #2563eb;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #1e40af;
}

.cta-section .btn-primary:active {
    transform: translateY(-1px);
}

.cta-section .btn-primary i,
.cta-section .btn-primary svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
}


.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    opacity: 0.9;
}
