/* ========================================
   René Maldonado Reyes - Portfolio Site
   Premium Legal Counsel Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Elite Palette */
    --navy-950: #050c18;
    --navy-900: #0a192f;
    --navy-800: #112240;
    --navy-700: #1d3557;
    --gold-500: #c5a059;
    /* More refined gold */
    --gold-400: #d4bf8d;
    --gold-600: #a6813c;
    --cream: #f4f1ea;
    --cream-dark: #e8e4da;
    --gray-400: #8892b0;
    --gray-600: #4a5568;
    --white: #ffffff;
    --glass-bg: rgba(10, 25, 47, 0.75);
    --glass-border: rgba(197, 160, 89, 0.15);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Effects */
    --section-padding: 8rem;
    --container-max: 1200px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-900);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-900);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* Selection */
::selection {
    background: var(--gold-500);
    color: var(--white);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes float {

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

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

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}

.nav--scrolled {
    background: var(--navy-950);
    box-shadow: var(--shadow-premium);
    height: 70px;
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav__logo-r {
    color: var(--gold-500);
    font-size: 1.8rem;
}

.nav__menu {
    display: none;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-medium);
}

.nav__link:hover {
    color: var(--gold-500);
}

.nav__link:hover::after {
    width: 100%;
}

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

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition-fast);
    font-weight: 600;
}

.lang-btn.active {
    color: var(--gold-500);
}

.lang-btn:hover {
    color: var(--white);
}

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

.nav__cv {
    color: var(--gold-500);
    font-size: 1.25rem;
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

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

.nav__toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav__menu {
        display: block;
    }

    .nav__toggle {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-v2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    /* Slightly higher opacity for the new premium asset */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 25, 47, 0.9) 0%,
            rgba(10, 25, 47, 0.7) 50%,
            rgba(10, 25, 47, 0.95) 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin-top: 80px;
}

.hero__overline {
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-400) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title-accent {
    font-style: italic;
    color: var(--gold-500);
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__subtitle-accent {
    color: var(--gold-500);
    font-weight: 600;
}

.hero__line {
    width: 60px;
    height: 2px;
    background: var(--gold-500);
    margin: 0 auto 2rem;
}

.hero__description {
    color: var(--gray-400);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-500);
    font-weight: 700;
}

.hero__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    display: none;
}

.hero__scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.hero__scroll:hover {
    color: var(--gold-500);
}

.hero__scroll i {
    color: var(--gold-500);
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: float 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero__stat-divider {
        display: block;
    }

    .hero__stats {
        gap: 3rem;
    }
}

/* ========================================
   Credentials Section
   ======================================== */
.credentials {
    background: var(--navy-900);
    padding: 2.5rem 0;
    border-bottom: 4px solid var(--gold-500);
}

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

.credentials__title {
    text-align: center;
    color: var(--gold-500);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.credentials__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.credentials__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.credentials__item i {
    font-size: 2rem;
    color: var(--gray-400);
}

.credentials__item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
}

.credentials__item span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials__divider {
    width: 40px;
    height: 1px;
    background: var(--navy-700);
    display: none;
}

@media (min-width: 768px) {
    .credentials__list {
        flex-direction: row;
        justify-content: center;
    }

    .credentials__divider {
        display: block;
        width: 1px;
        height: 50px;
    }
}

/* ========================================
   Section Styling
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3rem);
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-line {
    width: 40px;
    height: 3px;
    background: var(--gold-500);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 650px;
    margin: 2rem auto 0;
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   Profile Section
   ======================================== */
.profile {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.profile__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.profile__content {
    text-align: justify;
    hyphens: auto;
}

.profile__text {
    color: var(--gray-600);
    font-weight: 300;
    line-height: 2.1;
    /* Increased for readability */
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.profile__text--lead {
    font-size: 1.25rem;
    color: var(--navy-800);
}

.profile__text--lead::first-letter {
    font-family: var(--font-serif);
    font-size: 5rem;
    float: left;
    color: var(--gold-500);
    line-height: 0.8;
    margin-right: 1rem;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.profile__text strong {
    color: var(--navy-900);
    font-weight: 600;
    border-bottom: 1px solid var(--gold-500);
}

/* ========================================
   Timeline Section
   ======================================== */
.timeline {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy-900);
}

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

.timeline__track {
    position: relative;
    padding-left: 2rem;
}

.timeline__track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy-900), var(--gray-400));
}

.timeline__item {
    position: relative;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__content {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold-500);
}

.timeline__badge {
    display: inline-block;
    background: var(--navy-900);
    color: var(--gold-500);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
}

.timeline__role {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.timeline__company {
    color: var(--gold-600);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline__desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline__dot {
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--navy-900);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.timeline__item:first-child .timeline__dot {
    background: var(--gold-500);
}

.timeline__year {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gray-400);
    font-weight: 700;
}

@media (min-width: 768px) {
    .timeline__track {
        padding-left: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .timeline__track::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline__item {
        grid-template-columns: 1fr auto 1fr;
        text-align: right;
    }

    .timeline__item:nth-child(even) {
        direction: rtl;
    }

    .timeline__item:nth-child(even) .timeline__content {
        direction: ltr;
        text-align: left;
        border-left: none;
        border-right: 3px solid var(--gold-500);
    }

    .timeline__dot {
        position: static;
        transform: none;
    }

    .timeline__year {
        text-align: left;
    }

    .timeline__item:nth-child(even) .timeline__year {
        text-align: right;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--cream-dark);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: left;
}

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

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

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--navy-900);
    color: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all var(--transition-medium);
}

.service-card:hover .service-card__icon {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: rotateY(360deg);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card__desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Contact Section - Elite Redesign
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--navy-950);
    /* Darker for better contrast */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact__container {
    max-width: 900px;
    /* More centered and compact */
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.contact__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact__header .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact__header .section-subtitle {
    color: var(--gray-400);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all var(--transition-medium);
}

.contact__item:hover {
    border-color: var(--gold-500);
    background: rgba(197, 160, 89, 0.05);
    transform: translateX(10px);
}

.contact__item i {
    font-size: 1.5rem;
    color: var(--gold-500);
}

.contact__label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.contact__value {
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}

.contact__form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.contact__form {
    display: grid;
    gap: 1.5rem;
}

.contact__input-group {
    position: relative;
}

.contact__input,
.contact__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-medium);
}

.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-500);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.contact__textarea {
    min-height: 150px;
    resize: none;
}

.contact__btn {
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 1.25rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.contact__btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy-900);
    padding: 2rem 0;
    border-top: 1px solid var(--navy-700);
}

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

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__copyright {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid var(--navy-700);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--gold-500);
    border-color: var(--gold-500);
}

.footer__branding {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--navy-700);
}

/* Smartizable Badge */
.smartizable-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
}

.smartizable-badge:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.smartizable-badge__logo {
    font-weight: 600;
}

.smartizable-badge .s-initial {
    color: #a855f7;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer__top {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ========================================
   Mobile Menu
   ======================================== */
@media (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy-900);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav__link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--navy-700);
    }
}