*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #1e1b4b;
    --primary-dark: #0f0d2e;
    --accent-color: #6366f1;
    --accent-hover: #8b5cf6;
    --accent-soft: #f5f3ff;
    --text-color: #0f172a;
    --muted-color: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #fafafa;
    --bg-section: #f8fafc;
    --shadow-soft: 0 20px 50px rgba(99, 102, 241, 0.12);
    --shadow-hover: 0 25px 60px rgba(99, 102, 241, 0.2);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    scroll-behavior: smooth;
}

/* HEADER & NAVIGATION */

header.fixed-top {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.97), rgba(15, 13, 46, 0.98));
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.35);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.navbar {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.navbar-brand:hover {
    opacity: 0.9;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.navbar-dark .navbar-nav .nav-link {
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    border-color: rgba(99, 102, 241, 0.6);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.6);
}

/* HERO SECTION */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f0d2e 50%, #1e1b4b 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(15, 13, 46, 0.3) 100%);
    opacity: 0.7;
}

.hero-bg-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(99, 102, 241, 0.05) 49px, rgba(99, 102, 241, 0.05) 50px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(99, 102, 241, 0.05) 49px, rgba(99, 102, 241, 0.05) 50px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 140px 0 120px;
    width: 100%;
    color: #f9fafb;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c7d2fe;
    backdrop-filter: blur(10px);
}

.hero-badge .material-icons-outlined {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 45rem;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

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

/* SECTIONS */

section {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--muted-color);
    font-size: 1.05rem;
    max-width: 38rem;
    margin: 0.5rem auto 0;
}

.section-bg {
    background: linear-gradient(180deg, var(--bg-section) 0%, #ffffff 100%);
}

p {
    line-height: 1.7;
    color: var(--muted-color);
}

/* SERVICE CARDS */

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.service-icon .material-icons-outlined {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--muted-color);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* TECHNOLOGY CARDS */

.tech-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
    border: 1px solid var(--border-color);
    height: 100%;
}

.tech-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all var(--transition-fast);
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* BENEFIT CARDS */

.benefit-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.benefit-icon-wrapper .material-icons-outlined {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* STATISTICS */

.stat-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(30, 27, 75, 0.1);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--muted-color);
    line-height: 1.6;
}

/* PROCESS STEPS */

.process-step {
    padding: 2rem 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

.process-checklist li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--muted-color);
}

.process-checklist li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.illustration-icon .material-icons-outlined {
    font-size: 5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CONTACT FORM */

.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    transition: all var(--transition-fast);
    background-color: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    outline: none;
}

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

/* BUTTONS */

.btn-accent {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 999px;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* COOKIE BANNER */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -180px;
    z-index: 1040;
    background: rgba(30, 27, 75, 0.97);
    backdrop-filter: blur(12px);
    color: #e5e7eb;
    padding: 1rem 0;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 -12px 30px rgba(30, 27, 75, 0.7);
    transform: translateY(0);
    transition: bottom var(--transition-normal);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.cookie-banner a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner a:hover {
    color: #c7d2fe;
    text-decoration: underline;
}

/* FOOTER */

footer {
    background: linear-gradient(135deg, #1e1b4b, #0f0d2e);
    color: #cbd5e1;
    font-size: 0.92rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

footer p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: #a5b4fc;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

footer hr {
    border-color: rgba(99, 102, 241, 0.2);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #94a3b8;
}

.contact-info-footer .material-icons-outlined {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-info-footer {
    font-size: 0.9rem;
}

/* THANK YOU PAGE */

.thank-you-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.thank-you-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thank-you-icon span {
    font-size: 3.5rem;
    color: #ffffff;
}

.thank-you-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thank-you-message {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.thank-you-submessage {
    font-size: 0.98rem;
    color: var(--muted-color);
    max-width: 36rem;
    margin: 0.5rem auto 2rem;
}

/* UTILITY CLASSES */

img.rounded {
    border-radius: var(--radius-md) !important;
}

.bg-dark {
    background-color: var(--primary-dark) !important;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    .hero-overlay {
        padding: 120px 0 90px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar-collapse {
        background: rgba(30, 27, 75, 0.98);
        margin-top: 0.5rem;
        border-radius: var(--radius-md);
        padding: 0.5rem 0.5rem 1rem;
        border: 1px solid rgba(99, 102, 241, 0.2);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .thank-you-section {
        padding: 120px 0 80px;
    }

    .thank-you-card {
        padding: 2.5rem 1.8rem;
    }

    .thank-you-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .tech-card,
    .benefit-card {
        padding: 1.5rem 1.2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .process-illustration {
        width: 150px;
        height: 150px;
    }

    .illustration-icon .material-icons-outlined {
        font-size: 4rem;
    }
}

/* CONTACT PAGE */

.contact-page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f0d2e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 40rem;
    margin: 0 auto;
    position: relative;
}

.contact-info-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card p {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-hover);
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-item h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* LEGAL PAGES */

.legal-page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f0d2e 100%);
    color: #ffffff;
}

.legal-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: var(--muted-color);
}

.legal-content strong {
    color: var(--text-color);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.last-updated {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
}

.last-updated p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--muted-color);
}

/* ANIMATIONS */

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

.service-card,
.tech-card,
.benefit-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}
