/* ============================================= */
/* ===== ESTILOS GENERALES Y BASE      ===== */
/* ============================================= */
:root {
    --primary-color: #F97316;
    --primary-hover: #EA580C;
    --dark-blue: #0F172A;
    --mid-blue: #334155;
    --light-gray: #F8FAFC;
    --white-color: #FFFFFF;
    --border-color: #E2E8F0;
    --font-family: 'Poppins', sans-serif;
    --text-color: #333;
    --link-color: #042a63;
    --background-light: #fdfbf7;
    --background-section-alt: #f0f4f8;
    --background-dark: #0d1a2e;
    --text-light: #adb5bd;
    --text-dark-blue: #042a63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    line-height: 1.7;
}


/* ============================================= */
/* ===== HEADER Y NAVBAR             ===== */
/* ============================================= */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    background: white;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    position: relative;
    width: auto;
    height: 72px;
    display: flex;
    align-items: center;
    overflow: visible;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    transition: opacity 250ms ease, transform 250ms ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo img.logo--siglas {
    height: 72px;
    opacity: 1;
}

.logo img.logo--full {
    height: 44px;
    opacity: 0;
}

.navbar.scrolled .logo img.logo--siglas {
    opacity: 0;
}

.navbar.scrolled .logo img.logo--full {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #002b55;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== NUEVOS ESTILOS PARA BOTONES DE ACCIÓN (INICIA) ===== */

/* Contenedor para los nuevos botones de escritorio */
.navbar-actions-desktop {
  display: flex;
  flex-direction: row; /* Coloca los botones uno al lado del otro */
  gap: 10px; /* Espacio horizontal entre los botones */
  align-items: center; /* Centra los botones verticalmente */
  flex-shrink: 0; /* Evita que se encojan */
}

/* Botón "Iniciar Sesión" (Estilo Secundario - Outline) */
.cta-nav {
  display: inline-block;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid var(--text-dark-blue);
  background: var(--white-color); /* Fondo blanco */
  color: var(--text-dark-blue); /* Texto azul */
  text-align: center;
  white-space: nowrap; 
}

.cta-nav:hover {
  background: #f8fafd; /* Azul pálido */
  border-color: var(--text-dark-blue);
  transform: translateY(-1px);
}

/* Botón "Pagos en Línea" (Estilo Principal - Sólido) */
.cta-nav.cta-nav--highlight {
  background: var(--text-dark-blue);
  border-color: var(--text-dark-blue);
  color: #fff;
}

.cta-nav.cta-nav--highlight:hover {
  background: #03214d; /* Azul más oscuro */
  border-color: #03214d;
}

/* ===== NUEVOS ESTILOS PARA BOTONES DE ACCIÓN (TERMINA) ===== */


.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #042a63;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(4, 42, 99, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta:hover {
    transform: translateY(-3px) scale(1.02);
}

.nav-links__cta-mobile,
.hamburger-btn,
.overlay {
    display: none;
}

/* ============================================= */
/* ===== CONTENIDO PRINCIPAL Y MODAL   ===== */
/* ============================================= */
main {
    margin-top: 50px;
}

.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.open {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 650px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.modal.open .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal.closing {
    opacity: 0;
}

.modal.closing .modal-content {
    transform: scale(0.8);
    opacity: 0;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 16px;
    object-fit: contain;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 2.5rem;
    font-weight: lighter;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal .close:hover {
    background: #dc3545;
    transform: rotate(90deg);
}

/* --- Secciones Generales --- */
.section-padding {
    padding: 100px 0;
}

.hero-section {
    background-color: var(--background-section-alt);
    text-align: center;
    padding: 100px 30px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-cta .cta-icon {
    margin-right: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-icon {
    transform: translateX(5px);
}

.value-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(4, 42, 99, 0.1);
    border-color: transparent;
}

.value-icon {
    font-size: 3rem;
    color: var(--text-dark-blue);
    margin-bottom: 20px;
    display: inline-block;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.value-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(4, 42, 99, 0.1);
    border-color: transparent;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--text-dark-blue);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    font-weight: 600;
    color: var(--link-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* ============================================= */
/* ===== SECCIÓN DE INSTITUCIONES (RESTAURADA) ===== */
/* ============================================= */
.partners-section {
    padding: 100px 0;
    background-color: #f7f9fc;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 244, 248, 0.3) 100%);
    z-index: 1;
}

.partners-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.partners-title {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.partners-title strong {
    color: #042a63;
    font-weight: 800;
}

.partners-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    width: calc((250px + 40px) * 14);
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-250px - 40px) * 7));
    }
}

.partner-card {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4, 42, 99, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 32px rgba(4, 42, 99, 0.15);
    border-color: rgba(4, 42, 99, 0.3);
}

.partner-card img {
    max-width: 80%;
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%) contrast(0.5);
    opacity: 0.7;
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.partner-card:hover img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
}

.partner-info {
    text-align: center;
}

.partner-name {
    display: block;
    font-weight: 600;
    color: #1a202c;
    font-size: 1rem;
    margin-bottom: 4px;
}

.partner-date {
    display: block;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 500;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--background-dark);
}

.text-light {
    color: #ffffff;
}

.text-light-alt {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: #16243a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #2a3b55;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--text-dark-blue);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-dark-blue);
}

.author-info {
    line-height: 1.4;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #042a63, #042a63 6px, transparent 6px, transparent 12px);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--background-section-alt);
    color: var(--text-dark-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #042a63;
}

.step-title {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.final-cta-section {
    padding: 80px 0;
    background-color: var(--text-dark-blue);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-secondary:hover {
    background: #fff;
    color: var(--text-dark-blue);
}


/* ============================================= */
/* ===== FOOTER Y RESPONSIVE         ===== */
/* ============================================= */
.footer {
    background-color: #28306e;
    color: var(--text-light);
    padding: 80px 40px 30px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95em;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.footer-column h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    font-size: 1.2em;
    color: #ffffff;
}

.contact-list span {
    color: var(--text-light);
}

.footer-column.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-top: 10px;
    list-style: none;
}

.social-icons a {
    display: inline-flex;
    font-size: 1.6rem;
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 0.9em;
}


/* ============================================= */
/* ===== MODAL "PRÓXIMAMENTE"          ===== */
/* ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content-simple {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay:not(.hidden) .modal-content-simple {
    transform: scale(1);
    opacity: 1;
}

.modal-content-simple .modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #aaa;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-content-simple .modal-close-btn:hover {
    color: #333;
}

.modal-content-simple i {
    font-size: 4rem;
    color: #042a63;
    margin-bottom: 15px;
}

.modal-content-simple h3 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.modal-content-simple p {
    font-size: 1rem;
    color: #4a5568;
}


/* ============================================= */
/* ===== BOTÓN VOLVER ARRIBA (SCROLL TOP)  ===== */
/* ============================================= */
.scroll-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #042a63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background-color: #03306b;
}


/* ============================================= */
/* ===== MEDIA QUERIES (RESPONSIVE)        ===== */
/* ============================================= */
@media (max-width: 1300px) {
    main {
        padding-top: 0px;
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger-btn span {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark-blue);
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        padding: 120px 40px 40px 40px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px; /* Este 'gap' separa los enlaces de texto */
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark-blue);
    }

    .nav-links a::after {
        display: none; /* Desactiva el subrayado en móvil */
    }

    /* Ocultamos los botones de escritorio */
    .navbar-actions-desktop {
        display: none;
    }

    .nav-links__cta-mobile {
        display: block;
        margin-top: 0; /* Reseteamos el margen */
        width: 100%;
    }
    
    /* --- INICIO DE LA CORRECCIÓN --- */
    .nav-links__cta-mobile + .nav-links__cta-mobile {
        margin-top: 10px; /* Cambiado de -15px a 10px */
    }

    .nav-links__cta-mobile .cta {
        color: #fff !important;
        width: 100%;
        padding: 14px 24px; /* Padding horizontal reducido */
        font-size: 1.1rem; /* Fuente ligeramente reducida */
        text-align: center; /* Asegura el centrado */
        /* Hacemos que ambos tengan borde para que midan lo mismo */
        border: 2px solid var(--text-dark-blue);
    }
    /* --- FIN DE LA CORRECCIÓN --- */


    /* Botón "Pagos en Línea" (Sólido) */
    .nav-links__cta-mobile .cta-mobile--highlight {
      background: var(--text-dark-blue);
      border-color: var(--text-dark-blue);
    }

    .nav-links__cta-mobile .cta-mobile--highlight:hover {
      background: #03214d;
      border-color: #03214d;
    }
    
    /* Botón "Iniciar Sesión" (Outline) */
    .nav-links__cta-mobile .cta:not(.cta-mobile--highlight) {
        background: var(--white-color);
        color: var(--text-dark-blue) !important;
        border: 2px solid var(--text-dark-blue);
    }
    
    .nav-links__cta-mobile .cta:not(.cta-mobile--highlight):hover {
        background: #f8fafd; /* Azul pálido */
    }

    .overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .value-container,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 800px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .contact-list li,
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    main {
        padding-top: 0px;
    }

    .navbar {
        height: 90px;
        padding: 0 20px;
    }

    .navbar.scrolled {
        height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}