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

:root {
    --purple-600: #9333ea;
    --purple-500: #a855f7;
    --purple-200: #e9d5ff;
    --purple-100: #f3e8ff;
    --blue-500: #3b82f6;
    --blue-100: #dbeafe;
    --indigo-600: #4f46e5;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--gray-900);
    line-height: 1.5;
    background-color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-right {
    text-align: right;
}

.text-success {
    color: var(--green-500);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, var(--purple-600), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(to right, var(--purple-600), var(--blue-500));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    color: var(--gray-800);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-large {
    padding: 0.875rem 2rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem;
}

.header-content {
    background-color: #241c44;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, var(--purple-600), var(--blue-500));
    color: var(--white);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.logo-text-small {
    font-size: 1.25rem;
}

.header .logo-text {
    color: var(--white);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--white);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle.active .menu-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    background-color: #241c44;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav .nav-link {
    color: #d1d5db;
}

.mobile-nav .btn {
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .nav-desktop,
    .header-actions {
        display: flex;
    }

    .menu-toggle,
    .mobile-menu {
        display: none;
    }
}

/* Main Content */
.main-content {
    padding-top: 6rem;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 7rem;
    }
}

/* Hero Section */
.hero {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
    }
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--indigo-600);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .hero-mockup {
        margin-top: 6rem;
    }
}

.mockup-blur {
    position: absolute;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(2rem);
}

.mockup-blur-1 {
    top: -2.5rem;
    left: -2.5rem;
    background-color: var(--purple-200);
    animation: pulse 2s infinite;
}

.mockup-blur-2 {
    bottom: -2.5rem;
    right: -2.5rem;
    background-color: #bfdbfe;
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

/* Dashboard Mockup */
.dashboard-mockup {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

@media (min-width: 768px) {
    .dashboard-mockup {
        padding: 1.5rem;
        transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
    }
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .dashboard-container {
        flex-direction: row;
    }
}

.dashboard-sidebar {
    width: 100%;
    background-color: rgba(249, 250, 251, 0.5);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

@media (min-width: 768px) {
    .dashboard-sidebar {
        width: 20%;
    }
}

.dashboard-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.dashboard-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-500);
    font-weight: 400;
}

.nav-item:hover {
    background-color: var(--gray-100);
}

.nav-item.active {
    background-color: rgba(219, 234, 254, 0.6);
    color: #1d4ed8;
    font-weight: 600;
}

.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.dashboard-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .dashboard-main {
        width: 80%;
    }
}

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

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 0.25rem;
}

.stat-value-success {
    color: var(--green-500);
    display: flex;
    align-items: center;
}

.trending-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.25rem;
}

.chart-card,
.table-card {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.chart-card {
    height: 12rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .chart-card {
        height: 16rem;
    }
}

.chart-title,
.table-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.chart-placeholder {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    gap: 0.5rem;
}

.bar {
    flex: 1;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

.bar-1 {
    background-color: #93c5fd;
}

.bar-2 {
    background-color: #d8b4fe;
}

.table-card {
    display: none;
}

@media (min-width: 640px) {
    .table-card {
        display: block;
    }
}

.table-content {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-family: 'Courier New', monospace;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.table-header {
    font-weight: 600;
}

.table-divider {
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    margin: 0.25rem 0;
    grid-column: 1 / -1;
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background-color: rgba(249, 250, 251, 0.7);
}

@media (min-width: 768px) {
    .trusted-by {
        padding: 5rem 0;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-weight: 500;
}

.logos-grid {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 768px) {
    .logos-grid {
        gap: 6rem;
    }
}

.partner-logo {
    width: auto;
    height: 3rem;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.partner-logo-large {
    height: 6rem;
}

@media (min-width: 768px) {
    .partner-logo {
        height: 4rem;
    }

    .partner-logo-large {
        height: 7rem;
    }
}

/* Section Common Styles */
.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Features Section */
.features {
    padding: 5rem 0;
    scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
    .features {
        padding: 7rem 0;
    }
}

.features-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--purple-600), var(--blue-500));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-description {
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card:hover .feature-title {
    color: var(--white);
}

.feature-card:hover .feature-description {
    color: #e5e7eb;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(to bottom right, var(--purple-100), var(--blue-100));
    color: var(--purple-600);
    transition: all 0.3s;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.feature-description {
    color: var(--gray-600);
    transition: color 0.3s;
}

/* Collaboration Section */
.collaboration {
    padding: 5rem 0;
    background-color: rgba(249, 250, 251, 0.7);
    scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
    .collaboration {
        padding: 7rem 0;
    }
}

.collaboration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .collaboration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }
}

.collaboration-visual {
    position: relative;
}

.chat-card {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-message-offset {
    padding-left: 2rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.message-content {
    flex: 1;
}

.message-author {
    font-weight: 600;
    color: var(--gray-800);
}

.message-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.dashboard-badge {
    padding: 0.75rem;
    background: linear-gradient(to right, var(--purple-500), var(--blue-500));
    border-radius: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.blur-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    height: 20rem;
    background-color: rgba(216, 180, 254, 0.5);
    border-radius: 50%;
    filter: blur(3rem);
}

.collaboration-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .collaboration-content {
        text-align: left;
    }
}

.collaboration-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .collaboration-title {
        font-size: 2.25rem;
    }
}

.collaboration-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.collaboration-content .btn {
    margin-top: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
    .why-choose-us {
        padding: 7rem 0;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }
}

.why-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .why-content {
        text-align: left;
    }
}

.why-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .why-title {
        font-size: 2.25rem;
    }
}

.why-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-feature {
    padding: 1.5rem;
}

.why-icon {
    width: 2rem;
    height: 2rem;
    color: var(--purple-600);
    margin-bottom: 0.75rem;
}

.why-feature-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-800);
}

.why-feature-description {
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 7rem 0;
    }
}

.cta-card {
    position: relative;
    background-color: #241c44;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem;
    }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.cta-card .btn {
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
    .pricing {
        padding: 7rem 0;
    }
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 2.25rem;
    }
}

.pricing-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.pricing-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card-pro {
    background-color: var(--gray-900);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(to right, var(--purple-500), var(--blue-500));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transform: rotate(12deg);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-card-pro .plan-name {
    color: var(--white);
}

.plan-description {
    margin-top: 0.5rem;
    color: var(--gray-600);
}

.pricing-card-pro .plan-description {
    color: var(--gray-300);
}

.plan-price {
    margin-top: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-card-pro .plan-price {
    color: var(--white);
}

.price-period {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-card-pro .price-period {
    color: var(--gray-400);
}

.plan-features {
    margin-top: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-600);
    flex-grow: 1;
}

.pricing-card-pro .plan-features {
    color: var(--gray-300);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-500);
}

.pricing-card-pro .check-icon {
    color: var(--green-400);
}

.pricing-card .btn {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: rgba(249, 250, 251, 0.7);
    border-top: 1px solid rgba(229, 231, 235, 0.8);
    scroll-margin-top: 6rem;
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 4;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 600;
    color: var(--gray-800);
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
