:root {
    --primary: #174ea6;
    --primary-dark: #103b83;
    --red: #df2028;
    --purple: #7137cf;
    --green: #16a34a;
    --yellow: #ffc928;
    --text: #12366d;
    --muted: #718096;
    --border: #dfe6ef;
    --bg: #f5f8fc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* HEADER */

.main-header {
    position: sticky;
    top: 0;
    z-index: 5000;

    background: rgba(255,255,255,.98);

    border-bottom: 1px solid #e3e9f1;

    box-shadow:
        0 4px 20px rgba(20,50,90,.07);
}

.header-inner {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text);
}

.brand-logo {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,#174ea6,#2873d6);

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 7px 18px rgba(23,78,166,.22);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.1;
}

.brand-text span {
    margin-top: 3px;

    color: var(--red);

    font-size: 12px;
    font-weight: 800;
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 11px 18px;

    border-radius: 30px;

    background: var(--red);

    color: #fff;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 7px 18px rgba(223,32,40,.20);
}


/* NOTIFICATION */

.notification-container {
    position: fixed;

    top: 88px;
    left: 50%;

    width: min(94%,580px);

    transform: translateX(-50%);

    z-index: 9999;

    pointer-events: none;
}

.live-notification {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 15px;

    background: #fff;

    border-top: 4px solid var(--notification-color);

    border-radius: 19px;

    box-shadow:
        0 15px 40px rgba(10,30,60,.18);

    animation: notificationIn .4s ease;
}

.live-notification.hide {
    animation: notificationOut .4s ease forwards;
}

.notification-icon {
    width: 47px;
    height: 47px;

    min-width: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--notification-color);

    color: #fff;

    font-size: 19px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-status {
    color: #8793a2;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .7px;
}

.notification-status span {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 4px;

    border-radius: 50%;

    background: #20c878;
}

.notification-content strong {
    display: block;

    margin-top: 2px;

    color: var(--text);

    font-size: 14px;
}

.notification-content p {
    margin: 2px 0 0;

    color: var(--notification-color);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-time {
    color: #9da7b5;

    font-size: 9px;
    white-space: nowrap;
}


/* HERO */

.hero-section {
    padding: 20px 0 12px;
}

.hero-card {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 36px;

    border-radius: 30px;

    background:
        linear-gradient(
            125deg,
            #103a7f,
            #2164bd,
            #2b75d5
        );

    box-shadow:
        0 18px 45px rgba(23,78,166,.20);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 580px;

    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 12px;

    margin-bottom: 13px;

    border-radius: 30px;

    background: rgba(255,255,255,.14);

    font-size: 10px;
    font-weight: 900;
}

.hero-content h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(37px,6vw,57px);

    line-height: .98;

    font-weight: 900;
}

.hero-content h1 span {
    color: #ffdf3d;
}

.hero-content p {
    max-width: 510px;

    margin: 17px 0 22px;

    color: rgba(255,255,255,.87);

    font-size: 15px;

    line-height: 1.65;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 13px 21px;

    border-radius: 14px;

    background: #fff;

    color: var(--primary);

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.hero-illustration {
    position: absolute;

    right: 6%;
    top: 50%;

    transform: translateY(-50%);

    width: 270px;
    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.people-circle {
    width: 185px;
    height: 185px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.22);

    color: #fff;

    font-size: 78px;
}

.floating-icon {
    position: absolute;

    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #fff;

    color: var(--primary);

    font-size: 20px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}

.icon-one {
    left: 17px;
    top: 20px;
}

.icon-two {
    right: 0;
    top: 76px;
}

.icon-three {
    left: 43px;
    bottom: 12px;
}


/* STATISTICS */

.stats-section {
    padding: 10px 0;
}

.stat-card {
    min-height: 160px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 15px 8px;

    text-align: center;

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 23px;

    box-shadow:
        0 8px 25px rgba(20,50,90,.06);
}

.stat-icon {
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    border-radius: 16px;

    color: #fff;

    font-size: 20px;
}

.stat-icon.red {
    background: var(--red);
}

.stat-icon.blue {
    background: var(--primary);
}

.stat-icon.purple {
    background: var(--purple);
}

.stat-card small {
    color: #7c899a;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .9px;
}

.stat-card strong {
    margin-top: 4px;

    color: var(--text);

    font-size: 14px;
    font-weight: 900;
}


/* INFO */

.info-section {
    padding: 12px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 19px;

    border: 1px solid #f0d878;

    border-radius: 22px;

    background:
        linear-gradient(135deg,#fffbed,#fff7d8);
}

.info-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--yellow);

    color: #173d73;

    font-size: 20px;
}

.info-card strong {
    display: block;

    color: #704b17;

    font-size: 16px;
}

.info-card p {
    margin: 3px 0 0;

    color: #806c4c;

    font-size: 13px;
}


/* PROGRESS */

.progress-section {
    padding: 12px 0 18px;
}

.progress-card {
    display: flex;
    align-items: center;

    padding: 22px 18px;

    border: 1px solid #dce6f3;

    border-radius: 24px;

    background:
        linear-gradient(135deg,#f3f8ff,#edf5ff);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 70px;

    color: #aab4c2;

    font-size: 11px;
    font-weight: 800;

    text-align: center;
}

.progress-step.active {
    color: var(--primary);
}

.step-circle {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 6px;

    border: 4px solid #e1e8f1;

    border-radius: 50%;

    background: #fff;

    font-size: 14px;
    font-weight: 900;
}

.progress-step.active .step-circle {
    border-color: var(--primary);

    background: var(--primary);

    color: #fff;
}

.progress-line {
    flex: 1;

    height: 4px;

    background: #dce5f1;
}

.progress-line.active {
    background: var(--primary);
}


/* APPLICATION */

.application-section {
    padding: 12px 0 38px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f9fbfe
        );
}

.application-box {
    max-width: 760px;

    margin: auto;

    padding: 28px 30px 33px;

    background: #fff;

    border: 1px solid #dfe6ef;

    border-radius: 28px;

    box-shadow:
        0 15px 45px rgba(20,50,90,.08);
}

.application-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 55px;

    padding: 8px 15px;

    border: 2px solid #d6e3f8;

    border-radius: 30px;

    background: #fbfdff;

    color: var(--primary);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .5px;
}

.application-heading {
    padding: 27px 12px 4px;

    text-align: center;
}

.application-heading h2 {
    margin: 0;

    color: var(--text);

    font-size: clamp(30px,6vw,44px);

    font-weight: 900;
}

.application-heading h2 span {
    color: var(--red);
}

.application-heading p {
    max-width: 570px;

    margin: 17px auto;

    color: #748297;

    font-size: 14px;

    line-height: 1.65;
}

.heading-line {
    width: 100px;
    height: 6px;

    margin: auto;

    border-radius: 20px;

    background: var(--primary);
}

.form-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 27px 0 17px;
}

.form-title strong {
    color: #173d73;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: .8px;

    white-space: nowrap;
}

.form-title div {
    flex: 1;

    height: 1px;

    background: #dfe5ed;
}


/* INPUT */

.modern-input {
    display: flex;
    align-items: center;

    min-height: 68px;

    margin-bottom: 16px;

    padding: 0 19px;

    border: 2px solid #dfe6ef;

    border-radius: 22px;

    background: #fbfcfe;

    transition: .2s ease;
}

.modern-input:focus-within {
    background: #fff;

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(23,78,166,.07);
}

.modern-input > i {
    width: 29px;

    margin-right: 11px;

    color: #98a5b4;

    font-size: 20px;
}

.modern-input input {
    width: 100%;

    height: 64px;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 16px;
}

.modern-input input::placeholder {
    color: #adb7c4;
}


/* TELEGRAM */

.telegram-input {
    padding-left: 16px;
}

.telegram-prefix {
    display: flex;
    align-items: center;

    gap: 8px;

    padding-right: 12px;

    border-right: 1px solid #dce3ec;

    color: var(--primary);
}

.telegram-prefix i {
    font-size: 20px;
}

.telegram-prefix strong {
    font-size: 16px;
}

.telegram-input input {
    padding-left: 12px;
}

.telegram-note {
    margin-top: -5px;

    margin-bottom: 18px;

    padding-left: 12px;

    color: #7d8999;

    font-size: 11px;
}


/* BUTTON */

.modern-submit {
    width: 100%;

    min-height: 67px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border: 0;

    border-radius: 22px;

    background:
        linear-gradient(135deg,#e82a25,#d71920);

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 11px 27px rgba(215,25,32,.20);
}

.modern-submit:hover {
    transform: translateY(-1px);
}

.modern-submit i {
    font-size: 21px;
}


/* SECURITY */

.form-security {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    margin-top: 14px;

    color: #8491a1;

    font-size: 10px;
}

.form-security i {
    color: var(--primary);
}


/* MINI INFORMATION */

.form-information-section {
    padding-bottom: 25px;
}

.form-information {
    max-width: 760px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: auto;
}

.mini-info {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 14px;

    border: 1px solid #e0e7ef;

    border-radius: 17px;

    background: #fff;
}

.mini-info-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
}

.mini-info-icon.blue {
    background: #eaf2ff;
    color: var(--primary);
}

.mini-info-icon.green {
    background: #e9f9f0;
    color: var(--green);
}

.mini-info strong {
    display: block;

    color: #254a7d;

    font-size: 11px;
}

.mini-info span {
    display: block;

    margin-top: 3px;

    color: #8996a7;

    font-size: 9px;

    line-height: 1.4;
}


/* HOW */

.how-section {
    padding: 15px 0 40px;
}

.how-card {
    max-width: 760px;

    margin: auto;

    padding: 26px 28px;

    border: 1px solid #dfe6ef;

    border-radius: 25px;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(20,50,90,.06);
}

.how-header {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}

.how-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;
}

.how-header h2 {
    margin: 0;

    color: var(--text);

    font-size: 21px;
    font-weight: 900;
}

.how-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.how-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.how-number {
    width: 33px;
    height: 33px;

    min-width: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf4ff;

    color: var(--primary);

    font-size: 12px;
    font-weight: 900;
}

.how-item strong {
    display: block;

    color: #274a79;

    font-size: 13px;
}

.how-item p {
    margin: 3px 0 0;

    color: #78879a;

    font-size: 11px;

    line-height: 1.5;
}


/* FOOTER */

footer {
    padding: 28px 0 38px;

    text-align: center;

    border-top: 1px solid #e1e7ef;

    background: #fff;
}

.footer-security {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 13px;

    padding: 7px 13px;

    border-radius: 30px;

    background: #eef5ff;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
}

.footer-copy {
    color: var(--text);

    font-size: 12px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 7px;

    color: #929eae;

    font-size: 10px;
}

.footer-links a {
    color: #8995a5;
}


/* ANIMATION */

@keyframes notificationIn {

    from {
        opacity: 0;
        transform:
            translateY(-25px)
            scale(.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes notificationOut {

    from {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

    to {
        opacity: 0;
        transform:
            translateY(-20px)
            scale(.97);
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .main-header,
    .header-inner {
        min-height: 67px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .header-button {
        padding: 9px 13px;

        font-size: 11px;
    }


    .notification-container {
        top: 75px;

        width: calc(100% - 20px);
    }

    .notification-time {
        display: none;
    }

    .notification-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;
    }

    .notification-content strong {
        font-size: 12px;
    }

    .notification-content p {
        font-size: 10px;
    }


    .hero-section {
        padding-top: 13px;
    }

    .hero-card {
        min-height: 410px;

        padding: 25px 19px;

        align-items: flex-start;

        border-radius: 26px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-button {
        padding: 11px 17px;

        font-size: 12px;
    }

    .hero-illustration {
        width: 205px;
        height: 205px;

        right: 50%;
        top: auto;
        bottom: -36px;

        transform: translateX(50%);
    }

    .people-circle {
        width: 140px;
        height: 140px;

        font-size: 58px;
    }

    .floating-icon {
        width: 43px;
        height: 43px;

        font-size: 16px;
    }


    .stat-card {
        min-height: 140px;

        border-radius: 19px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;

        border-radius: 13px;

        font-size: 17px;
    }

    .stat-card small {
        font-size: 7px;
    }

    .stat-card strong {
        font-size: 10px;
    }


    .info-card {
        padding: 15px;

        border-radius: 19px;
    }

    .info-icon {
        width: 43px;
        height: 43px;

        min-width: 43px;
    }

    .info-card strong {
        font-size: 13px;
    }

    .info-card p {
        font-size: 11px;
    }


    .progress-card {
        padding: 17px 7px;

        border-radius: 21px;
    }

    .progress-step {
        min-width: 53px;

        font-size: 8px;
    }

    .step-circle {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }


    .application-box {
        padding: 21px 14px 27px;

        border-radius: 23px;
    }

    .application-label {
        min-height: 50px;

        font-size: 9px;

        letter-spacing: .2px;
    }

    .application-heading {
        padding-top: 24px;
    }

    .application-heading h2 {
        font-size: 31px;
    }

    .application-heading p {
        font-size: 12px;
    }

    .form-title strong {
        font-size: 12px;
    }


    .modern-input {
        min-height: 62px;

        padding: 0 15px;

        border-radius: 19px;
    }

    .modern-input input {
        height: 58px;

        font-size: 14px;
    }

    .modern-input > i {
        width: 25px;

        margin-right: 7px;

        font-size: 18px;
    }


    .telegram-prefix {
        gap: 6px;

        padding-right: 9px;
    }

    .telegram-prefix i {
        font-size: 18px;
    }

    .telegram-prefix strong {
        font-size: 14px;
    }

    .telegram-input input {
        padding-left: 9px;
    }


    .modern-submit {
        min-height: 63px;

        border-radius: 19px;

        font-size: 14px;
    }

    .modern-submit i {
        font-size: 18px;
    }


    .form-information {
        grid-template-columns: 1fr;
    }


    .how-card {
        padding: 23px 17px;

        border-radius: 22px;
    }

    .how-header h2 {
        font-size: 18px;
    }


    footer {
        padding-bottom: 32px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .hero-content h1 {
        font-size: 33px;
    }

    .application-heading h2 {
        font-size: 28px;
    }

    .application-label {
        font-size: 8px;
    }

    .modern-submit {
        font-size: 13px;
    }
    }
    /* ================================
   FORM FIX
================================ */

.application-box {
    max-width: 760px;
    margin: auto;
    padding: 28px 30px 33px;
    background: #ffffff;
    border: 1px solid #dfe6ef;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(20,50,90,.08);
}

.modern-input {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 68px !important;
    margin-bottom: 16px !important;
    padding: 0 19px !important;
    border: 2px solid #dfe6ef !important;
    border-radius: 22px !important;
    background: #fbfcfe !important;
}

.modern-input > i {
    width: 30px !important;
    min-width: 30px !important;
    margin-right: 10px !important;
    color: #98a5b4 !important;
    font-size: 20px !important;
}

.modern-input input {
    display: block !important;
    width: 100% !important;
    height: 64px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #12366d !important;
    font-size: 16px !important;
    box-shadow: none !important;
}

.modern-input input::placeholder {
    color: #adb7c4 !important;
    opacity: 1 !important;
}

.telegram-input {
    padding-left: 16px !important;
}

.telegram-prefix {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-right: 12px !important;
    border-right: 1px solid #dce3ec !important;
    color: #174ea6 !important;
}

.telegram-prefix i {
    font-size: 20px !important;
}

.telegram-prefix strong {
    font-size: 16px !important;
}

.telegram-input input {
    padding-left: 12px !important;
}

.telegram-note {
    margin: -5px 0 18px !important;
    padding-left: 12px !important;
    color: #7d8999 !important;
    font-size: 11px !important;
}

.modern-submit {
    width: 100% !important;
    min-height: 67px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 13px !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg,#e82a25,#d71920) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 11px 27px rgba(215,25,32,.20) !important;
}

.modern-submit i {
    font-size: 21px !important;
}

.form-security {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 14px !important;
    color: #8491a1 !important;
    font-size: 10px !important;
}

@media (max-width: 700px) {

    .application-box {
        padding: 21px 14px 27px !important;
        border-radius: 23px !important;
    }

    .modern-input {
        min-height: 62px !important;
        padding: 0 15px !important;
        border-radius: 19px !important;
    }

    .modern-input input {
        height: 58px !important;
        font-size: 14px !important;
    }

    .modern-submit {
        min-height: 63px !important;
        border-radius: 19px !important;
        font-size: 14px !important;
    }

}