/* ============ LKT Universal — Premium Marine Theme ============ */
:root {
  --ink: #0a1524; --ink-2: #0e1f33; --ink-3: #16293f;
  --paper: #f7f9fb; --white: #ffffff;
  --brass: #d9a441; --brass-2: #b8862e;
  --sea: #37b6d9; --sea-deep: #1c8db0;
  --text: #33414f; --muted: #6b7a89; --line: #e4e9ee;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(10,21,36,.07);
  --shadow-md: 0 12px 32px rgba(10,21,36,.10);
  --shadow-lg: 0 28px 64px rgba(10,21,36,.18);
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.announce { background: var(--ink); color: #b9c6d2; font-size: 12.5px; display: flex; justify-content: center; gap: 28px; padding: 8px 16px; letter-spacing: .02em; }
.announce b { color: var(--brass); font-weight: 600; }
@media (max-width: 640px) { .announce span.hide-m { display: none; } }

.hdr { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.hdr-in { max-width: 1180px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { height: 60px; width: auto; }
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main > a, .nav-main .drop > a { font-size: 14.5px; font-weight: 500; color: var(--ink); padding: 10px 14px; border-radius: 10px; display: block; }
.nav-main > a:hover, .nav-main .drop:hover > a { background: #eef3f7; color: var(--sea-deep); }
.drop { position: relative; }
.drop-menu { visibility: hidden; opacity: 0; transform: translateY(8px); transition: all .18s ease; position: absolute; top: calc(100% + 6px); left: 0; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; min-width: 230px; }
.drop:hover .drop-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.drop-menu a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: var(--text); }
.drop-menu a:hover { background: #eef7fa; color: var(--sea-deep); }
.cta { display: inline-block; font-weight: 600; font-size: 14px; background: linear-gradient(135deg, var(--brass), var(--brass-2)); color: var(--ink) !important; padding: 11px 22px; border-radius: 999px; box-shadow: 0 6px 18px rgba(217,164,65,.35); transition: transform .15s ease, box-shadow .15s ease; }
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(217,164,65,.45); }

.nav-toggle { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
@media (max-width: 920px) {
  .burger { display: flex; }
  .hdr .cta { display: none; }
  /* backdrop-filter on an ancestor breaks position:fixed children on mobile Safari/Chrome —
     disable it on the header itself so the full-screen nav overlay actually covers the viewport */
  .hdr { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,.98); }
  .nav-main {
    position: fixed; inset: 0; top: 0; z-index: 99;
    display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 6px; background: rgba(8,17,29,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 96px 22px 50px;
  }
  .nav-main > a, .nav-main .drop > a { color: #fff; font-size: 19px; padding: 12px 20px; text-align: center; }
  .nav-main > a:hover { background: transparent; color: var(--brass); }
  .drop-menu { position: static; visibility: visible; opacity: 1; transform: none; background: transparent; border: none; box-shadow: none; padding: 4px 0 10px; text-align: center; }
  .drop-menu a { color: #9fb3c8; font-size: 14.5px; padding: 7px; }
  .nav-toggle:checked ~ .nav-main { transform: translateX(0); }
  .nav-toggle:checked ~ .burger { position: relative; z-index: 100; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: #fff; }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: #fff; }
  /* staggered entrance for menu items when opened */
  .nav-main > a, .nav-main > .drop { opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease; }
  .nav-toggle:checked ~ .nav-main > *:nth-child(1) { transition-delay: .05s; }
  .nav-toggle:checked ~ .nav-main > *:nth-child(2) { transition-delay: .10s; }
  .nav-toggle:checked ~ .nav-main > *:nth-child(3) { transition-delay: .15s; }
  .nav-toggle:checked ~ .nav-main > *:nth-child(4) { transition-delay: .20s; }
  .nav-toggle:checked ~ .nav-main > *:nth-child(5) { transition-delay: .25s; }
  .nav-toggle:checked ~ .nav-main > * { opacity: 1; transform: none; }
}
/* lock background scroll while mobile menu is open (progressive enhancement) */
body:has(#navtoggle:checked) { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .nav-main > a, .nav-main > .drop { transition: opacity .01s linear !important; transform: none !important; }
}

.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(1100px 500px at 85% -10%, rgba(55,182,217,.22), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(217,164,65,.14), transparent 55%), linear-gradient(160deg, #0a1524 0%, #0e2036 55%, #0a1a2c 100%); }
.hero-in { max-width: 1180px; margin: 0 auto; padding: 96px 24px 80px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sea); margin-bottom: 20px; }
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--sea); }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 700; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero p.lead { color: #aebdcb; font-size: 17px; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost { display: inline-block; font-weight: 600; font-size: 14px; color: #fff; border: 1.5px solid rgba(255,255,255,.35); padding: 11px 24px; border-radius: 999px; transition: border-color .15s, background .15s; }
.btn-ghost:hover { border-color: var(--sea); background: rgba(55,182,217,.12); }
.hero-art { position: relative; }
@media (max-width: 920px) { .hero-in { grid-template-columns: 1fr; padding: 64px 24px 56px; text-align: center; } .hero p.lead { margin: 0 auto 30px; } .hero-actions { justify-content: center; } .kicker { justify-content: center; } }

.hero-slides { position: relative; width: 100%; max-width: 440px; margin: 0 auto; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.05), transparent 70%); }
.hslide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity 1.1s ease, transform 6s ease; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
.hslide.active { opacity: 1; transform: scale(1); z-index: 2; }
.hero-dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
.hero-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .3s, width .3s; }
.hero-dots span.active { background: var(--brass); width: 20px; border-radius: 5px; }
.hero-cap { position: absolute; left: 16px; bottom: 34px; z-index: 3; background: rgba(10,21,36,.72); backdrop-filter: blur(6px); color: #fff; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; opacity: 0; transition: opacity .5s ease; }
.hero-cap.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hslide { transition: opacity .3s ease; transform: none !important; } }

.stats { max-width: 1180px; margin: -1px auto 0; padding: 0 24px 0; position: relative; z-index: 2; }
.stats-in { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); transform: translateY(-46px); }
.stat { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--ink); }
.stat span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 760px) { .stats-in { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }

.sec { padding: 84px 0; }
.sec-tight { padding: 56px 0; }
.sec-dark { background: radial-gradient(900px 400px at 90% 0%, rgba(55,182,217,.14), transparent 60%), linear-gradient(160deg, #0a1524, #0e2036); color: #aebdcb; }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 14px; }
.sec-head p { color: var(--muted); font-size: 16px; }
.sec-dark .sec-head p { color: #aebdcb; }

.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; } }

.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard-img { background: linear-gradient(180deg, #f2f6f9, #e8eef3); height: 250px; display: flex; align-items: center; justify-content: center; padding: 14px; position: relative; }
.pcard-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .3s ease; mix-blend-mode: multiply; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-chip { position: absolute; top: 14px; left: 14px; background: rgba(10,21,36,.82); color: #fff; backdrop-filter: blur(4px); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.pcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pcard-body h3 { font-size: 16.5px; margin-bottom: 8px; }
.pcard-body p { font-size: 13.5px; color: var(--muted); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-more { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--sea-deep); display: inline-flex; align-items: center; gap: 6px; }
.pcard-more::after { content: "→"; transition: transform .18s; }
.pcard:hover .pcard-more::after { transform: translateX(4px); }

/* Category tiles — same proven image-panel pattern as product cards */
.tile { background: linear-gradient(160deg, var(--ink-2), var(--ink-3)); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile-img { background: linear-gradient(180deg, #f2f6f9, #e6edf3); height: 210px; display: flex; align-items: center; justify-content: center; padding: 12px; position: relative; }
.tile-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .3s ease; mix-blend-mode: multiply; }
.tile:hover .tile-img img { transform: scale(1.06); }
.tile-count { position: absolute; top: 12px; left: 12px; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; background: var(--ink); padding: 5px 11px; border-radius: 999px; }
.tile-body { padding: 20px 22px 24px; flex: 1; }
.tile-body h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.tile-body p { font-size: 13.5px; color: #9fb3c8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tile-help { border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, var(--brass), var(--brass-2)); box-shadow: var(--shadow-md); min-height: 100%; }
.tile-help h3 { color: var(--ink); font-size: 20px; margin-bottom: 8px; }
.tile-help p { color: rgba(10,21,36,.75); font-size: 14px; margin-bottom: 16px; }
.tile-help a { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--ink); width: fit-content; }

.feat { display: flex; gap: 20px; align-items: flex-start; }
.feat-ico { flex: none; width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, rgba(55,182,217,.18), rgba(55,182,217,.06)); border: 1px solid rgba(55,182,217,.35); display: flex; align-items: center; justify-content: center; color: var(--sea); transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.feat-ico svg { width: 30px; height: 30px; }
.feat:hover .feat-ico { transform: translateY(-3px) scale(1.05); background: linear-gradient(135deg, rgba(55,182,217,.3), rgba(55,182,217,.1)); border-color: var(--sea); }
.feat h4 { font-size: 17px; margin-bottom: 6px; }
.feat p { font-size: 14px; color: var(--muted); }
.sec-dark .feat h4 { color: #fff; }
.sec-dark .feat p { color: #9fb3c8; }

/* Logo marquee — auto-scrolling, bigger, color on hover */
.logo-marquee { overflow: hidden; position: relative; padding: 6px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.logo-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: scrollLogos 30s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-item { flex: none; display: flex; align-items: center; justify-content: center; height: 118px; width: 230px; border-radius: 16px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 10px; transition: box-shadow .25s ease, transform .25s ease; }
.logo-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-item img { max-height: 92px; max-width: 200px; object-fit: contain; mix-blend-mode: multiply; filter: grayscale(1) contrast(.55) opacity(.78); transition: filter .3s ease, transform .3s ease; }
.logo-item:hover img { filter: none; transform: scale(1.06); }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }
@media (max-width: 640px) { .logo-item { height: 90px; width: 180px; } .logo-item img { max-height: 68px; max-width: 150px; } }

.faq { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--sea-deep); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 24px 20px; font-size: 14.5px; color: var(--muted); }

.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); position: relative; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.quote-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: reduce) { .quote-card { transition: none; } }
.quote-card::before { content: "\201C"; position: absolute; top: 10px; right: 20px; font-family: Georgia, serif; font-size: 64px; color: var(--brass); opacity: .25; line-height: 1; }
.quote-card p.q { font-size: 14.5px; color: var(--text); font-style: italic; margin-bottom: 18px; }
.quote-card .who b { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); }
.quote-card .who span { font-size: 12.5px; color: var(--muted); }
.stars { color: var(--brass); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

.bcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bcard img { height: 190px; width: 100%; object-fit: cover; }
.bcard-body { padding: 22px; }
.bcard-body .date { font-size: 12px; font-weight: 600; color: var(--sea-deep); text-transform: uppercase; letter-spacing: .06em; }
.bcard-body h3 { font-size: 17px; margin: 10px 0; }
.bcard-body p { font-size: 13.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.phero { position: relative; color: #fff; text-align: center; padding: 72px 24px; background: radial-gradient(800px 300px at 70% 0%, rgba(55,182,217,.18), transparent 60%), linear-gradient(160deg, #0a1524, #10233a); }
.phero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.phero .crumb { font-size: 13px; color: #8fa4b8; }
.phero .crumb a { color: var(--sea); }

.pd { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .pd { grid-template-columns: 1fr; } }
.pd-img { background: linear-gradient(180deg, #f2f6f9, #e6edf3); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: center; position: sticky; top: 96px; min-height: 420px; }
.pd-img img { max-height: 440px; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
@media (max-width: 860px) { .pd-img { position: static; } }
.pd-spec { display: inline-block; background: #eef7fa; color: var(--sea-deep); border: 1px solid rgba(55,182,217,.35); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; }
.pd h1.pd-title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.pd-block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.pd-block h2 { font-size: 19px; margin-bottom: 10px; }
.pd-block p { font-size: 15px; color: var(--text); }
.pd-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge { font-size: 12px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; box-shadow: var(--shadow-sm); }
.badge::before { content: "✓ "; color: var(--sea-deep); }

/* Bigger badge variant — industries list, sized to balance a tall side photo */
.industry-badge {
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.industry-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sea); }
.industry-badge .ck {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: #eef7fa; color: var(--sea-deep); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--sea), var(--brass)); }
.tl-item { position: relative; padding: 0 0 26px 40px; }
.tl-item::before { content: ""; position: absolute; left: 2px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 3px solid var(--sea); }
.tl-item b { font-family: var(--font-head); color: var(--brass-2); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.tl-item h4 { font-size: 16px; margin: 4px 0 2px; }
.tl-item span { font-size: 13px; color: var(--muted); }

.office-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); cursor: default;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.office-card:hover {
  transform: translateY(-10px) scale(1.015);
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(10,21,36,.28);
}
.office-card .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-2); transition: color .35s ease; }
.office-card:hover .tag { color: var(--brass); }
.office-card h3 { font-size: 17px; margin: 8px 0 2px; color: var(--ink); transition: color .35s ease; }
.office-card:hover h3 { color: #fff; }
.office-card .org { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; transition: color .35s ease; }
.office-card:hover .org { color: #fff; }
.office-card .detail { font-size: 13px; color: var(--muted); transition: color .35s ease; }
.office-card:hover .detail { color: #8fa4b8; }
@media (prefers-reduced-motion: reduce) { .office-card { transition: none; } }

.cform { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.cform h3 { margin-bottom: 20px; font-size: 20px; }
.cform input, .cform textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px; font-size: 14px; font-family: var(--font-body); margin-bottom: 14px; transition: border-color .15s; background: var(--paper); }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--sea); background: #fff; }
.cform button { border: none; cursor: pointer; width: 100%; font-family: var(--font-body); font-weight: 700; font-size: 15px; background: linear-gradient(135deg, var(--brass), var(--brass-2)); color: var(--ink); padding: 14px; border-radius: 12px; box-shadow: 0 8px 20px rgba(217,164,65,.35); transition: transform .15s; }
.cform button:hover { transform: translateY(-1px); }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; font-size: 18px; background: #eef7fa; border: 1px solid rgba(55,182,217,.3); display: flex; align-items: center; justify-content: center; }
.info-item h4 { font-size: 15px; margin-bottom: 3px; }
.info-item p { font-size: 13.5px; color: var(--muted); }

.article { font-size: 16px; }
.article img.cover { border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 28px; }
.article p { margin-bottom: 18px; color: var(--text); }

.band { border-radius: 22px; overflow: hidden; position: relative; background: radial-gradient(700px 300px at 85% 20%, rgba(217,164,65,.25), transparent 60%), linear-gradient(150deg, #0e2036, #0a1524); color: #fff; padding: 56px 48px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.band h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); max-width: 560px; }
.band p { color: #9fb3c8; margin-top: 8px; max-width: 520px; }
@media (max-width: 640px) { .band { padding: 36px 28px; } }

.ftr { position: relative; background: var(--ink); color: #8fa4b8; margin-top: 96px; }
.ftr-wave { position: absolute; bottom: 100%; left: 0; width: 100%; line-height: 0; overflow: hidden; }
.ftr-wave svg { display: block; width: 200%; height: 72px; animation: ftrWaveDrift 16s linear infinite; }
.ftr-wave path { fill: var(--ink); }
@keyframes ftrWaveDrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .ftr-wave svg { height: 46px; } }
@media (prefers-reduced-motion: reduce) { .ftr-wave svg { animation: none; } }
.ftr-in { max-width: 1180px; margin: 0 auto; padding: 64px 24px 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 860px) { .ftr-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr-in { grid-template-columns: 1fr; } }
.ftr img.flogo { height: 70px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.ftr h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.ftr ul { list-style: none; }
.ftr li { margin-bottom: 10px; font-size: 14px; }
.ftr li a:hover { color: var(--brass); }
.ftr p { font-size: 13.5px; line-height: 1.8; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 24px; text-align: center; font-size: 12.5px; color: #5f7183; }

.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37,211,102,.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 640px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* Product search + category filter bar */
.search-bar {
  position: sticky; top: 78px; z-index: 60;
  background: rgba(247,249,251,.92); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 20px; margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.search-input-wrap { position: relative; margin-bottom: 14px; }
.search-input-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); opacity: .45; }
#productSearch {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px 13px 44px; font-size: 14.5px; font-family: var(--font-body);
  background: var(--white); transition: border-color .15s;
}
#productSearch:focus { outline: none; border-color: var(--sea); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--sea); color: var(--sea-deep); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.results-count { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.no-results { display: none; text-align: center; padding: 60px 20px; color: var(--muted); }
.no-results.show { display: block; }
.pcard.hidden { display: none !important; }
@media (max-width: 640px) { .search-bar { top: 66px; } }

/* ================= Next-gen animation layer ================= */

/* Directional / scale scroll-reveal variants — pair with the existing .rv/.in IntersectionObserver */
.rv-l, .rv-r, .rv-scale { transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.rv-l { opacity: 0; transform: translateX(-34px); }
.rv-r { opacity: 0; transform: translateX(34px); }
.rv-scale { opacity: 0; transform: scale(.93); }
.rv-l.in, .rv-r.in, .rv-scale.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv-l, .rv-r, .rv-scale { opacity: 1; transform: none; transition: none; } }

/* Stagger children of any .grid as they reveal, so cards cascade in rather than pop together */
.grid > .rv:nth-child(1), .grid > .rv-l:nth-child(1), .grid > .rv-r:nth-child(1), .grid > .rv-scale:nth-child(1) { transition-delay: .03s; }
.grid > .rv:nth-child(2), .grid > .rv-l:nth-child(2), .grid > .rv-r:nth-child(2), .grid > .rv-scale:nth-child(2) { transition-delay: .09s; }
.grid > .rv:nth-child(3), .grid > .rv-l:nth-child(3), .grid > .rv-r:nth-child(3), .grid > .rv-scale:nth-child(3) { transition-delay: .15s; }
.grid > .rv:nth-child(4), .grid > .rv-l:nth-child(4), .grid > .rv-r:nth-child(4), .grid > .rv-scale:nth-child(4) { transition-delay: .21s; }
.grid > .rv:nth-child(5), .grid > .rv-l:nth-child(5), .grid > .rv-r:nth-child(5), .grid > .rv-scale:nth-child(5) { transition-delay: .27s; }
.grid > .rv:nth-child(6), .grid > .rv-l:nth-child(6), .grid > .rv-r:nth-child(6), .grid > .rv-scale:nth-child(6) { transition-delay: .33s; }
.grid > .rv:nth-child(7), .grid > .rv-l:nth-child(7), .grid > .rv-r:nth-child(7), .grid > .rv-scale:nth-child(7) { transition-delay: .39s; }
.grid > .rv:nth-child(8), .grid > .rv-l:nth-child(8), .grid > .rv-r:nth-child(8), .grid > .rv-scale:nth-child(8) { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) { .grid > * { transition-delay: 0s !important; } }

/* Hero entrance motion — plays once on load, above the fold so it's not scroll-triggered */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-in > div:first-child > .kicker { animation: heroUp .7s cubic-bezier(.2,.8,.2,1) .05s both; }
.hero-in > div:first-child > h1 { animation: heroUp .8s cubic-bezier(.2,.8,.2,1) .15s both; }
.hero-in > div:first-child > p.lead { animation: heroUp .8s cubic-bezier(.2,.8,.2,1) .28s both; }
.hero-in > div:first-child > .hero-actions { animation: heroUp .8s cubic-bezier(.2,.8,.2,1) .4s both; }
.hero-art { animation: heroUp 1s cubic-bezier(.2,.8,.2,1) .32s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-in > div:first-child > *, .hero-art { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Slow-drifting glow orbs behind the hero for a bit of next-gen atmosphere */
.hero { isolation: isolate; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.hero::before { width: 420px; height: 420px; background: radial-gradient(circle, rgba(55,182,217,.28), transparent 70%); top: -140px; right: 8%; animation: orbDrift1 14s ease-in-out infinite; }
.hero::after { width: 340px; height: 340px; background: radial-gradient(circle, rgba(217,164,65,.22), transparent 70%); bottom: -110px; left: 4%; animation: orbDrift2 17s ease-in-out infinite; }
@keyframes orbDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-24px, 26px) scale(1.08); } }
@keyframes orbDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px, -18px) scale(1.1); } }
.hero-in { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero::before, .hero::after { animation: none; } }

/* Shine sweep on primary buttons */
.cta, .btn-ghost { position: relative; overflow: hidden; }
.cta::before, .btn-ghost::before { content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); transition: left .6s ease; pointer-events: none; }
.cta:hover::before, .btn-ghost:hover::before { left: 130%; }
.cta:hover { transform: translateY(-2px) scale(1.015); }
@media (prefers-reduced-motion: reduce) { .cta::before, .btn-ghost::before { display: none; } }

/* Scroll progress bar */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--sea), var(--brass)); z-index: 999; }

/* Subtle 3D tilt on category tiles (desktop only, pointer:fine) */
@media (hover: hover) and (pointer: fine) {
  .grid.g3 { perspective: 1200px; }
  .tile { transition: transform .18s ease, box-shadow .22s ease; }
}

/* Growing underline on desktop nav links */
@media (min-width: 921px) {
  .nav-main > a { position: relative; }
  .nav-main > a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; background: var(--brass); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
  .nav-main > a:hover::after { transform: scaleX(1); }
}

/* Cursor-follow spotlight on dark header bands and dark sections */
.phero, .sec-dark, .hero { --mx: 50%; --my: 25%; }
.phero { position: relative; overflow: hidden; }
.phero > * { position: relative; z-index: 2; }
.phero::after, .sec-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1; background: radial-gradient(480px circle at var(--mx) var(--my), rgba(255,255,255,.12), transparent 62%); }
.sec-dark { position: relative; overflow: hidden; }
.sec-dark > .wrap { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .phero::after, .sec-dark::before { display: none; } }

/* Back-to-top button (markup injected by site.js) */
#back-to-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
#back-to-top.show { opacity: 1; transform: none; pointer-events: all; }
#back-to-top:hover { background: var(--sea-deep); }
@media (max-width: 640px) { #back-to-top { left: 16px; bottom: 16px; width: 42px; height: 42px; } }
@media (prefers-reduced-motion: reduce) { #back-to-top { transition: opacity .15s linear; } }

