/* =============================================
   Corporativo Mplat - Estilos principales
   ============================================= */

:root {
    --primary: #0d4f8b;
    --primary-dark: #083660;
    --primary-light: #1a6bb5;
    --accent: #f0a500;
    --accent-hover: #d49200;
    --dark: #0a1628;
    --gray-100: #f8f9fc;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --shadow: 0 10px 40px rgba(13, 79, 139, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 79, 139, 0.18);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ---- Loader ---- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

html.is-loading body {
    overflow: hidden;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.97); }
}

/* ---- Navbar ---- */
#mainNav {
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(28, 80, 157, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

#mainNav .navbar-brand img {
    transition: var(--transition);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--white) !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
}

#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

#mainNav .navbar-toggler-icon {
    filter: invert(1);
}

#mainNav.scrolled .navbar-collapse {
    background: transparent;
}

@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
    }
}

.btn-primary {
    background: var(--gradient);
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 79, 139, 0.35);
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 24px;
    border-width: 2px;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.nav-cta {
    border-radius: 50px !important;
    padding: 8px 20px !important;
}

/* ---- Language switcher ---- */
.navbar-top-actions {
    margin-left: auto;
    position: relative;
    z-index: 1055;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 52px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1050;
    pointer-events: auto;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: translateY(-1px);
    text-decoration: none;
}

.lang-switch-btn:active {
    transform: scale(0.97);
}

.lang-switch-btn i {
    font-size: 0.95rem;
    pointer-events: none;
}

.lang-switch-label {
    pointer-events: none;
}

.inner-page .lang-switch-btn {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    #mainNav .container {
        flex-wrap: nowrap;
    }

    .navbar-top-actions {
        order: 3;
        margin-left: 12px;
    }

    #navbarNav {
        order: 2;
    }
}

@media (max-width: 991.98px) {
    .navbar-top-actions {
        order: 2;
    }

    #navbarNav {
        order: 3;
        width: 100%;
    }
}

/* ---- Hero Slider ---- */
.hero-slider-section {
    position: relative;
    margin-top: 0;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    min-height: 100vh;
}

.hero-carousel .carousel-item {
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-carousel .carousel-item.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 141, 253, 0.88) 0%, rgba(11, 108, 198, 0.72) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-height);
}

.hero-indicators {
    margin-bottom: 28px;
    z-index: 3;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1;
    transition: var(--transition);
}

.hero-indicators .active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.15);
}

.hero-control {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    opacity: 1;
    z-index: 3;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* ---- Page Banner (páginas internas) ---- */
.page-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.page-banner-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 114, 236, 0.9) 0%, rgba(5, 75, 140, 0.82) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 48px 0;
    text-align: center;
}

.page-banner-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.page-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
}

/* ---- Texto justificado ---- */
.text-justify,
.about-text,
.hero-description,
.info-card p,
.service-body p,
.value-card p,
.home-feature-card p,
.privacy-section p,
.privacy-section li,
.privacy-notice p,
.footer-text,
.contact-item p,
.section-subtitle,
.form-check-label {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

html[lang="en"] .text-justify,
html[lang="en"] .about-text,
html[lang="en"] .hero-description {
    hyphens: auto;
    -webkit-hyphens: auto;
}

.about-features li {
    text-align: left;
}

.about-features li span,
.about-features {
    text-align: left;
}

.section-title,
.about-heading,
h1, h2, h3, h4, h5, h6,
.hero-title,
.page-banner-title,
.gallery-title,
.footer-heading {
    text-align: center;
}

.col-lg-6 .section-title,
.col-lg-6 .about-heading {
    text-align: left;
}

@media (max-width: 991.98px) {
    .col-lg-6 .section-title,
    .col-lg-6 .about-heading {
        text-align: center;
    }
}

.inner-page #mainNav.scrolled,
.inner-page #mainNav {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* ---- Home intro ---- */
.home-intro {
    background: var(--gray-100);
}

.home-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.home-feature-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.home-feature-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.home-feature-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(240, 165, 0, 0.15);
    color: var(--accent);
    border: 1px solid rgba(240, 165, 0, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent), #ffd060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    max-width: 480px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Sections ---- */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ---- About ---- */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.about-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

.about-heading {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.about-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-800);
    font-weight: 500;
}

.about-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ---- Info Cards ---- */
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.info-card.featured {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.info-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 79, 139, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card.featured .info-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.info-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* ---- Values Parallax ---- */
.values-section {
    position: relative;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.values-parallax-bg {
    position: absolute;
    inset: -30% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.values-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 54, 96, 0.92) 0%, rgba(10, 22, 40, 0.88) 100%);
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.value-card h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* ---- Services ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.service-body {
    padding: 32px 24px 24px;
}

.service-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ---- Gallery ---- */
.gallery-title {
    font-size: 1.4rem;
    color: var(--dark);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ---- Contact page ---- */
.contact-page .contact-info-card,
.contact-page .contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
    color: var(--dark);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(13, 79, 139, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.contact-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.15);
}

/* ---- Privacy ---- */
.privacy-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.privacy-notice {
    background: rgba(13, 79, 139, 0.06);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
}

.privacy-notice h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.privacy-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-section h5 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 12px;
}

.privacy-section p,
.privacy-section li {
    color: var(--gray-600);
    font-size: 0.925rem;
}

.privacy-section ul {
    padding-left: 1.2rem;
}

.privacy-section a {
    color: var(--primary);
}

.privacy-data li {
    padding: 4px 0;
    color: var(--gray-600);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-text {
    font-size: 0.875rem;
    max-width: 300px;
    margin: 0 auto;
}

.footer-heading {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 32px 0 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ---- Parallax helper ---- */
.parallax-section {
    overflow: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-description {
        font-size: 1rem;
    }

    .privacy-card {
        padding: 24px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .values-section {
        border-radius: 0;
        margin-left: -12px;
        margin-right: -12px;
    }
}

@media (max-width: 575.98px) {
    .hero-actions .btn {
        width: 100%;
        margin-right: 0 !important;
    }

    .hero-stats .col-4 {
        padding: 0 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}
