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

:root {
  --blue-dark:   #0A1628;
  --blue-900:    #0D2137;
  --blue-800:    #0F3460;
  --blue-700:    #1565C0;
  --blue-600:    #1976D2;
  --blue-400:    #42A5F5;
  --blue-100:    #BBDEFB;
  --blue-50:     #E3F2FD;
  --blue-off:    #F0F6FF;
  --cyan:        #00BCD4;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --ink:         #0F172A;
  --green:       #16A34A;
  --green-pale:  #DCFCE7;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);

  --r4: 4px; --r8: 8px; --r12: 12px; --r16: 16px; --r24: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.1);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.16);
  --shadow-blue: 0 8px 28px rgba(21,101,192,.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); font-size: 15px; line-height: 1.7; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ── TYPE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { margin-bottom: .9em; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--blue-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-blue { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: #fff; }
.section-blue h1, .section-blue h2, .section-blue h3 { color: #fff; }
.tc { text-align: center; }

/* Section header */
.sec-head { margin-bottom: 48px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-head p { color: var(--gray-500); max-width: 520px; font-size: .95rem; }
.sec-head.tc p { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: .84rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--r8);
  border: 2px solid transparent;
  transition: all .22s var(--ease);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn-blue { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.btn-blue:hover { background: var(--blue-800); border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-white { background: #fff; color: var(--blue-800); border-color: #fff; }
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue-700); border-color: var(--blue-100); }
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-700); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1ea952; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.btn-sm { font-size: .76rem; padding: 9px 18px; }
.btn-lg { font-size: .9rem; padding: 15px 32px; }
.btn-block { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.45); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 16px;
}

/* Logo — single, clean, fits header */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: 38px; object-fit: contain; flex-shrink: 0; }
.nav-logo-name { font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.nav-logo-sub { font-size: .6rem; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; display: block; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: 7px 13px; border-radius: var(--r8);
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }

/* Cart button */
.cart-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85); padding: 8px 14px; border-radius: var(--r8);
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: all .2s; position: relative;
}
.cart-btn:hover { background: rgba(255,255,255,.14); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cyan); color: var(--blue-dark);
  font-size: .6rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  border: 2px solid rgba(10,22,40,.97);
}
.cart-badge.show { display: flex; }
.cart-badge.bump { animation: cbump .35s var(--spring); }
@keyframes cbump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.45)} }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-wa { font-size: .76rem; font-weight: 600; color: #25D366; white-space: nowrap; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r8); padding: 9px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: all .28s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--blue-dark); z-index: 999; padding: 20px 24px 48px; flex-direction: column; gap: 2px; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav a { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.78); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s; }
.mob-nav a:hover { color: var(--cyan); }
.mob-btns { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mob-btns .btn { justify-content: center; }

/* ── CART SIDEBAR ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: all .3s; backdrop-filter: blur(3px); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: #fff; z-index: 1101; transform: translateX(100%); transition: transform .38s var(--ease); display: flex; flex-direction: column; box-shadow: -4px 0 40px rgba(0,0,0,.18); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 20px 22px 16px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 1rem; font-weight: 700; }
.cart-header-left { display: flex; align-items: center; gap: 10px; }
.cart-close { width: 34px; height: 34px; background: var(--gray-100); border: none; border-radius: var(--r8); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-500); transition: all .2s; }
.cart-close:hover { background: var(--gray-200); color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 12px; color: var(--gray-400); text-align: center; padding: 40px 0; }
.cart-empty svg { opacity: .35; }
.cart-empty p { font-size: .88rem; }
.cart-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-img { width: 44px; height: 44px; border-radius: var(--r8); overflow: hidden; flex-shrink: 0; background: var(--gray-50); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: 2px; }
.cart-item-plan { font-size: .76rem; color: var(--gray-400); }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.cart-item-price { font-weight: 700; font-size: .9rem; color: var(--blue-700); }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--gray-400); padding: 2px; transition: color .2s; display: flex; }
.cart-remove:hover { color: #dc2626; }
.cart-footer { padding: 16px 22px 24px; border-top: 1px solid var(--gray-100); background: var(--gray-50); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cart-total-label { font-size: .8rem; color: var(--gray-500); font-weight: 600; }
.cart-total-value { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.cart-note { font-size: .74rem; color: var(--gray-400); margin-bottom: 16px; line-height: 1.5; }
.cart-actions { display: flex; flex-direction: column; gap: 9px; }
.cart-actions .btn { justify-content: center; font-size: .82rem; padding: 12px; }
.cart-clear-btn { background: none; border: none; font-size: .74rem; color: var(--gray-400); text-align: center; margin-top: 8px; cursor: pointer; font-family: var(--font); text-decoration: underline; }
.cart-clear-btn:hover { color: var(--ink); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--blue-dark); overflow: hidden; padding-top: 68px; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 52px 52px; }
.hero-glow1 { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(21,101,192,.28) 0%, transparent 70%); pointer-events: none; animation: glow1 14s ease-in-out infinite; }
.hero-glow2 { position: absolute; bottom: -20%; left: -5%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,188,212,.14) 0%, transparent 70%); pointer-events: none; animation: glow1 18s ease-in-out infinite reverse 4s; }
@keyframes glow1 { 0%,100%{transform:scale(1) translate(0,0)} 50%{transform:scale(1.08) translate(2%,-3%)} }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 80px 0 60px; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content {}
.hero-label { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,188,212,.35); background: rgba(0,188,212,.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--cyan); }
.hero-sub { color: rgba(255,255,255,.6); font-size: .97rem; max-width: 460px; margin-bottom: 34px; line-height: 1.75; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.09); padding-top: 28px; }
.hero-stat { padding: 0 16px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-n { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-l { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* Hero showcase */
.hero-showcase { display: flex; flex-direction: column; gap: 10px; }
.sc-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r12); padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: all .3s var(--ease); cursor: default; }
.sc-card:hover { background: rgba(255,255,255,.09); border-color: rgba(0,188,212,.25); transform: translateX(-4px); }
.sc-card-logo { width: 40px; height: 40px; border-radius: var(--r8); background: rgba(255,255,255,.9); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 5px; }
.sc-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.sc-card-info { flex: 1; }
.sc-card-name { font-weight: 600; color: #fff; font-size: .88rem; }
.sc-card-cat { font-size: .7rem; color: rgba(255,255,255,.45); }
.sc-card-price { font-weight: 700; color: var(--cyan); font-size: .88rem; white-space: nowrap; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--blue-700); }
.trust-bar-inner { display: flex; max-width: 1200px; margin: 0 auto; }
.trust-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 20px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); border-right: 1px solid rgba(255,255,255,.12); white-space: nowrap; }
.trust-item:last-child { border-right: none; }
.trust-item svg { fill: var(--cyan); flex-shrink: 0; }

/* ── TOOL CARDS ── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(296px, 1fr)); gap: 20px; }

/* Card — completely reworked layout */
.tool-card {
  background: #fff;
  border-radius: var(--r16);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  position: relative;
}
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(21,101,192,.25); }
.tool-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-700), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease); }
.tool-card:hover::before { transform: scaleX(1); }

/* Card top — logo + name side by side, no overlap */
.card-top { padding: 20px 18px 14px; display: flex; align-items: flex-start; gap: 14px; }
.card-logo { width: 56px; height: 56px; min-width: 56px; border-radius: var(--r12); overflow: hidden; background: var(--gray-50); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0; transition: transform .3s var(--spring); }
.tool-card:hover .card-logo { transform: scale(1.07); }
.card-logo img { width: 100%; height: 100%; object-fit: contain; }
.card-meta { flex: 1; min-width: 0; }
.card-name { font-size: .97rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 6px; word-break: break-word; }
.card-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cat-tag { font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; background: var(--blue-50); color: var(--blue-700); white-space: nowrap; }
.badge { font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.badge-hot      { background: rgba(220,38,38,.1); color: #dc2626; }
.badge-popular  { background: rgba(21,101,192,.1); color: var(--blue-700); }
.badge-new      { background: rgba(22,163,74,.1);  color: var(--green); }
.badge-best     { background: rgba(202,138,4,.1);  color: #b45309; }
/* Warranty tag — now separate row, below name, no overlap */
.card-warranty { margin: 0 18px 4px; display: flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 600; color: var(--green); background: var(--green-pale); padding: 4px 10px; border-radius: 100px; width: fit-content; }
.card-warranty svg { fill: var(--green); flex-shrink: 0; }
.card-tagline { margin: 0 18px 14px; font-size: .8rem; color: var(--blue-600); font-weight: 500; }

/* Features */
.card-body { padding: 0 18px 12px; flex: 1; }
.feat-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.feat-row { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: var(--gray-700); line-height: 1.45; }
.feat-dot { width: 16px; height: 16px; min-width: 16px; background: var(--blue-700); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; flex-shrink: 0; }
.feat-dot svg { fill: #fff; }
.plan-label { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); display: block; margin-bottom: 6px; }
.plan-select { width: 100%; padding: 9px 12px; font-family: var(--font); font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--r8); outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394A3B8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; background-size: 18px; padding-right: 30px; transition: border-color .2s; }
.plan-select:focus { border-color: var(--blue-700); background-color: #fff; }

/* Card footer */
.card-foot { padding: 12px 18px 18px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px; }
.card-price { flex: 1; }
.price-from { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); display: block; margin-bottom: 2px; }
.price-val { font-size: 1.2rem; font-weight: 800; color: var(--blue-800); line-height: 1; }
.price-val .per { font-size: .72rem; font-weight: 500; color: var(--gray-400); }
.price-inbox { font-size: .9rem; font-weight: 700; color: var(--blue-600); font-style: italic; }
.card-btns { display: flex; gap: 7px; flex-shrink: 0; }
.btn-cart { width: 38px; height: 38px; padding: 0; border-radius: var(--r8); background: var(--blue-700); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.btn-cart:hover { background: var(--blue-800); transform: translateY(-1px); }
.btn-cart svg { fill: #fff; }
.btn-wa-sm { display: flex; align-items: center; gap: 6px; padding: 0 14px; height: 38px; background: #25D366; color: #fff; border: none; border-radius: var(--r8); cursor: pointer; font-family: var(--font); font-size: .76rem; font-weight: 600; white-space: nowrap; transition: all .2s; }
.btn-wa-sm:hover { background: #1ea952; transform: translateY(-1px); }
.btn-wa-sm svg { fill: #fff; }

/* ── FILTER BAR ── */
.filter-bar { background: #fff; border-radius: var(--r12); padding: 16px 20px; border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm); margin-bottom: 32px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-btns { display: flex; gap: 7px; flex-wrap: wrap; flex: 1; }
.f-btn { padding: 7px 16px; border-radius: 100px; font-size: .76rem; font-weight: 600; background: var(--gray-100); color: var(--gray-700); border: 1.5px solid transparent; cursor: pointer; transition: all .2s; white-space: nowrap; }
.f-btn:hover { background: var(--blue-50); color: var(--blue-700); }
.f-btn.active { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.search-box { position: relative; flex-shrink: 0; }
.search-box svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); fill: var(--gray-400); pointer-events: none; }
.search-inp { padding: 8px 14px 8px 34px; font-family: var(--font); font-size: .8rem; color: var(--ink); background: var(--gray-100); border: 1.5px solid transparent; border-radius: 100px; outline: none; width: 200px; transition: all .2s; }
.search-inp:focus { border-color: var(--blue-700); background: #fff; width: 230px; box-shadow: 0 0 0 3px rgba(21,101,192,.1); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.why-card { padding: 28px 24px; border-radius: var(--r16); background: #fff; border: 1.5px solid var(--gray-200); transition: all .28s var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.why-icon { width: 52px; height: 52px; border-radius: var(--r12); background: var(--blue-50); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: transform .3s var(--spring); }
.why-card:hover .why-icon { transform: scale(1.1); }
.why-icon svg { fill: var(--blue-700); }
.why-card h4 { font-size: .95rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: .83rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; }
.step { text-align: center; padding: 0 16px; position: relative; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-700), var(--blue-400)); color: #fff; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: var(--shadow-blue); transition: transform .3s var(--spring); }
.step:hover .step-num { transform: scale(1.08) translateY(-3px); }
.step h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: .8rem; color: var(--gray-500); margin: 0; line-height: 1.6; }
.section-blue .step h4 { color: #fff; }
.section-blue .step p { color: rgba(255,255,255,.6); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.review-card { background: #fff; border-radius: var(--r16); padding: 26px 22px; border: 1.5px solid var(--gray-200); transition: all .28s; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { fill: #F59E0B; }
.review-text { font-size: .87rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-700), var(--cyan)); color: #fff; font-weight: 700; font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: .85rem; }
.reviewer-loc { font-size: .72rem; color: var(--gray-400); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: #fff; border-radius: var(--r12); border: 1.5px solid var(--gray-200); transition: all .22s; }
.contact-item:hover { border-color: var(--blue-100); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.ci-icon { width: 44px; height: 44px; border-radius: var(--r8); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-icon svg { fill: currentColor; }
.ci-lbl { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 3px; }
.ci-val { font-size: .9rem; font-weight: 600; color: var(--ink); }
.ci-val a { color: var(--blue-700); }
.ci-val a:hover { color: var(--blue-800); }
.form-wrap { background: #fff; border-radius: var(--r24); padding: 36px 32px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-100); position: sticky; top: 84px; }
.form-wrap h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-wrap .sub { font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-700); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; font-family: var(--font); font-size: .88rem; color: var(--ink); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--r8); outline: none; -webkit-appearance: none; appearance: none; transition: all .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-700); background: #fff; box-shadow: 0 0 0 3px rgba(21,101,192,.1); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { display: none; margin-top: 14px; padding: 16px 18px; background: #dcfce7; border: 2px solid #16a34a; border-radius: var(--r8); color: #166534; font-weight: 600; font-size: .87rem; }

/* ── PAGE HERO ── */
.pg-hero { padding: 136px 0 68px; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-900) 60%, var(--blue-800) 100%); position: relative; overflow: hidden; }
.pg-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; }
.pg-hero-inner { position: relative; z-index: 2; }
.pg-hero h1 { color: #fff; margin-bottom: 12px; }
.pg-hero .lead { color: rgba(255,255,255,.6); max-width: 560px; font-size: .97rem; }
.breadcrumb { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.breadcrumb a { color: var(--cyan); }
.breadcrumb svg { fill: rgba(255,255,255,.3); flex-shrink: 0; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--blue-800)); padding: 88px 0; position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(21,101,192,.15) 0%, transparent 70%); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 32px; font-size: .93rem; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── STATS ── */
.stats-band { background: var(--blue-700); }
.stats-band-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; }
.stat-box { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat-box:last-child { border-right: none; }
.stat-big { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-desc { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

/* ── FOOTER ── */
.site-footer { background: var(--blue-dark); padding: 68px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ft-logo img { height: 36px; width: 36px; object-fit: contain; }
.ft-brand-name { font-size: 1rem; font-weight: 700; color: #fff; }
.ft-brand-sub { font-size: .58rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; }
.ft-tag { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 250px; margin-bottom: 20px; }
.ft-head { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.ft-links li { margin-bottom: 9px; }
.ft-links a { font-size: .84rem; color: rgba(255,255,255,.44); transition: color .2s; }
.ft-links a:hover { color: var(--cyan); }
.ft-ci { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .84rem; color: rgba(255,255,255,.44); }
.ft-ci svg { fill: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.ft-ci a { color: var(--cyan); }
.ft-ci a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; margin-top: 52px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ft-copy { font-size: .76rem; color: rgba(255,255,255,.24); }

/* ── WHATSAPP FAB ── */
.wa-fab { position: fixed; bottom: 24px; right: 24px; z-index: 990; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.55); transition: all .3s var(--spring); }
.wa-fab svg { fill: #fff; }
.wa-fab:hover { background: #1ea952; transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.7); }
.wa-fab-pulse { position: absolute; inset: 0; border-radius: 50%; animation: wapulse 2.5s ease-in-out infinite; background: rgba(37,211,102,.4); }
@keyframes wapulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.5);opacity:0} }

/* ── SCROLL REVEAL ── */
.rev { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rev.in { opacity: 1; transform: translateY(0); }
.rev-l { opacity: 0; transform: translateX(-22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rev-r { opacity: 0; transform: translateX(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rev-l.in, .rev-r.in { opacity: 1; transform: translate(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s} .d5{transition-delay:.4s}

/* ── RESPONSIVE ── */
@media(max-width:1080px){
  .hero-layout{grid-template-columns:1fr;gap:0} .hero-showcase{display:none}
  .contact-grid{grid-template-columns:1fr} .form-wrap{position:static}
  .ft-grid{grid-template-columns:1fr 1fr;gap:36px}
  .stats-band-inner{grid-template-columns:repeat(2,1fr)}
  .steps-grid{grid-template-columns:1fr 1fr;gap:24px}
  .why-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .section{padding:64px 0} .wrap,.wrap-sm{padding:0 18px}
  .nav-links,.nav-right .nav-wa,.nav-right .btn-wa{display:none}
  .burger{display:flex} .nav-right .cart-btn{} 
  .tools-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr} .why-grid{grid-template-columns:1fr}
  .ft-grid{grid-template-columns:1fr} .hero-btns{flex-direction:column}
  .hero-btns .btn{text-align:center;justify-content:center}
  .cta-btns{flex-direction:column;align-items:center}
  .trust-bar-inner{flex-wrap:wrap;padding:0 18px}
  .trust-item{flex:1 1 40%;border-right:none;padding:10px 12px;border-bottom:1px solid rgba(255,255,255,.1)}
  .steps-grid{grid-template-columns:1fr} .fg-row{grid-template-columns:1fr}
  .stats-band-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .tools-grid{grid-template-columns:1fr} .hero-stats{grid-template-columns:repeat(2,1fr)}
}

/* ════════════════════════════════════════════
   CUSTOMER REVIEWS  +  DAILY STOCK  (added)
   ════════════════════════════════════════════ */

/* ── Home page reviews teaser ── */
.reviews-teaser { max-width: 720px; margin: 40px auto 0; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r24); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm); }
.rt-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; color: #F59E0B; }
.rt-stars svg { fill: #F59E0B; }
.rt-stars svg path { fill: #F59E0B; }
.rt-text { font-size: .98rem; color: var(--gray-700); line-height: 1.75; max-width: 560px; margin: 0 auto 26px; }

/* ── Reviews gallery page ── */
.reviews-intro { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.ri-stat { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r16); padding: 20px 28px; text-align: center; min-width: 150px; flex: 1 1 150px; max-width: 220px; }
.ri-stat .ri-num { font-size: 1.9rem; font-weight: 800; color: var(--blue-700); line-height: 1; }
.ri-stat .ri-lbl { font-size: .8rem; color: var(--gray-500); margin-top: 6px; }

.reviews-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rg-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r16); overflow: hidden; transition: all .28s var(--ease); box-shadow: var(--shadow-sm); }
.rg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(21,101,192,.25); }
.rg-imgwrap { position: relative; background: var(--gray-100); display: block; line-height: 0; }
.rg-imgwrap img { width: 100%; height: auto; display: block; cursor: zoom-in; }
.rg-tag { position: absolute; top: 12px; left: 12px; background: rgba(13,33,55,.82); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .04em; padding: 5px 11px; border-radius: 100px; display: flex; align-items: center; gap: 5px; backdrop-filter: blur(4px); }
.rg-tag svg { fill: #25D366; }
.rg-cap { padding: 14px 16px; font-size: .82rem; color: var(--gray-700); line-height: 1.5; border-top: 1px solid var(--gray-100); }
.rg-cap strong { color: var(--ink); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,15,26,.92); z-index: 5000; display: none; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox.open { display: flex; animation: lbFade .2s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 90vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 20px 70px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.28); }
.lightbox-close svg { fill: #fff; }

/* ── Daily Stock page ── */
.stock-updated { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); color: #15803d; font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 100px; margin-top: 14px; }
.stock-updated svg { fill: #16a34a; }
.stock-dot { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); } 70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }

/* Offer banner */
.offer-banner { background: linear-gradient(135deg, var(--blue-700), var(--cyan)); color: #fff; border-radius: var(--r24); padding: 30px 34px; margin-bottom: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-blue); position: relative; overflow: hidden; }
.offer-banner::after { content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.1); }
.offer-banner-txt { position: relative; z-index: 1; }
.offer-pill { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 12px; }
.offer-banner h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.offer-banner p { color: rgba(255,255,255,.9); font-size: .92rem; max-width: 540px; margin: 0; }
.offer-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* Stock category */
.stock-cat { margin-bottom: 40px; }
.stock-cat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100); }
.stock-cat-head h3 { font-size: 1.15rem; }
.stock-cat-count { font-size: .76rem; font-weight: 600; color: var(--gray-400); margin-left: auto; }

.stock-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.stock-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r12); padding: 14px 16px; transition: all .24s var(--ease); }
.stock-item:hover { border-color: rgba(21,101,192,.3); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stock-item.out { opacity: .62; }
.stock-logo { width: 46px; height: 46px; border-radius: var(--r12); background: var(--gray-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 7px; border: 1px solid var(--gray-100); }
.stock-logo img { width: 100%; height: 100%; object-fit: contain; }
.stock-info { flex: 1; min-width: 0; }
.stock-name { font-weight: 700; font-size: .92rem; line-height: 1.2; }
.stock-sub { font-size: .74rem; color: var(--gray-400); margin-top: 3px; }
.stock-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.stock-price { font-size: .82rem; font-weight: 700; color: var(--blue-700); white-space: nowrap; }
.stock-price.inbox { color: var(--gray-500); font-style: italic; font-size: .76rem; font-weight: 600; }
.stock-status { display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.stock-status.in { background: rgba(22,163,74,.12); color: #15803d; }
.stock-status.low { background: rgba(202,138,4,.14); color: #b45309; }
.stock-status.out { background: rgba(100,116,139,.14); color: #64748b; }
.stock-status .sd { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.stock-note { background: var(--blue-off); border: 1px solid var(--blue-100); border-radius: var(--r12); padding: 18px 22px; font-size: .86rem; color: var(--gray-700); display: flex; gap: 12px; align-items: flex-start; margin-top: 8px; }
.stock-note svg { fill: var(--blue-700); flex-shrink: 0; margin-top: 2px; }

/* ── Responsive ── */
@media(max-width:980px){
  .reviews-gallery{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .reviews-gallery{grid-template-columns:repeat(2,1fr);gap:16px}
  .offer-banner{padding:24px 22px;text-align:center;justify-content:center}
  .offer-banner p{margin-left:auto;margin-right:auto}
  .stock-grid{grid-template-columns:1fr}
  .reviews-teaser{padding:30px 22px}
}
@media(max-width:560px){
  .reviews-gallery{grid-template-columns:1fr}
  .ri-stat{padding:16px 18px;min-width:120px}
  .ri-stat .ri-num{font-size:1.5rem}
}
