/*
 * EDS Financeiros — Frontend CSS v2.0
 * Redesign: modern financial services aesthetic
 */

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
    /* Brand */
    --blue:        #166534;
    --blue-dark:   #14532d;
    --blue-light:  #dcfce7;
    --violet:      #16a34a;
    --violet-dark: #15803d;
    --gradient:    linear-gradient(135deg, #14532d 0%, #166534 50%, #16a34a 100%);
    --gradient-subtle: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);

    /* Semantic */
    --success: #059669;
    --danger:  #dc2626;
    --warning: #d97706;

    /* Neutral */
    --dark:   #0f172a;
    --body:   #1e293b;
    --muted:  #64748b;
    --light:  #f8faff;
    --border: #e2e8f0;
    --white:  #ffffff;

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow:    0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);
    --shadow-blue: 0 8px 32px rgba(22,101,52,0.25);

    /* Border radius */
    --r-sm: 6px;
    --r:    12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 999px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--body); }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--violet); }

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

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* =====================================================
   NAVBAR
   ===================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 0;
}

.site-header .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark) !important;
    text-decoration: none;
}

.brand-logo-icon {
    width: 38px; height: 38px;
    background: var(--gradient);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--body) !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--r-sm);
    transition: all 0.2s;
    position: relative;
}

.navbar-nav .nav-link:hover { color: var(--blue) !important; background: var(--blue-light); }
.navbar-nav .nav-link.active { color: var(--blue) !important; font-weight: 600; }

.site-header.transparent .navbar-nav .nav-link { color: var(--body) !important; }
.site-header.transparent .navbar-nav .nav-link:hover { color: var(--blue) !important; background: var(--blue-light); }
.site-header.transparent .navbar-brand { color: var(--dark) !important; }
.site-header.transparent .navbar-toggler { border-color: rgba(255,255,255,0.3); }
.site-header.transparent .navbar-toggler-icon { filter: invert(1); }

.btn-nav-cta {
    background: var(--gradient);
    color: white !important;
    border-radius: var(--r-full) !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-blue);
    transition: all 0.2s;
    font-size: 0.875rem !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(29,78,216,0.35) !important;
    color: white !important;
    background: rgba(0,0,0,0) !important; /* prevent BS override */
}

/* Page content offset */
body > main { padding-top: 72px; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    background: var(--gradient);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(124,58,237,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(29,78,216,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 80px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-section h1 {
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-section h1 span {
    background: linear-gradient(90deg, #fde68a, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatars span {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    margin-left: -8px;
}

.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.hero-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r);
    padding: 16px 20px;
    min-width: 120px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-float {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--r-lg);
    padding: 28px;
    max-width: 340px;
    color: white;
}

.hero-card-float .metric-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.hero-card-float .metric-label { font-size: 0.8rem; opacity: 0.75; }
.hero-card-float .metric-value { font-size: 2rem; font-weight: 800; }
.hero-card-float .metric-change {
    font-size: 0.8rem;
    background: rgba(16,185,129,0.2);
    color: #6ee7b7;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 12px;
}

.chart-bar {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border-radius: 3px 3px 0 0;
    transition: height 0.3s;
}

.chart-bar.active { background: rgba(255,255,255,0.7); }

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--light); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 14px;
    border-radius: var(--r-full);
    margin-bottom: 12px;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
}

.section-header.text-center .section-subtitle { margin: 0 auto; }

/* Decorative underline */
.section-title .highlight {
    position: relative;
    color: var(--blue);
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    opacity: 0.4;
}

/* =====================================================
   SERVICES
   ===================================================== */
.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.28s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: var(--gradient-subtle);
    color: var(--blue);
    transition: all 0.28s;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
    background: var(--gradient);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") center;
}

.stat-item { text-align: center; color: white; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    height: 60px;
    margin: auto;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: var(--gradient-subtle);
    min-height: 300px;
}

.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: white;
    border-radius: var(--r-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.about-badge .badge-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--body);
}

.check-list li::before {
    content: '';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #d1fae5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =====================================================
   WHY US / FEATURES
   ===================================================== */
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all 0.25s;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: #bfdbfe;
    transform: translateY(-3px);
}

.feature-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p { font-size: 0.875rem; color: var(--muted); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--light); }

.testimonial-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 28px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.25s;
}

.testimonial-card:hover { box-shadow: var(--shadow); border-color: #bfdbfe; }

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.875rem; color: var(--dark); }
.author-role { font-size: 0.75rem; color: var(--muted); }

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    transition: all 0.25s;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-card-img {
    height: 200px;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 3rem;
    overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 22px; }

.blog-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 3px 10px;
    border-radius: var(--r-full);
    margin-bottom: 10px;
}

.blog-card-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-card-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 16px; }

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--muted);
}

.read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.read-more:hover { gap: 8px; color: var(--violet); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 90% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 30% 50% at 5% 90%, rgba(0,0,0,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 { color: white; font-weight: 800; letter-spacing: -0.3px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--r-sm);
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(29,78,216,0.35);
    color: white;
    background: var(--gradient);
}

.btn-primary:active { transform: none; }

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline-primary:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--blue);
    font-weight: 700;
}

.btn-light:hover {
    background: #f0f9ff;
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; border-radius: var(--r); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.825rem; }

.btn-pill { border-radius: var(--r-full) !important; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: #0b1426;
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .navbar-brand { color: white !important; }

.footer-description {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: white; gap: 10px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact li i {
    color: var(--blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* =====================================================
   FORMS
   ===================================================== */
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: var(--dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 6px;
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    border-radius: var(--r);
    border: none;
    padding: 14px 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--success); }
.alert-danger   { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--danger); }
.alert-warning  { background: #fef3c7; color: #92400e; border-left: 4px solid var(--warning); }
.alert-info     { background: var(--blue-light); color: #1e40af; border-left: 4px solid var(--blue); }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-brand { background: var(--gradient); }

.divider { height: 1px; background: var(--border); margin: 0; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.animate-float { animation: float 4s ease-in-out infinite; }

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hero-section { padding: 60px 0 60px; }
    .hero-section::after { height: 40px; }
    .hero-visual { margin-top: 40px; }
    .stat-divider { display: none; }
    .about-badge { bottom: -12px; right: -8px; padding: 12px 16px; }
}

@media (max-width: 767px) {
    body > main { padding-top: 64px; }
    .section { padding: 56px 0; }
    .stats-strip { padding: 40px 0; }
    .stat-number { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-section { padding: 56px 0; }
    .hero-stats { gap: 12px; }
    .hero-stat { padding: 12px 16px; }
    .hero-stat-num { font-size: 1.4rem; }
}

@media (max-width: 575px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .btn-lg { padding: 0.7rem 1.5rem; font-size: 0.95rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
