/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4169E1;
    --primary-blue-dark: #1E3A8A;
    --primary-cyan: #00CED1;
    --gradient-start: #4169E1;
    --gradient-end: #00CED1;
    --gradient-light-start: #F8F8FA;
    --gradient-light-end: #FFFFFF;
    --gradient-blue-start: #4169E1;
    --gradient-cyan-end: #00CED1;
    --dark-blue: #1E3A8A;
    --text-dark: #222222;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-blue: rgba(65, 105, 225, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1%;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login,
.btn-register {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.btn-login:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #4169E1, #00CED1);
    color: var(--white);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4169E1;
}


.dashboard-visual {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    width: 650px;
    height: 400px;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(102, 126, 234, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.dashboard-mockup img {
    transform: rotate(-15deg);
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    filter:
        brightness(1.1) contrast(1.05) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.dashboard-mockup:hover img {
    filter:
        brightness(1.2) contrast(1.1) drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    transform: rotate(-15deg) scale(1.02);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 12rem 2rem 0;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-image: linear-gradient(to right, #DA22FF 0%, #9733EE 51%, #DA22FF 100%);
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(102, 126, 234, 0.4);
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-title .highlight {
    background: linear-gradient(135deg, #FFFFFF, #00F2FE, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    animation: descriptionFadeIn 1.2s ease-out 0.2s both;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4169E1, #00CED1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

.hero-content .btn-primary {
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3), 0 4px 15px rgba(0, 206, 209, 0.2);
}

.hero-content .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.4), 0 8px 20px rgba(0, 206, 209, 0.3);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: featuresFadeIn 1.4s ease-out 0.4s both;
}

@keyframes featuresFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 1);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.5);
}

.hero-feature i {
    color: #00F2FE;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(65, 105, 225, 0.15);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9ff 100%);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px var(--shadow-blue);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px var(--shadow-blue);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.multi-device-icon {
    font-size: 1.8rem;
}

.multi-device-icon i:first-child {
    position: relative;
    z-index: 2;
}

.multi-device-icon i:last-child {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0.9;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--shadow-blue);
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-highlight {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--gradient-light-start) 0%, var(--white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px var(--shadow-blue);
}

.about-card .about-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    margin-top: 0;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    margin: 0;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(65, 105, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 209, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-icon {
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-wrapper {
    min-width: 200px;
    min-height: 120px;
    font-size: 1rem;
    padding: 1.5rem 1.75rem;

    background: rgba(65, 105, 225, 0.1);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1B263B;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    gap: 0.5rem;
}

.icon-wrapper h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.icon-wrapper p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
    color: #1E293B
}

.feature-icon:hover .icon-wrapper,
.feature-icon.active .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--shadow-blue);
    border-color: var(--primary-blue);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px var(--shadow-blue);
    }

    50% {
        box-shadow: 0 10px 40px rgba(65, 105, 225, 0.4);
    }
}

.feature-details {
    position: relative;
    min-height: 300px;
}

.feature-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    padding: 2rem;
    border-radius: 10px;
    background: #F1F5FF;
}

.feature-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.feature-detail.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.2), 0 4px 15px rgba(0, 206, 209, 0.15);
}

.feature-detail h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-detail ul {
    list-style: none;
}

.feature-detail ul li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-detail ul li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Invoices Section */
.invoices-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gradient-light-start) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.invoices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(65, 105, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 209, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.invoices-section .container {
    position: relative;
    z-index: 1;
}

.invoice-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.invoice-templates {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    scroll-snap-type: x mandatory;
    padding: 4%;
}

.invoice-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-arrow {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.invoice-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    transition: all 0.4s ease;
    transform: scale(0.85);
}

.invoice-card:hover img {
    transform: scale(0.9);
}

.invoice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(65, 105, 225, 0.2);
    border-color: var(--primary-blue);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.invoice-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.invoice-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.invoice-status.paid {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.invoice-status.unpaid {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.invoice-company {
    margin-bottom: 1.5rem;
}

.invoice-company h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.invoice-company p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.invoice-details {
    margin-bottom: 1.5rem;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.invoice-row span:first-child {
    color: var(--text-light);
}

.invoice-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.invoice-items {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.invoice-item span:first-child {
    color: var(--text-light);
}

.invoice-item span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(0, 206, 209, 0.05));
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.invoice-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.invoice-qr {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.invoice-qr i {
    font-size: 1.5rem;
}

/* Modules Section */
.modules-section {
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.module-card {
    text-align: center;
}

.module-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px var(--shadow-blue);
    transition: all 0.3s ease;
}

.module-card:hover .module-icon {
    transform: rotate(5deg) scale(1.1);
}

.module-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.module-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-light-start) 0%, rgba(65, 105, 225, 0.05) 100%);
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.pricing-background .gradient-overlay {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.03) 0%, rgba(0, 206, 209, 0.08) 100%);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-blue);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before,
.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(65, 105, 225, 0.2);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.15);
}

.pricing-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto .5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.6;
}


.price-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    text-align: left;
    margin-bottom: .75rem;
}

.pricing-features h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 0.25rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features ul li i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-blue);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gradient-light-start) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-list {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-blue);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section New */
.contact-section-new {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #5a7fe8 50%, var(--primary-cyan) 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.contact-section-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
    transform: rotate(-15deg);
    pointer-events: none;
    opacity: 0.5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-column {
    color: var(--white);
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-detail-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-form-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #4169E1, #00CED1);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-heading {
        font-size: 2.5rem;
    }

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


/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(65, 105, 225, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .dashboard-visual {
        display: none;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-icons {
        gap: 1.5rem;
    }

    .icon-wrapper {
        min-width: 150px;
        min-height: 100px;
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }

    .icon-wrapper h3 {
        font-size: 0.875rem;
    }

    .icon-wrapper p {
        font-size: 0.75rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .invoice-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .invoice-slider-wrapper {
        gap: 0.5rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    @media (max-width: 480px) {
        .invoice-card {
            flex: 0 0 100%;
        }
    }

    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.25rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .stat-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-buttons {
        display: none;
    }

    .feature-icons {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1rem;
    }
}

/* Extra Small Screens - 300px and up */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-section {
        padding: 100px 12px 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 8rem 0 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.9rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .stat-title {
        font-size: 1.1rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

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

    .feature-icons {
        flex-direction: column;
        gap: 1rem;
    }

    .icon-wrapper {
        min-width: 100%;
        padding: 1rem;
    }

    .icon-wrapper h3 {
        font-size: 0.9rem;
    }

    .icon-wrapper p {
        font-size: 0.8rem;
    }

    .feature-detail {
        padding: 1.5rem;
    }

    .feature-detail h3 {
        font-size: 1.5rem;
    }

    .feature-detail p {
        font-size: 1rem;
    }

    .invoices-section {
        padding: 60px 0;
    }

    .invoice-slider-wrapper {
        gap: 0.5rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .invoice-card {
        flex: 0 0 100%;
        padding: 1rem;
    }

    .modules-section {
        padding: 60px 0;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module-card {
        padding: 1.5rem;
    }

    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .module-card h3 {
        font-size: 1.2rem;
    }

    .module-card p {
        font-size: 0.9rem;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .pricing-features {
        margin-bottom: 1rem;
    }

    .pricing-features ul li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .btn-pricing {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-intro {
        position: static;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .contact-section-new {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-detail-item {
        font-size: 0.95rem;
    }

    .contact-form-column {
        padding: 1.5rem;
    }

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

    .form-field input,
    .form-field textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        align-self: stretch;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Ultra Small Screens - 300px to 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .hero-content {
        padding: 6rem 0 0;
    }

    .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .stat-title {
        font-size: 1rem;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .contact-heading {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* Minimum Screen Size - 300px */
@media (min-width: 300px) and (max-width: 320px) {
    .container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .hero-content {
        padding: 5rem 0 0;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .about-card,
    .module-card,
    .pricing-card {
        padding: 1.25rem;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-form-column {
        padding: 1.25rem;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}