/**
 * fiedoruk.pl/gminy - Rozwiązania IT dla Samorządów
 * Main CSS Stylesheet
 *
 * @author fiedoruk.pl
 * @version 1.0.0
 * @copyright 2026 fiedoruk.pl
 */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Primary - Professional Blue */
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;
    --primary-200: #BFDBFE;
    --primary-300: #93C5FD;
    --primary-400: #60A5FA;
    --primary-500: #3B82F6;
    --primary-600: #2563EB;
    --primary-700: #1D4ED8;
    --primary-800: #1E40AF;
    --primary-900: #1E3A8A;

    /* Accent Colors */
    --green-500: #22C55E;
    --green-600: #16A34A;
    --purple-500: #A855F7;
    --purple-600: #9333EA;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --teal-500: #14B8A6;
    --teal-600: #0D9488;
    --gold-400: #FBBF24;
    --gold-500: #F59E0B;
    --gold-600: #D97706;

    /* Neutrals */
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    /* Semantic */
    --bg: var(--slate-50);
    --bg-light: #FFFFFF;
    --bg-dark: var(--slate-900);
    --text: var(--slate-800);
    --text-light: var(--slate-500);
    --text-muted: var(--slate-400);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;

    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(30, 64, 175, 0.15);
    --shadow-gold: 0 0 40px rgba(251, 191, 36, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 50%, var(--purple-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading-hero {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
}

.heading-section {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
}

.text-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-600);
    margin-bottom: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--primary-800);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: var(--slate-100);
    color: var(--text);
    border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-200);
    border-color: var(--slate-300);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--slate-300);
}

.btn-ghost:hover {
    background: var(--slate-100);
    border-color: var(--slate-400);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--slate-900);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

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

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(30, 64, 175, 0); }
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-icon-left {
    width: 18px;
    height: 18px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: var(--space-sm) 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-800);
    color: white;
    border-radius: var(--radius-sm);
}

.nav-logo-dot {
    color: var(--primary-600);
}

.nav-logo-badge {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    background: var(--primary-100);
    color: var(--primary-800);
    border-radius: var(--radius-full);
    margin-left: var(--space-xs);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--duration-fast);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

@media (max-width: 968px) {
    .nav-links,
    .nav-cta .btn {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-link {
    display: block;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    transition: color var(--duration-fast);
}

.mobile-menu-link:hover {
    color: var(--primary-400);
}

.mobile-menu-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(30, 64, 175, 0.15), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--slate-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-float-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-200);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 300px;
    height: 300px;
    background: var(--purple-200);
    bottom: 20%;
    left: 10%;
    animation-delay: -7s;
}

.hero-float-3 {
    width: 200px;
    height: 200px;
    background: var(--gold-200);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
}

.hero-text {
    max-width: 600px;
}

@media (max-width: 968px) {
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s var(--ease-out);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-badge-text strong {
    color: var(--primary-700);
}

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

.hero-title-line {
    display: block;
}

.hero-title-small {
    font-size: 0.65em;
    color: var(--text-light);
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

@media (max-width: 968px) {
    .hero-trust {
        justify-content: center;
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-trust-item i {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .hero-visual-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

.hero-service-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all var(--duration-normal) var(--ease-out);
    animation: fadeInUp 0.6s var(--ease-out) backwards;
}

.hero-service-card-1 { animation-delay: 0.1s; }
.hero-service-card-2 { animation-delay: 0.2s; }
.hero-service-card-3 { animation-delay: 0.3s; }
.hero-service-card-4 { animation-delay: 0.4s; }

.hero-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.hero-service-icon.blue { background: var(--primary-100); color: var(--primary-600); }
.hero-service-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--green-600); }
.hero-service-icon.purple { background: rgba(168, 85, 247, 0.1); color: var(--purple-600); }
.hero-service-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--orange-600); }

.hero-service-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
}

.hero-service-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Code Decoration */
.hero-code-decoration {
    position: absolute;
    bottom: -30px;
    left: -60px;
    background: var(--slate-900);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s var(--ease-out) 0.5s backwards;
    z-index: 2;
}

@media (max-width: 968px) {
    .hero-code-decoration {
        display: none;
    }
}

.hero-code-line {
    color: var(--slate-400);
}

.code-keyword { color: #C678DD; }
.code-string { color: #98C379; }
.code-method { color: #61AFEF; }
.code-comment { color: #5C6370; }

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

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--primary-800);
    color: white;
    padding: var(--space-xl) 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

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

.stats-bar-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.stats-bar-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: var(--space-5xl) 0;
}

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

.problem-header .text-lead {
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.problem-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.problem-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.problem-card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    padding: var(--space-5xl) 0;
    background: white;
}

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

.solution-header .text-lead {
    margin: 0 auto;
}

.solution-title-highlight {
    color: var(--primary-600);
}

.solution-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

.solution-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--slate-50);
    border-radius: var(--radius-md);
    max-width: 360px;
}

.solution-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.solution-benefit-text {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.solution-benefit-text strong {
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-5xl) 0;
    background: var(--slate-50);
}

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

.services-header .text-lead {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

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

.service-card-featured {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-glow);
}

.service-card-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: var(--radius-full);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.service-card-icon.blue { background: var(--primary-100); color: var(--primary-600); }
.service-card-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--green-600); }
.service-card-icon.purple { background: rgba(168, 85, 247, 0.1); color: var(--purple-600); }
.service-card-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--orange-600); }
.service-card-icon.teal { background: rgba(20, 184, 166, 0.1); color: var(--teal-600); }
.service-card-icon.gray { background: var(--slate-100); color: var(--slate-600); }

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card-text {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-card-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-light);
    padding: var(--space-xs) 0;
}

.service-card-features i {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--slate-100);
}

.service-card-price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-card-price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.service-card-price-currency {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: var(--space-5xl) 0;
    background: white;
}

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

.showcase-header .text-lead {
    margin: 0 auto;
}

.showcase-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

@media (max-width: 968px) {
    .showcase-main {
        grid-template-columns: 1fr;
    }
}

/* Showcase Phone Mockup */
.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-phone {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.showcase-phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.showcase-phone-header {
    padding: var(--space-sm) var(--space-md);
    background: var(--slate-50);
}

.showcase-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.showcase-phone-icons {
    display: flex;
    gap: 4px;
}

.showcase-phone-app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.875rem;
}

.showcase-phone-content {
    padding: var(--space-md);
}

.showcase-phone-search {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--slate-100);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.showcase-phone-calendar {
    margin-bottom: var(--space-md);
}

.showcase-calendar-month {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.showcase-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 0.6875rem;
    text-align: center;
}

.showcase-calendar-day {
    padding: 6px 2px;
    border-radius: 4px;
}

.showcase-calendar-day.header {
    font-weight: 600;
    color: var(--text-muted);
}

.showcase-calendar-day.waste-mixed {
    background: #f0fdf4;
    color: #166534;
    font-weight: 600;
}

.showcase-calendar-day.waste-plastic {
    background: #fef9c3;
    color: #854d0e;
    font-weight: 600;
}

.showcase-phone-legend {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    font-size: 0.6875rem;
}

.showcase-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.showcase-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.showcase-legend-dot.mixed { background: #22c55e; }
.showcase-legend-dot.plastic { background: #eab308; }

/* Showcase Floating Cards */
.showcase-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.showcase-floating-card {
    position: absolute;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.showcase-floating-card-1 {
    top: 20px;
    right: -60px;
    animation-delay: 0s;
}

.showcase-floating-card-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: -2s;
}

.showcase-floating-card-3 {
    bottom: 20px;
    left: -60px;
    animation-delay: -4s;
}

@media (max-width: 968px) {
    .showcase-floating-cards {
        display: none;
    }
}

.showcase-floating-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.showcase-floating-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--green-600); }
.showcase-floating-icon.yellow { background: rgba(234, 179, 8, 0.1); color: #ca8a04; }
.showcase-floating-icon.blue { background: var(--primary-100); color: var(--primary-600); }

.showcase-floating-text {
    font-weight: 600;
    font-size: 0.8125rem;
}

.showcase-floating-subtext {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* Showcase Content */
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-600);
    background: rgba(34, 197, 94, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.showcase-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.showcase-description {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

.showcase-feature {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
}

.showcase-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-feature strong {
    color: var(--text);
}

.showcase-feature span {
    color: var(--text-light);
}

.showcase-stats {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: var(--space-xl);
}

.showcase-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-700);
}

.showcase-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.showcase-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.showcase-pricing-hint {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.showcase-pricing-hint strong {
    color: var(--text);
}

/* ============================================
   PRICING BY SIZE
   ============================================ */
.pricing-size {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 100%);
}

.pricing-size-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.pricing-size-header .text-lead {
    margin: 0 auto;
}

.pricing-size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 968px) {
    .pricing-size-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-size-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing-size-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-size-card.featured {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-glow);
}

.pricing-size-card.premium {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    color: white;
    border: none;
}

.pricing-size-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-600);
    color: white;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-size-badge.premium {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--slate-900);
}

.pricing-size-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.pricing-size-card.premium .pricing-size-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-400);
}

.pricing-size-name {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.pricing-size-pop {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.pricing-size-card.premium .pricing-size-pop {
    color: var(--slate-400);
}

.pricing-size-range {
    padding: var(--space-md);
    background: var(--slate-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.pricing-size-card.premium .pricing-size-range {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-size-from {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.pricing-size-card.premium .pricing-size-from {
    color: var(--slate-400);
}

.pricing-size-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.pricing-size-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-size-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
}

.pricing-size-features i {
    width: 16px;
    height: 16px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-size-card.premium .pricing-size-features i {
    color: var(--gold-400);
}

.pricing-size-procedure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--primary-600);
    padding: var(--space-sm);
    background: var(--primary-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.pricing-size-card.premium .pricing-size-procedure {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-400);
}

.pricing-note {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--slate-100);
    border-radius: var(--radius-md);
}

.pricing-note i {
    flex-shrink: 0;
    color: var(--primary-600);
}

.pricing-note p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-note strong {
    color: var(--text);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--space-5xl) 0;
    background: white;
}

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

.process-header .text-lead {
    margin: 0 auto;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--slate-200);
}

@media (max-width: 640px) {
    .process-timeline::before {
        left: 20px;
    }
}

.process-step {
    display: flex;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-600);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .process-step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

.process-step-content {
    padding-top: var(--space-sm);
}

.process-step-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.process-step-text {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.process-step-time {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--slate-50);
}

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

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

.faq-item {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    cursor: pointer;
    transition: background var(--duration-fast);
}

.faq-question:hover {
    background: var(--slate-50);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

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

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

.contact-description {
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--slate-50);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.contact-method:hover {
    background: var(--slate-100);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius-sm);
}

.contact-method-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-method-value {
    font-weight: 600;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--primary-50);
    border-radius: var(--radius-md);
}

.contact-person-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: 50%;
}

.contact-person-name {
    font-weight: 600;
}

.contact-person-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem var(--space-md);
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: all var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-error {
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.contact-form-success {
    text-align: center;
    padding: var(--space-3xl);
}

.contact-form-success-icon {
    color: var(--green-500);
    margin-bottom: var(--space-lg);
}

.contact-form-success h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.contact-form-success p {
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--slate-900) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
}

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

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

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

.cta .btn-primary:hover {
    background: var(--slate-100);
}

.cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-900);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-600);
    border-radius: var(--radius-sm);
}

.footer-logo-dot {
    color: var(--primary-400);
}

.footer-description {
    color: var(--slate-400);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--slate-300);
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    padding: var(--space-xs) 0;
    color: var(--slate-400);
    font-size: 0.9375rem;
    transition: color var(--duration-fast);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-xl);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.footer-version {
    margin-left: var(--space-sm);
    font-size: 0.75rem;
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal-link {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color var(--duration-fast);
}

.footer-legal-link:hover {
    color: white;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--slate-400);
}

.footer-heart {
    color: #EF4444;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animation for grid items */
.service-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.service-card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.service-card.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.service-card.animate-ready:nth-child(4) { transition-delay: 0.3s; }
.service-card.animate-ready:nth-child(5) { transition-delay: 0.4s; }
.service-card.animate-ready:nth-child(6) { transition-delay: 0.5s; }

.pricing-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.pricing-card.animate-ready:nth-child(2) { transition-delay: 0.15s; }
.pricing-card.animate-ready:nth-child(3) { transition-delay: 0.3s; }

.problem-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.problem-card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.problem-card.animate-ready:nth-child(3) { transition-delay: 0.2s; }

.process-step.animate-ready:nth-child(1) { transition-delay: 0s; }
.process-step.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.process-step.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.process-step.animate-ready:nth-child(4) { transition-delay: 0.3s; }
.process-step.animate-ready:nth-child(5) { transition-delay: 0.4s; }

/* Navbar scrolled state */
.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form validation styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .animate-in {
        transition: none;
    }
}
