
:root {
    --primary: #4c69ff;
    --secondary-bg: #f5f7ff;
    --white: #fff;
    --dark: #212529;
    --gray: rgb(75, 85, 99);
    --light-gray: rgb(156, 163, 175);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--secondary-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar {
    border-bottom: 1px solid #E3E5E8;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-bottom: 2px solid transparent;
}

@media (min-width: 992px) {
    .navbar-collapse {
        align-items: center;
    }

    .navbar-nav {
        flex: 1;
        justify-content: center;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    border-bottom-color: #c7d2fe;
}

.navbar-nav .nav-link.active {
    color: #4C5CF0;
    border-bottom-color: #4C5CF0;
    font-weight: 600;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 4px;
}

.btn-primary-compact {
    padding: 8px 16px;
    font-weight: 600;
}


.lang-switcher .btn-group .btn.btn-outline-primary {
    border-color: transparent;
    color: var(--dark);
    background: transparent;
}

.lang-switcher .btn-group .btn + .btn::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #d1d5db;
}

.btn-primary-custom:hover {
    background-color: #3a54e5;
    border-color: #3a54e5;
    color: white;
}

.btn-white-custom {
    background-color: white;
    border-color: white;
    color: var(--primary);
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 4px;
}

.btn-white-custom:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--primary);
}

.hero-section {
    padding: 70px 0;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--gray);
    margin-bottom: 40px;
}

.preview-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(1.25deg);
    transition: transform 0.3s ease;
    position: relative;
}

.preview-card:hover {
    transform: rotate(0deg);
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.form-preview input {
    background-color: rgb(239, 246, 255) !important;
    border-color: rgb(191, 219, 254) !important;
    pointer-events: none;
}

.doc-preview {
    padding: 12px;
    background-color: rgb(249, 250, 251);
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.doc-preview .subtitle {
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.doc-preview p {
    margin-bottom: 10px;
}

.doc-preview p span {
    color: var(--primary);
    font-weight: 500;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    text-decoration: none;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.perks-section {
    padding: 70px 0;
    background-color: white;
}

.perk-card {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 20px;
}

.perk-card:hover {
    transform: translateY(-5px);
}

.perk-icon {
    width: 67px;
    height: 67px;
    border-radius: 16px;
    background-color: rgb(239, 246, 255);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.perk-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.perk-card p {
    color: var(--gray);
    line-height: 1.5;
}

.features-section {
    padding: 120px 0;
    background-color: var(--primary);
    color: white;
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-section p {
    font-size: 18px;
    line-height: 1.625;
    margin-bottom: 30px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.styled-list li span {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(34, 197, 94);
    flex-shrink: 0;
    margin-top: 4px;
}

.styled-list li span::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: -2px;
}

.comparison-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    color: var(--gray);
}

.comparison-title {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
}

.comparison-card .subtitle {
    text-align: center;
}

.comparison-col {
    padding: 16px;
    border-radius: 8px;
    text-align: left;
}

.comparison-col.before {
    background-color: rgb(254, 242, 242);
    border: 1px solid rgb(254, 202, 202);
}

.comparison-col.after {
    background-color: rgb(240, 253, 244);
    border: 1px solid rgb(187, 247, 208);
}

.comparison-col .subtitle {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.comparison-col.before .subtitle {
    color: rgb(220, 38, 38);
}

.comparison-col.after .subtitle {
    color: rgb(22, 163, 74);
}

.comparison-col ul {
    padding-left: 1.1rem;
    margin: 0;
    list-style-type: disc;
}

.comparison-col li {
    margin-bottom: 8px;
}

.instructions-section {
    padding: 70px 0;
    background-color: rgb(249, 250, 251);
}

.instruction-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    position: relative;
    height: 100%;
}

.instruction-card:before {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 2;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.instruction-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.instruction-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instruction-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.cta-section {
    padding: 70px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inline-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inline-list li::before {
    content: "✓";
    font-family: 'icomoon' !important;
    color: rgb(74, 222, 128);
}

.badge-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-list li {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.inline-list--cta i {
    color: #22c55e;
    font-size: 18px;
}

.inline-list--cta li::before {
    content: none;
}

.cta-section .btn-white-custom {
    padding: 12px 24px;
    border-radius: 6px;
}

.cta-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 28px auto 22px;
    max-width: 860px;
}

.badge-list li {
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    font-size: 14px;
}

footer {
    padding: 50px 0;
    background-color: rgb(17, 24, 39);
    color: var(--light-gray);
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

footer h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.social-links a {
    font-size: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.contact-info li {
    display: flex;
    gap: 18px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #737B8C;
    padding-top: 3px;
}

.footer-copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgb(31, 41, 55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-copyright {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
    
    .preview-card {
        margin-top: 40px;
    }
    
    .arrow-btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 12px;
    }

    .navbar-nav {
        gap: 0 !important;
        margin-top: 6px;
        margin-bottom: 8px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
    }

    .navbar-collapse .d-flex {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px !important;
        margin-top: 6px;
    }

    .navbar-collapse .btn-group {
        margin-right: 6px;
    }

    .navbar-collapse .btn-primary-custom {
        margin-left: auto;
    }

    .features-section {
        padding: 70px 0;
    }

    .preview-card {
        margin-top: 24px;
        transform: rotate(0deg);
    }

    .hero-section .btn-primary-custom {
        margin-bottom: 16px;
    }
}

.counter-container {
    counter-reset: step-counter;
}

.pricing-hero {
    padding: 70px 0 90px;
    background-color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 40px;
    color: var(--gray);
    font-size: 14px;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e7eb;
    transition: 0.2s;
    border-radius: 999px;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pricing-switch input:checked + .pricing-slider {
    background-color: var(--primary);
}

.pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(22px);
}

.pricing-save-badge {
    background-color: #dcfce7;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    margin-top: 10px;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px 28px 30px;
    text-align: center;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef0f4;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 24px 40px rgba(76, 105, 255, 0.18);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pricing-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
}

.pricing-note {
    font-size: 13px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 18px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark);
    font-size: 14px;
}

.pricing-features i {
    color: #22c55e;
    font-size: 16px;
    margin-top: 2px;
}

.pricing-btn {
    align-self: center;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.pricing-yearly-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-pill {
    background-color: #dcfce7;
    color: #15803d;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.pricing-savings {
    font-size: 12px;
    color: var(--gray);
}

.pricing-enterprise {
    margin-top: 40px;
    background-color: var(--primary);
    color: white;
    padding: 48px 32px;
    border-radius: 18px;
    text-align: center;
}

.pricing-enterprise h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-enterprise p {
    font-size: 15px;
    max-width: 720px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-page .show-yearly {
    display: none;
}

.pricing-page.is-yearly .show-yearly {
    display: inline-flex;
}

.pricing-page.is-yearly .show-monthly {
    display: none;
}

.pricing-page.is-yearly .pricing-yearly-badges.show-yearly {
    display: flex;
}

@media (max-width: 992px) {
    .pricing-card {
        text-align: left;
    }

    .pricing-price {
        font-size: 38px;
    }

    .pricing-badge {
        left: 18px;
        transform: none;
    }
}

.contact-hero {
    padding: 70px 0 90px;
    background-color: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto;
}

.contact-form-card {
    max-width: 760px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #1f2937;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border-color: #dbe1f0;
    padding: 10px 12px;
}

.contact-note {
    margin-top: 18px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.contact-note a {
    color: var(--primary);
    font-weight: 600;
}

.contact-support-grid {
    margin-top: 30px;
}

.contact-support-card {
    background: white;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.contact-support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 8px;
}

.contact-support-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0;
}

.support-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.support-icon--green {
    background: #dcfce7;
    color: #16a34a;
}

.support-icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.support-icon--purple {
    background: #ede9fe;
    color: #7c3aed;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 24px;
    }
}
