/*
Theme Name: Nopsa4 Theme
Theme URI: https://nopsa4.morko.posso.fi
Description: Nopsa — Tee enemmän, nopeammin. Custom AutoWP theme.
Version: 1.0.0
Author: AutoWP
*/

:root {
    --color-primary: #1450B8;
    --color-navy: #0F3E8C;
    --color-light-blue: #EBF4FF;
    --color-off-white: #F5F5F3;
    --color-text: #1A1A1A;
    --color-accent: #ff6b35;
    --color-white: #ffffff;
    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Lora', Georgia, serif;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-main); color: var(--color-text); line-height: 1.6; font-size: 1rem; font-weight: 400; background: var(--color-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-navy); }
ul, ol { list-style: none; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: 8px; font-weight: 500; font-size: 1rem; font-family: var(--font-main); border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; text-decoration: none; }
.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { background: var(--color-navy); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: #e55a25; color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--color-white); color: var(--color-primary); }
.btn-white:hover { background: var(--color-light-blue); color: var(--color-navy); transform: translateY(-2px); }

/* Section divider */
.section-divider { display: block; width: 60px; height: 3px; background: var(--color-accent); margin: 1rem auto; border-radius: 2px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 36px; width: auto; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a { color: var(--color-text); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--color-primary); }
.desktop-nav .btn { padding: 0.625rem 1.5rem; font-size: 0.9rem; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 1001; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px auto; transition: transform 0.3s, opacity 0.3s; border-radius: 2px; }

/* Mobile Nav */
.main-nav { display: none; }
body.menu-open { overflow: hidden; }

@media (max-width: 820px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .main-nav { display: block; position: fixed; inset: 0; z-index: 999; background: rgba(15,23,42,0.97); visibility: hidden; pointer-events: none; transition: visibility 0.3s, opacity 0.3s; opacity: 0.95; }
    body.nav-open .main-nav { visibility: visible; pointer-events: auto; opacity: 1; }
    .main-nav .menu-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
    .main-nav ul { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 2rem; }
    .main-nav ul li a { color: white; font-size: 1.25rem; font-weight: 500; }
    .main-nav .btn { background: var(--color-accent); color: white; padding: 0.75rem 2rem; border-radius: 8px; }
}

/* Hero */
.section-hero { min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--color-primary) 0%, #0a2d6e 50%, var(--color-navy) 100%); position: relative; overflow: hidden; padding: 6rem 0; }
.section-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; color: var(--color-white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.25rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-decoration { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 45%; opacity: 0.9; }
.hero-decoration img { width: 100%; }
@media (max-width: 820px) {
    .section-hero { min-height: 70vh; padding: 4rem 0; }
    .hero-decoration { display: none; }
}

/* Social Proof */
.section-social-proof { background: var(--color-white); padding: 3rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.social-proof-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.social-proof-text { font-size: 1.1rem; font-weight: 500; color: var(--color-text); }
.social-proof-stats { display: flex; gap: 3rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); display: block; }
.stat-label { font-size: 0.85rem; color: #666; }

/* Features */
.section-features { padding: 5rem 0; background: var(--color-off-white); }
.section-features .section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-features .section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-features .section-header p { color: #555; font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--color-white); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card .icon { width: 48px; height: 48px; background: var(--color-light-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-primary); }
.feature-card .icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { font-size: 1rem; color: #555; line-height: 1.6; flex: 1; }
@media (max-width: 820px) { .features-grid { grid-template-columns: 1fr; } }

/* Integrations */
.section-integrations { padding: 5rem 0; background: var(--color-white); }
.section-integrations .section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-integrations .section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-integrations .section-header p { color: #555; font-size: 1.1rem; }
.integrations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.integration-card { background: var(--color-off-white); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 1rem; transition: transform 0.2s, box-shadow 0.2s; }
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.integration-card .icon { width: 56px; height: 56px; background: var(--color-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); color: var(--color-primary); }
.integration-card .icon svg { width: 28px; height: 28px; }
.integration-card h3 { font-size: 1.25rem; font-weight: 600; }
.integration-card p { font-size: 1rem; color: #555; line-height: 1.6; }
@media (max-width: 640px) { .integrations-grid { grid-template-columns: 1fr; } }

/* Testimonial */
.section-testimonial { padding: 5rem 0; background: var(--color-light-blue); }
.testimonial-card { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,0.95); border-radius: 16px; padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center; position: relative; }
.testimonial-card .quote-mark { font-size: 5rem; line-height: 1; color: var(--color-accent); position: absolute; top: -0.5rem; left: 2rem; }
.testimonial-stars { color: var(--color-accent); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; line-height: 1.7; color: var(--color-text); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.testimonial-info .name { font-weight: 700; font-size: 1.1rem; }
.testimonial-info .role { color: #666; font-size: 0.9rem; }

/* Pricing */
.section-pricing { padding: 5rem 0; background: var(--color-white); }
.section-pricing .section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-pricing .section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-pricing .section-header p { color: #555; font-size: 1.1rem; }
.pricing-card { max-width: 480px; margin: 0 auto; background: var(--color-white); border: 2px solid var(--color-primary); border-radius: var(--radius); padding: 3rem; text-align: center; box-shadow: var(--shadow-md); }
.pricing-card .plan-name { font-size: 1.1rem; font-weight: 600; color: var(--color-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.pricing-card .price { font-size: 3rem; font-weight: 700; color: var(--color-text); }
.pricing-card .price .period { font-size: 1rem; font-weight: 400; color: #666; }
.pricing-features { text-align: left; margin: 2rem 0; }
.pricing-features li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; gap: 0.75rem; }
.pricing-features li::before { content: ''; display: inline-block; width: 20px; height: 20px; background: var(--color-light-blue); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231450B8'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; }

/* CTA Banner */
.section-cta-banner { padding: 5rem 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%); text-align: center; position: relative; overflow: hidden; }
.section-cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.section-cta-banner h2 { font-size: 2.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 1rem; position: relative; }
.section-cta-banner p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.section-cta-banner .btn { position: relative; }

/* Footer */
.site-footer { background: #0c1829; color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand img { height: 28px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-links h4 { color: var(--color-white); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }
@media (max-width: 640px) { .footer-inner { flex-direction: column; text-align: center; } }

/* Inner Page Hero */
.inner-hero { padding: 4rem 0 3rem; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%); text-align: center; position: relative; }
.inner-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.inner-hero .badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--color-white); padding: 0.375rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; position: relative; }
.inner-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--color-white); margin-bottom: 1rem; position: relative; }
.inner-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; position: relative; }

/* LTD Page */
.ltd-pricing-hero { padding: 4rem 0; background: var(--color-off-white); text-align: center; }
.ltd-pricing-hero .price-box { display: inline-block; background: var(--color-white); border: 2px solid var(--color-accent); border-radius: var(--radius); padding: 2rem 3rem; box-shadow: var(--shadow-md); }
.ltd-pricing-hero .price { font-size: 3.5rem; font-weight: 700; color: var(--color-accent); }
.ltd-pricing-hero .price-detail { color: #666; font-size: 1rem; }
.ltd-pricing-hero .minimum { font-size: 1.1rem; font-weight: 500; margin-top: 1rem; }
.ltd-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 4rem 0; }
@media (max-width: 820px) { .ltd-features-grid { grid-template-columns: 1fr; } }
.ltd-feature-card { background: var(--color-white); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,0,0,0.06); text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.ltd-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ltd-feature-card .icon { width: 56px; height: 56px; background: var(--color-light-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--color-primary); }
.ltd-feature-card .icon svg { width: 28px; height: 28px; }
.ltd-feature-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.ltd-feature-card p { color: #555; font-size: 0.95rem; }

/* Comparison */
.ltd-comparison { padding: 4rem 0; background: var(--color-off-white); }
.comparison-table { max-width: 600px; margin: 2rem auto 0; background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-row { display: flex; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row.highlight { background: var(--color-light-blue); font-weight: 600; }

/* FAQ */
.faq-section { padding: 4rem 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { width: 100%; background: none; border: none; padding: 1.25rem 0; font-size: 1.1rem; font-weight: 600; font-family: var(--font-main); color: var(--color-text); cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 1.25rem; color: #555; line-height: 1.7; }

/* Features page */
.feature-block { padding: 4rem 0; }
.feature-block:nth-child(even) { background: var(--color-off-white); }
.feature-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-block.reverse .feature-block-inner { direction: rtl; }
.feature-block.reverse .feature-block-inner > * { direction: ltr; }
.feature-block-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-block-text p { color: #555; margin-bottom: 1rem; line-height: 1.7; }
.feature-block-text ul { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-block-text ul li { display: flex; align-items: center; gap: 0.5rem; }
.feature-block-text ul li::before { content: ''; width: 20px; height: 20px; background: var(--color-light-blue); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231450B8'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; }
.feature-block-visual { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%); border-radius: var(--radius); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.feature-block-visual svg { width: 64px; height: 64px; color: rgba(255,255,255,0.3); }
@media (max-width: 820px) {
    .feature-block-inner { grid-template-columns: 1fr; gap: 2rem; }
    .feature-block.reverse .feature-block-inner { direction: ltr; }
}

/* Integrations page */
.int-card-large { background: var(--color-white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 2rem; transition: transform 0.2s, box-shadow 0.2s; }
.int-card-large:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.int-card-large h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.int-card-large h3 .icon { width: 40px; height: 40px; background: var(--color-light-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; }
.int-card-large h3 .icon svg { width: 22px; height: 22px; }
.int-card-large p { color: #555; margin-bottom: 1rem; }
.int-card-large .features-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.int-card-large .features-list span { background: var(--color-light-blue); color: var(--color-primary); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500; }

/* Steps */
.steps-section { padding: 4rem 0; background: var(--color-off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.step-card { text-align: center; padding: 2rem; }
.step-number { width: 48px; height: 48px; background: var(--color-primary); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; margin: 0 auto 1rem; }
.step-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { color: #555; font-size: 0.95rem; }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 4rem 0; }
.contact-card { background: var(--color-white); border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); }
.contact-card .icon { width: 56px; height: 56px; background: var(--color-light-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--color-primary); }
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-card p { color: #555; font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 640px) { .contact-cards-grid { grid-template-columns: 1fr; } }

/* Inner CTA */
.inner-cta { padding: 5rem 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-navy) 100%); text-align: center; position: relative; }
.inner-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.inner-cta h2 { font-size: 2rem; font-weight: 700; color: var(--color-white); margin-bottom: 1rem; position: relative; }
.inner-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.inner-cta .btn { position: relative; }

/* Utility */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

/* 404 */
.page-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; }
.page-404 h1 { font-size: 6rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; }
.page-404 p { font-size: 1.25rem; color: #555; margin-bottom: 2rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0.85; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.section-hero, .section-features, .section-integrations, .section-testimonial, .section-pricing, .section-cta-banner, .inner-hero, .inner-cta { animation: fadeInUp 0.6s ease forwards; }
.feature-card:nth-child(1) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0s; }
.feature-card:nth-child(2) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.2s; }
