/* Simple CSS for Controliza - SEO Optimized */

/* Reset */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

/* Variables */
:root{
    /* Brand */
    --orange:#f6a66d;
    --orange-dark:#f05a3e;
    --navy:#1a2c4a;
    --dark:#191a2c;
    --white:#fff;
    --light:#fafbfc;
    --gray:#6c7b8c;
    --spacing:clamp(1rem,3vw,2rem);

    /* Borders */
    --border-light:#e5e7eb;
    --border-medium:#d1d5db;

    /* Radius */
    --radius-sm:6px;
    --radius-md:8px;
    --radius-lg:12px;
    --radius-xl:16px;
    --radius-pill:50px;

    /* Shadows */
    --shadow-sm:0 1px 3px rgba(0,0,0,0.06);
    --shadow-md:0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:0 8px 24px rgba(0,0,0,0.12);
    --shadow-hover:0 12px 32px rgba(0,0,0,0.15);

    /* Module accents */
    --color-prediccion:#f6a66d;
    --color-compras:#f05a3e;
    --color-cocina:#16a34a;
    --color-buffet:#2e7d6f;
    --color-ocr:#5b6abf;
    --color-inventario:#0d9488;
    --color-capex:#8b5cf6;

    /* Text */
    --text-secondary:#4b5563;
    --text-muted:#6c7b8c;
    --text-light:#9ca3af;
}

/* Base */
html{scroll-behavior:smooth}
body{
    font-family:'Lato',sans-serif;
    font-size:16px;
    line-height:1.6;
    color:var(--navy);
    background:var(--white);
}

/* Typography */
h1,h2,h3,h4,h5,h6{font-family:'Montserrat',sans-serif}
h1{font-size:clamp(2rem,5vw,4rem);font-weight:700;line-height:1.1;margin-bottom:1rem}
h2{font-size:clamp(1.5rem,4vw,2.5rem);font-weight:700;margin-bottom:1rem}
h3{font-size:clamp(1.2rem,3vw,1.5rem);font-weight:700;margin-bottom:1rem;color:var(--navy)}
h4{font-size:1.2rem;font-weight:600;margin-bottom:0.5rem}
p{margin-bottom:1rem;font-family:'Lato',sans-serif;line-height:1.7}
a{color:var(--orange);text-decoration:none;transition:0.3s}
img{max-width:100%;height:auto;display:block}

/* Container */
.container{max-width:1200px;margin:0 auto;padding:0 var(--spacing)}

/* Header */
.header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:var(--white);
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}
.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0.75rem 0;
}
.logo svg{height:40px}
.logo img{height:50px;width:auto;margin:8px 0}
.nav-menu{
    display:flex;
    align-items:center;
    gap:2rem;
    list-style:none;
}
.nav-menu a{color:var(--navy);font-weight:600;font-size:0.95rem;font-family:'Montserrat',sans-serif;transition:0.3s}
.nav-menu a:hover{color:var(--orange)}
.nav-menu .btn{color:var(--white)}
.nav-menu .btn:hover{color:var(--white)}
.lang-flag{display:flex;align-items:center;opacity:0.7;transition:opacity 0.2s}
.lang-flag:hover{opacity:1}
.lang-flag img{display:block;border-radius:2px}
.menu-item-has-children{position:relative}
.sub-menu{
    position:absolute;
    top:100%;
    left:0;
    background:var(--white);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    border-radius:var(--radius-md);
    padding:0.5rem 0;
    margin-top:0.5rem;
    min-width:260px;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:all 0.3s ease;
}
.menu-item-has-children:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.sub-menu li{padding:0}
.sub-menu a{
    display:flex;
    flex-direction:column;
    gap:0.15rem;
    padding:0.75rem 1.5rem;
    color:var(--navy);
    font-weight:500;
    transition:0.3s;
}
.sub-menu a strong{
    font-weight:600;
    color:var(--navy);
}
.sub-menu a span{
    font-size:0.8rem;
    color:var(--text-muted);
    font-weight:400;
    line-height:1.3;
}
.sub-menu a:hover{
    background:rgba(246,166,109,0.1);
}
.sub-menu a:hover strong{
    color:var(--orange);
}
/* Persona banner (COO/CIO cross-link) */
.persona-banner{
    background:var(--light);
    border-bottom:1px solid var(--border-light);
    text-align:center;
    padding:0.5rem 1rem;
    font-size:0.85rem;
    color:var(--gray);
}
.persona-banner a{
    font-weight:600;
    color:var(--orange);
    text-decoration:underline;
    margin-left:0.3rem;
}
.persona-banner a:hover{
    color:var(--orange-dark);
}

.mobile-menu{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}
.mobile-menu span{width:25px;height:3px;background:var(--navy);border-radius:2px}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    padding:14px 32px;
    background:linear-gradient(90deg,var(--orange),var(--orange-dark));
    color:var(--white);
    border:none;
    border-radius:var(--radius-pill);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    transition:all 0.3s ease;
    font-family:'Montserrat',sans-serif;
    font-size:0.9rem;
}
.btn:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(246,166,109,0.5)}
.btn-large{padding:18px 42px;font-size:1rem}
.btn-white{background:var(--white);color:var(--orange)}
.btn-white:hover{background:#f5f5f5;transform:translateY(-3px);box-shadow:0 8px 25px rgba(255,255,255,0.3)}

/* Badge */
.badge{
    display:inline-block;
    background:rgba(246,166,109,0.2);
    color:var(--orange);
    padding:10px 28px;
    border-radius:30px;
    font-size:0.7rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:1.5rem;
    font-family:'Montserrat',sans-serif;
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;
    color:var(--white);
    position:relative;
    background:var(--dark);
}
.hero::before{
    content:'';
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-default.webp') center/cover;
    filter:grayscale(1) brightness(0.8);
    z-index:0;
}

/* Page-specific hero backgrounds */
.hero-prediccion::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-prediccion.webp') center/cover;
}
.hero-app-escaner::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-app-escaner.webp') center/cover;
}
.hero-buffet-brain::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-buffet-brain.webp') center/cover;
}
.hero-compras::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-compras.webp') center/cover;
}
.hero-ocr::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-ocr.webp') center/cover;
}
.hero-cocina::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-cocina.webp') center/cover;
}
.hero-restaurantes::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-restaurantes.webp') center/cover;
}
.hero-hoteles::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-hoteles.webp') center/cover;
}
.hero-colectividades::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-colectividades.webp') center/cover;
}
.hero-inventario::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-inventario.webp') center/cover;
}
.hero-capex::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-capex.webp') center/cover;
}
.hero-prediccion-tech::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-prediccion-tech.webp') center/cover;
}
.hero-compras-tech::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-compras-tech.webp') center/cover;
}
.hero-ocr-tech::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-ocr-tech.webp') center/cover;
}
.hero-cocina-tech::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-cocina-tech.webp') center/cover;
}
.hero-buffet-tech::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-buffet-tech.webp') center/cover;
}
.hero-home::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-home.webp') center/cover;
}
.hero-sobre-nosotros::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-sobre-nosotros.webp') center/cover;
}
.hero-casos-exito::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-casos-exito.webp') center/cover;
}
.hero-demo::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-demo.webp') center/cover;
}
.hero-blog::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        var(--hero-bg,url('../images/hero-default.webp')) center/cover;
}
.hero-soporte::before{
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        url('../images/hero-default.webp') center/cover;
}
.hero-short{min-height:40vh;padding:140px 0 60px}
.hero .container{position:relative;z-index:1}
.hero-content{max-width:95%;margin:0 auto;text-align:center}
.hero h2{color:var(--white);font-size:clamp(2.875rem,5.75vw,4rem);margin-bottom:2rem}
.hero h2 .highlight{color:var(--orange)}
.hero .badge{display:block;text-align:center;width:fit-content;margin-left:auto;margin-right:auto}
h1{text-align:center}
h2{text-align:center}
h2 .highlight{color:var(--orange)}
h1 .highlight,
h2 .highlight{white-space:nowrap}
.lead{font-size:1.8rem;font-weight:600;margin-bottom:1.5rem;font-family:'Montserrat',sans-serif}
.hero-subline{font-size:1.55rem;font-weight:500;margin-bottom:1.5rem;color:rgba(255,255,255,0.95);line-height:1.6}
.hero-secondary{color:rgba(255,255,255,0.8);font-size:1.15rem;margin-top:0.5rem}
.hero-benefits{
    display:flex;
    flex-direction:column;
    gap:1rem;
    margin:4rem auto 7rem;
    max-width:600px;
    text-align:left;
}
.hero-benefit{
    display:flex;
    align-items:center;
    gap:1rem;
    font-size:1.1rem;
    color:var(--white);
}
.hero-benefit span{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.hero-benefit svg{
    width:32px;
    height:32px;
    stroke:var(--orange);
    stroke-width:3;
    flex-shrink:0;
}
.hero-badges{display:flex;gap:1.5rem;margin-top:2rem;flex-wrap:wrap}
.hero-badge{background:rgba(255,255,255,0.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.15);border-radius:var(--radius-md);padding:1rem 1.5rem;text-align:center;min-width:120px}
.hero-badge-number{display:block;font-size:1.8rem;font-weight:800;color:var(--orange);font-family:'Montserrat',sans-serif;line-height:1;margin-bottom:0.25rem}
.hero-badge-text{display:block;font-size:0.85rem;color:rgba(255,255,255,0.85)}

/* Clients Carousel */
.clients{
    background:#0a0b14;
    padding:1.5rem 0;
    overflow:hidden;
}
.clients .container{max-width:100%;padding:0}
.carousel{overflow:hidden}
.carousel-track{
    display:flex;
    gap:3rem;
    align-items:center;
    animation:scroll 30s linear infinite;
    width:max-content;
}
.carousel-track img{
    height:54px;
    width:auto;
    max-height:54px;
    object-fit:contain;
    filter:grayscale(100%) brightness(0) invert(1);
    opacity:0.8;
    transition:0.3s;
    flex-shrink:0;
}
.carousel-track img:hover{
    opacity:1;
    filter:grayscale(0%) brightness(1) invert(0);
}
@keyframes scroll{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
}
.partners-carousel .carousel-track img{
    filter:grayscale(100%);
    opacity:.5;
    width:120px;
    max-height:60px;
}
.partners-carousel .carousel-track img:hover{
    filter:grayscale(0%);
    opacity:1;
}

/* ERP Card Carousel */
.erp-carousel{overflow:hidden;position:relative;padding:1rem 0;margin-bottom:1rem;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);width:100vw}
.erp-carousel::before,.erp-carousel::after{content:'';position:absolute;top:0;bottom:0;width:60px;z-index:2;pointer-events:none}
.erp-carousel::before{left:0;background:linear-gradient(to right,var(--section-bg,#fafbfc),transparent)}
.erp-carousel::after{right:0;background:linear-gradient(to left,var(--section-bg,#fafbfc),transparent)}
.integration-icon{width:48px;height:48px;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-size:0.65rem;font-weight:800;font-family:'Montserrat',sans-serif;letter-spacing:1px;flex-shrink:0;color:#fff}
.integration-tpv{background:var(--navy)}
.integration-pms{background:var(--color-buffet)}
.erp-carousel-track{display:flex;gap:1.5rem;animation:scrollCards 45s linear infinite;width:max-content}
.erp-carousel-track:hover{animation-play-state:paused}
.erp-card{background:var(--white);border:2px solid var(--border-light);border-radius:var(--radius-sm);padding:1.5rem;display:flex;align-items:center;gap:1.25rem;transition:all 0.3s ease;min-width:300px;max-width:300px;flex-shrink:0}
.erp-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--orange)}
.erp-card h4{font-size:1rem;margin-bottom:0.25rem;color:var(--navy)}
.erp-card p{font-size:0.85rem;color:var(--gray);margin:0;line-height:1.4}
.erp-card .erp-tech{display:block;font-size:0.75rem;color:var(--orange);font-weight:600;margin-top:0.35rem}
@keyframes scrollCards{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Connector Grid (static integration cards) */
.connector-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem}
.connector-grid .erp-card{width:calc(33.333% - 1rem);min-width:unset;max-width:unset;flex-shrink:unset;box-sizing:border-box}
@media(max-width:900px){.connector-grid .erp-card{width:calc(50% - 0.75rem)}}
@media(max-width:560px){.connector-grid .erp-card{width:100%}}

/* Section banner (visual header with hero background) */
.section-banner{
    position:relative;
    border-radius:var(--radius-md);
    overflow:hidden;
    padding:3rem 2rem;
    margin-bottom:2rem;
    text-align:center;
    color:var(--white);
}
.section-banner::before{
    content:'';
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background:linear-gradient(135deg,rgba(0,0,0,0.5),rgba(26,44,74,0.45)),
        var(--banner-bg) center/cover;
    filter:grayscale(0.5) brightness(0.6);
    border-radius:var(--radius-md);
    z-index:0;
}
.section-banner>*{position:relative;z-index:1}
.section-banner h2{color:var(--white);margin-bottom:0.5rem}
.section-banner p{color:rgba(255,255,255,0.8);margin:0}

/* Grupos highlight card */
.grupo-card-highlight{
    background:linear-gradient(135deg,var(--orange),var(--orange-dark));
    border:none;
    border-radius:var(--radius-md);
    padding:2rem 2rem;
    margin-bottom:2rem;
    color:var(--white);
    text-align:center;
}
.grupo-card-highlight .icon{background:rgba(255,255,255,0.2)}
.grupo-card-highlight .icon svg{stroke:var(--white)}
.grupo-card-highlight h3{color:var(--white);font-size:clamp(1.1rem,2.5vw,1.3rem);margin-bottom:0.75rem}
.grupo-card-highlight p{color:rgba(255,255,255,0.9);font-size:0.9rem;margin:0}

/* Sections */
.section{padding:4.5rem 0}
.section.light{background:var(--light)}
.section.dark{
    background:linear-gradient(135deg,#1a2c4a,#0f1c35);
    color:var(--white);
}
.section.gradient{
    background:linear-gradient(120deg,var(--orange),var(--orange-dark));
    color:var(--white);
}
.section.gradient .section-header h2,
.section.gradient .section-header p{
    color:var(--white);
}
.section.gradient .highlight{
    color:var(--navy);
}
.section.gradient .card{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.15)}
.section.gradient .card h3{color:var(--white)}
.section.gradient .stat-number{color:var(--white) !important}
.section.gradient .stat-icon svg{stroke:var(--white) !important}
.section-header{text-align:center;max-width:95%;margin:0 auto 3rem}
.section-header .btn{margin-top:2rem}

/* Grids */
.grid-2{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:var(--spacing);
    align-items:center;
}
.grid-3{
    display:flex;
    flex-wrap:wrap;
    gap:var(--spacing);
    justify-content:center;
}
.grid-3>*{
    flex:0 1 calc((100% - 2 * var(--spacing)) / 3);
}

/* Cards */
.card{
    background:var(--white);
    padding:3rem 2rem;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-md);
    transition:all 0.3s ease;
    position:relative;
    border:2px solid var(--border-light);
    text-align:center;
}
.card::before{
    display:none;
}
.card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
    border-color:var(--border-medium);
}
.section.dark .card{background:rgba(255,255,255,0.08);color:var(--white);border-color:rgba(255,255,255,0.1)}
.section.light .card h3{font-size:1.25rem}
.section.dark .card h3{color:var(--white)}

/* Card variants */
.card-problem{
    background:linear-gradient(135deg,#f8f9fa,#eef0f2);
    color:var(--navy);
    border:1px solid var(--border-light);
    border-top:3px solid var(--orange);
}
.card-problem h3{color:var(--navy)}
.card-problem p{color:var(--text-secondary)}
.card-problem .icon svg{stroke:var(--orange)}
.card-problem:hover{border-color:var(--border-medium);box-shadow:var(--shadow-lg)}

.card-flow{
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.6);
    box-shadow:var(--shadow-sm);
}
.card-flow:hover{
    background:var(--white);
    box-shadow:var(--shadow-md);
}

/* Cycle flow layout */
.cycle-flow{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:1.5rem;
}
.cycle-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    flex:1;
    max-width:300px;
}
.cycle-bubble{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--orange),var(--orange-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:1.25rem;
    box-shadow:0 4px 20px rgba(246,166,109,0.3);
    flex-shrink:0;
}
.cycle-bubble svg{width:40px;height:40px;stroke:#fff;stroke-width:2;fill:none}
.cycle-arrow{
    color:var(--orange);
    font-size:2rem;
    flex-shrink:0;
    opacity:0.4;
    margin-top:30px;
}
.cycle-step h3{font-size:1.1rem;margin-bottom:0.5rem;color:var(--navy)}
.cycle-step p{font-size:0.9rem;color:var(--text-secondary);line-height:1.6;margin:0}
@media(max-width:768px){
    .cycle-flow{flex-direction:column;align-items:center}
    .cycle-arrow{transform:rotate(90deg);margin-top:0}
}

.module-card{
    border-left:3px solid var(--module-color,var(--orange));
}

/* Sectores spacing */
.section[aria-labelledby="sectores-heading"] .grid-3{gap:2.5rem}
.section[aria-labelledby="sectores-heading"] .grid-3>*{flex:0 1 calc((100% - 5rem) / 3)}
.section[aria-labelledby="sectores-heading"] .card{padding:3rem 2.5rem}
.section[aria-labelledby="sectores-heading"] .card p{font-size:1.05rem;line-height:1.7}
.section.dark .testimonial{background:transparent;border:none;box-shadow:none}
.section.dark .testimonial:hover{transform:none;box-shadow:none}
.icon{
    width:80px;
    height:80px;
    background:transparent;
    border-radius:0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 1.5rem;
}
.icon svg{width:50px;height:50px;stroke:var(--orange);stroke-width:1.5}
.icon.teal svg{stroke:var(--color-inventario)}
.icon.purple svg{stroke:var(--color-capex)}
/* Testimonials Grid */
.testimonials-grid{
    display:flex;
    flex-wrap:wrap;
    gap:2rem;
    max-width:1200px;
    margin:0 auto;
    justify-content:center;
}
.testimonials-grid>*{
    flex:0 1 calc((100% - 4rem) / 3);
}
.testimonial-card{
    text-align:left;
    margin-bottom:80px;
}
.testimonial-image{
    position:relative;
    overflow:visible;
    border-radius:var(--radius-md);
    cursor:pointer;
    aspect-ratio:1/1;
}
.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease;
    clip-path:inset(0 round var(--radius-md));
}
.testimonial-image:hover img{
    transform:scale(1.1);
}
.testimonial-overlay{
    position:absolute;
    bottom:-70px;
    left:30px;
    right:30px;
    background:var(--white);
    padding:18px 20px;
    border-radius:var(--radius-md);
    transition:all 0.3s ease;
    box-shadow:0 8px 30px rgba(0,0,0,0.2);
}
.testimonial-image:hover .testimonial-overlay{
    bottom:-65px;
    box-shadow:0 12px 40px rgba(0,0,0,0.3);
}
.testimonial-overlay h3,
.testimonial-overlay h4{
    color:var(--navy);
    font-size:0.85rem;
    font-weight:700;
    margin:0 0 6px 0;
    text-transform:uppercase;
    letter-spacing:0.5px;
    line-height:1.3;
}
.testimonial-overlay p{
    color:var(--gray);
    font-size:0.75rem;
    margin:0;
    line-height:1.4;
}

/* Features Section */
.subsection-title{font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:1.5rem;padding-bottom:0.5rem;border-bottom:2px solid var(--orange);display:flex;align-items:center;gap:1rem}
.subsection-link{font-size:0.9rem;font-weight:600;color:var(--orange);text-decoration:none;margin-left:auto}
.subsection-link:hover{text-decoration:underline}
.module-badge{display:inline-block;font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;padding:0.2rem 0.6rem;border-radius:1rem;margin-bottom:0.75rem;background:var(--orange);color:#fff}
.module-badge.badge-inventario{background:var(--color-buffet)}
.module-badge.badge-ocr{background:var(--color-ocr)}
.module-badge.badge-capex{background:var(--color-capex)}
.module-badge.badge-cocina{background:var(--color-cocina)}
.module-badge.badge-buffet{background:var(--color-buffet)}
/* Module feature lists inside cards */
.module-features{list-style:none;padding:0;margin-top:1rem}
.module-features li{position:relative;padding-left:1.25rem;margin-bottom:0.5rem;font-size:0.88rem;line-height:1.5;color:var(--text-secondary)}
.module-features li::before{content:"✓";position:absolute;left:0;color:var(--orange);font-weight:700}
.module-features li strong{color:var(--navy)}
/* Device iPad Frame */
.device-ipad-wrapper{margin:0 -50vw 3rem;padding:2.5rem 0;position:relative;left:50%;right:50%;width:100vw;background:var(--light);display:flex;justify-content:center}
.device-ipad{position:relative;background:#1a1a2e;border-radius:18px;padding:20px;border:3px solid #2a2a3e;box-shadow:0 20px 60px rgba(0,0,0,0.15),inset 0 1px 0 rgba(255,255,255,0.05);max-width:760px;width:100%}
.device-ipad::before{content:'';display:block;width:8px;height:8px;border-radius:50%;background:#333;position:absolute;top:8px;left:50%;transform:translateX(-50%)}
.device-ipad img{width:100%;height:auto;display:block;border-radius:6px}
/* Module cards — vertical stack, horizontal layout */
.module-card{display:flex;gap:2rem;padding:2rem;background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--border-light);box-shadow:var(--shadow-sm);margin-bottom:1.5rem;transition:transform 0.2s,box-shadow 0.2s}
.module-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.module-card-icon{display:flex;flex-direction:column;align-items:center;gap:0.75rem;min-width:100px;padding-top:0.25rem}
.module-card-content{flex:1}
.module-card-content h3{margin-top:0;margin-bottom:0.5rem}
.module-card-content>p{margin-bottom:1rem;color:var(--text-secondary);line-height:1.7}
.feature-row{
    display:flex;
    flex-wrap:wrap;
    gap:2rem;
    margin-bottom:3rem;
    justify-content:center;
}
.feature-row>*{
    flex:0 1 calc((100% - 4rem) / 3);
}
.feature-row:last-child{
    margin-bottom:0;
}
.feature-row-reverse{
    direction:rtl;
}
.feature-row-reverse > *{
    direction:ltr;
}
.feature-content{
    display:contents;
}
.feature-item{
    display:flex;
    align-items:center;
    gap:1.5rem;
    padding:1.5rem;
    border-radius:var(--radius-md);
    background:var(--white);
    box-shadow:var(--shadow-md);
    transition:all 0.4s ease;
    cursor:pointer;
}
.feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 40px rgba(13,148,136,0.25);
}
.feature-icon{
    width:70px;
    height:70px;
    min-width:70px;
    background:linear-gradient(135deg,#0d9488,#0f766e);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.4s ease;
    box-shadow:0 4px 15px rgba(13,148,136,0.3);
}
.feature-icon svg{
    width:36px;
    height:36px;
    stroke:var(--white);
    stroke-width:2.5;
}
.feature-item:hover .feature-icon{
    transform:rotate(5deg) scale(1.1);
    box-shadow:0 8px 25px rgba(13,148,136,0.5);
}
.feature-text{
    flex:1;
}
.feature-text h4{
    font-size:1.3rem;
    font-weight:700;
    color:var(--navy);
    margin:0 0 0.5rem 0;
    line-height:1.3;
}
.feature-text p{
    font-size:1rem;
    font-weight:400;
    color:var(--gray);
    margin:0;
    line-height:1.5;
}
/* Cómo funciona steps */
.section[aria-labelledby="ciclo-heading"] .card h3{font-size:1.5rem;margin-bottom:1rem}
.section[aria-labelledby="ciclo-heading"] .card{padding:3rem}

.feature-item--highlight{
    background:linear-gradient(135deg,rgba(246,166,109,0.08),rgba(246,166,109,0.03));
    border-left:3px solid var(--orange);
    border-radius:var(--radius-md);
    padding:1.5rem 2rem;
}
/* Related articles compact */
.related-compact .grid-3{gap:1.25rem}
.related-compact .card{padding:0;overflow:hidden;text-align:left}
.related-compact .card h3{font-size:0.9rem;margin:0;line-height:1.4;padding:0.75rem 1rem;color:var(--navy)}

.feature-image{
    display:none;
}

/* Stats */
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:2rem;
    text-align:center;
}
.stat-icon{
    width:70px;
    height:70px;
    margin:0 auto 1rem;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0.5rem;
}
.stat-icon img{width:100%;height:100%;object-fit:contain}
.stat-number{
    font-size:3.5rem;
    font-weight:800;
    line-height:1;
    margin-bottom:0.5rem;
}
.stat-label{font-size:0.9rem;opacity:0.9}

/* Partners */
.partners{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:2rem;
}
.partner{
    background:var(--white);
    padding:1.5rem;
    border-radius:var(--radius-md);
    display:flex;
    align-items:center;
    justify-content:center;
    height:100px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}
.partner:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.partner img{max-height:60px;width:auto;object-fit:contain}

/* Demo Section */
.demo-section{
    background:linear-gradient(135deg,#1a2c4a,#0f1c35);
    padding:6rem 0;
}
.demo-section--light{
    background:var(--white);
}
.demo-section--light .demo-form-container h2{
    color:var(--navy);
}
.demo-section--light .demo-subtitle{
    color:var(--navy);
    font-size:1.25rem;
    font-weight:500;
}
.demo-section--light .demo-form{
    box-shadow:0 4px 24px rgba(0,0,0,0.08);
    border:1px solid var(--border-light);
}
.demo-form-wrapper{
    max-width:900px;
    margin:0 auto;
}
.demo-form-container h2{
    color:var(--white);
    font-size:clamp(2rem,5vw,3rem);
    margin-bottom:1rem;
    text-align:center;
}
.demo-subtitle{
    font-size:1.1rem;
    color:rgba(255,255,255,0.9);
    margin-bottom:3rem;
    text-align:center;
    line-height:1.7;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}
.demo-form{
    background:var(--white);
    padding:3rem;
    border-radius:var(--radius-md);
    box-shadow:0 10px 50px rgba(0,0,0,0.3);
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1.5rem;
    margin-bottom:1.5rem;
}
.form-group{
    margin-bottom:1.5rem;
}
.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 18px;
    border:1px solid var(--border-medium);
    border-radius:var(--radius-sm);
    font-size:1rem;
    font-family:'Lato',sans-serif;
    transition:all 0.3s ease;
    background:var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:var(--orange);
    box-shadow:0 0 0 3px rgba(246,166,109,0.15);
}
.form-group select{
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:10px;
    cursor:pointer;
}
.form-group textarea{
    resize:vertical;
    min-height:120px;
}
.checkbox-group{
    margin-bottom:2rem;
}
.checkbox-group label{
    display:flex;
    align-items:start;
    gap:10px;
    font-size:0.9rem;
    color:var(--gray);
    cursor:pointer;
}
.checkbox-group input[type="checkbox"]{
    width:auto;
    margin-top:3px;
    cursor:pointer;
}
.checkbox-group a{
    color:var(--orange);
    text-decoration:underline;
}
.demo-form button{
    display:inline-flex;
    min-width:300px;
}

/* HubSpot Form Container — white card matching original .demo-form */
#hubspot-form{
    max-width:600px;
    margin:0 auto;
    background:var(--white);
    padding:3rem;
    border-radius:var(--radius-lg);
    box-shadow:0 10px 50px rgba(0,0,0,0.3);
}
.demo-section--light #hubspot-form{
    box-shadow:0 4px 24px rgba(0,0,0,0.08);
    border:1px solid var(--border-light);
}
.grecaptcha-badge{ display:none !important; }
.recaptcha-notice{
    text-align:center;
    font-size:0.625rem !important;
    color:var(--text-light);
    margin-top:0.75rem;
    font-family:Lato,sans-serif;
}
.recaptcha-notice a{
    color:var(--text-light);
    text-decoration:underline;
    font-size:0.625rem !important;
}

/* Sector Photo Cards */
.sector-photo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}
.sector-photo-grid a{
    display:block;
    text-decoration:none;
    color:inherit;
    border-radius:var(--radius-md);
    overflow:hidden;
    background:var(--white);
    box-shadow:var(--shadow-md);
    transition:transform 0.2s,box-shadow 0.2s;
}
.sector-photo-grid a:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-lg);
}
.sector-photo-grid .sector-img{
    height:160px;
    background-size:cover;
    background-position:center;
}
.sector-photo-grid h3{
    padding:0.75rem 1.25rem 0;
    margin:0;
    font-size:1.05rem;
    color:var(--navy);
    line-height:1.4;
}
.sector-photo-grid p{
    padding:0.25rem 1.25rem 1rem;
    margin:0;
    font-size:0.85rem;
    color:var(--text-secondary);
    line-height:1.5;
}
@media(max-width:600px){
    .sector-photo-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
}

/* Mid-page CTA Strip */
.mid-cta{
    padding:2.5rem 0;
    background:var(--navy);
    text-align:center;
}
.mid-cta-text{
    color:#fff;
    font-size:1.15rem;
    margin-bottom:1rem;
    font-weight:500;
}
.mid-cta .btn{
    background:linear-gradient(90deg,var(--orange),var(--orange-dark));
    color:#fff;
}
.feature-item.feature-highlight{
    border-left:3px solid var(--orange);
    background:rgba(246,166,109,0.05);
}

/* Government Logos Section */
.government-logos-section{
    padding:3rem 0;
    background:#8a8a8a;
}
.government-logos{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3rem;
    flex-wrap:wrap;
}
.government-logo-link{
    display:flex;
    align-items:center;
    justify-content:center;
}
.government-logo{
    height:80px;
    width:auto;
    object-fit:contain;
    opacity:0.8;
    transition:opacity 0.3s ease;
}
.government-logo:hover{
    opacity:1;
}
.government-logo-wide{
    height:60px;
    width:auto;
    max-width:100%;
    object-fit:contain;
    opacity:0.8;
}

/* ── Blog article images ── */
.blog-article figure{margin:0}

.blog-article .blog-img{
    margin:2.5rem 0;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-md);
}
.blog-article .blog-img img{
    width:100%;
    height:auto;
    display:block;
}
.blog-article .blog-img figcaption{
    padding:0.75rem 1rem;
    font-size:0.85rem;
    color:var(--gray);
    font-family:'Lato',sans-serif;
    line-height:1.5;
    background:var(--white);
    border-top:1px solid var(--border-light);
}

.blog-article .blog-img-bordered{
    border-left:4px solid var(--orange);
    border-radius:0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow:var(--shadow-sm);
}

.blog-article .blog-img-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    align-items:center;
    margin:2.5rem 0;
}
.blog-article .blog-img-split .blog-img{margin:0}
.blog-article .blog-img-split-text h3{margin-top:0}
.blog-article .blog-img-split.reverse{direction:rtl}
.blog-article .blog-img-split.reverse>*{direction:ltr}

.blog-article .blog-img-duo{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1.25rem;
    margin:2.5rem 0;
}
.blog-article .blog-img-duo .blog-img{margin:0}

.blog-article .blog-pullquote-img{
    position:relative;
    margin:2.5rem 0;
    padding:3rem 2.5rem;
    border-radius:var(--radius-lg);
    overflow:hidden;
    color:var(--white);
}
.blog-article .blog-pullquote-img::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(26,44,74,0.85),rgba(15,28,53,0.9)),
        var(--pq-bg) center/cover no-repeat;
    z-index:0;
}
.blog-article .blog-pullquote-img>*{position:relative;z-index:1}
.blog-article .blog-pullquote-img blockquote{
    font-family:'Montserrat',sans-serif;
    font-size:1.3rem;
    font-weight:600;
    line-height:1.6;
    margin:0;
}
.blog-article .blog-pullquote-img blockquote strong{color:var(--orange)}
.blog-article .blog-pullquote-img figcaption{
    margin-top:1rem;
    font-size:0.9rem;
    color:rgba(255,255,255,0.7);
    font-style:italic;
    border-top:none;
    background:transparent;
    padding:0;
}

@media(max-width:768px){
    .blog-article .blog-img-split{grid-template-columns:1fr}
    .blog-article .blog-img-split.reverse{direction:ltr}
    .blog-article .blog-pullquote-img{padding:2rem 1.5rem}
    .blog-article .blog-pullquote-img blockquote{font-size:1.1rem}
}
@media(max-width:600px){
    .blog-article .blog-img-duo{grid-template-columns:1fr}
}

/* ── Blog article typography ── */
.blog-article .lead{
    font-size:1.2rem;
    line-height:1.9;
    color:var(--navy);
}
.blog-article h2{
    font-size:1.45rem;
    color:var(--navy);
    margin-top:3rem;
    margin-bottom:1rem;
    padding-left:1rem;
    border-left:4px solid var(--orange);
}
.blog-article h3{
    font-size:1.05rem;
    color:var(--navy);
    margin-top:2rem;
    opacity:0.85;
}
.blog-article p{line-height:1.85}

/* ── Blog stat callout ── */
.stat-callout{
    display:flex;
    align-items:center;
    gap:1.5rem;
    background:linear-gradient(135deg,rgba(246,166,109,0.1),rgba(246,166,109,0.02));
    border-radius:12px;
    padding:1.5rem 2rem;
    margin:2rem 0;
}
.stat-callout .stat-number{
    font-size:2.5rem;
    font-weight:800;
    color:var(--orange);
    line-height:1;
    white-space:nowrap;
}
.stat-callout .stat-text{
    font-size:1rem;
    color:var(--navy);
    line-height:1.6;
}

/* ── Blog impact grid ── */
.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:1.25rem;
    margin:2rem 0;
}
.impact-item{
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:12px;
    padding:1.5rem;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.impact-item .number{
    font-size:2rem;
    font-weight:800;
    color:var(--orange);
    display:block;
    margin-bottom:0.25rem;
}
.impact-item .label{
    font-size:0.9rem;
    color:var(--navy);
    opacity:0.8;
}

/* ── Blog key takeaway ── */
.key-takeaway{
    background:var(--navy);
    color:#fff;
    padding:1.5rem 2rem;
    border-radius:12px;
    margin:2.5rem 0;
    font-size:1.05rem;
    line-height:1.8;
}
.key-takeaway strong{color:var(--orange)}

/* ── Blog comparison table (vs-*) ── */
.vs-table{width:100%;border-collapse:collapse;margin:2rem 0;font-size:0.95rem}
.vs-table th,.vs-table td{padding:1rem 1.25rem;text-align:left;border-bottom:1px solid rgba(0,0,0,0.08);vertical-align:top}
.vs-table thead th{background:var(--navy);color:#fff;font-weight:700;font-size:0.9rem;text-transform:uppercase;letter-spacing:0.5px}
.vs-table thead th:first-child{border-radius:8px 0 0 0}
.vs-table thead th:last-child{border-radius:0 8px 0 0}
.vs-table tbody tr:nth-child(even){background:rgba(246,166,109,0.04)}
.vs-table tbody tr:hover{background:rgba(246,166,109,0.08)}
.vs-table td:first-child{font-weight:700;color:var(--navy);white-space:nowrap}

/* ── Blog "when to choose" grid ── */
.vs-when{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin:2rem 0}
.vs-when>div{padding:1.5rem;border-radius:12px}
.vs-when>div:first-child{background:#f5f5f5;border:1px solid #e0e0e0}
.vs-when>div:last-child{background:linear-gradient(135deg,rgba(246,166,109,0.1),rgba(246,166,109,0.04));border:1px solid rgba(246,166,109,0.2)}
.vs-when h3{margin-top:0;font-size:1rem;opacity:1}
.vs-when ul{margin:0.75rem 0 0 1.25rem;font-size:0.95rem;line-height:1.7}

/* ── Blog details/summary (FAQ accordion) ── */
.blog-article details{border:1px solid rgba(0,0,0,0.08);border-radius:8px;padding:1rem 1.25rem;margin:0.75rem 0}
.blog-article details[open]{background:rgba(246,166,109,0.03)}
.blog-article summary{cursor:pointer;font-weight:700;color:var(--navy);font-size:0.95rem}
.blog-article summary::marker{color:var(--orange)}
.blog-article details p{margin-top:0.75rem;font-size:0.95rem}

/* ── Blog responsive (typography + components) ── */
@media(max-width:768px){
    .stat-callout{flex-direction:column;text-align:center;gap:0.75rem}
    .stat-callout .stat-number{font-size:2rem}
    .impact-grid{grid-template-columns:1fr 1fr}
    .vs-when{grid-template-columns:1fr}
    .vs-table{font-size:0.85rem}
    .vs-table th,.vs-table td{padding:0.75rem}
}

/* Footer */
.footer{
    background:#0f1419;
    color:var(--white);
    padding:5rem 0 2rem;
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:3rem;
    margin-bottom:2rem;
}
.footer h4{margin-bottom:1rem}
.footer ul{list-style:none}
.footer ul li{margin-bottom:0.5rem}
.footer a{color:rgba(255,255,255,0.7)}
.footer a:hover{color:var(--orange)}
.footer p{opacity:0.8;margin-bottom:0.5rem}
.social{display:flex;gap:1rem;margin-top:1rem}
.social a{
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    transition:0.3s;
}
.social a:hover{background:var(--orange)}
.social svg{width:20px;height:20px}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:2rem;
    text-align:center;
    opacity:0.7;
}

/* Utilities */
.accent{color:var(--orange)}

/* Responsive */
@media(max-width:768px){
    .nav-menu{
        position:fixed;
        top:70px;
        left:0;
        right:0;
        background:var(--white);
        flex-direction:column;
        align-items:stretch;
        padding:2rem;
        box-shadow:0 10px 30px rgba(0,0,0,0.2);
        transform:translateY(-200%);
        opacity:0;
        transition:0.3s;
        overflow-y:auto;
        max-height:calc(100vh - 70px);
    }
    .nav-menu.active{
        transform:translateY(0);
        opacity:1;
    }
    .mobile-menu{display:flex}
    .mobile-menu.active span:nth-child(1){transform:rotate(45deg) translateY(8px)}
    .mobile-menu.active span:nth-child(2){opacity:0}
    .mobile-menu.active span:nth-child(3){transform:rotate(-45deg) translateY(-8px)}
    .mobile-menu span{transition:0.3s}
    .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;margin-top:0;padding-left:1rem;min-width:auto;display:none;border-radius:0}
    .menu-item-has-children.active .sub-menu{display:block}
    .menu-item-has-children>a::after{content:'▾';margin-left:0.3rem;font-size:0.7rem}
    .grid-2,.footer-grid{grid-template-columns:1fr}
    .grid-3>*{flex-basis:100%}
    .hero{min-height:50vh;padding:150px 0 50px}
    .hero-short{min-height:auto;padding:130px 0 40px}
    .hero h2{white-space:normal}
    .lead{font-size:1.4rem}
    .hero-subline{font-size:1.1rem}
    .hero-benefit{font-size:1rem}
    .hero-benefit span{white-space:normal}
    .hero-badges{justify-content:center}
    .hero-badge{min-width:100px;padding:0.75rem 1rem}
    .hero-badge-number{font-size:1.4rem}
    .section{padding:2.5rem 0}
    .section-header{margin-bottom:2rem}
    .testimonials-grid{gap:2rem}.testimonials-grid>*{flex-basis:100%}
    .testimonial-overlay{bottom:-60px;left:20px;right:20px;padding:20px}
    .testimonial-image:hover .testimonial-overlay{bottom:-55px}
    .demo-form{padding:2rem}
    .form-row{grid-template-columns:1fr}
    .feature-row{gap:1.5rem;margin-bottom:2rem}.feature-row>*{flex-basis:100%}
    .module-card{flex-direction:column;text-align:left;padding:1.5rem}
    .module-card-icon{display:none}
    .device-ipad-wrapper{max-width:100%;margin-bottom:2rem}
    .device-ipad{padding:12px;border-radius:12px;border-width:2px}
    .device-ipad::before{width:6px;height:6px;top:5px}
    .government-logos{gap:2rem;flex-direction:column}
    .government-logo{height:60px}
    .government-logo-wide{height:50px}
}

/* WhatsApp floating button */
.wa-float{position:fixed;bottom:24px;right:24px;z-index:9999;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,0.25);transition:transform .2s,box-shadow .2s;text-decoration:none}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 20px rgba(0,0,0,0.3)}
.wa-float svg{width:28px;height:28px;fill:#fff}
@media(max-width:768px){.wa-float{bottom:16px;right:16px;width:50px;height:50px}.wa-float svg{width:24px;height:24px}}

/* Blog filter styles */
.blog-filter{padding:0.4rem 1rem;border:1px solid #ddd;border-radius:2rem;font-size:0.85rem;background:#fff;color:var(--navy);cursor:pointer;font-family:inherit;transition:all 0.2s}
    .blog-filter:hover{border-color:var(--orange);color:var(--orange)}
    .blog-filter.active{background:var(--orange);color:#fff;border-color:var(--orange)}
    .blog-filter.active:hover{background:var(--orange);color:#fff}
    .blog-filter.highlighted{background:var(--navy);color:#fff;border-color:var(--navy);font-weight:600}
    .blog-filter.highlighted:hover{background:var(--navy);color:#fff;opacity:0.9}
    .blog-filter.highlighted.active{background:var(--orange);color:#fff;border-color:var(--orange)}
