html{
    scroll-behavior: smooth;
}

header#header_Section {
    height: auto;
    background-image: none !important;
    background-color: transparent;
}


.header {
    background-color: rgba(0, 20, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header_text__info {
    display: none;
}

:root {
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(64, 190, 234, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}


.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.quick-access__badge,
.about-preview__badge,
.services__badge,
.why-us__badge,
.industries__badge {
    display: inline-block;
    font-family: raleway-semibold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color3);
    background: rgba(64, 190, 234, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: raleway-semibold;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
}

.btn .material-icons {
    font-size: 20px;
    transition: transform var(--transition-medium);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color3) 0%, #2ba8d4 100%);
    color: var(--color2);
    box-shadow: 0 4px 15px rgba(64, 190, 234, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(64, 190, 234, 0.5);
}

.btn--primary:hover .material-icons {
    transform: translateX(4px);
}

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

.btn--outline:hover {
    background: var(--color2);
    color: var(--color1);
}

.btn--large {
    padding: 18px 36px;
    font-size: 16px;
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; 
    min-height: 500px;
    overflow: hidden;
    background-color: var(--color1);
}

.hero__carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero__slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 20, 46, 0.85) 0%, rgba(0, 20, 46, 0.5) 50%, rgba(0, 20, 46, 0.3) 100%);
}

.hero__slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding-top: 70px;
    z-index: 2;
}

.hero__slide-content h1 {
    font-family: raleway-bold;
    font-size: clamp(28px, 6vw, 56px);
    color: var(--color2);
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero__slide.is-active .hero__slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero__slide-content h1 span {
    color: var(--color3);
}

.hero__slide-content p {
    font-family: raleway-regular;
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero__slide.is-active .hero__slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero__slide-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.hero__slide.is-active .hero__slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color2);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-medium);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero__nav:hover {
    background: var(--color3);
    transform: translateY(-50%) scale(1.1);
}

.hero__nav--prev {
    left: 20px;
}

.hero__nav--next {
    right: 20px;
}

.hero__nav .material-icons {
    font-size: 28px;
}

.hero__indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
}

.hero__indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero__indicator.is-active {
    background: var(--color3);
    transform: scale(1.2);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color2);
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero__scroll-indicator .material-icons {
    font-size: 36px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.quick-access {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.quick-access__header {
    text-align: center;
    margin-bottom: 50px;
}

.quick-access__title {
    font-family: raleway-bold;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color1);
    margin: 0;
}

.quick-access__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-access__card {
    position: relative;
    background: var(--color2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.quick-access__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quick-access__card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color3), var(--color4));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.quick-access__card:hover .quick-access__card-glow {
    opacity: 1;
}

.quick-access__card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
}

.quick-access__icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color1) 0%, #002855 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.quick-access__card:hover .quick-access__icon-wrapper {
    background: linear-gradient(135deg, var(--color3) 0%, #2ba8d4 100%);
    transform: scale(1.05);
}

.quick-access__icon-wrapper .material-icons {
    font-size: 36px;
    color: var(--color2);
}

.quick-access__info h3 {
    font-family: raleway-bold;
    font-size: 20px;
    color: var(--color1);
    margin: 0 0 8px 0;
}

.quick-access__info p {
    font-family: raleway-regular;
    font-size: 14px;
    color: var(--color5);
    line-height: 1.6;
    margin: 0;
}

.quick-access__action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color3);
    font-family: raleway-semibold;
    font-size: 14px;
    margin-top: 8px;
}

.quick-access__action .material-icons {
    font-size: 20px;
    transition: transform var(--transition-medium);
}

.quick-access__card:hover .quick-access__action .material-icons {
    transform: translateX(5px);
}

.about-preview {
    padding: 60px 0 80px 0;
    background: var(--color2);
}

.about-preview__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview__text h2 {
    font-family: raleway-bold;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color1);
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.about-preview__text p {
    font-family: raleway-regular;
    font-size: 16px;
    color: var(--color5);
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.about-preview__text .btn {
    margin-top: 16px;
}

.about-preview__visual {
    position: relative;
}

.about-preview__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-preview__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-preview__visual:hover .about-preview__image-wrapper img {
    transform: scale(1.05);
}

.about-preview__floating-card {
    position: absolute;
    bottom: -15px;
    right: 10px;
    background: var(--color1);
    color: var(--color2);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.about-preview__floating-card .material-icons {
    font-size: 28px;
    color: var(--color3);
}

.about-preview__floating-card strong {
    font-family: raleway-bold;
    font-size: 18px;
    display: block;
}

.about-preview__floating-card div span {
    font-family: raleway-regular;
    font-size: 12px;
    opacity: 0.8;
}

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

.stats {
    position: relative;
    padding: 80px 0;
    background: var(--color1);
    overflow: hidden;
}

.stats__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Img/Section2_Banner.png') center/cover no-repeat;
    opacity: 0.15;
}

.stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    z-index: 1;
}

.stats__item {
    text-align: center;
    padding: 30px 20px;
}

.stats__icon {
    margin-bottom: 16px;
}

.stats__icon .material-icons {
    font-size: 40px;
    color: var(--color3);
}

.stats__number {
    font-family: raleway-bold;
    font-size: clamp(36px, 8vw, 56px);
    color: var(--color4);
    display: inline;
}

.stats__suffix {
    font-family: raleway-bold;
    font-size: clamp(24px, 5vw, 36px);
    color: var(--color4);
    display: inline;
}

.stats__label {
    font-family: raleway-bold;
    font-size: 16px;
    color: var(--color2);
    margin-top: 8px;
}

.stats__sublabel {
    font-family: raleway-regular;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header h2 {
    font-family: raleway-bold;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color1);
    margin: 0 0 16px 0;
}

.services__header p {
    font-family: raleway-regular;
    font-size: 16px;
    color: var(--color5);
    max-width: 600px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--color2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

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

.service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-card__icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: raleway-bold;
    font-size: 18px;
    color: var(--color1);
    margin: 0 0 12px 0;
}

.service-card p {
    font-family: raleway-regular;
    font-size: 14px;
    color: var(--color5);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: raleway-semibold;
    font-size: 14px;
    color: var(--color3);
}

.service-card__link .material-icons {
    font-size: 18px;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-card__link .material-icons {
    transform: translateX(5px);
}

.why-us {
    padding: 2.5% 0;
    background: var(--color2);
}

.why-us__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.why-us__visual {
    order: 2;
    max-width: 100%;
    overflow: hidden;
}

.why-us__image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    overflow: hidden;
}

.why-us__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
    object-fit: cover;
}

.why-us__img:hover {
    transform: scale(1.05);
}

.why-us__img--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.why-us__img--2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
}

.why-us__img--3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.why-us__text {
    order: 1;
}

.why-us__text h2 {
    font-family: raleway-bold;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color1);
    line-height: 1.2;
    margin: 0 0 32px 0;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us__feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color3) 0%, #2ba8d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__feature-icon .material-icons {
    font-size: 24px;
    color: var(--color2);
}

.why-us__feature-content h4 {
    font-family: raleway-bold;
    font-size: 16px;
    color: var(--color1);
    margin: 0 0 6px 0;
}

.why-us__feature-content p {
    font-family: raleway-regular;
    font-size: 14px;
    color: var(--color5);
    line-height: 1.5;
    margin: 0;
}

.industries {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.industries__header {
    text-align: center;
    margin-bottom: 50px;
}

.industries__header h2 {
    font-family: raleway-bold;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color1);
    margin: 0;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
}

.industry-card {
    background: var(--color2);
    border-radius: var(--radius-md);
    padding: 15px 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color3);
}

.industry-card .material-icons {
    font-size: 40px;
    color: var(--color1);
    margin-bottom: 12px;
    transition: color var(--transition-medium);
}

.industry-card:hover .material-icons {
    color: var(--color3);
}

.industry-card h3 {
    font-family: raleway-semibold;
    font-size: 13px;
    color: var(--color1);
    margin: 0;
    word-break: break-word;
    line-height: 1.3;
}

.cta {
    position: relative;
    padding: 100px 0;
    background: var(--color1);
    overflow: hidden;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color1) 0%, #001a3d 100%);
}

.cta__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(64, 190, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(205, 211, 0, 0.08) 0%, transparent 50%);
}

.cta__content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta__content h2 {
    font-family: raleway-bold;
    font-size: clamp(28px, 5vw, 48px);
    color: var(--color2);
    margin: 0 0 20px 0;
}

.cta__content > p {
    font-family: raleway-regular;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: raleway-regular;
    font-size: 14px;
}

.cta__trust .material-icons {
    color: var(--color3);
}

/* ================================================
   RESPONSIVE - TABLET (768px+)
   ================================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    /* Hero - Reducir altura para mostrar contenido debajo */
    .hero {
        height: 75vh;
        min-height: 450px;
        max-height: 700px;
    }

    .hero__indicators {
        bottom: 30px;
    }

    .hero__scroll-indicator {
        bottom: 20px;
    }

    .hero__slide-content {
        padding-top: 50px;
    }

    .hero__nav {
        display: flex;
    }

    /* Quick Access */
    .quick-access {
        padding: 2.5% 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .quick-access__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-access__card-content {
        flex-direction: row;
        text-align: left;
        padding: 28px 32px;
    }

    .quick-access__info {
        flex: 1;
    }

    .quick-access__action {
        margin-top: 0;
    }

    /* About Preview */
    .about-preview {
        padding: 80px 0;
    }

    .about-preview__content {
        grid-template-columns: 1fr 1fr;
    }

    .about-preview__floating-card {
        right: -30px;
        bottom: -30px;
        padding: 20px 24px;
        gap: 12px;
    }

    .about-preview__floating-card .material-icons {
        font-size: 32px;
    }

    .about-preview__floating-card strong {
        font-size: 20px;
    }

    .about-preview__floating-card div span {
        font-size: 13px;
    }

    /* Stats */
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Us */
    .why-us__content {
        grid-template-columns: 1fr 1fr;
    }

    .why-us__visual {
        order: 1;
    }

    .why-us__text {
        order: 2;
    }

    /* Industries */
    .industries__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .industry-card {
        aspect-ratio: auto;
        padding: 30px 20px;
    }

    .industry-card h3 {
        font-size: 15px;
    }

    /* CTA */
    .cta__buttons {
        flex-direction: row;
    }
}

/* ================================================
   RESPONSIVE - DESKTOP (1200px+)
   ================================================ */
@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }

    /* Hero - Formato panorámico rectangular */
    .hero {
        height: 70vh;
        min-height: 500px;
        max-height: 750px;
    }

    .hero__nav {
        width: 60px;
        height: 60px;
    }

    .hero__nav--prev {
        left: 40px;
    }

    .hero__nav--next {
        right: 40px;
    }

    .hero__slide-content h1 {
        font-size: clamp(36px, 5vw, 52px);
    }

    /* Quick Access */
    .quick-access__card-content {
        padding: 32px 40px;
    }

    .quick-access__icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .quick-access__icon-wrapper .material-icons {
        font-size: 42px;
    }

    .quick-access__info h3 {
        font-size: 22px;
    }

    .quick-access__info p {
        font-size: 15px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-card {
        padding: 40px 32px;
    }

    .service-card__icon {
        width: 80px;
        height: 80px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    /* Why Us */
    .why-us__image-grid {
        gap: 24px;
    }

    .why-us__feature-icon {
        width: 56px;
        height: 56px;
    }

    .why-us__feature-content h4 {
        font-size: 18px;
    }

    .why-us__feature-content p {
        font-size: 15px;
    }

    /* Industries */
    .industry-card {
        padding: 40px 30px;
    }

    .industry-card .material-icons {
        font-size: 48px;
    }

    .industry-card h3 {
        font-size: 17px;
    }
}

/* ================================================
   RESPONSIVE - LARGE DESKTOP (1920px+)
   ================================================ */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    /* Hero - Mantener proporción panorámica */
    .hero {
        height: 65vh;
        min-height: 550px;
        max-height: 800px;
    }

    .hero__slide-content {
        max-width: 1100px;
    }

    .about-preview,
    .services,
    .why-us {
        padding: 120px 0;
    }

    .stats {
        padding: 100px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__slide,
    .hero__slide-content h1,
    .hero__slide-content p,
    .hero__slide-cta {
        transition: none;
    }

    .about-preview__floating-card {
        animation: none;
    }

    .hero__scroll-indicator {
        animation: none;
    }
}

/* Focus states */
.btn:focus,
.service-card:focus,
.quick-access__card:focus,
.hero__nav:focus,
.hero__indicator:focus {
    outline: 3px solid var(--color3);
    outline-offset: 2px;
}
