/* CSS Variables & Reset */
:root {
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-alt: #f1f5f9;
    --text: #0f172a;
    --text-muted: #64748b;
    --muted: rgba(15, 23, 42, 0.6);
    --primary: #22c55e;
    --primary2: #16a34a;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --font-main: 'Outfit', sans-serif;
    --font-nav: 'Roboto', sans-serif;
    --header-height: 4.5rem;
    --z-fixed: 100;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Soft ambient glows */
    background: 
        radial-gradient(at 0% 0%, rgba(34, 197, 94, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(34, 197, 94, 0.03) 0px, transparent 50%);
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 6rem 0 2rem;
}

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

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Base Reveal State */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    transition-delay: 0.1s;
}

/* Specific Reveal Types */
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }

/* Active (Visible) State */
.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Grid Staggering (automatically apply delays to children in large grids) */
.grid-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.grid-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.grid-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.grid-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.grid-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.grid-stagger > *:nth-child(6) { transition-delay: 0.6s; }

.text-gradient {
    background: linear-gradient(90deg, var(--primary2), #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: saturate(1.5) brightness(1.2); /* Polished vibrance */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--transition);
    gap: 0.5rem;
    border: 1px solid transparent;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
}

.btn--primary:hover {
    background-color: var(--primary2);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.3);
}

.btn--secondary {
    background-color: var(--white);
    color: var(--text);
    border-color: var(--border);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary2);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--bg);
    padding: 0.5rem 1rem;
    z-index: 1000;
}

.skip-to-content:focus {
    top: 0;
}

/* Header & Nav */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: background-color .3s, padding .3s, box-shadow .3s;
    padding-top: 1.5rem;
    font-family: var(--font-nav);
}

.header--scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding-top: 0;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.025em;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-weight: 600;
    color: var(--text-muted);
}

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

.nav__toggle, .nav__close, .nav__cta-mobile {
    display: none;
}

/* Hero */
.hero__container {
    padding-top: 2rem;
    align-items: center;
    text-align: center;
}

.hero__pills {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.375rem 1rem;
    background: #f0fdf4;
    color: var(--primary2);
    border: 1px solid #dcfce7;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Device Mockup - Premium Evolution */
.device-mockup {
    width: 320px;
    height: 640px;
    background: #1e293b;
    border: 10px solid #111827;
    border-radius: 2.5rem;
    position: relative;
    box-shadow: 
        0 30px 60px -12px rgba(0,0,0,0.25),
        0 18px 36px -18px rgba(0,0,0,0.3),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 1;
}

/* Glass Reflection */
.device-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 5;
    pointer-events: none;
    border-radius: 2rem;
}

/* Hardware Buttons */
.device-btns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.device-btn-power {
    position: absolute;
    top: 100px;
    right: -15px;
    width: 3px;
    height: 80px;
    background: #111827;
    border-radius: 0 4px 4px 0;
}

.device-btn-volume {
    position: absolute;
    top: 90px;
    left: -15px;
    width: 3px;
    height: 40px;
    background: #111827;
    border-radius: 4px 0 0 4px;
}

.device-btn-volume::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    width: 3px;
    height: 40px;
    background: #111827;
    border-radius: 4px 0 0 4px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 3.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Dynamic Island / Notch */
.device-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-notch::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
    margin-left: 40px;
}

.app-content {
    flex: 1;
    overflow-y: hidden;
    background: var(--surface);
}

.app-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.skeleton-chart::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Social Proof */
.social-proof {
    background: var(--white);
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.social-proof__text {
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
}

/* Features */
.features__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2rem;
    transition: all .4s var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
}

/* How It Works */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline__item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 4rem;
}

.timeline__dot {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    z-index: 1;
}

.timeline__content h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline__content p {
    color: var(--text-muted);
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.carousel__track-container {
    overflow: hidden;
    position: relative;
}

.carousel__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel__slide {
    min-width: 100%;
    text-align: center;
}

.screen-placeholder {
    height: 600px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2.5rem;
    margin: 0 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.screen-label {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.75rem;
    opacity: 0.3;
}

.carousel__caption {
    font-weight: 700;
    font-size: 1.125rem;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all .3s;
}

.carousel__button:hover {
    border-color: var(--primary);
    color: var(--primary2);
    box-shadow: var(--shadow-lg);
}

.carousel__button--left { left: -60px; }
.carousel__button--right { right: -60px; }

.is-hidden { display: none; }

.carousel__nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel__indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
}

.carousel__indicator.current-slide {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* Progress Section */
.progress-highlight .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.progress__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.report-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.report-header h3 {
    font-weight: 800;
}

.report-header span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.report-stat {
    margin-bottom: 1.75rem;
}

.report-stat .label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background: var(--surface-alt);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary2), var(--primary));
    border-radius: 10px;
    transition: width 1s ease;
}

.report-stat .value {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.report-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--primary2);
}
/* Review Cards */
/* Review Card - Premium Edit */
.review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.04),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.review-stars {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}
.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.review-user strong {
    display: block;
    color: var(--text);
}

.review-user span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Accordion */
.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion__item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    background: var(--white);
    transition: all .3s;
}

.accordion__item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.accordion__header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}

.accordion__header svg {
    transition: .3s;
    color: var(--text-muted);
}

.accordion__item.is-open .accordion__header svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion__content {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Contact Section */
.contact .container.grid {
    gap: 4rem;
}

.contact__info {
    margin-top: 2rem;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact__info-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Contact Form */
.contact__form {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.form__group {
    margin-bottom: 1.75rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.form__group input, .form__group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text);
    transition: all .3s;
}

.form__group input:focus, .form__group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 8rem 0 3rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

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

.footer h3 {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    font-weight: 800;
}

.footer__links ul li {
    margin-bottom: 1rem;
}

.footer__links ul li a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer__links ul li a:hover {
    color: var(--primary);
}

/* CTA Banner - Stunning Redesign */
.cta-banner {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3rem;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 
        0 20px 50px -15px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.cta-banner p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer Improvements */
.footer {
    background: #fdfdfd;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text);
    transition: all .3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.footer__bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Media Queries */
@media screen and (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero__container {
        grid-template-columns: 1.2fr 0.8fr;
        padding-top: 10rem;
        text-align: left;
    }

    .contact .container.grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: center;
        gap: 8rem;
    }
}

@media screen and (max-width: 991px) {
    .hero__container {
        gap: 4rem;
    }
    
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .header {
        padding-top: 0 !important;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: 5rem 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        z-index: var(--z-fixed);
        visibility: hidden;
        opacity: 0;
    }
    
    .nav__menu.show-menu {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        cursor: pointer;
    }
    
    .nav__toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav__btn {
        display: none;
    }
    
    .nav__cta-mobile {
        display: block;
        margin-top: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .carousel__button--left { left: 10px; }
    .carousel__button--right { right: 10px; }

    .header {
        padding-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .device-mockup {
        width: 280px;
        height: 560px;
        border-width: 10px;
        border-radius: 3.5rem;
    }

    .feature-card {
        padding: 2rem;
    }
    
    .section {
        padding: 4rem 0 2rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
