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

:root {
    --blue:       #1558A6;
    --blue-dark:  #0D3F7A;
    --blue-mid:   #1E6FC2;
    --blue-light: #EBF4FF;
    --cyan:       #00B8D4;
    --cyan-light: #E0F7FA;
    --green:      #22C55E;
    --text-dark:  #1A2B4A;
    --text-mid:   #3D5275;
    --text-gray:  #6B7A95;
    --text-muted: #A0AFCA;
    --bg:         #F5F9FF;
    --white:      #FFFFFF;
    --border:     #DDE8F5;
    --shadow-sm:  0 2px 12px rgba(21,88,166,.07);
    --shadow-md:  0 8px 32px rgba(21,88,166,.12);
    --shadow-lg:  0 20px 60px rgba(21,88,166,.16);
    --radius:     14px;
    --radius-lg:  22px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ---
   UTILITIES
--- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.sec { padding: 40px 0; }

.label-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
}

.sec-title em { color: var(--blue); font-style: normal; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    padding: 13px 26px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .22s ease;
}
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(21,88,166,.35);
}
.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21,88,166,.4);
}
.btn-ghost {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* ---
   TOP BAR
--- */
.top-bar {
    background: var(--text-dark);
    color: #8FA3BD;
    font-size: 12px;
    padding: 9px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #8FA3BD;
    text-decoration: none;
    transition: color .18s;
    margin-right: 20px;
}
.top-bar a:last-child { margin-right: 0; }
.top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 5px; font-size: 11px; }

/* ---
   ANNOUNCEMENT BAR
--- */
.ann-bar {
    background: var(--blue);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 50px;
    position: relative;
}
.ann-bar strong { font-weight: 700; }
.ann-bar .sep { margin: 0 10px; opacity: .5; }
.ann-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
}
.ann-close:hover { background: rgba(255,255,255,.3); }

/* ---
   NAVBAR
--- */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
}
.logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
.footer-logo .logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin: 0;
    padding: 0;
}

/* Nav links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
}
.nav-menu a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color .18s, background .18s;
    white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--blue);
    background: var(--blue-light);
}
.nav-menu .has-drop { position: relative; }
.nav-menu .has-drop > a::after {
    content: ' ';
    display: inline-block;
    border: 4px solid transparent;
    border-top-color: currentColor;
    margin-left: 5px;
    vertical-align: middle;
    margin-top: 2px;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-icon-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 17px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .18s, background .18s;
}
.nav-icon-btn:hover { color: var(--blue); background: var(--blue-light); }
.nav-cta {
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 9px;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s;
}

/* ---
   HERO
--- */
.hero {
    background: linear-gradient(140deg, #EBF4FF 0%, #E8F7FA 55%, #F5FBFF 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -120px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(0,184,212,.14) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    left: -60px; bottom: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(21,88,166,.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 88px;
    position: relative;
    z-index: 1;
}
.hero-hashtag {
    display: inline-block;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 22px;
}
.hero-title em { color: var(--blue); font-style: normal; }
.hero-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}
.hero-trust-avatars {
    display: flex;
}
.hero-trust-avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--blue);
    margin-right: -10px;
    font-weight: 700;
}
.hero-trust-text { font-size: 13px; color: var(--text-gray); line-height: 1.4; }
.hero-trust-text strong { color: var(--text-dark); display: block; }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hero-blob-bg {
    position: absolute;
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(21,88,166,.11) 0%, transparent 65%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.hero-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}
.hero-main-card {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 22px;
}
.hero-main-icon {
    width: 68px; height: 68px;
    border-radius: 16px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--blue);
    flex-shrink: 0;
}
.hero-main-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.hero-main-card p { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

.hero-mini-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform .28s, box-shadow .28s;
}
.hero-mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hero-mini-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}
.hero-mini-card h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.hero-mini-card p  { font-size: 11px; color: var(--text-gray); margin-top: 4px; }

/* Floating badge */
.hero-badge {
    position: absolute;
    bottom: -12px;
    right: -8px;
    background: var(--blue);
    color: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 28px rgba(21,88,166,.35);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.hero-badge-num { font-size: 24px; font-weight: 800; line-height: 1; }
.hero-badge-txt { font-size: 11px; opacity: .85; line-height: 1.3; }

/* ---
   CERTIFICATIONS
--- */
.certs {
    background: #fff;
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.certs-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.certs-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: .55;
    transition: opacity .2s;
    text-decoration: none;
}
.cert-item:hover { opacity: 1; }
.cert-badge {
    width: 54px; height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .5px;
}
.cert-info { line-height: 1.3; }
.cert-info strong { display: block; font-size: 13px; color: var(--text-dark); }
.cert-info span   { font-size: 11px; color: var(--text-gray); }

/* ---
   PRODUCTS - TABBED CATALOG
--- */
.products { background: var(--bg); }
.products-header { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.products-header .sec-title { margin-top: 10px; }

/* Tab bar */
.cat-tabs-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 36px;
}
.cat-tabs-outer::-webkit-scrollbar { display: none; }
.cat-tabs {
    display: flex;
    gap: 8px;
    width: max-content;
    margin: 0 auto;
    padding: 4px 2px;
}
.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-gray);
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
    outline: none;
}
.cat-tab:hover { border-color: var(--blue); color: var(--blue); }
.cat-tab:focus-visible { box-shadow: 0 0 0 3px rgba(21,88,166,.3); }
.cat-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(21,88,166,.35);
}
.cat-tab i { font-size: 13px; }

/* Panels */
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* Product track */
.prod-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

/* --- Responsive: horizontal drag on -¤768px --- */
@media (max-width: 768px) {
    .prod-track {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab;
        /* let it breathe past the container edge */
        margin-left: -28px;
        margin-right: -28px;
        padding-left: 28px;
        padding-right: 28px;
    }
    .prod-track::-webkit-scrollbar { display: none; }
    .prod-track.grabbing { cursor: grabbing; }
    .prod-track.grabbing .prod-item { pointer-events: none; user-select: none; }
}

/* Product card */
.prod-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 14px 18px;
    border: 1.5px solid var(--border);
    transition: border-color .22s, box-shadow .22s, transform .22s;
    /* mobile: fixed width for horizontal scroll */
    flex-shrink: 0;
    width: 200px;
    scroll-snap-align: start;
}
@media (min-width: 769px) { .prod-item { width: auto; } }
.prod-item:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.prod-item-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
    margin-bottom: 12px;
    background: #e6eef9;
}
.prod-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.prod-item:hover .prod-item-media img { transform: scale(1.05); }
.prod-item-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,24,0) 45%, rgba(5,12,24,.35) 100%);
    pointer-events: none;
}
.prod-item-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 0;
    box-shadow: 0 8px 18px rgba(12, 28, 56, .24);
    z-index: 1;
}
.prod-item-code {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 6px;
}
.prod-item-name {
    font-size: 14px; font-weight: 700;
    color: var(--text-dark); line-height: 1.3;
    margin-bottom: 12px;
}
.prod-item-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--blue); background: var(--blue-light);
    padding: 3px 10px; border-radius: 20px;
}
.prod-item-foot {
    display: flex; align-items: center; justify-content: space-between;
}
.prod-wa {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: #25D366; color: #fff; font-size: 13px;
    text-decoration: none; flex-shrink: 0;
    transition: transform .18s, box-shadow .18s;
}
.prod-wa:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(37,211,102,.45);
}

/* Panel footer */
.cat-panel-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 12px;
}
.cat-panel-info { font-size: 14px; color: var(--text-gray); }
.cat-panel-info strong { color: var(--text-dark); }

/* --- PDF Modal --- */
#pdfModal {
    position: fixed; inset: 0; z-index: 99999;
    display: none; align-items: center; justify-content: center; padding: 16px;
}
#pdfModalBackdrop {
    position: absolute; inset: 0;
    background: rgba(8,15,30,.86);
    backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
}
#pdfModalBox {
    position: relative; z-index: 1;
    background: #fff; border-radius: 18px;
    width: min(920px, 96vw); max-height: 93vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 36px 90px rgba(0,0,0,.4);
    transform: scale(.93) translateY(16px); opacity: 0;
    transition: transform .32s cubic-bezier(.34,1.56,.64,1), opacity .26s ease;
}
#pdfModalBox.is-open { transform: scale(1) translateY(0); opacity: 1; }
.pdf-hdr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: var(--text-dark); flex-shrink: 0; gap: 12px;
}
.pdf-hdr-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pdf-hdr-icon {
    width: 36px; height: 36px; background: rgba(255,255,255,.12);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; flex-shrink: 0;
}
.pdf-hdr-title    { color: #fff; font-size: 15px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdf-hdr-subtitle { color: rgba(255,255,255,.5); font-size: 11px; margin-top: 1px; }
.pdf-hdr-actions  { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.pdf-hdr-btn {
    width: 36px; height: 36px; border-radius: 9px; border: none;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
    font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .18s, color .18s;
}
.pdf-hdr-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.pdf-hdr-btn.x-btn { background: rgba(220,53,69,.22); color: #ff8080; }
.pdf-hdr-btn.x-btn:hover { background: rgba(220,53,69,.5); color: #fff; }
.pdf-canvas-wrap {
    flex: 1; overflow: auto; min-height: 0;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 22px; background: #2d3748; position: relative;
}
.pdf-loading {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #2d3748; color: rgba(255,255,255,.65); font-size: 14px; gap: 14px; z-index: 10;
}
.pdf-loader-ring {
    width: 44px; height: 44px;
    border: 4px solid rgba(255,255,255,.15); border-top-color: #5b9bd5;
    border-radius: 50%; animation: pdf-spin .85s linear infinite;
}
@keyframes pdf-spin { to { transform: rotate(360deg); } }
.pdf-error {
    display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: #fc8181; font-size: 14px; text-align: center; padding: 40px;
}
.pdf-error i { font-size: 36px; opacity: .7; }
#pdfCanvas { display: block; box-shadow: 0 8px 36px rgba(0,0,0,.45); border-radius: 4px; max-width: 100%; }
.pdf-dots {
    display: flex; justify-content: center; gap: 6px;
    padding: 8px 0 6px; background: #f8faff; flex-shrink: 0;
}
.pdf-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--border); border: none; padding: 0; cursor: pointer;
    transition: background .2s, transform .2s;
}
.pdf-dot.active { background: var(--blue); transform: scale(1.4); }
.pdf-dot:hover:not(.active) { background: #9bb4d4; }
.pdf-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 18px; background: #f8faff;
    border-top: 1px solid var(--border);
    flex-shrink: 0; gap: 12px; flex-wrap: wrap;
}
.pdf-ctrl-group { display: flex; align-items: center; gap: 6px; }
.pdf-ctrl {
    height: 34px; padding: 0 12px;
    border: 1.5px solid var(--border); background: #fff;
    color: var(--text-dark); border-radius: 8px;
    font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif;
    cursor: pointer; display: flex; align-items: center; gap: 5px;
    transition: background .18s, border-color .18s, color .18s; white-space: nowrap;
}
.pdf-ctrl:hover:not(:disabled) { background: var(--blue); border-color: var(--blue); color: #fff; }
.pdf-ctrl:disabled { opacity: .38; cursor: not-allowed; }
.pdf-zoom-lbl { min-width: 46px; text-align: center; font-size: 13px; font-weight: 700; color: var(--text-dark); }
.pdf-page-input {
    width: 48px; height: 34px; text-align: center;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 13px; font-weight: 700; color: var(--text-dark);
    font-family: 'Poppins', sans-serif; outline: none;
    transition: border-color .18s;
}
.pdf-page-input:focus { border-color: var(--blue); }
.pdf-page-total { font-size: 13px; color: var(--text-gray); white-space: nowrap; }

/* ---
   BENEFITS
--- */
.benefits { background: #fff; }
.benefits .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit-list { margin-top: 36px; }
.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.benefit-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    flex-shrink: 0;
}
.benefit-icon.green { background: #D9F5E5; color: #16A34A; }
.benefit-icon.cyan  { background: var(--cyan-light); color: #0E7490; }
.benefit-txt h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    padding-top: 2px;
}
.benefit-txt p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* Benefits visual */
.ben-visual {
    position: relative;
}
.ben-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.ben-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
}
.ben-float-1 {
    bottom: 28px;
    right: -20px;
    text-align: center;
}
.ben-float-1 .num { font-size: 36px; font-weight: 800; color: var(--blue); line-height: 1; }
.ben-float-1 .lbl { font-size: 12px; color: var(--text-gray); margin-top: 4px; }
.ben-float-2 {
    top: 28px;
    left: -20px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ben-float-2 i { font-size: 26px; opacity: .85; }
.ben-float-2 .f2-num  { font-size: 19px; font-weight: 800; line-height: 1; }
.ben-float-2 .f2-lbl  { font-size: 11px; opacity: .8; }

/* ---
   PROCESS
--- */
.process { background: var(--bg); }
.process .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.proc-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.proc-steps { }
.proc-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.step-num {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(21,88,166,.35);
}
.step-txt { padding-top: 2px; }
.step-txt h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-txt p  { font-size: 14px; color: var(--text-gray); line-height: 1.65; }
.proc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 18px;
    transition: gap .2s;
}
.proc-cta-link:hover { gap: 14px; }
.proc-cta-link i { transition: transform .2s; }
.proc-cta-link:hover i { transform: translateX(3px); }

/* ---
   TESTIMONIALS
--- */
.testimonials { background: #fff; }
.testi-header { text-align: center; max-width: 520px; margin: 0 auto 50px; }
.testi-header .sec-title { margin-top: 10px; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: #FBBF24; font-size: 13px; margin-bottom: 14px; }
.testi-text  {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}
.testi-name  { font-size: 14px; font-weight: 700; }
.testi-role  { font-size: 12px; color: var(--text-gray); }

/* ---
   CTA B2B
--- */
.cta-b2b {
    background: linear-gradient(140deg, #EBF4FF 0%, #E0F7FA 100%);
    text-align: center;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}
.cta-b2b::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,184,212,.1) 0%, transparent 65%);
    border-radius: 50%;
}
.cta-b2b .container { position: relative; z-index: 1; }
.cta-b2b-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.cta-b2b-sub  { color: var(--cyan); font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 18px; }
.cta-b2b-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    max-width: 600px;
    margin: 0 auto 12px;
}
.cta-b2b-title strong { color: var(--blue); }
.cta-b2b-desc { color: var(--text-gray); font-size: 15px; margin-bottom: 36px; }
.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 50px;
    transition: color .2s;
}
.cta-phone-link .ph-icon {
    width: 52px; height: 52px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(21,88,166,.35);
}
.cta-phone-link:hover { color: var(--blue); }
.cta-wave { display: block; width: 100%; margin-bottom: -4px; }

/* ---
   FOOTER
--- */
.footer {
    background: var(--text-dark);
    color: #8FA3BD;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
    gap: 40px;
    padding-bottom: 52px;
}
.footer-brand-desc {
    font-size: 13px;
    color: #6B8099;
    margin-top: 18px;
    line-height: 1.75;
}
.footer-col h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
    font-size: 13px;
    color: #6B8099;
    text-decoration: none;
    transition: color .18s;
}
.footer-col ul li a:hover { color: #fff; }

/* footer logo handled via .footer-logo .logo-img filter */

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,.07);
    color: #8FA3BD;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
}
.social-btn:hover { background: var(--blue); color: #fff; }

/* Newsletter */
.nl-form { display: flex; gap: 8px; margin-top: 6px; }
.nl-input {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .18s;
}
.nl-input::placeholder { color: #4A6175; }
.nl-input:focus { border-color: var(--blue); }
.nl-btn {
    width: 44px; height: 44px;
    background: var(--blue);
    border: none;
    border-radius: 9px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s;
}
.nl-btn:hover { background: var(--blue-mid); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #4A6175;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #4A6175; text-decoration: none; transition: color .18s; }
.footer-bottom-links a:hover { color: #fff; }

/* ---
   RESPONSIVE
--- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .sec                   { padding: 60px 0; }
    .hero .container       { grid-template-columns: 1fr; text-align: center; padding-top: 56px; padding-bottom: 56px; }
    .hero-desc             { margin: 0 auto 40px; }
    .hero-btns             { justify-content: center; }
    .hero-trust            { justify-content: center; }
    .hero-visual           { margin-top: 24px; }
    .benefits .container   { grid-template-columns: 1fr; }
    .ben-float-1           { right: 10px; }
    .ben-float-2           { left: 10px; }
    .process .container    { grid-template-columns: 1fr; }
    .proc-img              { height: 300px; }
    .cat-tabs              { width: 100%; overflow-x: auto; }
    .testi-grid            { grid-template-columns: 1fr; }
    .nav-menu              { display: none; }
    .hamburger             { display: flex; }
    .top-bar .right        { display: none; }
    #industrial .container > div { grid-template-columns: 1fr !important; }
    #industrial img        { height: 280px !important; }
    .about-stats           { grid-template-columns: 1fr 1fr; }
    .about-stat .num       { font-size: 22px; }
}

@media (max-width: 560px) {
    .sec                   { padding: 48px 0; }
    .footer-grid           { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
    .footer-bottom         { flex-direction: column; gap: 12px; text-align: center; }
    .certs-row             { gap: 24px; }
    .hero-cards-grid       { grid-template-columns: 1fr; }
    .hero-main-card        { grid-column: 1; }
    .about-stats           { grid-template-columns: 1fr 1fr; }
    .faq-q                 { font-size: 14px; }
    .sec-title             { font-size: clamp(22px, 6vw, 36px); }
}

/* ---
   POLICY MODALS
--- */
.pol-modal {
    position: fixed; inset: 0; z-index: 99998;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.pol-modal.is-visible { display: flex; }
.pol-backdrop {
    position: absolute; inset: 0;
    background: rgba(8,15,30,.82);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.pol-box {
    position: relative; z-index: 1;
    background: #fff; border-radius: 18px;
    width: min(740px, 96vw); max-height: 88vh;
    display: flex; flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,.38);
    transform: translateY(20px) scale(.96); opacity: 0;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .24s ease;
}
.pol-modal.is-visible .pol-box {
    transform: translateY(0) scale(1); opacity: 1;
}
.pol-hdr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.pol-hdr-left { display: flex; align-items: center; gap: 14px; }
.pol-hdr-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    flex-shrink: 0;
}
.pol-hdr h3 { font-size: 17px; font-weight: 800; color: var(--text-dark); }
.pol-hdr p  { font-size: 12px; color: var(--text-gray); margin-top: 2px; }
.pol-close {
    width: 36px; height: 36px; border-radius: 9px; border: none;
    background: #F1F5F9; color: var(--text-gray); font-size: 15px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .18s, color .18s; flex-shrink: 0;
}
.pol-close:hover { background: #fee2e2; color: #dc2626; }
.pol-body {
    overflow-y: auto; padding: 28px; flex: 1; min-height: 0;
    font-size: 14px; color: var(--text-mid); line-height: 1.75;
}
.pol-body h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--blue); margin: 24px 0 8px;
}
.pol-body h4:first-child { margin-top: 0; }
.pol-body p  { margin-bottom: 12px; }
.pol-body ul { padding-left: 18px; margin-bottom: 12px; }
.pol-body ul li { margin-bottom: 6px; }
.pol-body strong { color: var(--text-dark); }
.pol-body .pol-highlight {
    background: var(--blue-light); border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 16px 0;
    font-size: 13px;
}
.pol-ftr {
    padding: 16px 28px; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0; flex-wrap: wrap; gap: 10px;
}
.pol-ftr span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 560px) {
    .pol-body { padding: 20px; }
    .pol-hdr  { padding: 16px 20px; }
    .pol-ftr  { padding: 14px 20px; }
}

/* ---
   WHATSAPP FLOAT
--- */
.wa-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 9999;
    width: 62px; height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    transition: transform .22s, box-shadow .22s;
    animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 38px rgba(37,211,102,.65);
    animation: none;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
    50%       { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,.14); }
}
.wa-float-tooltip {
    position: absolute;
    right: 72px; top: 50%;
    transform: translateY(-50%);
    background: #1A2B4A;
    color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
.wa-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1A2B4A;
}

/* WhatsApp btn variant */
.btn-wa {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

/* ---
   HERO PHOTO
--- */
.hero-photo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.hero-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.hero-photo-stat {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 14px 20px;
    white-space: nowrap;
}
.hero-photo-stat-1 {
    bottom: 32px; left: -20px;
    text-align: center;
}
.hero-photo-stat-1 .ps-num { font-size: 30px; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-photo-stat-1 .ps-lbl { font-size: 11px; color: var(--text-gray); margin-top: 3px; }
.hero-photo-stat-2 {
    top: 32px; right: -20px;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; gap: 10px;
}
.hero-photo-stat-2 i { font-size: 24px; opacity: .85; }
.hero-photo-stat-2 .ps-num { font-size: 16px; font-weight: 800; line-height: 1; }
.hero-photo-stat-2 .ps-lbl { font-size: 10px; opacity: .75; margin-top: 2px; }

/* ---
   GALLERY STRIP
--- */
.gallery { background: #fff; padding: 80px 0; }
.gallery-header { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.gallery-header .sec-title { margin-top: 10px; }
.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .42s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,63,122,.72) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end;
    padding: 18px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; }
/* Span items */
.gallery-item.span-col { grid-column: span 1; }
.gallery-item.span-row { grid-row: span 2; }

@media (max-width: 860px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { aspect-ratio: 4/3; }
    .gallery-item.span-row { grid-row: span 1; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Nosotros ── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.about-stat {
    background: #F0F7FF; border-radius: 14px; padding: 20px 22px;
}
.about-stat .num { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.about-stat .lbl { font-size: 12px; color: var(--text-mid); margin-top: 4px; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap img { height: 280px; }
}

/* ── Maquila ── */
.maquila-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.maquila-card {
    background: #fff; border-radius: 18px; padding: 32px 28px;
    border: 1.5px solid #E5EEF8; transition: box-shadow .2s, transform .2s;
}
.maquila-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,.10); transform: translateY(-4px); }
.maquila-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: #EBF4FF; color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
}
.maquila-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.maquila-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 860px) { .maquila-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .maquila-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
    border-bottom: 1px solid #E5EEF8; overflow: hidden;
}
.faq-q {
    width: 100%; background: none; border: none; text-align: left; cursor: pointer;
    padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; font-weight: 600; color: var(--text-dark); gap: 16px;
}
.faq-q:hover { color: var(--blue); }
.faq-q .faq-icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: #EBF4FF; color: var(--blue);
    display: flex; align-items: center; justify-content: center; font-size: 13px;
    transition: transform .25s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }
