/* ===== JayNex Solutions — Hosting-Company Style Redesign ===== */
:root {
    --ink: #0B1220;
    --ink-2: #101A2E;
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --accent: #22C55E;
    --accent-2: #F59E0B;
    --danger: #EF4444;
    --cream: #F5F7FB;
    --card: #FFFFFF;
    --text: #10162A;
    --muted: #5B6478;
    --line: rgba(16,22,42,0.09);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --grad-primary: linear-gradient(120deg, var(--primary) 0%, #4F7CFF 100%);
    --grad-hero: radial-gradient(circle at 20% 15%, rgba(37,99,235,0.35), transparent 45%),
                 radial-gradient(circle at 85% 20%, rgba(34,197,94,0.25), transparent 50%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; color: var(--text); letter-spacing: -0.015em; }
p { margin: 0 0 1em; color: var(--muted); max-width: 62ch; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 20px; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 30px; border-radius: 100px; font-weight: 700;
    font-size: 0.96rem; border: none; cursor: pointer;
    transition: transform 0.22s cubic-bezier(.2,.9,.3,1.3), box-shadow 0.22s ease, background 0.22s ease;
    font-family: var(--font-body);
}
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: 0 10px 26px rgba(37,99,235,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,99,235,0.45); }
.btn-outline { background: #fff; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245,247,251,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--text); }
.brand-mark { width: 36px; height: 36px; background: var(--grad-primary); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.brand-dim { color: var(--muted); font-weight: 500; margin-left: 4px; font-size: 0.92rem; }
.main-nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 0.94rem; padding: 8px 0; position: relative; }
.main-nav a::after { content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--primary); transform: scaleX(0); transition: transform 0.25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.btn-nav { white-space: nowrap; padding: 12px 24px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 76px 0 50px; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:-10% -10%; background: var(--grad-hero); z-index:0; pointer-events:none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.35; z-index: 0; pointer-events: none; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-1 { width: 240px; height: 240px; background: #2563EB; top: -60px; right: 8%; }
.hero-blob-2 { width: 180px; height: 180px; background: #22C55E; bottom: 10%; left: 2%; animation-delay: -3s; }
.hero-blob-3 { width: 140px; height: 140px; background: #F59E0B; top: 40%; right: 30%; animation-delay: -5s; opacity: 0.25; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-14px, 18px) scale(1.08); } }
.floating-badge { position: absolute; z-index: 2; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 14px 34px rgba(16,22,42,0.14); display: flex; align-items: center; gap: 10px; animation: badgeFloat 4.5s ease-in-out infinite; }
.floating-badge .fb-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-badge .fb-text strong { display: block; font-size: 0.82rem; color: var(--text); }
.floating-badge .fb-text span { font-size: 0.72rem; color: var(--muted); }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-uptime { top: -14px; right: -14px; animation-delay: -1s; }
.badge-fast { bottom: -16px; left: -18px; animation-delay: -2.4s; }
@media (max-width: 720px) { .floating-badge { display: none; } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.1); color: var(--primary-dark); font-weight: 700; font-size: 0.8rem; padding: 8px 16px; border-radius: 100px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); font-weight: 800; }
.hero .grad-text { color: var(--primary); }
.hero .lede { font-size: 1.1rem; max-width: 48ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; align-items: center; }
.cta-note { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--primary); }
.hero-stat .label { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.switcher { background: var(--ink); border-radius: var(--radius-lg); padding: 26px; color: #fff; box-shadow: 0 30px 70px rgba(11,18,32,0.3); position: relative; overflow: hidden; }
.switcher::before { content:''; position:absolute; inset:0; background: var(--grad-hero); opacity: 0.6; }
.switcher-inner { position: relative; z-index: 1; }
.switcher-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.switcher-tab { flex: 1; padding: 12px 16px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.25s ease; font-family: var(--font-body); }
.switcher-tab.is-active { background: var(--grad-primary); color: #fff; border-color: transparent; }
.switcher-screen { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; min-height: 260px; }
.switcher-screen-title { font-size: 0.78rem; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.switcher-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.switcher-row:last-child { border-bottom: none; }
.switcher-row span:last-child { color: rgba(255,255,255,0.55); }
.switcher-badge { display: inline-block; background: rgba(34,197,94,0.18); color: #6EE7A0; padding: 3px 10px; border-radius: 20px; font-size: 0.74rem; font-weight: 700; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-tight { padding: 54px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-badge { display: inline-block; background: rgba(37,99,235,0.1); color: var(--primary-dark); font-weight: 700; font-size: 0.78rem; padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; letter-spacing: 0.02em; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
.on-dark { background: var(--ink); position: relative; overflow: hidden; }
.on-dark::before { content:''; position:absolute; inset:0; background: var(--grad-hero); opacity: 0.7; }
.on-dark .container { position: relative; z-index: 1; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.62); }
.on-dark .section-badge { background: rgba(255,255,255,0.1); color: #fff; }

/* ===== Trust / reviews strip ===== */
.trust-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 24px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .stars { color: var(--accent-2); font-size: 1rem; letter-spacing: 1px; }
.trust-item .label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.review-stars { color: var(--accent-2); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card h4 { font-size: 1rem; margin-bottom: 10px; }
.review-card p { font-size: 0.9rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.review-card:nth-child(3n+1) .review-avatar { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.review-card:nth-child(3n+2) .review-avatar { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.review-card:nth-child(3n+3) .review-avatar { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.review-author strong { display: block; font-size: 0.88rem; }
.review-author span { font-size: 0.78rem; color: var(--muted); }

/* ===== Product cards ===== */
.product-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
    display: flex; flex-direction: column; gap: 14px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(16,22,42,0.1); }
.product-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(160deg, #EFF6FF 0%, #F5F3FF 100%); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(37,99,235,0.08); }
.product-icon svg { width: 40px; height: 40px; }
.product-card h3 { font-size: 1.08rem; margin-bottom: 4px; font-weight: 800; }
.product-card .tagline { color: var(--muted); margin: 0; font-size: 0.86rem; }
.product-card-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 6px; }
.product-card-actions .btn { padding: 10px 20px; font-size: 0.86rem; }
@media (max-width: 720px) {
    .product-list { grid-template-columns: 1fr 1fr; gap: 14px; }
    .product-card { padding: 18px; }
    .product-icon { width: 48px; height: 48px; border-radius: 12px; }
    .product-icon svg { width: 30px; height: 30px; }
    .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .product-list { grid-template-columns: 1fr; }
}

/* ===== Product detail / features grid ===== */
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.feature-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(16,22,42,0.08); }
.feature-item .fi-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--primary); transition: transform 0.25s ease; }
.feature-item:hover .fi-icon { transform: scale(1.12) rotate(-4deg); }
.feature-item:nth-child(6n+1) .fi-icon { background: rgba(37,99,235,0.1); color: #1D4ED8; }
.feature-item:nth-child(6n+2) .fi-icon { background: rgba(34,197,94,0.12); color: #15803D; }
.feature-item:nth-child(6n+3) .fi-icon { background: rgba(245,158,11,0.14); color: #B45309; }
.feature-item:nth-child(6n+4) .fi-icon { background: rgba(236,72,153,0.12); color: #BE185D; }
.feature-item:nth-child(6n+5) .fi-icon { background: rgba(124,58,237,0.12); color: #6D28D9; }
.feature-item:nth-child(6n+6) .fi-icon { background: rgba(6,182,212,0.12); color: #0E7490; }
.feature-item p { margin: 0; color: var(--text); font-size: 0.92rem; font-weight: 600; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===== Pricing cards ===== */
.pricing-group { margin-bottom: 60px; }
.pricing-group-title { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 30px; }
.pricing-group-title h3 { margin: 0; font-size: 1.4rem; font-weight: 800; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.plan-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px;
    display: flex; flex-direction: column; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(16,22,42,0.12); }
.plan-card.is-popular { border: 2px solid var(--primary); box-shadow: 0 20px 46px rgba(37,99,235,0.2); }
.plan-popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-primary); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.plan-icon { width: 44px; height: 44px; margin-bottom: 12px; }
.plan-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.plan-tagline { font-size: 0.82rem; color: var(--muted); margin: 4px 0 0; }
.plan-discount-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.plan-original-price { text-decoration: line-through; color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.plan-discount-badge { background: rgba(239,68,68,0.1); color: var(--danger); font-size: 0.72rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; }
.plan-price { font-size: 2.1rem; font-weight: 800; margin: 6px 0 2px; font-family: var(--font-display); color: var(--text); }
.plan-price .currency { font-size: 1.1rem; }
.plan-cycle { color: var(--muted); font-size: 0.82rem; margin-bottom: 6px; font-weight: 600; }
.plan-renew-note { font-size: 0.76rem; color: var(--muted); margin-bottom: 18px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan-features li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.87rem; color: var(--text); padding-left: 24px; position: relative; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.plan-features li:last-child { border-bottom: none; }

/* ===== Comparison table ===== */
.compare-wrap { margin-top: 60px; }
.compare-scroll { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.compare-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; }
.compare-table thead th.is-popular-col { background: var(--grad-primary); }
.compare-price { display: block; font-size: 0.8rem; font-weight: 600; color: #6EE7A0; margin-top: 4px; }
.compare-label-col { text-align: left; font-weight: 600; color: var(--text); background: var(--cream); white-space: nowrap; }
.compare-table td.is-popular-col { background: rgba(37,99,235,0.05); }
.compare-yes { color: var(--accent); font-weight: 800; font-size: 1.05rem; }
.compare-no { color: var(--line); font-weight: 800; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* ===== FAQ Accordion ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); }
.faq-question span.q-text { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.faq-toggle-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; color: var(--primary); transition: transform 0.25s ease; }
.faq-item.is-open .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { margin: 0; font-size: 0.88rem; }

/* ===== Forms ===== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; max-width: 560px; margin: 0 auto; box-shadow: 0 20px 50px rgba(16,22,42,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--font-body); font-size: 0.94rem; background: var(--cream); transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 10px; text-align: center; }
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 22px; font-size: 0.9rem; font-weight: 600; }
.alert-success { background: rgba(34,197,94,0.1); color: #15803D; border: 1px solid rgba(34,197,94,0.3); }
.alert-error { background: rgba(239,68,68,0.08); color: #B91C1C; border: 1px solid rgba(239,68,68,0.3); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 66px 0 26px; margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; margin-bottom: 15px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 5px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ===== WhatsApp floating button ===== */
.whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37,211,102,0.4);
    transition: transform 0.22s ease;
    animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 10px 26px rgba(37,211,102,0.4), 0 0 0 9px rgba(37,211,102,0.1); }
}

@media (max-width: 860px) {
    .hero-grid, .product-hero { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 22px; }
}
@media (max-width: 720px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .main-nav.is-open { display: flex; position: absolute; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--line); z-index: 40; }
    .btn-nav { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .whatsapp-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
    .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* Animated icon hover polish */
.anim-icon { transition: transform 0.3s cubic-bezier(.2,.9,.3,1.3); }
.product-card:hover .anim-icon, .product-icon:hover .anim-icon { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
    .anim-icon *, .hero-blob, .floating-badge { animation: none !important; }
}

/* ===== Scroll progress bar (immersive feel) ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--grad-primary); z-index: 100; transition: width 0.1s ease-out; }
