/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0D254F;
    background-color: #ffffff;
}

/* ===== VARIABLES ===== */
:root {
    /* Colors from brand manual */
    --color-primary: #4A26BF; /* Blue Depression */
    --color-secondary: #0D254F; /* Ambassador Blue */
    --color-accent: #32EB2E; /* Alarming Slime */
    --color-light: #D9D7EF; /* Sachet Cushion */
    --color-blue-genie: #4666FF; /* Blue Genie Color */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A26BF 0%, #4666FF 100%);
    --gradient-secondary: linear-gradient(135deg, #0D254F 0%, #4A26BF 100%);
    --gradient-accent: linear-gradient(135deg, #32EB2E 0%, #4666FF 100%);
    
    /* Typography */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(77, 38, 191, 0.1);
    --shadow-md: 0 4px 16px rgba(77, 38, 191, 0.15);
    --shadow-lg: 0 8px 32px rgba(77, 38, 191, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section__title--highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__description {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    gap: var(--spacing-xs);
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
    background: var(--color-primary);
    color: white;
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(77, 38, 191, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav__logo-img {
    width: 100%;
    height: 40px;
}

.nav__logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav__link {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 var(--spacing-xxl);
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100px;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero__title--highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.hero__stat-text {
    font-size: 0.875rem;
    color: #666;
}

.hero__image {
    position: relative;
    text-align: center;
}

.hero__img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

.hero__floating-card {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

.floating-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 200px;
}

.floating-card__icon {
    font-size: 1.5rem;
}

.floating-card__content h4 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.floating-card__content p {
    font-size: 0.75rem;
    color: #666;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== RETURN MANAGEMENT SECTION ===== */
.return-management {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.return-management__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    align-items: center;
}

.problem-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.problem-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card__title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.problem-card__text {
    font-size: 1rem;
    line-height: 1.6;
}

.solution-features {
    display: grid;
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.feature-card__text {
    color: #666;
    line-height: 1.6;
}

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

.return-management__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.results__title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xl);
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.result-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.result-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.result-card__number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.result-card__text {
    color: #666;
    font-weight: var(--font-weight-medium);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-item {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.feature-item__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-item__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.feature-item__text {
    color: #666;
    line-height: 1.6;
}

/* ===== PROBLEMS SOLUTIONS SECTION ===== */
.problems-solutions {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.problems-solutions__grid {
    display: grid;
    gap: var(--spacing-xl);
}

.problem-solution-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.problem-solution-card__problem,
.problem-solution-card__solution {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
}

.problem-solution-card__problem {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.problem-solution-card__solution {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.problem-solution-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.problem-solution-card__icon--problem {
    color: #d32f2f;
}

.problem-solution-card__icon--solution {
    color: #388e3c;
}

.problem-solution-card__arrow {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.problem-solution-card h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: var(--color-secondary);
}

.problem-solution-card p {
    color: #666;
    line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
}

.pricing__card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--color-primary);
}

.pricing__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-accent);
    color: white;
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    border-radius: 0 0 0 var(--border-radius-md);
}

.pricing__header {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gradient-primary);
    color: white;
}

.pricing__title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.pricing__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.pricing__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.pricing__price-old {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing__price-current {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
}

.pricing__price-period {
    font-size: 1.125rem;
    opacity: 0.9;
}

.pricing__features {
    padding: var(--spacing-xl);
}

.pricing__features h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.pricing__features-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.pricing__features-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #666;
}

.pricing__cta {
    padding: var(--spacing-xl);
    text-align: center;
    background: #f8f9ff;
}

.pricing__guarantee {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: #666;
}

.pricing__comparison {
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.pricing__comparison h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
}

.comparison__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}

.comparison__item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.comparison__item--highlight {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
}

.comparison__item h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.comparison__item ul {
    list-style: none;
    text-align: left;
}

.comparison__item li {
    margin-bottom: var(--spacing-xs);
    color: #666;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #eee;
    margin-bottom: var(--spacing-md);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq__question:hover {
    background-color: #f8f9ff;
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
}

.faq__toggle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    transition: transform var(--transition-normal);
}

.faq__item.active .faq__toggle {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: #666;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta__buttons .btn--primary {
    background: white;
    color: var(--color-primary);
}

.cta__buttons .btn--primary:hover {
    background: var(--color-light);
}

.cta__buttons .btn--outline {
    border-color: white;
    color: white;
}

.cta__buttons .btn--outline:hover {
    background: white;
    color: var(--color-primary);
}

.cta__guarantee {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer__logo-img {
    width: 100%;
}

.footer__logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--spacing-xs);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: white;
}

.footer__contact p {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer__legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .return-management__content {
        grid-template-columns: 1fr;
    }
    
    .problem-solution-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .problem-solution-card__arrow {
        transform: rotate(90deg);
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-xl);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 var(--spacing-xl);
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__floating-card {
        display: none;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .results__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison__grid {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .results__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .pricing__price {
        flex-direction: column;
        gap: 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav__link:focus,
.faq__question:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
}

