/* ==========================================================================
   RASEN STAINLESS LLP — INNER PAGES STYLESHEET
   (about, quality, technical, contact, products)
   ========================================================================== */
:root {
    --navy: #0B1622;
    --navy-2: #111F2E;
    --steel: #E8EEF4;
    --ink: #4a5568;
}

/* ---------- PAGE BANNER ---------- */
.pg-banner {
    position: relative;
    min-height: 46vh;
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
}
.pg-banner .banner-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .28;
    transform: scale(1.08);
    animation: bannerZoom 12s ease-out forwards;
}
@keyframes bannerZoom { to { transform: scale(1); } }
.pg-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,22,34,.95) 0%, rgba(11,22,34,.65) 60%, rgba(34,105,171,.35) 100%);
}
.pg-banner .banner-coils { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pg-banner .banner-coils path { stroke-dasharray: 400; stroke-dashoffset: 400; animation: coilDraw 4s ease forwards; }
.pg-banner .banner-coils path:nth-child(2) { animation-delay: .4s; }
.pg-banner .banner-coils path:nth-child(3) { animation-delay: .8s; }
@keyframes coilDraw { to { stroke-dashoffset: 0; } }
.pg-banner .container { position: relative; z-index: 2; }
.pg-banner h1 {
    font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}
.pg-banner h1 .stroke-text { -webkit-text-stroke: 1.5px #fff; color: transparent; }
.pg-banner .banner-lead { color: rgba(255,255,255,.7); max-width: 640px; font-weight: 300; }
.banner-crumb { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--secondary-color); }
.banner-crumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: var(--transition-standard); }
.banner-crumb a:hover { color: #fff; }
.banner-crumb i { font-size: .6rem; opacity: .6; }
.banner-code {
    position: absolute; right: 0; bottom: -10px;
    font-size: clamp(4rem, 14vw, 12rem); font-weight: 900; line-height: 1;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07);
    letter-spacing: -.04em; user-select: none; pointer-events: none;
}

/* ---------- COMMON ---------- */
.sec-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sec-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--primary-color); }
.sec-eyebrow span { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700; color: var(--primary-color); }
.sec-eyebrow.light::before { background: var(--secondary-color); }
.sec-eyebrow.light span { color: var(--secondary-color); }
.sec-title { font-weight: 900; text-transform: uppercase; line-height: 1.05; font-size: clamp(1.9rem, 3.5vw, 3rem); }
.stroke-dark { -webkit-text-stroke: 1.5px var(--text-dark); color: transparent; }
.stroke-light { -webkit-text-stroke: 1.5px #fff; color: transparent; }
.bg-navy { background: var(--navy); }
.bg-steel { background: var(--steel); }
.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 70px 0; } }
.pointer-events-none { pointer-events: none; }

/* Grid background dots */
.dot-grid-bg { background-image: radial-gradient(rgba(34,105,171,.14) 1px, transparent 1px); background-size: 26px 26px; }

/* ---------- SIGNATURE: SPEC TICKER (marquee) ---------- */
.spec-ticker { background: var(--primary-color); color: #fff; overflow: hidden; border-top: 2px solid var(--secondary-color); border-bottom: 2px solid var(--secondary-color); }
.spec-ticker .track { display: flex; width: max-content; animation: tickerMove 40s linear infinite; }
.spec-ticker:hover .track { animation-play-state: paused; }
.spec-ticker span { padding: 12px 34px; font-size: .78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 14px; }
.spec-ticker span::after { content: '◆'; font-size: .5rem; color: var(--secondary-color); }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- ABOUT PAGE ---------- */
.about-hero-img { position: relative; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%); }
.about-hero-img .frame { position: absolute; inset: 24px -24px -24px 24px; border: 2px solid var(--primary-color); z-index: -1; opacity: .4; }
.stat-strip { background: var(--navy); }
.stat-item { padding: 34px 20px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; position: relative; overflow: hidden; }
.stat-item:last-child { border-right: 0; }
.stat-item::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--primary-color); transition: width .6s ease; }
.stat-item:hover::before { width: 100%; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-num small { font-size: 1.4rem; color: var(--secondary-color); }
.stat-label { color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 8px; display: block; }
@media (max-width: 768px) { .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); } }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary-color), transparent); }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item::before { content: ''; position: absolute; left: -36px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--primary-color); box-shadow: 0 0 0 5px rgba(34,105,171,.15); }
.tl-item h5 { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; }
.tl-item p { color: var(--ink); font-size: .93rem; margin: 0; }

.value-tile { background: #fff; border: 1px solid #e6ebf1; padding: 36px 30px; height: 100%; position: relative; overflow: hidden; transition: all .4s cubic-bezier(.2,.8,.2,1); }
.value-tile::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-color); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.value-tile:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -20px rgba(11,22,34,.25); }
.value-tile:hover::after { transform: scaleX(1); }
.value-tile .ico { width: 58px; height: 58px; display: grid; place-items: center; background: var(--steel); color: var(--primary-color); font-size: 1.4rem; margin-bottom: 22px; transition: all .3s; }
.value-tile:hover .ico { background: var(--primary-color); color: #fff; transform: rotate(-6deg); }
.value-tile h5 { font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: 1rem; }
.value-tile p { color: var(--ink); font-size: .92rem; margin: 0; }

.export-map-box { background: var(--navy-2); border: 1px solid rgba(255,255,255,.06); padding: 40px; position: relative; overflow: hidden; }
.region-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.15); color: #fff; font-size: .8rem; font-weight: 600; margin: 4px; transition: all .3s; }
.region-chip:hover { background: var(--primary-color); border-color: var(--primary-color); }
.region-chip i { color: var(--secondary-color); font-size: .7rem; }

/* ---------- QUALITY PAGE ---------- */
.qa-step { display: flex; gap: 24px; padding: 30px 0; border-bottom: 1px dashed #d6dee8; position: relative; }
.qa-step:last-child { border-bottom: 0; }
.qa-step .n { flex: 0 0 64px; height: 64px; display: grid; place-items: center; font-weight: 900; font-size: 1.3rem; color: var(--primary-color); border: 2px solid var(--primary-color); transition: all .35s; }
.qa-step:hover .n { background: var(--primary-color); color: #fff; transform: rotate(45deg); }
.qa-step:hover .n span { transform: rotate(-45deg); display: inline-block; }
.qa-step h5 { font-weight: 800; text-transform: uppercase; font-size: 1rem; letter-spacing: .5px; }
.qa-step p { color: var(--ink); font-size: .93rem; margin: 0; }
.test-card { background: #fff; padding: 28px; border-left: 4px solid var(--primary-color); height: 100%; transition: all .35s; box-shadow: 0 10px 30px -18px rgba(11,22,34,.2); }
.test-card:hover { border-left-width: 10px; transform: translateX(6px); }
.test-card i { color: var(--primary-color); font-size: 1.5rem; }
.test-card h6 { font-weight: 800; text-transform: uppercase; font-size: .9rem; margin: 14px 0 8px; }
.test-card p { color: var(--ink); font-size: .88rem; margin: 0; }
.doc-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.75); font-size: .93rem; }
.doc-list li i { color: var(--secondary-color); margin-top: 4px; }
.doc-list li strong { color: #fff; display: block; }
.commit-quote { font-size: clamp(1.2rem, 2.4vw, 1.8rem); font-weight: 500; line-height: 1.5; color: #fff; position: relative; padding-left: 30px; border-left: 3px solid var(--secondary-color); }

/* ---------- TECHNICAL INFO ---------- */
.tech-tab-nav { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 2px solid #e2e8f0; margin-bottom: 30px; }
.tech-tab-nav .nav-link { border: 0; border-radius: 0; padding: 14px 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; color: var(--ink); position: relative; background: transparent; }
.tech-tab-nav .nav-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 3px; background: var(--primary-color); transform: scaleX(0); transition: transform .3s; }
.tech-tab-nav .nav-link.active { color: var(--primary-color); }
.tech-tab-nav .nav-link.active::after { transform: scaleX(1); }
.tbl-wrap { overflow-x: auto; border: 1px solid #e2e8f0; -webkit-overflow-scrolling: touch; }
.tbl-wrap::-webkit-scrollbar { height: 8px; }
.tbl-wrap::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
.tbl-wrap::-webkit-scrollbar-track { background: var(--steel); }
.tech-table { margin: 0; font-size: .86rem; white-space: nowrap; }
.tech-table thead th { background: var(--navy) !important; color: #fff !important; font-weight: 600; padding: 13px 16px; border-bottom: 2px solid var(--primary-color) !important; letter-spacing: .3px; }
.tech-table tbody td { padding: 10px 16px; color: var(--ink); border-bottom: 1px solid #edf2f7; font-family: 'Courier New', monospace; font-size: .85rem; }
.tech-table tbody tr:nth-child(even) td { background: #f8fafc; }
.tech-table tbody tr:hover td { background: #e8f1fa; }
.tech-table tbody td:first-child, .tech-table thead th:first-child { position: sticky; left: 0; z-index: 1; font-family: var(--font-main); font-weight: 700; color: var(--text-dark); }
.tech-table tbody td:first-child { background: #fff; box-shadow: 2px 0 0 #e2e8f0; }
.tech-table tbody tr:nth-child(even) td:first-child { background: #f8fafc; }
.tech-table thead th:first-child { background: var(--navy) !important; }
.tbl-note { font-size: .8rem; color: var(--ink); margin-top: 10px; }
.tbl-note i { color: var(--primary-color); }
.info-card { background: #fff; border: 1px solid #e6ebf1; padding: 26px; height: 100%; transition: .3s; }
.info-card:hover { border-color: var(--primary-color); box-shadow: 0 20px 40px -25px rgba(34,105,171,.4); }
.info-card h6 { font-weight: 800; text-transform: uppercase; font-size: .88rem; letter-spacing: .5px; color: var(--primary-color); }
.info-card ul { padding-left: 18px; margin: 0; color: var(--ink); font-size: .9rem; }
.info-card ul li { margin-bottom: 6px; }
.grade-family { padding: 26px; border: 1px solid #e6ebf1; background: #fff; height: 100%; }
.grade-family .tag { display: inline-block; padding: 4px 12px; background: var(--navy); color: #fff; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.grade-family h5 { font-weight: 800; }
.grade-family p { color: var(--ink); font-size: .9rem; }
.grade-family .gr { display: inline-block; margin: 3px 4px 3px 0; padding: 3px 10px; background: var(--steel); font-size: .78rem; font-weight: 600; color: var(--text-dark); }

/* ---------- CONTACT ---------- */
.contact-card { background: #fff; padding: 36px 30px; height: 100%; border: 1px solid #e6ebf1; position: relative; overflow: hidden; transition: all .4s; }
.contact-card::before { content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%; background: var(--primary-color); opacity: .06; top: -60px; right: -60px; transition: transform .5s; }
.contact-card:hover::before { transform: scale(4); }
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(11,22,34,.3); }
.contact-card .ico { width: 60px; height: 60px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 1.3rem; margin-bottom: 22px; position: relative; }
.contact-card h5 { font-weight: 800; text-transform: uppercase; font-size: .95rem; letter-spacing: 1px; position: relative; }
.contact-card p, .contact-card a { color: var(--ink); font-size: .93rem; text-decoration: none; position: relative; }
.contact-card a:hover { color: var(--primary-color); }
.map-frame { position: relative; border: 1px solid #e2e8f0; overflow: hidden; }
.map-frame iframe { width: 100%; height: 460px; border: 0; filter: grayscale(.25) contrast(1.05); transition: filter .5s; display: block; }
.map-frame:hover iframe { filter: none; }
.map-badge { position: absolute; top: 20px; left: 20px; background: var(--navy); color: #fff; padding: 14px 18px; font-size: .8rem; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,.25); max-width: 260px; }
.map-badge strong { display: block; color: var(--secondary-color); letter-spacing: 2px; text-transform: uppercase; font-size: .7rem; margin-bottom: 4px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.75); font-size: .9rem; }
.hours-row span:last-child { color: #fff; font-weight: 600; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 14px 26px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; transition: .3s; }
.wa-btn:hover { background: #1ebe5b; color: #fff; transform: translateY(-3px); box-shadow: 0 15px 30px -12px rgba(37,211,102,.6); }

/* ---------- PRODUCT PAGES ---------- */
.prod-layout { padding: 80px 0; }
.prod-sidebar { position: sticky; top: 110px; }
.side-nav { background: var(--navy); padding: 6px 0; }
.side-nav .head { padding: 16px 22px; color: var(--secondary-color); font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.08); }
.side-nav a { display: flex; align-items: center; justify-content: space-between; padding: 13px 22px; color: rgba(255,255,255,.7); text-decoration: none; font-size: .88rem; font-weight: 500; border-left: 3px solid transparent; transition: all .3s; }
.side-nav a i { font-size: .65rem; opacity: 0; transform: translateX(-6px); transition: all .3s; }
.side-nav a:hover, .side-nav a.active { background: rgba(34,105,171,.25); color: #fff; border-left-color: var(--primary-color); padding-left: 28px; }
.side-nav a:hover i, .side-nav a.active i { opacity: 1; transform: none; }
.side-jump { background: #fff; border: 1px solid #e6ebf1; padding: 20px 22px; margin-top: 20px; }
.side-jump .head { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.side-jump a { display: block; padding: 7px 0; color: var(--ink); text-decoration: none; font-size: .85rem; border-bottom: 1px dashed #e2e8f0; transition: .25s; }
.side-jump a:last-child { border-bottom: 0; }
.side-jump a:hover, .side-jump a.active { color: var(--primary-color); padding-left: 6px; }
.side-cta { background: var(--primary-color); color: #fff; padding: 28px 22px; margin-top: 20px; position: relative; overflow: hidden; }
.side-cta::before { content: ''; position: absolute; width: 160px; height: 160px; border: 30px solid rgba(255,255,255,.08); border-radius: 50%; right: -60px; bottom: -60px; }
.side-cta h6 { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.side-cta p { font-size: .85rem; opacity: .8; }
.side-cta a { display: inline-block; background: #fff; color: var(--primary-color); padding: 10px 18px; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: .3s; }
.side-cta a:hover { background: var(--navy); color: #fff; }

.prod-img { position: relative; overflow: hidden; background: var(--navy); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); display: block; }
.prod-img:hover img { transform: scale(1.06); }
.prod-img .corner { position: absolute; width: 42px; height: 42px; border: 3px solid var(--secondary-color); }
.prod-img .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.prod-img .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.prod-img .badge-std { position: absolute; left: 0; bottom: 0; background: var(--primary-color); color: #fff; padding: 10px 18px; font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.prod-intro p { color: var(--ink); }
.prod-section { margin-top: 70px; scroll-margin-top: 110px; }
.prod-section h3 { font-weight: 900; text-transform: uppercase; font-size: 1.5rem; display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.prod-section h3::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.prod-section h3 .code { font-size: .7rem; letter-spacing: 3px; color: var(--primary-color); font-weight: 700; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: #e2e8f0; border: 1px solid #e2e8f0; }
.spec-cell { background: #fff; padding: 20px 22px; transition: .3s; position: relative; }
.spec-cell:hover { background: var(--steel); }
.spec-cell .k { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-color); font-weight: 700; display: block; margin-bottom: 6px; }
.spec-cell .v { font-weight: 600; color: var(--text-dark); font-size: .92rem; }

.grade-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.grade-pill { padding: 10px 18px; background: #fff; border: 1px solid #d9e1ea; font-weight: 600; font-size: .85rem; color: var(--text-dark); transition: .3s; display: inline-flex; align-items: center; gap: 8px; }
.grade-pill::before { content: ''; width: 8px; height: 8px; background: var(--primary-color); transform: rotate(45deg); }
.grade-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.grade-pill.dup::before { background: var(--secondary-color); }

.dim-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.dim-tabs .nav-link { border: 1px solid #d9e1ea; border-radius: 0; background: #fff; color: var(--ink); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 10px 16px; transition: .3s; }
.dim-tabs .nav-link.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.dim-tabs .nav-link:hover:not(.active) { border-color: var(--primary-color); color: var(--primary-color); }
.dim-figure { background: var(--steel); padding: 20px; margin-bottom: 20px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.dim-figure svg { max-width: 220px; flex: 0 0 auto; }
.dim-figure .legend { font-size: .82rem; color: var(--ink); flex: 1; min-width: 220px; }
.dim-figure .legend b { color: var(--primary-color); font-family: 'Courier New', monospace; }

.app-card { position: relative; overflow: hidden; height: 190px; background: var(--navy); }
.app-card img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: all .7s; }
.app-card:hover img { opacity: .75; transform: scale(1.08); }
.app-card .lbl { position: absolute; left: 0; bottom: 0; right: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(11,22,34,.95), transparent); color: #fff; font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.app-card .lbl i { color: var(--secondary-color); }
.app-list li { display: flex; gap: 12px; padding: 10px 0; color: var(--ink); font-size: .92rem; border-bottom: 1px solid #edf2f7; }
.app-list li i { color: var(--primary-color); margin-top: 4px; }

.prod-next { background: var(--navy); }
.next-link { display: block; padding: 34px 30px; color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,.08); transition: .35s; height: 100%; position: relative; overflow: hidden; }
.next-link::after { content: ''; position: absolute; inset: 0; background: var(--primary-color); transform: translateX(-101%); transition: transform .4s cubic-bezier(.2,.8,.2,1); z-index: 0; }
.next-link:hover::after { transform: none; }
.next-link:hover { color: #fff; }
.next-link > * { position: relative; z-index: 1; }
.next-link small { display: block; color: var(--secondary-color); letter-spacing: 3px; text-transform: uppercase; font-size: .7rem; font-weight: 700; }
.next-link:hover small { color: #fff; }
.next-link h4 { font-weight: 900; text-transform: uppercase; margin: 8px 0 0; }

/* Mobile side nav offcanvas */
.prod-mobile-toggle { display: none; }
@media (max-width: 991.98px) {
    .prod-sidebar { position: static; margin-bottom: 30px; }
    .prod-mobile-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: var(--navy); color: #fff; border: 0; padding: 14px 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; }
    .prod-sidebar-body { display: none; }
    .prod-sidebar-body.open { display: block; }
    .side-nav a { padding: 11px 20px; }
    .pg-banner { min-height: 40vh; padding: 100px 0 60px; }
}

/* Floating WhatsApp */
.float-wa { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; z-index: 99; box-shadow: 0 10px 25px rgba(37,211,102,.45); text-decoration: none; animation: waPulse 2.5s infinite; }
.float-wa:hover { color: #fff; transform: scale(1.08); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Scroll-to-top */
.to-top { position: fixed; right: 22px; bottom: 90px; width: 44px; height: 44px; background: var(--navy); color: #fff; display: grid; place-items: center; z-index: 99; opacity: 0; visibility: hidden; transition: .3s; cursor: pointer; border: 1px solid rgba(255,255,255,.15); }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--primary-color); }

/* Reveal helper */
.count-up { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
