:root {
    --color-navy: #040915;
    --color-navy-card: #0d121f;
    --color-navy-card-border: #1f293a;
    --color-azure: #3B82F6;
    --color-azure-glow: rgba(59, 130, 246, 0.5);
    --color-red: #F87171;
    --color-red-bg: rgba(248, 113, 113, 0.1);
    --color-green: #10B981;
    --color-green-bg: rgba(16, 185, 129, 0.1);
    --color-white: #F3F4F6;
    --color-white-pure: #FFFFFF;
    --color-slate: #94A3B8;
    --color-bg-light: #F9FAFB;
    --color-text-dark: #111827;
    --font-primary: 'Outfit', sans-serif;
    --section-padding: 6rem 2rem;
    --container-width: 1280px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delay {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--color-white-pure);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

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

ul {
    list-style: none;
}

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

.full-width {
    width: 100%;
    text-align: center;
}

.text-muted {
    color: var(--color-slate);
}

.text-blue {
    color: var(--color-azure);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    gap: 0.5rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--color-navy-card-border);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-slate);
}

.btn-filled {
    background-color: var(--color-azure);
    color: var(--color-white-pure);
    border: 1px solid var(--color-azure);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
}

.btn-filled:hover {
    background-color: #2563EB;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

.btn-white {
    background: white;
    color: var(--color-navy);
    border: none;
    font-family: var(--font-primary);
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-white-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    background: transparent;
}

.nav-container {
    background: rgba(13, 22, 41, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    width: 90%;
    max-width: var(--container-width);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white-pure);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2.5rem;
    }

    .nav-links a {
        color: var(--color-slate);
        font-size: 0.95rem;
        transition: color var(--transition-fast);
        font-weight: 500;
    }

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

.sm-hidden {
    display: none;
}

@media (min-width: 768px) {
    .sm-hidden {
        display: inline-flex;
    }

    .btn.sm-hidden {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 50px;
    }
}

/* Sections General */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white-pure);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-slate);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pills */
.pill-red,
.pill-blue,
.pill-white,
.pill-gray,
.pill-green,
.pill-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pill-red {
    background: var(--color-red-bg);
    color: var(--color-red);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.pill-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-azure);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pill-green {
    background: var(--color-green-bg);
    color: var(--color-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pill-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill-gray {
    background: #e5e7eb;
    color: var(--color-text-dark);
    border: 1px solid #d1d5db;
}

.pill-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-bottom: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-green);
    animation: pulse 2s ease-in-out infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-subtitle b {
    color: var(--color-white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-azure);
    font-size: 1.2rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.1rem;
    color: var(--color-white);
}

.stat-text span {
    font-size: 0.8rem;
    color: var(--color-slate);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.engine-core {
    width: 130px;
    height: 150px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
    padding: 1.25rem;
}

.engine-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.engine-label {
    font-size: 0.55rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
}

.float-card {
    position: absolute;
    background: var(--color-white-pure);
    color: var(--color-navy);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    min-width: 200px;
}

.card-meeting {
    top: 10%;
    left: 0;
}

.card-workflow {
    bottom: 10%;
    right: 0;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-circle.green {
    background: #10B981;
    color: white;
}

.icon-circle.blue {
    background: #3B82F6;
    color: white;
}

.card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.card-text strong {
    font-size: 0.9rem;
}

.card-text span {
    font-size: 0.75rem;
    color: #64748B;
}

/* Problem Section */
.section-problem {
    background-color: #0B101D;
}

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

.card {
    background: var(--color-navy-card);
    border: 1px solid var(--color-navy-card-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.15s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Problem Card Red Glow on Hover */
.problem-card:hover {
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 20px 40px rgba(248, 113, 113, 0.15), 0 0 30px rgba(248, 113, 113, 0.1);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    color: var(--color-slate);
}

.card-icon-box.red {
    background: rgba(248, 113, 113, 0.1);
    color: var(--color-red);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card p {
    color: var(--color-slate);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.card-stat {
    border-top: 1px solid var(--color-navy-card-border);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-slate);
}

.card-stat strong {
    font-size: 2rem;
    color: var(--color-white);
    display: block;
    margin-bottom: 0.25rem;
}

/* Better Path Banner - More Colorful */
.better-path-banner {
    margin-top: 4rem;
    padding: 1.75rem 3rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563EB 50%, #1e3a5f 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.better-path-banner p {
    font-size: 1.25rem;
    color: var(--color-white);
    margin: 0;
}

.text-highlight {
    color: #60A5FA;
    font-weight: 600;
}

/* Services Section */
.services-dual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .services-dual-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-big-card {
    background: var(--color-navy-card);
    border: 1px solid var(--color-navy-card-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.highlight-card {
    border-color: rgba(16, 185, 129, 0.3);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.srv-icon-float {
    width: 50px;
    height: 50px;
    background: #3B82F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.srv-icon-float.green {
    background: #10B981;
}

.srv-subtitle {
    color: var(--color-azure);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.srv-subtitle.green {
    color: var(--color-green);
}

.srv-list {
    margin: 2rem 0;
}

.srv-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.srv-list i {
    color: var(--color-azure);
    font-size: 1.2rem;
}

.srv-list i.green-check {
    color: var(--color-green);
}

.srv-footer {
    background: rgba(0, 0, 0, 0.2);
    margin: -3rem -3rem -3rem -3rem;
    padding: 2rem 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--color-navy-card-border);
}

.green-footer {
    border-top-color: rgba(16, 185, 129, 0.2);
}

.srv-note {
    font-size: 0.9rem;
    color: var(--color-azure);
    margin-bottom: 1rem;
    font-weight: 600;
}

.srv-note.green {
    color: var(--color-green);
}

/* Zero Cost Badge */
.zero-cost-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    color: var(--color-green);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Why Telos Grid */
.why-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-card {
    background: var(--color-navy-card);
    border: 1px solid var(--color-navy-card-border);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-azure);
    font-size: 1.5rem;
}

.why-metric {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-navy-card-border);
    color: var(--color-slate);
}

.why-metric strong {
    color: var(--color-azure);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.stats-banner {
    background: linear-gradient(90deg, #1e3a8a 0%, #172554 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.banner-metrics {
    display: flex;
    gap: 3rem;
}

.b-metric {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    opacity: 0.9;
}

.b-metric strong {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

/* Process Section - Dark Mode with Light Accents */
.section-process {
    background: linear-gradient(180deg, var(--color-navy) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.section-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .process-steps {
        flex-direction: row;
    }

    .step-connector {
        display: flex;
        align-items: center;
        padding-top: 4rem;
        color: var(--color-azure);
        font-size: 2rem;
        opacity: 0.5;
    }
}

.step-card {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.95) 0%, rgba(15, 25, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 150, 220, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60A5FA, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 150, 220, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.step-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    color: white;
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-visual {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.step-sub {
    color: #60A5FA;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.step-card p {
    color: #CBD5E1;
}

.step-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.1em;
    margin: 1.5rem 0 1rem 0;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.d-tag {
    background: rgba(96, 165, 250, 0.15);
    color: #60A5FA;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

.step-connector {
    display: none;
}

/* Footer */
footer {
    padding: 5rem 0 0 0;
    background: var(--color-navy);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-desc {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

.contact-form-wrapper {
    background: var(--color-navy-card);
    border: 1px solid var(--color-navy-card-border);
    padding: 2.5rem 3rem;
    border-radius: 16px;
}

.contact-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-slate);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.form-group input:not(:placeholder-shown),
.form-group select:not(:invalid) {
    color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-azure);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-slate);
    font-size: 0.9rem;
    margin: 0;
}