* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: "tenon", sans-serif;
    background-color: #EFF0F3;
    color: #212529;
}


/* Hero Section */
.hero-section {
    padding: 0;
}

/* Hero Video */
.hero-video-wrapper {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 0;
    aspect-ratio: 16 / 9;
    background: #3a3f47;
    cursor: pointer;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play/pause overlay button */
.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.4);
    z-index: 10;
    transition: all 0.35s ease;
    cursor: pointer;
    padding: 0;
}

.play-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn.is-playing {
    opacity: 0;
    pointer-events: none;
}

.hero-video-wrapper:hover .play-btn.is-playing {
    opacity: 1;
    pointer-events: auto;
}

.play-btn svg {
    margin-left: 3px;
}

.play-btn.is-playing svg {
    margin-left: 0;
}


/* Features Section */
.features-section {
    margin-bottom: 64px;
}

.features-section .container {
    background-color: #fff;
    padding: 40px 24px;
    max-width: 1200px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #E50019;
    text-transform: uppercase;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 8px;
}

h2.section-title {
    font-size: 32px;
}

.separator {
    width: 56px;
    color: #E50019;
    border-radius: 2px;
    max-width: 150px;
    padding-bottom: 12px;
}

.container.intro .btn {
    max-width: 320px;
    margin-top: 8px;
}

/* Feature Cards */
.container.why {
    padding: 0 24px 64px 24px;
    background-color: #F9F9F9;
}

.container.why-first {
    padding-top: 64px;
}


.feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border: 1px solid #EFF0F3;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
    border: 1px solid #EFF0F3;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    background-color: #FFF4F5;
    border: 1px solid #FAE6E7;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
}

.feature-card h4 span {
    display: block;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 0;
    color: #5A6779;
}

.feature-card .limit-time {
    margin-top: auto;
    font-size: 14px;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(225deg, #8E96A6 0%, #7D8596 5%, #6B7589 10%, #586378 16%, #47526A 22%, #3D4558 30%, #303A4E 38%, #252C3E 50%, #1E2538 65%, #1A1F30 100%);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
}

.cta-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.35;
}

.btn-primary {
    background-color: #E50019 !important;
    border-color: #E50019 !important;
    box-shadow: 0 0 20px rgba(236, 28, 36, 0.5);
    border-radius: 99px !important;
    font-size: 16px;
    width: 100%;
    padding: 12px 8px;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #FF0000 !important;
    border-color: #FF0000 !important;
}

.banner {
    position: relative;
    background: linear-gradient(180deg, #37425B 60%, #546180 100%);
    padding: 56px 48px;
    overflow: hidden;
    text-align: center;
    color: #fff;
} 

.banner .btn {
    max-width: 320px;
    margin-top: 12px;
}

.banner-feather {
    position: absolute;
    right: 80px;
    top: 52%;
    transform: translateY(-50%);
    width: 90px;
    height: 206px;
    background-image: url('img/feather.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.romania {
    position: absolute;
    left: 24px;
    bottom: 24px;
    span {
        color: #E50019;
    }
}

.features-section .details {
    padding: 24px;
    color: #5A6779;
    border-radius: 0 0 16px 16px; 
}

.features-section .details p:last-child {
    margin-bottom: 0;
}

.footer a {
    color: #212529;
}

.footer a:hover {
    text-decoration: none;
}




/*  Responsive  */
@media (max-width: 991.98px) {
    .hero-video-wrapper {
        aspect-ratio: 16 / 9;
    }

    .section-title {
        font-size: 32px;
    }
    .features-section .container {
        padding: 40px 16px;
    }
    .features-section .container.why-first {
        padding: 40px 16px 16px 16px;
    }
    
    .feature-card {
        padding: 16px;
    }
    h2.section-title {
        font-size: 24px;
    }
    .feature-card h4 span {
        display: inline;
    }

}


@media (max-width: 767.98px)  {
    .benefits .benefit-card {
        border-right: none;
        border-bottom: 1px solid #E2E5E9;
        padding-bottom: 16px;
        &.last {
            padding-bottom: 0;
        }
    }
    .feature-card {
        padding: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .banner .btn, .container.intro .btn {
        max-width: 100%;
    }
    .romania {
        position: relative;
        padding-top: 16px;
        left: auto;
        bottom: auto;
    }
    .banner-feather {
        right: 8px;
        top: 62%;
    }
    .separator {
        padding-bottom: 4px;
    }
    .banner .next-line {
        display: block;
    }
}