/* Homepage Specific Styles */

/* Announcement Bar - Conversion Optimized */
.announcement-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FFB800 50%, #FF6B35 100%);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement-text {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.announcement-highlight {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFB800;
    background: rgba(255, 184, 0, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 184, 0, 0.4);
}

.announcement-offer {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.announcement-detail {
    font-size: 0.95rem;
    font-weight: 400;
    color: #d0d0d0;
}

.announcement-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.announcement-btn:hover {
    background: #FFB800;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
}

.announcement-btn svg {
    transition: transform 0.3s ease;
}

.announcement-btn:hover svg {
    transform: translateX(4px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #14a8c4 0%, #0e7a8f 100%);
    overflow: hidden;
    min-height: auto;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.hero-text {
    color: white;
    min-height: 250px;
}

.slide-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero button styling */
.hero-slider .btn-primary {
    background: #FF6B35;
    color: white;
    border: 2px solid #FF6B35;
    font-weight: 600;
}

.hero-slider .btn-primary:hover {
    background: #E85A2A;
    border-color: #E85A2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* White button variant for hero */
.btn-white {
    background: white;
    color: #14a8c4;
    border: 2px solid white;
    font-weight: 600;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

/* Slider Navigation */
.slider-nav {
    position: relative;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.5);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255,255,255,0.6);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: white;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.badge-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.badge-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.badge-content span {
    color: #666;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-card.reverse {
    direction: rtl;
}

.benefit-card.reverse > * {
    direction: ltr;
}

.benefit-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #f5f5f5;
    min-height: 468px;
    max-height: 546px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

/* Card 03 - Fill container completely */
.benefit-card:last-child .benefit-image {
    position: relative;
    align-items: center;
    padding: 0;
}

.benefit-card:last-child .benefit-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.benefit-content {
    padding: 20px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 10px;
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(20, 168, 196, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Connector arrows between steps */
.steps-grid::before,
.steps-grid::after {
    content: '→';
    position: absolute;
    top: 180px;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 300;
    opacity: 0.3;
    z-index: 1;
}

.steps-grid::before {
    left: calc(33.333% - 20px);
}

.steps-grid::after {
    left: calc(66.666% - 20px);
}

.step {
    text-align: center;
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(20, 168, 196, 0.3);
}

.step:hover .step-image {
    transform: scale(1.05);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d8ca0 100%);
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 25px;
    box-shadow: 0 8px 20px rgba(20, 168, 196, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.2;
}

.step-image {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8fa 0%, #ffffff 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(20, 168, 196, 0.1);
}

.step-image svg {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 180px;
    transition: transform 0.4s ease;
}

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

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 700;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.cta-center {
    text-align: center;
    margin-top: 20px;
}

/* Features Comparison */
/* Features Comparison - Modern Design */
.features-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.comparison-header-desktop {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d8ca0 100%);
    padding: 0;
}

.comparison-label {
    padding: 25px 30px;
}

.comparison-column-header {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: white;
    position: relative;
    min-height: 100px;
}

.comparison-column-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.comparison-column-header.highlight-column {
    background: rgba(255, 255, 255, 0.15);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    border-right: 3px solid rgba(255, 255, 255, 0.3);
}

.header-badge {
    background: #FF6B35;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.comparison-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.comparison-item:hover {
    background: #fafafa;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-label {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.comparison-value {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 0.95rem;
    color: #555;
}

.comparison-value.highlight-column {
    background: linear-gradient(135deg, #e8f8fa 0%, #f0fbfc 100%);
    border-left: 3px solid #e0f5f7;
    border-right: 3px solid #e0f5f7;
    font-weight: 600;
    color: #0a5f6d;
}

.comparison-value svg {
    flex-shrink: 0;
}

.icon-check,
.icon-cross,
.icon-info {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Features Grid - Modern Card Design */
.features-grid-section {
    padding: 100px 0;
    background: #fafbfc;
}

.features-grid-section .section-header {
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8f8fa 0%, #f0fbfc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-card-content {
    flex: 1;
}

.feature-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.feature-card-content p {
    color: #5f6368;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5a7a 100%);
    color: white;
    text-align: center;
}

.trust-badge-large {
    margin-bottom: 30px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.trust-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.8;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat strong {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat span {
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Final CTA - Mobile First */
.final-cta {
    padding: 60px 0;
    background: #f8f9fa;
}

.final-cta-content {
    max-width: 100%;
}

.final-cta-header {
    text-align: center;
    margin-bottom: 40px;
}

.final-cta-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.final-cta-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.final-cta-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.final-cta-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.final-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.final-cta-card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0e7a8f 100%);
    color: white;
}

.final-cta-card-primary:hover {
    box-shadow: 0 8px 24px rgba(20, 168, 196, 0.3);
}

.final-cta-card-secondary {
    border-color: #e8eaed;
}

.final-cta-card-secondary:hover {
    border-color: var(--primary);
}

.final-cta-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.final-cta-card-primary .final-cta-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.final-cta-card-secondary .final-cta-card-icon {
    background: linear-gradient(135deg, #e8f8fa 0%, #f0fbfc 100%);
    color: var(--primary);
}

.final-cta-card-content {
    flex: 1;
}

.final-cta-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.final-cta-card-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.final-cta-card-secondary .final-cta-card-content h3 {
    color: #1a1a1a;
}

.final-cta-card-secondary .final-cta-card-content p {
    color: #666;
}

.final-cta-card-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.final-cta-card:hover .final-cta-card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.final-cta-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.final-cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.final-cta-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Tablet and Desktop */
@media (min-width: 640px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta-header h2 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

    .final-cta-header p {
        font-size: 1.1rem;
    }

    .final-cta-cards {
        gap: 20px;
    }

    .final-cta-card {
        padding: 28px;
    }

    .final-cta-card-icon {
        width: 64px;
        height: 64px;
    }

    .final-cta-card-content h3 {
        font-size: 1.3rem;
    }

    .final-cta-card-content p {
        font-size: 1rem;
    }

    .final-cta-badges {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .final-cta-badge {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .final-cta {
        padding: 100px 0;
    }

    .final-cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .final-cta-header {
        margin-bottom: 48px;
    }

    .final-cta-header h2 {
        font-size: 2.5rem;
    }

    .final-cta-cards {
        margin-bottom: 40px;
    }
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
    .hero-slider {
        padding: 40px 0 50px;
    }

    .slider-container {
        min-height: 380px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 380px;
    }

    /* Feature cards on tablets */
    .features-grid {
        gap: 18px;
    }

    .feature-card {
        padding: 22px;
    }

    /* Ensure steps grid stays 3 columns on tablet */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
    }
}

/* Tablet Responsive */
/* Tablet landscape (iPad Pro, iPad landscape) */
@media (max-width: 1024px) and (min-width: 769px) {
    .steps-grid {
        gap: 50px;
        padding: 0 30px;
    }

    .steps-grid::before {
        left: calc(33.333% - 15px);
        font-size: 2.5rem;
    }

    .steps-grid::after {
        left: calc(66.666% - 15px);
        font-size: 2.5rem;
    }

    .step {
        padding: 35px 20px;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .step h3 {
        font-size: 1.4rem;
    }

    .step p {
        font-size: 0.95rem;
    }
}

/* Desktop/Mobile Toggle - Default desktop shows grid, hides slider */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.steps-grid-wrapper {
    width: 100%;
    position: relative;
}

/* Mobile Steps Slider */
.steps-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    padding-top: 60px;
    padding-bottom: 20px;
}

.steps-slider-wrapper {
    overflow: visible;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.steps-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.steps-slider-track:active {
    cursor: grabbing;
}

.step-slide {
    flex: 0 0 calc(100% - 80px);
    min-width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    box-sizing: border-box;
}

/* Swipe Hint */
.swipe-hint {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: swipeHintPulse 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.swipe-hint svg {
    color: var(--primary);
}

@keyframes swipeHintPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-5px);
    }
}

/* Slider Indicators */
.steps-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0;
}

.step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.step-indicator:hover {
    background: #a0a0a0;
    transform: scale(1.2);
}

.step-indicator.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.step-indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    opacity: 0.2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Announcement Bar Mobile */
    .announcement-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 16px;
        gap: 14px;
    }

    .announcement-text {
        justify-content: center;
        gap: 8px;
    }

    .announcement-highlight {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .announcement-offer {
        font-size: 1.1rem;
    }

    .announcement-detail {
        font-size: 0.85rem;
    }

    .announcement-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-slider {
        padding: 30px 0 40px;
    }

    .slider-container {
        min-height: auto;
        padding-bottom: 0;
    }

    /* Change from absolute to relative positioning on mobile for dynamic height */
    .slide {
        position: relative;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.6s ease-in-out;
        margin-bottom: 0;
    }

    .slide.active {
        opacity: 1;
        height: auto;
        overflow: visible;
        margin-bottom: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-text {
        text-align: center;
    }

    .slide-badge {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 13px 22px;
        font-size: 0.9rem;
    }

    .hero-image {
        order: -1;
        padding: 0;
        margin-bottom: 0;
    }

    .hero-image img {
        max-width: 250px;
    }

    .slider-nav {
        margin-top: 30px;
        gap: 15px;
        position: relative;
    }

    .slider-prev,
    .slider-next {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 32px;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .badge {
        flex-direction: column;
        text-align: center;
    }

    .benefits-section,
    .how-it-works,
    .features-comparison,
    .features-grid-section,
    .trust-section,
    .faq-section,
    .final-cta {
        padding: 60px 0;
    }

    .benefit-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card.reverse {
        direction: ltr;
    }

    .benefit-image {
        min-height: 300px;
    }

    /* Mobile Comparison Table */
    /* Hide desktop header on mobile */
    .comparison-header-desktop {
        display: none;
    }

    .comparison-wrapper {
        padding: 20px;
        box-shadow: none;
        background: transparent;
    }

    /* Comparison items as cards on mobile */
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
        margin-bottom: 20px;
        border-bottom: none;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .comparison-label {
        padding: 16px 20px;
        font-size: 1.05rem;
        color: white;
        background: linear-gradient(135deg, var(--primary) 0%, #0d8ca0 100%);
        border-bottom: none;
        margin-bottom: 0;
        text-align: center;
        font-weight: 700;
    }

    /* Mobile comparison grid for values */
    .comparison-item > .comparison-value {
        display: grid;
        grid-template-columns: 40px 1fr;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        border-left: none;
        border-right: none;
        background: transparent !important;
        font-size: 0.95rem;
    }

    .comparison-value.highlight-column {
        background: #e8f8fa !important;
        border-left: 4px solid var(--primary);
        font-weight: 600;
        color: #0a5f6d;
    }

    .comparison-value:not(.highlight-column) {
        background: #f5f5f5 !important;
        border-left: 4px solid #ccc;
        color: #666;
    }

    /* Icon positioning on mobile */
    .comparison-value svg {
        width: 28px;
        height: 28px;
    }

    /* Add labels before each value */
    .comparison-value.highlight-column::before {
        content: '✓ Click';
        position: absolute;
        left: 20px;
        top: -2px;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }

    .comparison-value:not(.highlight-column)::before {
        content: '✗ Traditioneel';
        position: absolute;
        left: 20px;
        top: -2px;
        font-size: 0.7rem;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }

    .comparison-value {
        position: relative;
        padding-top: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        padding: 25px 0 35px;
    }

    .hero-grid {
        gap: 16px;
    }

    .slide-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .hero-image img {
        max-width: 220px;
    }

    .hero-cta {
        gap: 8px;
    }

    .hero-cta .btn {
        max-width: 100%;
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .slider-nav {
        margin-top: 25px;
        gap: 12px;
    }

    .slider-prev,
    .slider-next {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
        gap: 16px;
    }

    .feature-card-icon {
        width: 48px;
        height: 48px;
    }

    .feature-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-card-content h3 {
        font-size: 1.05rem;
    }

    .feature-card-content p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile - Critical for compact phones */
@media (max-width: 360px) {
    .hero-slider {
        padding: 20px 0 30px;
    }

    .hero-grid {
        gap: 12px;
    }

    .slide-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .hero-text h1 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .hero-image img {
        max-width: 180px;
    }

    .hero-cta .btn {
        font-size: 0.8rem;
        padding: 11px 18px;
    }

    .slider-nav {
        margin-top: 20px;
        gap: 10px;
    }

    .slider-prev,
    .slider-next {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .dot.active {
        width: 24px;
    }

    /* Keep desktop grid hidden on mobile - slider shows instead */
    .steps-grid-wrapper {
        display: none !important;
    }

    /* Mobile slider steps styling */
    .mobile-only .step {
        padding: 30px 20px;
    }

    .mobile-only .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: -45px auto 20px;
    }

    .mobile-only .step-image {
        height: 200px;
        padding: 20px;
    }

    .mobile-only .step h3 {
        font-size: 1.3rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-benefits {
        justify-content: center;
    }

    .cta-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 168, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #333;
}

.cta-benefits svg {
    flex-shrink: 0;
    color: #14a8c4;
    stroke-width: 3;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #14a8c4 0%, #0e7a8f 100%);
    box-shadow: 0 4px 20px rgba(20, 168, 196, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(20, 168, 196, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 30px;
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.cta-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* Gallery Carousel */
.gallery-carousel {
    padding: 80px 0;
    background: #f8f9fa;
}

.carousel-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 auto;
    max-height: 300px;
}

.carousel-slide picture,
.carousel-slide img {
    height: 300px;
    width: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.carousel-btn {
    display: none;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-carousel {
        padding: 60px 0;
    }

    .carousel-slide picture,
    .carousel-slide img {
        height: 250px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide picture,
    .carousel-slide img {
        height: 200px;
    }

    .carousel-track {
        gap: 10px;
    }
}
