/* ===========================================
   IT Service Hürth - Static Website Styles
   =========================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors - Dark Tech Theme */
    --background: hsl(220, 25%, 8%);
    --foreground: hsl(210, 20%, 95%);
    
    --card: hsl(220, 25%, 11%);
    --card-foreground: hsl(210, 20%, 95%);
    
    /* Primary - Red Accent */
    --primary: hsl(0, 72%, 51%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --secondary: hsl(220, 20%, 18%);
    --secondary-foreground: hsl(210, 20%, 90%);
    
    --muted: hsl(220, 20%, 15%);
    --muted-foreground: hsl(215, 15%, 55%);
    
    --border: hsl(220, 20%, 18%);
    
    /* Glow colors */
    --glow: hsl(0, 72%, 51%);
    --glow-muted: hsl(0, 60%, 40%);
    
    /* Gradients */
    --gradient-start: hsl(0, 72%, 51%);
    --gradient-end: hsl(15, 80%, 45%);
    
    /* Spacing */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: hsla(220, 25%, 11%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(220, 20%, 18%, 0.5);
}

.desktop-only {
    display: none;
}

@media (min-width: 640px) {
    .desktop-only {
        display: inline-flex;
    }
}

/* ===========================================
   Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

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

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background: hsl(0, 72%, 45%);
    box-shadow: 0 0 20px -5px var(--glow);
}

.btn-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-hero:hover {
    box-shadow: 0 0 30px -5px var(--glow);
    transform: translateY(-2px);
}

.btn-hero svg {
    transition: transform var(--transition);
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.btn-hero-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

/* ===========================================
   Header
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: hsla(220, 25%, 11%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(220, 20%, 18%, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: hsla(0, 72%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: box-shadow var(--transition);
}

.logo:hover .logo-icon {
    box-shadow: 0 0 15px -3px var(--glow);
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
        flex-direction: column;
    }
}

.logo-title {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    position: relative;
    transition: color var(--transition);
}

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

.nav-link:hover {
    color: var(--foreground);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: background var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: transform var(--transition);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    padding: 1.5rem 0;
    background: hsla(220, 25%, 11%, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-link-mobile {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.nav-link-mobile:hover {
    color: var(--foreground);
}

.nav-mobile .btn {
    margin-top: 1rem;
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: 
        linear-gradient(to right, var(--border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, var(--background), transparent, var(--background)),
        linear-gradient(to right, var(--background), transparent, var(--background));
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

.hero-orb-1 {
    top: 20%;
    left: 20%;
    width: 24rem;
    height: 24rem;
    background: hsla(0, 72%, 51%, 0.1);
}

.hero-orb-2 {
    bottom: 20%;
    right: 20%;
    width: 20rem;
    height: 20rem;
    background: hsla(0, 60%, 40%, 0.1);
    animation-delay: -4s;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 9999px;
    background: hsla(220, 25%, 11%, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsla(0, 72%, 51%, 0.3);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-badge svg {
    color: var(--primary);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title span {
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-trust {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(220, 20%, 18%, 0.5);
}

.hero-trust-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.hero-trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.trust-tag {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    background: hsla(220, 20%, 18%, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--muted-foreground);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.625rem;
    background: var(--primary);
    border-radius: 9999px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

/* ===========================================
   Sections Common
   =========================================== */
.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), hsla(220, 20%, 18%, 0.05), var(--background));
    pointer-events: none;
}

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

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    background: hsla(0, 72%, 51%, 0.1);
    border-radius: 9999px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===========================================
   Services Section
   =========================================== */
.services {
    position: relative;
    padding: 6rem 0;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: hsla(220, 25%, 11%, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, hsla(0, 72%, 51%, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: hsla(0, 72%, 51%, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: box-shadow var(--transition);
}

.service-card:hover .service-icon {
    box-shadow: 0 0 15px -3px var(--glow);
}

.service-title {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    position: relative;
    z-index: 1;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===========================================
   About Section
   =========================================== */
.about {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, hsla(0, 72%, 51%, 0.05), transparent);
    pointer-events: none;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-badge,
.about-content .section-title {
    text-align: left;
}

.about-text {
    margin-top: 1.5rem;
}

.about-text p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: hsla(0, 72%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* About Visual Card */
.about-visual {
    position: relative;
}

.about-card {
    position: relative;
    aspect-ratio: 1;
    max-width: 28rem;
    margin: 0 auto;
}

.about-card-glow {
    position: absolute;
    inset: 0;
    background: hsla(0, 72%, 51%, 0.2);
    border-radius: var(--radius-xl);
    filter: blur(40px);
}

.about-card-content {
    position: absolute;
    inset: 1rem;
    border-radius: var(--radius-xl);
    background: hsla(220, 25%, 11%, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: float 5s ease-in-out infinite;
}

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

.about-card-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gradient-start), var(--glow-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
    box-shadow: 0 0 30px -5px var(--glow);
}

.about-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-card-content > p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===========================================
   Contact Section
   =========================================== */
.contact {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.contact-form-wrapper::before,
.contact-info-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, hsla(0, 72%, 51%, 0.2), transparent, hsla(0, 60%, 40%, 0.2));
    z-index: -1;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: hsla(220, 20%, 18%, 0.5);
    border: 1px solid hsla(0, 72%, 51%, 0.2);
    border-radius: var(--radius);
    color: var(--foreground);
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(0, 72%, 51%, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn.loading .btn-text,
.btn.loading .btn-icon {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-flex;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact Info */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: hsla(220, 20%, 18%, 0.5);
    transition: all var(--transition);
}

.contact-item:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: hsla(0, 72%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-value {
    font-weight: 500;
    transition: color var(--transition);
}

.contact-item:hover .contact-value {
    color: var(--primary);
}

.contact-link {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Contact CTA */
.contact-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, hsla(0, 72%, 51%, 0.1), hsla(0, 60%, 40%, 0.1));
    border: 1px solid hsla(0, 72%, 51%, 0.2);
}

.contact-cta h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    padding: 3rem 0;
    background: hsla(220, 25%, 11%, 0.3);
    border-top: 1px solid hsla(220, 20%, 18%, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.footer-title {
    display: block;
    font-weight: 600;
}

.footer-subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal .divider {
    color: var(--border);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(220, 20%, 18%, 0.5);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===========================================
   Toast Notification
   =========================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.success {
    border-color: hsl(142, 76%, 36%);
}

.toast.error {
    border-color: var(--primary);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon::before {
    content: '✓';
    color: hsl(142, 76%, 36%);
}

.toast.error .toast-icon::before {
    content: '✕';
    color: var(--primary);
}

.toast-message {
    font-size: 0.875rem;
}

/* ===========================================
   Animations
   =========================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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