/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Dark Slate Theme */
    --primary-color: #334155;
    --primary-dark: #1e293b;
    --primary-light: #475569;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Layout */
    --container-max-width: 1440px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 10rem var(--spacing-md) 8rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    color: #f59e0b;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Section Styles ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* ===== Promise Section ===== */
.promise-section {
    background-color: var(--bg-white);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Solutions Section ===== */
.solutions-section {
    background-color: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.solution-card {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    padding: var(--spacing-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.solution-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-icon {
    font-size: 2rem;
    display: inline-block;
    line-height: 1;
}

.solution-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.solution-perfect-for {
    background-color: var(--bg-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.solution-perfect-for strong {
    color: var(--primary-color);
}

.solution-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.solution-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.solution-features li strong {
    color: var(--text-dark);
}

.solution-timeline {
    background-color: rgba(37, 99, 235, 0.08);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.timeline-icon {
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-content strong {
    color: var(--text-dark);
    display: block;
}

.timeline-content span {
    display: block;
    line-height: 1.5;
}

.solution-price {
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.price-detail {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.5;
}

.price-range {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.solution-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== Why Section ===== */
.why-section {
    background-color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Force 5 columns on very large screens */
@media (min-width: 1400px) {
    .why-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.why-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.why-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

/* ===== Process Section ===== */
.process-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

.process-section .section-title,
.process-section .section-subtitle {
    color: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    align-items: center;
    margin: var(--spacing-lg) 0;
}

.process-step {
    text-align: center;
    padding: var(--spacing-md);
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.process-description {
    opacity: 0.9;
    font-size: 1rem;
}

.process-connector {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== Outcomes Section ===== */
.outcomes-section {
    background-color: var(--bg-light);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.outcome-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 1rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.outcome-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.outcome-quote:before {
    content: "\201C";
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

/* Statistics Cards */
.outcome-card.stat-card {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.outcome-stat {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.outcome-stat-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.outcome-source {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Case Study Teaser */
.case-study-teaser {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.1));
    border-radius: 1rem;
    padding: var(--spacing-lg);
    border: 2px solid var(--primary-color);
}

.teaser-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.case-study-mini {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.case-element {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-color);
    line-height: 1.7;
    color: var(--text-medium);
}

.case-element strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.teaser-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: var(--spacing-md);
}

.teaser-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease;
}

.teaser-note a:hover {
    color: var(--primary-dark);
}

/* ===== About Section ===== */
.about-section {
    background-color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.belief-quote {
    font-size: 1.75rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    line-height: 1.5;
}

/* ===== Add-Ons Section ===== */
.addons-section {
    background-color: var(--bg-light);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--spacing-md);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - var(--spacing-md));
    min-width: 0;
}

.addon-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.addon-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.addon-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.addon-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.addon-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.addon-features li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.addon-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

.indicator.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.addons-cta {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding: var(--spacing-lg);
    background-color: white;
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
}

.addons-note {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* ===== Contact Form Section ===== */
.contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.form-message {
    text-align: center;
    padding: var(--spacing-sm);
    border-radius: 0.5rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        gap: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .nav-link-cta {
        padding: 0.4rem 1rem;
    }
    
    .hero {
        padding: 8rem var(--spacing-sm) 6rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .solutions-grid,
    .why-grid,
    .process-timeline,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    /* Carousel responsive - show 2 slides on tablets */
    .carousel-slide {
        flex: 0 0 calc(50% - var(--spacing-md) / 2);
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .process-connector {
        display: none;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    /* Form responsive - single column on tablet */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    /* Carousel responsive - show 1 slide on mobile */
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.solution-card,
.why-item,
.process-step,
.outcome-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

