body {
    margin: 0;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
    color: #2f2f2f;
    background-color: white;
    line-height: 1.6;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body p, li{
    font-family: 'Museo500-Regular', Helvetica, Arial, sans-serif;
    color: #405665;
}
h1, h2, h3, h4 {
    font-family: 'Museo500-Regular', Helvetica, Arial, sans-serif;
    color: #405665;
    margin-top: 0;
}

a {
    color: #2aa9e0;
    text-decoration: none;
}
a:hover {
    color: #e22a25;
}

/* === HEADER === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #405665;
}

nav {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    height: 70px;
    width: auto;
    margin: 0 30px;
}

nav a {
    margin: 0 4px;
    text-decoration: none;
    font-weight: 900;
    color: #405665;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    white-space: nowrap;
}

nav a:hover {
    color: rgba(64, 86, 101, 0.8);
}

.flag {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 2px;
    margin-bottom: 2px;
    border-radius: 2px;
}

@media (max-width: 900px) {

    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        border-top: 1px solid #eee;
        transition: all .3s ease;
    }

    nav.open {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    nav a {
        margin: 8px 0;
        font-size: 18px;
    }
}

/* === HERO === */
.hero {
    width: 100%;
    background-color: #f3f8fe;
    padding: 140px 0 200px;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}


.hero h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 2rem;
    font-size: 30px;
}

.hero-text{
    max-width: 500px;
    margin-top: 5px;
    margin-bottom: 4rem;
}

.btn-primary {
    background: #f8c94d;
    border: none;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #f6b939;
    transform: translateY(-2px);
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === CARDS === */
.cards {
    padding: 100px 20px;
}

.card-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: -130px auto 0;
    position: relative;
    z-index: 5;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.card a {
    font-weight: 700;
}

.card a:hover {
}

@media (max-width: 900px) {
    .hero {
        padding: 100px 0 120px;
    }

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

    .hero-video {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/* === STATISTICS === */
.stats {
    background: #f8c94d;
    border-radius: 16px;
    width: 90%;
    max-width: 90%;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    box-shadow: none;
}

.stats h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #405665;
}

.stats .numbers {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stats .block {
    text-align: center;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats .block strong {
    color: #e22a25;
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 12px;
}

.stats .block br + span,
.stats .block {
    font-size: 1.4rem;
    font-weight: 800;
    color: #405665;
}

.stats button {
    background: #2aa9e0;
    color: white;
    border: none;
    padding: 22px 60px;
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
}

.stats button:hover {
    background: #2497ca;
    transform: translateY(-2px);
}

.stats p {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #333;
}

/* === BENEFITS === */
.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.benefits-text {
    max-width: 500px;
}

.benefits-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1rem;
}

.benefits-text p {
    font-size: 1.15rem;
    color: #405665;
    line-height: 1.6;
}

.benefit-cards .card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: left;
    color: #405665;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-cards .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}


.benefit-cards .card::before {
    content: attr(data-icon);
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}


@media (max-width: 900px) {
    .benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-cards {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media (max-width: 600px) {
    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .benefit-cards .card {
        width: 100%;
        text-align: center;
    }
}

/* === REVIEWS === */
.reviews {
    padding: 140px 40px;
}

.reviews h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #405665;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-list {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: stretch;
}

.review {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    text-align: left;
    height: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.review img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    margin-bottom: 30px;
    object-fit: cover;
}

.review p {
    font-size: 1.15rem;
    color: #405665;
    margin-bottom: 32px;
    line-height: 1.7;
}

.review strong {
    color: #405665;
    font-size: 1.2rem;
    font-weight: 800;
}

.review small {
    font-size: 1rem;
    color: #666;
}


@media (max-width: 1100px) {
    .review-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {
    .review-list {
        grid-template-columns: 1fr;
    }

    .reviews h2 {
        text-align: center;
    }
}

/* === CONTACT === */
.contact {
    background: #f0f6fc;
    padding: 120px 0;
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.contact-text {
    text-align: left;
}

.contact h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: #405665;
}

.contact p {
    font-size: 1.1rem;
    color: #405665;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact button {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
    color: #405665;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
}

.contact button:hover {
    background: #f6b939;
    transform: translateY(-2px);
}


.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-left: 10px solid #f8c94d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 600px) {
    .contact-card {
        padding: 20px;
        border-left-width: 6px;
        gap: 16px;
        max-width: 100%;
    }
}

.contact-card.blue {
    border-left-color: #2aa9e0;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info strong {
    font-weight: 800;
    font-size: 1.2rem;
    color: #405665;
}

.contact-info {
    color: #405665;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-cards {
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 500px;
    }
}
/* === FOOTER === */
.footer {
    background-color: #ffffff;
    padding: 80px 40px;
    color: #2f2f2f;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 260px;
    min-width: 200px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #2f2f2f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e22a25;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    display: inline-block;
    margin: 0 8px;
}

.social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.social-img:hover {
    opacity: 0.7;
}

.footer-socials .social-icon:hover span {
    opacity: 0.55;
}


.footer-copy {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    nav a {
        margin: 0 10px;
        font-size: 16px;
    }
}
/* === UNIFIED SECTION SPACING === */

.first-time-main{
    background-color: white;
}
/* === CONSISTENT H2 === */
.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1.5rem;
}

/* === SIMPLE HERO === */
.simple-hero {
    width: 100%;
    background: #f3f8fe;
    padding: 80px 0;
}

.container-70 {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 24px;
}

.simple-hero h1 {
    font-size: 3.2rem;
    margin-top: 2rem;
}


/* === INTRO BLOCK === */
.intro-block {
    composes: section-block;
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}


/* === TWO CTA BLOCKS (STACKED LIST) === */
.two-cta {
    composes: section-block;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: white;
    margin: 80px auto;
    padding: 0 24px;
    max-width: 70%;
}

.cta-item {
    text-align: left;
}

.cta-item h2 {
    margin-bottom: 20px;
}


/* === FAQ === */
.faq-item {
    background: #e9f1fa;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq-toggle {
    width: 100%;
    border: none;
    background: none;
    padding: 22px 24px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #405665;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
}


.faq-toggle::after {
    content: "+";
    font-size: 1.6rem;
}

.faq-item.open .faq-toggle::after {
    content: "–";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #e9f1fa;
    padding: 0 24px;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-content {
    padding: 16px 24px 24px;
}

.faq-content p,
.faq-content ul {
    margin: 8px 0;
}

.btn {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
    color:#405665;
}

.btn:hover {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
    color:black;
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.animate.show,
.animate-left.show,
.animate-bottom.show {
    opacity: 1;
    transform: translate(0,0);
}

/* === DOWNLOADS PAGE FIX (FINAL) === */

/* --- Compact grid for download cards --- */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    max-width: 900px;
    margin: 40px auto 0;
    justify-content: center;
}


.benefit-cards a.download-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-weight: normal;
    font-size: 0.95rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    color: #405665;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-cards a.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-cards a.download-card .card-icon {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    color: #405665;
}

.benefit-cards a.download-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #405665;
}

.benefit-cards a.download-card p {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}
/* --- PROMO VIDEO SECTION --- */
.promo-video-section {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 24px;
    background: transparent;
}

.promo-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.promo-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #e9f1fa;
    object-fit: cover;
}

.promo-video-player:fullscreen {
    max-width: 100vw;
}

@media (max-width: 900px) {
    .benefit-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 20px;
    }

    .promo-video-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promo-video-player {
        width: 100%;
        max-width: 100%;
    }

    .download-card {
        width: 100%;
    }
}

.card-icon {
    font-family: 'ETmoudles';
    font-size: 36px;
    margin-bottom: 10px;
    color: #2f3e46;
}

/* === HERO & CONTENT CENTER ALIGNMENT FIX === */

.simple-hero .container-70 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.section-block {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
    background: white;
    text-align: left;
}

.two-cta {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
}

.faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.section-block .btn,
.two-cta .btn {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .simple-hero .container-70,
    .section-block,
    .two-cta,
    .faq {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Cookies */

.cookie-island {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #ffffff;
    color: #35546b;
    padding: 14px 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    z-index: 9999;
    box-shadow:
        0 14px 40px rgba(53, 84, 107, 0.18),
        0 4px 10px rgba(53, 84, 107, 0.10);
}

.cookie-island span {
    white-space: nowrap;
}

.cookie-accept {
    background: #ffd24d;
    color: #1f3a4a;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 0 #e6b93c;
    transition: transform .15s ease, box-shadow .15s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #e6b93c;
}

.cookie-accept:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #e6b93c;
}

@media (max-width: 600px) {
    .cookie-island {
        bottom: 16px;
        padding: 14px 16px;
        font-size: 13px;
        max-width: calc(100% - 32px);
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
    }

    .cookie-island span {
        white-space: normal;
        line-height: 1.35;
    }

    .cookie-accept {
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
    }
}

