/* ============================== */
/*           GLOBAL               */
/* ============================== */

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    color: #2f7ec1;
    margin-top: 0;
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

/* ============================== */
/*           HEADER               */
/* ============================== */

.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    z-index: 999;
}

.logo img{
    height: 40px;
}

.main-header nav a {
    margin-left: 24px;
    text-decoration: none;
    font-weight: 600;
    color: #2f7ec1;
}

/* ====================== */
/*      BURGER MENU       */
/* ====================== */

/* Burger button visible only on mobile */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2f7ec1;
}

/* Mobile nav (hidden by default) */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 998;
    text-align: center;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.mobile-nav a {
    padding: 14px 0;
    color: #2f7ec1;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.mobile-nav.open {
    display: flex;
}

/* Burger active state */
.burger.active i {
    transform: rotate(90deg);
    transition: 0.2s;
}


/* ============================== */
/*            HERO                */
/* ============================== */

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #444;
    max-width: 700px;
    margin: auto;
}

/* CTA buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin: 8px;
}

.btn-primary {
    background: #2f7ec1;
    color: white;
}

.btn-primary:hover { background: #2768a0; }

.btn-secondary {
    background: #eef7ff;
    color: #2f7ec1;
}

.btn-secondary:hover { background: #d9ecff; }

/* ============================== */
/*          MOCKUPS               */
/* ============================== */

.mockup {
    width: 80%;
    margin: 60px auto;
    /* background: linear-gradient(145deg, #1f1f1f, #333); */
    padding: 22px;
    border-radius: 28px;
    /* box-shadow: 0 25px 70px rgba(0,0,0,0.25); */
    position: relative;
}

.mockup img {
    width: 100%;
    border-radius: 16px;
}

.phone-image{
    height: 390px;
    width: auto !important;
    margin: 0 auto;
    display:flex;
    justify-content: center;
    align-items: center;
}

.mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(
        rgba(255,255,255,0.35),
        rgba(255,255,255,0)
    );
    border-radius: 28px;
}

/* ============================== */
/*           CARDS                */
/* ============================== */

.cards {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 330px;
    background: white;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

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

.feature-card i {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2f7ec1;
}

/* ============================== */
/*            ROLES               */
/* ============================== */

.role-block {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 80px auto;
}

.role-block.reverse { flex-direction: row-reverse; }

.role-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.role-text ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.role-list {
    list-style: none;
    padding-left: 0;
}

.role-list li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.role-list li i {
    color: #2f7ec1;
    font-size: 18px;
    margin-top: 2px;
}


/* ============================== */
/*            VIDEO               */
/* ============================== */

.video-wrapper {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 18px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ============================== */
/*            PRICING             */
/* ============================== */

.pricing-section {
    padding: 120px 40px;
}

.pricing-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.pricing-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.pricing-card {
    background: #fff;
    border-radius: 22px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 65px rgba(0,0,0,0.12);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.price .currency { font-size: 24px; color: #2f7ec1; }
.price .amount { font-size: 64px; font-weight: 800; color: #2f7ec1; }
.price .period { font-size: 16px; color: #777; }

.pricing-features {
    margin: 40px auto;
    text-align: left;
    max-width: 450px;
}

.pricing-features li {
    margin: 12px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #2f7ec1;
}

.btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    background: #2f7ec1;
    color: #fff;
    font-size: 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-pricing:hover { background: #2768a0; }

/* ============================== */
/*            CONTACT             */
/* ============================== */

.contact-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 50px auto;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 13px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-links {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-links a {
    font-size: 20px;
    font-weight: 600;
    color: #2f7ec1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-links a:hover {
    color: #1f5e90;
}


/* ============================== */
/*     FLOATING WHATSAPP          */
/* ============================== */

.wa-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 16px 18px;
    border-radius: 50%;
    font-size: 26px;
    z-index: 999;
}

/* ============================== */
/*       SCROLL REVEAL            */
/* ============================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================== */
/*         RESPONSIVE — TABLET            */
/* ====================================== */
@media (max-width: 992px) {

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
        max-width: 90%;
    }

    .mockup {
        width: 90%;
        margin: 40px auto;
        padding: 18px;
    }

    .role-block {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .role-block.reverse {
        flex-direction: column;
    }

    .role-heading {
        font-size: 28px;
    }

    .role-list li {
        font-size: 16px;
    }

    .pricing-card {
        padding: 40px 28px;
    }
}


/* ====================================== */
/*       RESPONSIVE — MOBILE LARGE        */
/* ====================================== */
@media (max-width: 768px) {

    .wa-floating{
        display: none;
    }

    /* HEADER */
    .main-header {
        padding: 14px 20px;
        justify-content: space-between;
    }

    .logo img {
        height: 34px;
    }

    /* DESKTOP NAV HIDDEN – BURGER ACTIVE */
    .desktop-nav {
        display: none !important;
    }

    .burger {
        display: block;
    }

    /* HERO */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.25;
        padding: 0 10px;
    }

    .hero-cta{
        
        width: 70%;
        margin: 20px auto 0 auto;
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 95%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 26px;
        font-size: 15px;
    }

    /* CARDS */
    .cards {
        gap: 20px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-card i {
        font-size: 38px;
    }

    .section-title {
        font-size: 36px;
        padding: 0 12px;
    }

    /* ROLE BLOCKS */
    .role-block {
        flex-direction: column !important;
        text-align: center;
    }

    .mockup {
        width: 100%;
        padding: 16px;
    }

    .mockup img{
        width: 70%;
    }

    .section-subtitle {
        font-size: 16px;
        padding: 0 12px;
    }

    /* PRICING */
    .pricing-card {
        padding: 32px 22px;
    }

    .price .amount {
        font-size: 56px;
    }

    .price .period {
        font-size: 14px;
    }

    /* CONTACT */
    .contact-flex {
        flex-direction: column;
        gap: 30px;
    }

    .contact-links a {
        font-size: 18px;
    }

    .mockup.phone {
        width: 85%;
    }
}


/* ====================================== */
/*       RESPONSIVE — MOBILE SMALL        */
/* ====================================== */
@media (max-width: 576px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 92%;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        text-align: center;
    }

    .mockup {
        width: 100%;
        padding: 14px;
        border-radius: 20px;
    }

    .mockup img {
        border-radius: 12px;
    }

    .video-wrapper {
        height: 250px;
        border-radius: 12px;
        width: 90%;
    }

    /* ROLE */
    .role-heading {
        font-size: 24px;
    }

    .role-list li {
        font-size: 15px;
        margin-bottom: 9px;
    }

    /* PRICING */
    .pricing-card {
        padding: 28px 16px;
        border-radius: 18px;
    }

    .price .amount {
        font-size: 48px;
    }

    .pricing-features li {
        font-size: 15px;
    }

    .btn-pricing {
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* CONTACT */
    .contact-links a {
        font-size: 17px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px;
    }

    form{
        width: 80%;
        margin: auto;
    }
}


/* ====================================== */
/*       EXTRA SMALL — < 380px            */
/* ====================================== */
@media (max-width: 380px) {

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 10px 22px;
    }

    .price .amount {
        font-size: 42px;
    }

    .contact-links a {
        font-size: 16px;
    }
}

/* ====================================== */
/*       GLOBAL OVERRIDES: NO OVERFLOW    */
/* ====================================== */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

img, .mockup, .video-wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

