/* Western Trading Company — v2 "future of surgical technology" design system */

:root {
  --ink: #050d1d;
  --ink-2: #0a1730;
  --ink-3: #0f2347;
  --blue: #0a4d8c;
  --cyan: #2dd4ff;
  --mint: #00ffc8;
  --teal: #00b8b8;
  --bg: #ffffff;
  --bg-soft: #f3f7fc;
  --text: #1f3550;
  --muted: #5a7184;
  --line: #dde7f1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --grad: linear-gradient(95deg, var(--cyan), var(--mint));
  --radius: 18px;
  --shadow: 0 2px 14px rgba(5, 13, 29, 0.08);
  --shadow-hover: 0 18px 44px rgba(5, 13, 29, 0.16);
  --glow: 0 0 32px rgba(45, 212, 255, 0.35);
  --maxw: 1200px;
  --font-head: "Space Grotesk", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background:
    radial-gradient(800px 420px at 85% -10%, rgba(45, 212, 255, 0.13), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(0, 255, 200, 0.09), transparent 60%),
    var(--ink);
  color: #b9cee2;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.kicker {
  display: inline-block; font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 10px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.center { text-align: center; }
.center.section-head { margin-left: auto; margin-right: auto; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Reveal-on-scroll animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--ink-3); color: #fff; box-shadow: var(--shadow-hover); }
.btn-grad { background: var(--grad); color: var(--ink); font-weight: 700; }
.btn-grad:hover { box-shadow: var(--glow); color: var(--ink); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.05); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb656; color: #fff; box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 22px; max-width: var(--maxw); margin: 0 auto; }
.logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--ink); font-weight: 500; font-size: 0.94rem; padding: 6px 0; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad); transition: right 0.25s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav .btn { padding: 10px 22px; }
.nav .btn::after { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ============================== HERO ============================== */
.hero {
  position: relative; overflow: hidden; color: #c4d8ea;
  background: var(--ink);
  padding: 104px 0 92px;
}
.hero .aurora, .page-hero .aurora {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; pointer-events: none;
}
.hero .a1 { width: 560px; height: 560px; right: -120px; top: -180px; background: radial-gradient(circle, rgba(45,212,255,0.5), transparent 65%); animation: drift1 14s ease-in-out infinite alternate; }
.hero .a2 { width: 480px; height: 480px; left: -140px; bottom: -200px; background: radial-gradient(circle, rgba(0,255,200,0.35), transparent 65%); animation: drift2 18s ease-in-out infinite alternate; }
.hero .a3 { width: 320px; height: 320px; left: 40%; top: 10%; background: radial-gradient(circle, rgba(10,77,140,0.55), transparent 65%); animation: drift1 22s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-60px, 50px) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(70px, -40px) scale(1.08); } }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 170, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 170, 210, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 820px; }
.hero p.lead { font-size: 1.14rem; max-width: 680px; color: #9fbdd8; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(45, 212, 255, 0.09); border: 1px solid rgba(45, 212, 255, 0.3);
  color: #9fe8ff; padding: 7px 18px; border-radius: 999px; font-size: 0.84rem;
  letter-spacing: 0.04em; margin-bottom: 24px; backdrop-filter: blur(6px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.stat {
  background: var(--glass); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 22px 20px; text-align: center; backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s;
}
.stat:hover { border-color: rgba(45, 212, 255, 0.45); transform: translateY(-3px); }
.stat .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: #fff; }
.stat .num .plus { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: 0.86rem; color: #8fb0cc; }

/* Partner logo marquee */
.marquee-strip { background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 26px 0; overflow: hidden; }
.marquee-strip .label { text-align: center; color: #7d9cba; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 18px; }
.marquee { display: flex; width: max-content; animation: scroll-x 30s linear infinite; gap: 72px; align-items: center; }
.marquee:hover { animation-play-state: paused; }
.marquee img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.2s; }
.marquee img:hover { opacity: 1; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Cards & grids */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(45, 212, 255, 0.5); }
.card .card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--blue); }
.card .excerpt { color: var(--muted); font-size: 0.92rem; flex: 1; }
.card .card-link { font-weight: 600; font-size: 0.92rem; margin-top: 12px; color: var(--blue); }
.card .card-link .arr { display: inline-block; transition: transform 0.2s; }
.card:hover .card-link .arr { transform: translateX(5px); }

/* Category cards */
.cat-card { text-align: center; padding: 34px 22px 28px; align-items: center; }
.cat-icon {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.12), rgba(0, 255, 200, 0.1));
  border: 1px solid rgba(45, 212, 255, 0.3); color: var(--blue);
  transition: box-shadow 0.25s, transform 0.25s;
}
.cat-card:hover .cat-icon { box-shadow: var(--glow); transform: scale(1.06); }
.cat-icon svg { width: 38px; height: 38px; }
.cat-card h3 { font-size: 1.04rem; margin-bottom: 4px; }
.cat-card .count { color: var(--muted); font-size: 0.85rem; }

/* Feature showcase (dark) */
.feature-card {
  background: var(--glass); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; backdrop-filter: blur(8px);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 255, 0.55); box-shadow: var(--glow); }
.feature-card .thumb { background: #fff; height: 210px; display: flex; align-items: center; justify-content: center; padding: 18px; }
.feature-card .thumb img { max-height: 100%; width: auto; object-fit: contain; }
.feature-card .fc-body { padding: 22px 24px 26px; }
.feature-card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
  background: rgba(0, 255, 200, 0.12); border: 1px solid rgba(0, 255, 200, 0.35); color: var(--mint);
}
.feature-card h3 a { color: #fff; }
.feature-card h3 a:hover { color: var(--cyan); }
.feature-card p { color: #9fbdd8; font-size: 0.93rem; margin: 0; }

/* Product cards */
.prod-thumb { background: #fff; height: 200px; display: flex; align-items: center; justify-content: center; padding: 18px; border-bottom: 1px solid var(--line); }
.prod-thumb img { max-height: 100%; width: auto; object-fit: contain; transition: transform 0.3s ease; }
.card:hover .prod-thumb img { transform: scale(1.05); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; padding: 0; list-style: none; }
.chip {
  background: linear-gradient(95deg, rgba(45, 212, 255, 0.13), rgba(0, 255, 200, 0.12));
  border: 1px solid rgba(10, 77, 140, 0.2);
  color: var(--blue); font-size: 0.74rem; font-weight: 700; padding: 3px 11px; border-radius: 999px;
}

/* Product detail */
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.product-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 96px; }
.product-gallery .main-img {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff;
  display: flex; align-items: center; justify-content: center; min-height: 320px; box-shadow: var(--shadow);
}
.product-gallery .main-img img { max-height: 380px; width: auto; object-fit: contain; }
.thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.thumbs img { width: 74px; height: 74px; object-fit: contain; border: 1px solid var(--line); border-radius: 12px; padding: 7px; background: #fff; cursor: pointer; transition: border-color 0.2s; }
.thumbs img:hover { border-color: var(--cyan); }
.thumbs img.sel { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.product-desc h3 { margin-top: 1.4em; font-size: 1.05rem; }
.product-desc ul { padding-left: 0; list-style: none; }
.product-desc li { margin-bottom: 9px; padding-left: 26px; position: relative; }
.product-desc li::before {
  content: ""; position: absolute; left: 0; top: 0.52em; width: 14px; height: 14px;
  border-radius: 4px; background: linear-gradient(135deg, rgba(45,212,255,0.25), rgba(0,255,200,0.25));
  border: 1px solid rgba(0, 184, 184, 0.5);
}
.enquiry-box {
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(45, 212, 255, 0.12), transparent 60%),
    var(--ink);
  border: 1px solid rgba(45, 212, 255, 0.25); border-radius: var(--radius);
  padding: 26px 28px; margin-top: 30px; color: #b9cee2;
}
.enquiry-box h3 { color: #fff; }
.enquiry-box .btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

/* About / split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-split img { border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.value-card:hover { transform: translateY(-4px); border-color: rgba(45, 212, 255, 0.5); }
.value-card h3 { font-size: 1rem; }
.value-card h3::before { content: "◆ "; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.timeline { list-style: none; padding: 0; margin: 26px 0; border-left: 2px solid rgba(0, 184, 184, 0.45); }
.timeline li { padding: 0 0 20px 24px; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: 7px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 10px rgba(45, 212, 255, 0.6);
}
.timeline .yr { font-family: var(--font-head); font-weight: 700; color: var(--blue); margin-right: 8px; }

/* Client logos */
.client-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.client-logo {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; justify-content: center; min-height: 104px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.client-logo:hover { transform: translateY(-4px); border-color: rgba(45, 212, 255, 0.5); box-shadow: var(--shadow-hover); }
.client-logo img { max-height: 58px; width: auto; object-fit: contain; }

/* Partner pitch (dark band) */
.pitch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.pitch-card {
  background: var(--glass); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 26px; backdrop-filter: blur(8px); transition: border-color 0.25s, transform 0.25s;
}
.pitch-card:hover { border-color: rgba(0, 255, 200, 0.45); transform: translateY(-4px); }
.pitch-card h3 { color: #fff; font-size: 1.05rem; }
.pitch-card p { color: #9fbdd8; font-size: 0.93rem; margin: 0; }
.pitch-card .big { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: 24px; padding: 52px 48px;
  background:
    radial-gradient(600px 300px at 90% -20%, rgba(45, 212, 255, 0.22), transparent 60%),
    radial-gradient(500px 280px at 5% 120%, rgba(0, 255, 200, 0.14), transparent 60%),
    var(--ink);
  border: 1px solid rgba(45, 212, 255, 0.25);
  color: #b9cee2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: #9fbdd8; margin: 8px 0 0; }
.cta-band .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.88rem; display: block; margin-bottom: 5px; color: var(--ink); }
input, textarea, select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 184, 184, 0.18); }
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-info-card .row { display: flex; gap: 12px; margin-bottom: 14px; align-items: baseline; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 44px; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* "See it in action" cinematic video */
.video-section .section-head { margin-bottom: 30px; }
.video-lite {
  position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #050d1d;
  border: 1px solid rgba(45, 212, 255, 0.25); box-shadow: var(--shadow-hover);
}
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-lite::after {
  content: ""; position: absolute; inset: 0; transition: background 0.25s;
  background: radial-gradient(circle at 50% 50%, rgba(5,13,29,0.25), rgba(5,13,29,0.72));
}
.video-lite:hover::after { background: radial-gradient(circle at 50% 50%, rgba(5,13,29,0.15), rgba(5,13,29,0.6)); }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 88px; height: 88px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: var(--glow); transition: transform 0.2s;
}
.video-play::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(45, 212, 255, 0.5); animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.35); opacity: 0; } }
.video-lite:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 36px; height: 36px; fill: var(--ink); margin-left: 4px; }
.video-lite.playing { cursor: default; border-color: rgba(255,255,255,0.12); }
.video-lite.playing::after { display: none; }
.video-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Comparison table (accessories) */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.93rem; vertical-align: top; }
.compare-table thead th { background: var(--bg-soft); font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; border-bottom: 2px solid var(--line); }
.compare-table thead th .sub { display: block; font-family: "Inter", sans-serif; font-weight: 500; font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.compare-table tbody th { font-weight: 600; color: var(--muted); width: 200px; background: #fcfdfe; }
.compare-table .top { background: linear-gradient(180deg, rgba(45,212,255,0.08), rgba(0,255,200,0.05)); }
.compare-table thead th.top { border-bottom: 2px solid var(--teal); position: relative; }
.top-badge { display: inline-block; background: var(--grad); color: var(--ink); font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.top-badge.inline { margin: 0 0 4px; }
.card.top { border-color: rgba(45, 212, 255, 0.5); box-shadow: var(--glow); }
.benefits { list-style: none; padding: 0; margin: 0; }
.benefits li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: 0.92rem; color: var(--text); }
.benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-dark); font-weight: 700; }
.accessory-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  margin-top: 32px; padding: 30px 34px; border-radius: var(--radius);
  background: radial-gradient(500px 240px at 92% -30%, rgba(45,212,255,0.13), transparent 60%), var(--bg-soft);
  border: 1px solid var(--line); transition: border-color 0.2s, box-shadow 0.2s;
}
.accessory-banner:hover { border-color: rgba(45, 212, 255, 0.55); box-shadow: var(--shadow-hover); }
.accessory-banner h3 { margin: 6px 0 4px; }
.accessory-banner p { margin: 0; color: var(--muted); max-width: 640px; }

/* News */
.news-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 22px; background: #fff; box-shadow: var(--shadow); transition: border-color 0.2s; }
.news-item:hover { border-color: rgba(45, 212, 255, 0.5); }
.news-item .date { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Footer */
.site-footer { background: var(--ink); color: #8fb0cc; margin-top: 84px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 38px; padding: 60px 0 44px; }
.site-footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.site-footer a { color: #8fb0cc; transition: color 0.15s; }
.site-footer a:hover { color: var(--cyan); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-about .footer-logo { height: 54px; width: auto; margin-bottom: 16px; background: #fff; padding: 8px 14px; border-radius: 12px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; font-size: 0.85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; overflow: hidden; background: var(--ink); color: #9fbdd8; padding: 64px 0 56px;
}
.page-hero .a1 { width: 420px; height: 420px; right: -100px; top: -160px; background: radial-gradient(circle, rgba(45,212,255,0.4), transparent 65%); }
.page-hero .a2 { width: 340px; height: 340px; left: -120px; bottom: -160px; background: radial-gradient(circle, rgba(0,255,200,0.3), transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { margin: 0; max-width: 720px; }

/* Responsive */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .pitch-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout, .contact-layout, .about-split { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 740px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-hover);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 52px 0; }
  .hero { padding: 64px 0 56px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .pitch-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 26px; }
}
