* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    text-wrap: nowrap;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #374151;
    font-weight: 500;
}

.header-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 600;
    text-wrap: nowrap;
}

.primary,
.header-btn {
    background: #2563eb;
    color: white;
}

.secondary {
    border: 1px solid #d1d5db;
    color: #111827;
}

.hero {
    padding: 100px 0;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.05;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-card {
    width: 450px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.card-top {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.card-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.bot-box {
    padding: 30px;
}

.bot-box h3 {
    margin-bottom: 10px;
}

.progress {
    height: 12px;
    background: #e5e7eb;
    border-radius: 999px;
    margin: 20px 0;
}

.progress div {
    width: 70%;
    height: 100%;
    border-radius: 999px;
    background: #2563eb;
}

.bot-box ul {
    list-style: none;
}

.bot-box li {
    margin-bottom: 10px;
}

.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #2563eb;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.how {
    padding: 100px 0;
    background:#f8fafc;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.step {
    background: white;
    border-radius: 20px;
    padding: 30px;
}

.step b {
    color: #2563eb;
    font-size: 40px;
}

.step h3 {
    margin: 15px 0;
}

.cta {
    padding: 100px 0;
}

.cta-inner {
    background: #2563eb;
    border-radius: 30px;
    padding: 60px;
    gap:50px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer {
    background: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.footer-inner div {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-inner a {
    color: #374151;
}

@media(max-width: 992px) {

    .hero-inner,
    .cta-inner {
        flex-direction: column;
    }

    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero-card {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .nav {
        display: none;
    }
    .cta {
        padding: 46px 0;
    }
}



.pricing-page {
    padding: 100px 0;
}

.section-title p {
    max-width: 650px;
    margin: 16px auto 0;
    color: #6b7280;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.price-card.popular {
    border: 2px solid #2563eb;
    transform: translateY(-12px);
}

.price-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.price {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.price-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card li {
    margin-bottom: 12px;
    color: #374151;
}

.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    margin-bottom: 10px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }
    .faq {
        padding: 46px 0;
    }
}



.trial-page {
    padding: 90px 0;
    background: #f5f7fb;
    min-height: calc(100vh - 90px);
}

.trial-box {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 50px;
    align-items: start;
}

.trial-info {
    background: #fff;
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.trial-info h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 20px 0 14px;
    color: #111827;
}

.trial-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

.trial-info ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.trial-info li {
    font-size: 17px;
    color: #1f2937;
}

.trial-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
}

.trial-form-card h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #111827;
}

.trial-form-card form {
    display: grid;
    gap: 18px;
}

.trial-form-card label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #153276;
}

.trial-form-card input {
    width: 100%;
    height: 52px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.trial-form-card input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.full-btn {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    font-size: 17px;
}

.license-result h3 {
    margin-bottom: 8px;
    color: #166534;
}

.license-result .btn {
    display: inline-flex;
}

@media (max-width: 992px) {
    .trial-box {
        grid-template-columns: 1fr;
    }

    .trial-info h1 {
        font-size: 36px;
    }
}



.payment-info {
    margin-top: 34px;
    padding: 26px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.payment-info h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #111827;
}

.pay-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pay-line span {
    color: #64748b;
    font-weight: 700;
}

.pay-line b {
    color: #111827;
    text-align: right;
}

.pay-note {
    margin-top: 18px !important;
    font-size: 15px !important;
    color: #475569 !important;
}

.trial-form-card select,
.trial-form-card textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
    background: white;
}

.trial-form-card textarea {
    min-height: 110px;
    resize: vertical;
}

.trial-form-card select:focus,
.trial-form-card textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}



/* HOME PAGE EXTRA */

.home-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.home-stat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.home-stat h3 {
    font-size: 34px;
    color: #2563eb;
    margin-bottom: 6px;
}

.home-stat span {
    color: #6b7280;
    font-size: 14px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
}

.feature-card {
    transition: .3s;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37,99,235,.12);
}

.step {
    transition: .3s;
}

.step:hover {
    transform: translateY(-6px);
}

.cta-inner h2 {
    font-size: 42px;
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 18px;
    opacity: .9;
}

.hero-card {
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(
            135deg,
            #2563eb,
            #60a5fa
    );
    z-index: -1;
}

@media(max-width:992px){

    .hero h1{
        font-size:42px;
    }

    .home-stats{
        justify-content:center;
    }

    .home-stat{
        width:calc(50% - 12px);
    }
    .cta-inner>div {
        padding: 20px 0;
    }
    .cta-inner h2 {
        font-size: 20px;
    }
}


.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: #fff;
    }

    .header-inner {
        position: relative;
        gap: 12px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .logo {
        font-size: 24px;
    }

    .header-btn {
        display: none;
    }

    .nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        padding: 12px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .15);
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 16px;
    }

    .nav a:hover {
        background: #eff6ff;
        color: #2563eb;
    }

    .hero {
        padding: 55px 0 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content h1[style] {
        font-size: 34px !important;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .home-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-card {
        width: 100%;
    }

    .features-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .feature-card,
    .step,
    .price-card {
        padding: 24px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-inner .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .logo {
        font-size: 22px;
    }

    .hero-content h1,
    .hero-content h1[style] {
        font-size: 29px !important;
    }

    .badge {
        font-size: 13px;
        padding: 9px 14px;
    }

    .btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }

    .bot-box ul li {
        font-size: 14px;
    }

    .price {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        max-width: 110px;
        line-height: 1.1;
    }

    .mobile-menu-btn {
        order: 2;
    }

    .header-btn {
        display: none !important;
    }

    .hero-content {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content h1,
    .hero-content h1[style] {
        font-size: 28px !important;
        line-height: 1.18 !important;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .hero-inner {
        display: block;
    }

    .badge {
        max-width: 100%;
        white-space: normal;
    }
}