.hero {
    padding: 40px 24px;
    background: linear-gradient(180deg, #E6F0FF 0%,#EEF2F9 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content { flex: 1; }
.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    font-family: var(--geom-font);
}

.hero-title span {
    color: var(--danger);
    font-family: var(--fredericka-font);
    text-transform: uppercase;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 255, 0.15);
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    font-family: var(--lexend-font);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--danger);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    margin-top: 8px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 60px;
    left: 20px;
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    bottom: 20px;
    right: 60px;
    animation-delay: 1s;
}

.features-section {
    padding: 80px 24px;
    background-color: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-desc {
    color: var(--gray);
    font-size: 15px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* === SERVICES ===*/
.services-section {
    padding: 40px 24px;
    background: linear-gradient(180deg,#EEF2F9 0%, #E2E8F6 100%);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: transform 0.2s ease-in;
    text-decoration: none;
}

.service-card:hover { transform: scale(1.05); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-image {
    height: 150px;
    width: 100%;
    padding: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    object-position: top;
}

.card-content {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.card-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.card-btn:hover {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-dark);
}



/* === SLIDESHOW === */
.slideshow-section { padding: 80px 24px; }
.slideshow-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 280px;
    position: relative;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }
.slide-content {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 24px;
}

.slide-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot.active {
    background: var(--white);
    transform: scale(1.2);
}


/* === STEPS === */
.steps {
    padding: 10px 24px;
    background: linear-gradient(to bottom, #fafbfc, #ffffff);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: #3b82f6;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    z-index: -1;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.step-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.step-card:hover .step-badge {
    background: #3b82f6;
    color: #ffffff;
}

.step-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #eef2ff, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    color: #cbd5e1;
    z-index: 2;
}

.step-connector svg {
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 1024px) {
    .steps-grid { gap: 24px; }
    .step-card { padding: 32px 24px; }
    .step-connector { right: -28px; }
    .step-connector svg { width: 24px; }
}

@media (max-width: 850px) {
    .steps { padding: 60px 20px; }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .step-card {
        text-align: center;
        padding: 48px 32px;
    }
    
    .step-icon { margin: 0 auto 24px; }
    .step-badge {
        top: 16px;
        right: 16px;
    }

    .step-connector { display: none; }
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 24px;
        background: linear-gradient(to bottom, #cbd5e1, transparent);
    }
}

@media (max-width: 480px) {
    .steps { padding: 40px 16px; }
    .section-header { margin-bottom: 40px; }    
    .section-subtitle { font-size: 16px; }
    .step-card { padding: 40px 20px; }
    .step-icon {
        width: 72px;
        height: 72px;
    }
    
    .step-icon img {
        width: 36px;
        height: 36px;
    }
    
    .step-card h3 { font-size: 20px; }
    .step-card p { font-size: 14px; }
}



/* Responsive */
@media (max-width: 1222px){
    .hero-container { gap: 44px; }
    .hero-title, .stat-number  { font-size: 35px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .floating-card:nth-child(1) {
        top: 0;
        right: 10px;
    }

    .floating-card:nth-child(2) {
        bottom: 20px;
        left: 0;
    }

    .floating-card:nth-child(3) {
        bottom: 150px;
        left: 100px;
    }
}



@media (max-width: 735px) {
    .hero-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .hero-content { align-items: center; }
    .hero-title { font-size: 32px; }
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
    
    .stat-number { font-size: 28px; }
    .hero-image{ width: 100%; }
    .hero-image-container {
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .floating-card {
        position: static;
        animation: none;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
}


@media (max-width: 640px){
    .hero-image-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .hero-image-container > div:nth-child(3){ grid-column: span 2; }
    .slide{ padding: 20px; }
    .slide-title{ text-align: center; }
    .slide-title{ font-size: 25px; }
    .slide-desc{ font-size: 16px; }
}


@media (max-width: 500px){
    .slideshow-container { height: 500px; }
    .hero-image{ display: none; }
}

.app-download-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.app-download-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.app-download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.app-content { color: white; }
.app-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-note {
    font-size: 14px;
    opacity: 0.7;
}

.app-mock{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.app-mock .btn{
    padding: 15px;
    border: 1px solid var(--dark);
}

.qr-code {
    text-align: center;
    color: white;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-code p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .app-download-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .app-download-section { padding: 60px 0; }
    .app-title { font-size: 32px; }
    .app-description { font-size: 16px; }
}