* {
    font-family: "Inter", sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sweet-gradient {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f8b500 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

.section-padding {
    padding: 4rem 0;
}

.text-sweet-primary {
    color: #c44569;
}

.text-sweet-secondary {
    color: #ff6b9d;
}

.bg-sweet-light {
    background-color: #fef7f7;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.stats-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.calculator-input {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.calculator-input:focus {
    border-color: #ff6b9d;
    outline: none;
}

@media print {
    .no-print {
        display: none !important;
    }
}

.card-shadow {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover-lift {
    transition: transform 0.2s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.overflow-x-auto {
    overflow-x: auto;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
    border-top-width: 1px;
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgb(229 231 235);
}

@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }

    .grid-cols-1.lg\\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.chart-colors {
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #ef4444;
    --gray: #6b7280;
}

.cta-button-mobile {
    display: none;
}

.cta-button-tablet {
    display: none;
}

.cta-button-desktop {
    display: flex;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 320px;
    max-width: 85vw;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-open {
    overflow: hidden;
}

.mobile-overlay {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .cta-button-desktop,
    .cta-button-tablet {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .cta-button-mobile {
        display: block;
        width: 100%;
        margin-top: 2rem;
        padding: 1rem;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .cta-button-desktop {
        display: none !important;
    }

    .cta-button-tablet {
        display: flex !important;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .cta-button-desktop {
        display: flex !important;
    }

    .cta-button-tablet,
    .mobile-menu-btn {
        display: none !important;
    }
}

.burger-icon {
    transition: transform 0.3s ease;
}

.burger-icon.rotate {
    transform: rotate(90deg);
}

.mobile-nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.125rem;
    font-weight: 500;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease forwards;
}

.mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}
.mobile-nav-link:nth-child(2) {
    animation-delay: 0.2s;
}
.mobile-nav-link:nth-child(3) {
    animation-delay: 0.3s;
}
.mobile-nav-link:nth-child(4) {
    animation-delay: 0.4s;
}
.mobile-nav-link:nth-child(5) {
    animation-delay: 0.5s;
}
.mobile-nav-link:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
