/*
Theme Name: Unternehmerstammtisch Slim
Theme URI: https://unternehmerstammtisch.de
Author: Unternehmerstammtisch Deutschland e.V.
Description: Schlankes Theme für Unternehmerstammtisch - WooCommerce kompatibel
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: unternehmerstammtisch
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #b7791f;
    --accent-light: #d69e2e;
    --cream: #faf9f7;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --success: #059669;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: 20px; }

p {
    margin-bottom: 1em;
}

strong {
    color: var(--gray-800);
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 720px;
}

.container--medium {
    max-width: 900px;
}

/* ==========================================================================
   Navigation (wird via header.php eingefügt)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}

.nav__logo-text span {
    display: block;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 12px;
    color: var(--gray-600);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__menu li {
    margin: 0;
}

.nav__link {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

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

.nav__link--cta,
.nav__menu .cta a {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.nav__link--cta:hover,
.nav__menu .cta a:hover {
    background: var(--primary-light) !important;
    color: var(--white) !important;
}

.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 100px 24px;
}

.section--gray {
    background: var(--gray-50);
}

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

.section--primary h2,
.section--primary h3 {
    color: var(--white);
}

.section--primary p {
    color: rgba(255,255,255,0.85);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section--primary .section__label {
    color: var(--accent-light);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section--primary .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 160px 24px 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero__label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero__subtitle {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero__subtitle strong {
    color: var(--gray-800);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero__cta:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Path Selection Cards (Homepage)
   ========================================================================== */
.paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.path {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.path__icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.path__icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.path__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.path__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.path__desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.path__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.path__arrow {
    transition: transform 0.3s ease;
}

.path:hover .path__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Value Props Grid
   ========================================================================== */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value {
    text-align: center;
    padding: 32px 24px;
}

.value__icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.value__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.value__text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Quote Section
   ========================================================================== */
.quote-section {
    padding: 80px 24px;
    background: var(--primary);
    text-align: center;
}

.quote {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.quote::before {
    content: '"';
    display: block;
    font-size: 72px;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: -20px;
}

/* ==========================================================================
   Problem/Solution Text Sections
   ========================================================================== */
.problem__text,
.solution__text {
    font-size: 18px;
    line-height: 1.8;
}

.problem__text {
    color: var(--gray-600);
}

.solution__text {
    color: rgba(255,255,255,0.85);
}

.problem__text strong {
    color: var(--gray-800);
}

.solution__text strong {
    color: var(--white);
}

.problem__highlight {
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    color: var(--primary);
    padding: 32px 0;
    margin: 32px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.solution__emphasis {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--accent-light);
    text-align: center;
    padding: 24px 0;
}

/* ==========================================================================
   Feature Cards (7-Zeilen etc.)
   ========================================================================== */
.seven-lines__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.seven-lines__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.seven-lines__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sl-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.sl-card__icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.sl-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.sl-card__text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Benefits Grid
   ========================================================================== */
.benefits__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 10px;
}

.benefit__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit__content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.benefit__content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing__header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing__card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.pricing__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing__name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.pricing__desc {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.pricing__price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing__amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing__amount span {
    font-size: 24px;
    font-weight: 400;
    color: var(--gray-600);
}

.pricing__period {
    font-size: 16px;
    color: var(--gray-600);
    margin-top: 8px;
}

.pricing__features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing__features li:last-child {
    border-bottom: none;
}

.pricing__features svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--success);
    margin-top: 2px;
}

.pricing__features span {
    font-size: 16px;
    color: var(--gray-800);
}

.pricing__features strong {
    color: var(--primary);
}

.pricing__cta {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing__cta:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing__note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 20px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}

.faq__question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq__answer {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 100px 24px;
    text-align: center;
}

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta {
    padding: 100px 24px;
    background: var(--primary);
    text-align: center;
}

.final-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta__text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.final-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn--primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--gray-800);
    color: var(--gray-400);
    padding: 60px 24px 40px;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
}

.footer__col-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    font-size: 14px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--white);
}

/* Simple Footer (für Berater-Seite etc.) */
.footer-simple {
    background: var(--gray-800);
    color: var(--gray-400);
    padding: 40px 24px;
}

.footer-simple__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-simple__links {
    display: flex;
    gap: 24px;
}

.footer-simple__links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-simple__links a:hover {
    color: var(--white);
}

/* ==========================================================================
   WooCommerce Compatibility
   ========================================================================== */
.woocommerce-page .site-main {
    padding-top: 100px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    text-align: center;
}

.woocommerce ul.products li.product .price {
    color: var(--primary);
    font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    transition: all 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-light);
    color: var(--white);
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--accent);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--accent-light);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .paths {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seven-lines__grid,
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__mobile-toggle {
        display: block;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .section {
        padding: 70px 24px;
    }

    .pricing__card {
        padding: 40px 24px;
    }

    .pricing__amount {
        font-size: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom,
    .footer-simple__container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
