﻿:root {
    --primary-deep-blue: #0B1E33;
    --primary-electric-blue: #2563EB;
    --primary-soft-blue: #60A5FA;
    --accent-orange: #F97316;
    --accent-teal: #14B8A6;
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
    --gradient-1: linear-gradient(135deg, #0B1E33 0%, #1E3A6F 100%);
    --gradient-2: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-3: linear-gradient(135deg, #F97316 0%, #FACC15 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-hover: rgba(255, 255, 255, 0.25);
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Material_Icon/MaterialIcons-Regular.woff2') format('woff2'), url('../fonts/Material_Icon/MaterialIcons-Regular.woff') format('woff');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 24px;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Vazirmatn, sans-serif;
    background: var(--gradient-1);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.material-icons,
.material-icons-outlined,
.material-icons-round {
    font-size: 24px;
    vertical-align: middle;
    user-select: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-icon .material-icons,
    .btn-icon .material-icons-outlined,
    .btn-icon .material-icons-round {
        font-size: 20px;
    }

.icon-container {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-container .material-icons,
    .icon-container .material-icons-outlined,
    .icon-container .material-icons-round {
        font-size: 28px;
        color: white;
    }

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle .material-icons,
    .icon-circle .material-icons-outlined,
    .icon-circle .material-icons-round {
        font-size: 24px;
        color: white;
    }

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.8s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: auto;
    min-width: 60px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

    .logo-icon img {
        height: 100%;
        width: auto;
        max-height: 32px;
        object-fit: contain;
        filter: brightness(1.1);
    }

.logo:hover .logo-icon {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

    .nav-menu a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .nav-menu a .material-icons {
            font-size: 20px;
            color: var(--accent-orange);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-3);
            transition: width 0.3s;
        }

        .nav-menu a:hover {
            color: white;
        }

            .nav-menu a:hover::after {
                width: 100%;
            }

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    padding: 10px 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline .material-icons {
        font-size: 20px;
    }

    .btn-outline:hover {
        border-color: var(--accent-orange);
        background: rgba(249, 115, 22, 0.1);
        transform: translateY(-2px);
    }

.btn-primary {
    padding: 10px 30px;
    background: var(--gradient-2);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .btn-primary .material-icons {
        font-size: 20px;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
    }

        .btn-primary:hover::before {
            left: 100%;
        }

.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    font-size: 14px;
    animation: fadeIn 0.8s ease;
}

    .badge .material-icons {
        color: var(--accent-orange);
        font-size: 18px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

    .gradient-text::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: var(--gradient-3);
        filter: blur(20px);
        opacity: 0.3;
        z-index: -1;
    }

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-invoice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 25px 5px 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-invoice:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(-5px);
    }

.invoice-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .invoice-icon .material-icons {
        font-size: 24px;
        color: white;
    }

.stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-soft-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

    .floating-card:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .card-title .material-icons {
        color: var(--accent-orange);
    }

.card-badge {
    background: var(--accent-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-list {
    display: grid;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: 0.3s;
}

    .service-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(-5px);
    }

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon .material-icons {
        font-size: 28px;
        color: white;
    }

.service-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.service-status {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.pricing-section {
    position: relative;
    z-index: 1;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px 30px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .pricing-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .pricing-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .pricing-card:nth-child(3) {
        animation-delay: 0.4s;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

.card-badge-metal {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bronze-badge {
    background: linear-gradient(135deg, #CD7F32 0%, #A97142 100%);
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.3);
}

.silver-badge {
    background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
}

    .pricing-price small {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
    }

.pricing-features {
    list-style: none;
    margin: 30px 0;
    flex: 1;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .pricing-features .material-icons {
        color: var(--accent-orange);
        font-size: 20px;
        min-width: 24px;
    }

.feature-group {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-group-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-group .material-icons {
    font-size: 18px;
}

.feature-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    list-style: none;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: var(--gradient-2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

    .btn-pricing .material-icons {
        font-size: 20px;
    }

    .btn-pricing:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
    }

.features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

    .feature-item:nth-child(1) {
        animation-delay: 0.6s;
    }

    .feature-item:nth-child(2) {
        animation-delay: 0.7s;
    }

    .feature-item:nth-child(3) {
        animation-delay: 0.8s;
    }

    .feature-item:nth-child(4) {
        animation-delay: 0.9s;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon .material-icons {
        font-size: 28px;
        color: white;
    }

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bg {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
    margin-top: 80px;
}

    .footer-bg .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
    }

.sub-footer {
    text-align: center;
}

    .sub-footer .col-12 {
        margin-bottom: 20px;
    }

    .sub-footer a img {
        max-width: 120px;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s;
    }

        .sub-footer a img:hover {
            transform: scale(1.05);
        }

    .sub-footer p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

.txt-10 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #1D4ED8, #6D28D9);
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 30, 51, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .logo-icon {
    width: auto;
    min-width: 60px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

    .mobile-nav .logo-icon img {
        height: 100%;
        width: auto;
        max-height: 32px;
        object-fit: contain;
        filter: brightness(1.1);
    }

.mobile-menu-toggle {
    width: 45px;
    height: 45px;
    background: var(--gradient-2);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .mobile-menu-toggle .material-icons {
        color: white;
        font-size: 28px;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    }

.mobile-menu {
    display: none;
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease;
}

    .mobile-menu.show {
        display: block;
    }

.mobile-menu-items {
    list-style: none;
}

    .mobile-menu-items li {
        margin-bottom: 10px;
    }

    .mobile-menu-items a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 1rem;
        border-radius: 12px;
        transition: 0.3s;
        background: rgba(255, 255, 255, 0.03);
    }

        .mobile-menu-items a .material-icons {
            font-size: 24px;
            color: var(--accent-orange);
        }

        .mobile-menu-items a:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(-5px);
        }

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.mobile-login-btn {
    background: var(--gradient-2) !important;
    justify-content: center;
    font-weight: 600;
}

    .mobile-login-btn .material-icons {
        color: white !important;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content {
        padding: 100px 20px 50px !important;
    }

    .pricing-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-text {
        animation: fadeIn 1s ease;
    }

    .hero-visual {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 90px 20px 50px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary, .btn-invoice {
        width: 100%;
        justify-content: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-bg .container {
        padding: 0 20px;
    }

    .footer-bg {
        margin-top: 40px;
        padding: 30px 0 15px;
    }

    .sub-footer .col-12 {
        margin-bottom: 15px;
    }

    .sub-footer a img {
        max-width: 100px;
    }

    .floating-card {
        transform: none;
        padding: 20px;
    }

    .service-item {
        padding: 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

        .service-icon .material-icons {
            font-size: 22px;
        }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .feature-group li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

        .feature-icon .material-icons {
            font-size: 24px;
        }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.75rem;
    }

    .mobile-nav {
        padding: 8px 15px;
    }

    .mobile-menu-items a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

        .mobile-menu-items a .material-icons {
            font-size: 22px;
        }
}
