@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');

:root {
    /* Core colors */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;

    /* Accents */
    --color-accent-blue: #2563EB;
    --color-accent-indigo: #4F46E5;

    /* Product Brand Colors */
    --brand-liberimech: #2563EB; /* Bright Blue */
    --brand-fichabit: #B3FF00;   /* Lime Green */
    --brand-qrconta: #334155;    /* Professional Slate */
    --brand-maat: #48BA49;       /* Energy Green */
    --brand-beetobee: #FFBB00;   /* Amber Gold */
    --brand-waspapp: #E60000;    /* Vodafone Red */
    --brand-medida: #A4A7F1;     /* Lilac Background Color */

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

/* ================= Glass Header =================  */
.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.glass-nav-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 8px 16px;
    border-radius: 8px;
}

.glass-nav-link:hover, .glass-nav-link.active {
    color: var(--color-text-main);
    background: var(--color-bg-alt);
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= Hero Section =================  */
.modern-hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* ================= Global Fluid Background =================  */
.global-fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background-color: #FFFFFF;
}

/*
 * CSS-native mesh gradient via pseudo-element.
 * Works identically in Chrome, Firefox and Safari.
 * Oversized (140%) so it covers safely with no white edges.
 */
.global-fluid-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-image:
        radial-gradient(ellipse 65% 68% at 20% 26%, rgba(164, 167, 241, 0.65) 0%, rgba(164, 167, 241, 0.28) 42%, transparent 68%),
        radial-gradient(ellipse 60% 62% at 82% 20%, rgba(244, 186, 201, 0.60) 0%, rgba(244, 186, 201, 0.26) 42%, transparent 68%),
        radial-gradient(ellipse 70% 58% at 38% 82%, rgba(151, 204, 254, 0.55) 0%, rgba(151, 204, 254, 0.24) 42%, transparent 68%),
        radial-gradient(ellipse 52% 48% at 72% 66%, rgba(164, 167, 241, 0.38) 0%, rgba(164, 167, 241, 0.16) 42%, transparent 68%);
}

/* Hide legacy HTML blob elements — layout preserved, visually inactive */
.fluid-blob { display: none; }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    padding-bottom: 0.15em; /* Previene que se corte la parte baja de letras como la g */
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= Buttons =================  */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 99px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--color-text-main);
    color: #FFF;
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.2);
}

.btn-primary-modern:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
    color: #FFF;
    text-decoration: none;
}

.btn-secondary-modern {
    background: #FFF;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary-modern:hover {
    border-color: var(--color-text-main);
    background: var(--color-bg-alt);
    color: var(--color-text-main);
    text-decoration: none;
}

/* ================= Products Grid =================  */
.products-section {
    padding: 100px 0;
    background-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-bg-alt);
    color: var(--color-accent-indigo);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 99px;
    margin-bottom: 16px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-color, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

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

.product-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    background-color: rgba(var(--card-color-rgb, 99, 102, 241), 0.1);
    color: var(--card-color, #6366f1);
}

.product-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-card-modern p {
    color: var(--color-text-muted);
    font-size: 1rem;
    flex-grow: 1;
}

.product-link {
    margin-top: 24px;
    color: var(--color-text-main);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.product-link i {
    transition: transform 0.2s ease;
}

.product-link:hover {
    color: var(--card-color, #6366f1);
    text-decoration: none;
}

.product-link:hover i {
    transform: translateX(4px);
}

/* ================= Contact Section =================  */
.contact-section-modern {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid rgba(226, 232, 240, 0.4);
}

.section-no-top-padding {
    padding-top: 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.brand-logo-image {
    height: 35px;
    width: auto;
}

.footer-logo-image {
    height: 30px;
    width: auto;
    filter: grayscale(100%) opacity(70%);
}

.section-title-large {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin: 20px 0;
}

.section-title-large-tight {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-title-medium {
    font-size: clamp(1.85rem, 3.6vw, 2.2rem);
    margin: 20px 0;
}

.section-body-large {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.section-body-medium {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-helper-text {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 24px;
}

.contact-form-notice {
    border: none;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
    background: rgba(191, 219, 254, 0.45);
    color: #1E3A8A;
}

.contact-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 12px;
}

.btn-block-spacious {
    padding: 18px;
}

.modern-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    color: var(--color-text-main);
}

.modern-input:focus {
    outline: none;
    background: #FFF;
    border-color: var(--color-accent-indigo);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.modern-input.input-error {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

textarea.modern-input {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

select.modern-input {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.modern-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.whatsapp-btn-large {
    display: flex;
    background: #25D366;
    color: #FFF;
    padding: 20px;
    border-radius: var(--radius-md);
    align-items: center;
    text-decoration: none;
    gap: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px -5px rgba(37, 211, 102, 0.4);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-icon-bg {
    background: rgba(255,255,255,0.2);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.whatsapp-text h4 {
    margin: 0;
    color: #FFF;
    font-size: 1.1rem;
}

.whatsapp-text p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.product-card-featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.product-icon-centered {
    margin: 0 auto 24px;
}

.product-icon-large {
    font-size: 2.5rem;
}

/* ================= Footer =================  */
.footer-modern {
    padding: 60px 0;
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--color-text-main);
}

.copyright {
    color: #94A3B8;
    font-size: 0.875rem;
}

/* ================= Page Hero (Inner pages) =================  */
.page-hero {
    padding: 130px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 0;
}

/* ================= Content Section =================  */
.content-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.content-section + .content-section {
    border-top: 1px solid rgba(226, 232, 240, 0.3);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

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

/* ================= Glass Content Card =================  */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ================= Feature Grid =================  */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-indigo), var(--color-accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--color-accent-indigo);
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================= Info List (Check items) =================  */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    align-items: flex-start;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list .list-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--color-accent-indigo);
    margin-top: 2px;
}

.info-list h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-list p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ================= Two Column Layout =================  */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-col-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.two-col-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ================= Map Section =================  */
.map-section {
    padding: 0;
    position: relative;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-embed:hover {
    filter: grayscale(0%) contrast(1);
}

.address-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: min(calc(100% - 32px), 420px);
    box-shadow: var(--shadow-hover);
}

.address-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.address-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.address-card a {
    color: var(--color-accent-indigo);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.address-link-inline {
    margin-top: 8px;
    display: inline-block;
}

.address-card a:hover {
    color: var(--color-text-main);
}

/* ================= Contact Info Cards =================  */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--color-accent-indigo);
    margin-bottom: 14px;
    display: block;
}

.contact-info-item h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-item p, .contact-info-item a {
    font-size: 1rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--color-accent-indigo);
}

/* ================= Legal / Prose =================  */
.legal-prose {
    max-width: 800px;
    margin: 0 auto;
}

.legal-prose h3 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(79, 70, 229, 0.15);
}

.legal-prose p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-prose ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-prose ul li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-prose .legal-update {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-bg-alt);
    border-radius: 99px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* ================= CTA Section =================  */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: transparent;
    border-top: 1px solid rgba(226, 232, 240, 0.3);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= Scroll Reveal Animations =================  */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fluid-blob,
    .reveal,
    .reveal-stagger > * {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}

/* ================= Responsive =================  */
@media (max-width: 991.98px) {
    .fluid-blob {
        opacity: 0.92;
    }

    .hero-btns,
    .cta-btns {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
    .hero-btns,
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btns .btn-modern,
    .cta-btns .btn-modern {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .address-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: -40px 16px 0;
        min-width: auto;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-btn-large {
        flex-direction: column;
        text-align: center;
    }
    .footer-modern {
        padding: 52px 0;
    }
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(110px, max-content));
        justify-content: center;
        gap: 14px 24px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer-nav a {
        text-align: center;
    }
    .copyright {
        max-width: 240px;
        margin: 0 auto;
        line-height: 1.6;
    }
    .page-hero {
        padding: 110px 0 60px;
    }
}
