/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --ink: #051343;
    --crimson: #b61d44;
    --hot-pink: #f3275a;
    --coral: #f54c4f;
    --sun: #fcad32;
    --lemon: #fed427;
    --violet: #ab5ce9;
    --royal: #5106d0;
    --peach: #fdca85;
    --paper: #ffffff;
    --muted: rgba(5, 19, 67, 0.64);
    
    /* Gradients */
    --gradient-violet: linear-gradient(135deg, var(--violet), var(--royal));
    --gradient-coral: linear-gradient(135deg, var(--coral), var(--sun));
    --gradient-ink: linear-gradient(135deg, var(--ink), #0a1f5a);
    
    /* Spacing Scale */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2rem);
    --space-xl: clamp(2rem, 4vw, 3rem);
    --space-2xl: clamp(3rem, 6vw, 4rem);
    --space-3xl: clamp(4rem, 8vw, 6rem);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 1vw, 0.875rem);
    --text-sm: clamp(0.875rem, 1.2vw, 1rem);
    --text-base: clamp(1rem, 1.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 2vw, 1.25rem);
    --text-xl: clamp(1.25rem, 2.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 3vw, 2rem);
    --text-3xl: clamp(2rem, 4vw, 2.5rem);
    --text-4xl: clamp(2.5rem, 5vw, 3rem);
    --text-5xl: clamp(3rem, 6vw, 4rem);
    
    /* Layout */
    --container-max: 1220px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--paper);
    background-color: var(--ink);
    overflow-x: hidden;
}

/* Utility Classes */
.sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-family: inherit;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    min-height: 44px;
}

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

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

.btn--secondary {
    background: transparent;
    color: var(--paper);
    border: 2px solid var(--paper);
}

.btn--secondary:hover {
    background: var(--paper);
    color: var(--ink);
}

.btn--large {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-lg);
    min-height: 56px;
}

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

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--coming-soon {
    background: var(--gradient-coral);
    color: var(--paper);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 19, 67, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-md);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--paper);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-lg);
}

.header__logo img {
    width: 32px;
    height: 32px;
}

.header__nav {
    display: none;
}

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

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

.header__nav-link:hover,
.header__nav-link:focus {
    color: var(--lemon);
}

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

.header__nav-link:hover::after,
.header__nav-link:focus::after {
    width: 100%;
}

.header__cta {
    display: none;
}

.header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--paper);
    transition: all var(--transition-normal);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--ink);
    z-index: 200;
    transition: right var(--transition-normal);
    overflow-y: auto;
}

.mobile-drawer.is-open {
    right: 0;
}

.mobile-drawer__content {
    padding: var(--space-2xl) var(--space-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-drawer__nav-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.mobile-drawer__nav-link {
    display: block;
    padding: var(--space-md) 0;
    color: var(--paper);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer__cta {
    margin-top: auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px; /* Account for fixed header */
    padding-bottom: 80px; /* Add bottom padding */
    display: flex;
    align-items: center;
    background: var(--gradient-ink);
    overflow: hidden;
}

.hero__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.hero__blob--violet {
    width: 400px;
    height: 400px;
    background: var(--gradient-violet);
    top: 10%;
    right: -100px;
}

.hero__blob--coral {
    width: 300px;
    height: 300px;
    background: var(--gradient-coral);
    bottom: 20%;
    left: -50px;
}

.hero__blob--sun {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--sun), var(--lemon));
    top: 60%;
    right: 20%;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.hero__badge {
    margin-bottom: var(--space-xl);
}

.hero__title {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--paper), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--paper);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    margin-top: var(--space-xl);
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--paper), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services Section */
.services {
    padding: var(--space-3xl) 0 !important;
    background: var(--ink) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.service-card {
    background: var(--paper);
    border: 1px solid rgba(5, 19, 67, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 0;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 320px;
    box-shadow: 0 4px 12px rgba(5, 19, 67, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--paper);
    border-color: var(--violet);
    box-shadow: 0 8px 24px rgba(171, 92, 233, 0.2);
}

.service-card__image {
    width: 100%;
    height: 120px;
    background: var(--gradient-violet);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: 0;
    padding: 0;
    display: block;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
}

.service-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--ink);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    padding: var(--space-md) var(--space-md) 0 var(--space-md);
}

.service-card__description {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

/* Note Card Styles */
.service-card--note {
    background: var(--paper);
    border: 2px solid var(--coral);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
    height: 200px !important; /* Daha kısa yükseklik */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) !important;
}

.service-card--note:hover {
    transform: translateY(-8px);
    border-color: var(--coral);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
}

.service-card--note .service-card__title {
    color: var(--coral);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.service-card--note .service-card__description {
    color: var(--muted);
    font-style: italic;
    text-align: center;
    font-size: var(--text-base);
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-3xl) 0 !important;
    background: var(--gradient-ink) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    position: relative;
}

.how-it-works__steps::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--coral), var(--sun));
    transform: translateY(-50%);
    z-index: 1;
}

@media (min-width: 1024px) {
    .how-it-works__steps::after {
        display: block;
    }
}

.step-card {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
    background: var(--ink);
    border-radius: var(--border-radius);
}

.step-card__number {
    width: 60px;
    height: 60px;
    background: var(--gradient-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--space-lg);
    color: var(--paper);
}

.step-card__title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-sm);
    color: var(--paper);
}

.step-card__description {
    color: var(--paper);
    font-size: var(--text-base);
}

/* Partner Section */
.partner {
    padding: var(--space-3xl) 0 !important;
    background: var(--ink) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
}

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

.form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-medium);
    color: var(--paper);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--paper);
    font-family: inherit;
    font-size: var(--text-base);
    transition: all var(--transition-normal);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(171, 92, 233, 0.2);
}

.form__input::placeholder {
    color: var(--muted);
}

.form__input--large {
    padding: var(--space-lg);
    font-size: var(--text-lg);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    min-width: 300px;
}

.form__input--large:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--violet);
    box-shadow: 0 0 30px rgba(171, 92, 233, 0.4);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.partner__submit {
    width: 100%;
    margin-top: var(--space-lg);
}



/* FAQ Section */
.faq {
    padding: var(--space-3xl) 0 !important;
    background: var(--paper) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
}

.faq .section__title {
    background: linear-gradient(135deg, var(--violet), var(--lemon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(171, 92, 233, 0.1);
}

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

.faq__item {
    border: 1px solid rgba(5, 19, 67, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 2px 8px rgba(5, 19, 67, 0.1);
}

.faq__question {
    padding: var(--space-lg);
    background: rgba(5, 19, 67, 0.05);
    cursor: pointer;
    font-weight: var(--font-weight-medium);
    color: var(--ink);
    list-style: none;
    transition: background var(--transition-normal);
}

.faq__question:hover {
    background: rgba(5, 19, 67, 0.1);
}

.faq__question::marker {
    display: none;
}

.faq__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted);
}



/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--gradient-ink);
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

.contact__info h3,
.contact__social h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
    color: var(--paper);
}

.contact__info a {
    color: var(--lemon);
    text-decoration: none;
}

.contact__info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-medium);
    color: var(--paper);
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

.footer__link {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--paper);
}

.footer__legal {
    text-align: center;
    color: var(--muted);
    font-size: var(--text-sm);
}

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

.footer__coming-soon p {
    margin: 0;
    color: var(--paper);
    font-size: var(--text-sm);
}

.footer__made-with {
    margin-top: var(--space-sm);
    color: var(--coral);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.modal.is-open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 19, 67, 0.9);
    backdrop-filter: blur(10px);
}

.modal__content {
    position: relative;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--paper);
}

.modal__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal__header h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    color: var(--paper);
}

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

.modal__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.modal__submit {
    width: 100%;
}



/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-violet);
    color: var(--paper);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    z-index: 1001;
    max-width: 400px;
}

.toast.is-visible {
    transform: translateX(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .header__nav {
        display: block;
    }
    
    .header__cta {
        display: inline-flex;
    }
    
    .header__mobile-toggle {
        display: none;
    }
    
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .coming-soon__form-content {
        flex-direction: row;
    }
    

}

@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .service-card {
        height: 280px;
        padding: var(--space-md);
    }
    
    .service-card__image {
        height: 100px;
        margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-sm) calc(-1 * var(--space-md));
    }
}

@media (max-width: 480px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .service-card {
        height: auto;
        min-height: 120px;
        padding: var(--space-md);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .service-card__image {
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin: 0;
        border-radius: var(--border-radius);
        flex-shrink: 0;
        position: relative;
    }
    
    .service-card__image img {
        border-radius: var(--border-radius);
        position: relative;
    }
    
    .service-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .service-card__title {
        padding: 0;
        margin: 0 0 var(--space-sm) 0;
        font-size: var(--text-base);
        text-align: left;
    }
    
    .service-card__description {
        padding: 0;
        margin: 0;
        text-align: left;
        -webkit-line-clamp: 3;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__blob {
        transform: none !important;
    }
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--lemon);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .mobile-drawer,
    .mobile-cta,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
}

/* Reveal Animations - Disabled for now */
.service-card,
.step-card,
.faq__item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all var(--transition-slow);
}

/* Stagger animation for service cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }
.service-card:nth-child(7) { transition-delay: 0.7s; }
.service-card:nth-child(8) { transition-delay: 0.8s; }
.service-card:nth-child(9) { transition-delay: 0.9s; }
.service-card:nth-child(10) { transition-delay: 1.0s; }
.service-card:nth-child(11) { transition-delay: 1.1s; }
.service-card:nth-child(12) { transition-delay: 1.2s; }
.service-card:nth-child(13) { transition-delay: 1.3s; }
.service-card:nth-child(14) { transition-delay: 1.4s; }

/* Stagger animation for step cards */
.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }

/* Active navigation states */
.header__nav-link.is-active,
.mobile-drawer__nav-link.is-active {
    color: var(--lemon);
}

.header__nav-link.is-active::after,
.mobile-drawer__nav-link.is-active::after {
    width: 100%;
}

/* Loaded state animations */
body.is-loaded .hero__content {
    animation: fadeInUp 1s ease-out;
}

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

/* Toast variants */
.toast--success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.toast--error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast--info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
