/* ============================================================
   Pro-Soft — Home Page Design (v2)
   Hoja de estilos exclusiva de index.html.
   Las demás páginas siguen usando css/style.css.
   ============================================================ */

:root {
    --bg: #070b14;
    --bg-soft: #0b1120;
    --bg-card: #0f172a;
    --line: rgba(148, 163, 184, 0.14);
    --line-strong: rgba(148, 163, 184, 0.25);
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --cyan: #22d3ee;
    --accent: #facc15;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --grad: linear-gradient(100deg, #38bdf8 0%, #3b82f6 45%, #8b5cf6 100%);
    --radius: 18px;
    --shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Texto con degradado */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Encabezados de sección */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.section-kicker::before,
.section-kicker::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
}

.section-kicker::after {
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.section-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============ Barra de promo superior ============ */
.top-promo-bar {
    background: linear-gradient(90deg, #1d4ed8 0%, #7c3aed 60%, #1d4ed8 120%);
    background-size: 200% 100%;
    animation: promo-shift 8s linear infinite;
    padding: 10px 0;
    position: relative;
    z-index: 2100;
}

@keyframes promo-shift {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.promo-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    text-align: center;
}

.promo-tag {
    background: var(--accent);
    color: #1e1b04;
    padding: 0.15rem 0.75rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.top-promo-bar p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
}

.top-promo-bar p strong {
    color: #fde047;
}

.top-promo-bar a {
    color: var(--white);
    font-weight: 700;
    margin-left: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 1px;
}

.top-promo-bar a:hover {
    color: #fde047;
    border-color: #fde047;
}

/* ============ Barra de contacto ============ */
#Action_bar {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    padding: 8px 0;
}

#Action_bar .contact_details {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#Action_bar .contact_details i {
    color: var(--cyan);
    margin-right: 4px;
}

#Action_bar .contact_details a:hover {
    color: var(--white);
}

/* ============ Header ============ */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    gap: 1rem;
}

.logo img {
    height: 44px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 10px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(148, 163, 184, 0.08);
}

.nav-links a.active {
    color: var(--white);
    background: rgba(59, 130, 246, 0.14);
}

.nav-links a.nav-cta {
    background: var(--primary);
    color: var(--white);
    margin-left: 8px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.nav-links a.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
}

/* ============ Menú móvil ============ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
}

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

/* ============ Botones ============ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 0.95rem 1.9rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.55);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px -8px rgba(59, 130, 246, 0.7);
}

.cta-button.ghost {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--line-strong);
    box-shadow: none;
    color: var(--text);
}

.cta-button.ghost:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: var(--cyan);
    color: var(--white);
}

/* ============ Hero ============ */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(59, 130, 246, 0.16), transparent 60%),
        radial-gradient(ellipse 50% 45% at 90% 15%, rgba(139, 92, 246, 0.13), transparent 60%),
        var(--bg);
}

/* Grilla sutil de fondo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 1.4rem;
    font-weight: 800;
}

.hero-text > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Estadísticas del hero */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.hero-stat .num span {
    color: var(--cyan);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Imagen del hero */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 78%;
    height: 78%;
    top: 12%;
    left: 11%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(34, 211, 238, 0.12) 45%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
    animation: float 7s ease-in-out infinite;
    max-height: 520px;
    width: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-1deg); }
}

/* ============ Franja de clientes ============ */
.clients-strip {
    padding: 2.8rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

.clients-strip p {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.client-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
}

.client-track img {
    height: 58px;
    width: auto;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 12px;
    filter: grayscale(1);
    opacity: 0.75;
    transition: var(--transition);
}

.client-track img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -10px rgba(148, 163, 184, 0.4);
}

/* ============ Features ============ */
.features {
    padding: 6.5rem 0;
    position: relative;
}

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

.feature-card {
    position: relative;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.35);
}

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

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.feature-icon i {
    font-size: 1.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============ Promo Banco de Horas ============ */
.new-version-promo {
    padding: 3rem 0;
}

.promo-banner {
    position: relative;
    background:
        radial-gradient(ellipse 70% 100% at 85% 50%, rgba(139, 92, 246, 0.18), transparent 65%),
        radial-gradient(ellipse 60% 100% at 10% 50%, rgba(59, 130, 246, 0.16), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: 26px;
    padding: 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promo-badge {
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.4);
    color: var(--accent);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.72rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.promo-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.promo-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    max-width: 560px;
}

.promo-content p strong {
    color: var(--white);
}

.promo-feature-icon {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 32px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
}

.promo-feature-icon i {
    font-size: 3.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ Soluciones en la nube ============ */
.cloud-solutions {
    padding: 6.5rem 0;
    background:
        radial-gradient(ellipse 50% 60% at 50% 0%, rgba(34, 211, 238, 0.06), transparent 60%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cloud-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.cloud-image-wrapper {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 22px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cloud-video {
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line-strong);
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ Noticias ============ */
.news {
    padding: 6.5rem 0;
}

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

.news-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(34, 211, 238, 0.25);
}

.news-image {
    width: 100%;
    height: auto;
    max-height: 190px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    background: rgba(248, 250, 252, 0.04);
    padding: 0.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-category {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(59, 130, 246, 0.14);
    color: #93c5fd;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    line-height: 1.35;
}

.news-summary {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.news-link {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.9rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    gap: 10px;
}

/* ============ Contacto ============ */
.contact {
    padding: 6.5rem 0;
    background:
        radial-gradient(ellipse 60% 70% at 50% 100%, rgba(59, 130, 246, 0.1), transparent 60%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-aside {
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 22px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
}

.contact-aside h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.contact-aside > p {
    color: var(--text-muted);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--text);
}

.contact-line:hover {
    color: var(--cyan);
}

.contact-line .cicon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    padding: 2.5rem;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.98rem;
    font-family: inherit;
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(148, 163, 184, 0.09);
}

/* ============ Footer ============ */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    background: var(--bg);
}

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

.footer-info .footer-logo img {
    height: 38px;
    margin-bottom: 1.2rem;
}

.footer-info p {
    font-size: 0.93rem;
    margin-bottom: 0.6rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul a {
    font-size: 0.93rem;
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.07);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.6);
}

/* ============ Botón WhatsApp ============ */
.whatsapp {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 32px;
    right: 32px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1500;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ============ Animaciones al hacer scroll ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-image img,
    .top-promo-bar {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 3.5rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        max-height: 380px;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.2rem;
    }

    .promo-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    #Action_bar .slogan {
        display: none;
    }

    #Action_bar .contact_details {
        gap: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .num {
        font-size: 1.4rem;
    }

    .cloud-image-wrapper {
        padding: 1.2rem;
    }

    .client-track {
        gap: 1.5rem 2rem;
    }

    .client-track img {
        height: 32px;
    }

    .whatsapp {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}
