/* =====================================================================
   SkyLine Drones — global stylesheet (DJI-style minimal design system)
   ===================================================================== */
:root {
  --ink: #111111;
  --ink-2: #1d1d1f;
  --gray: #6e6e73;
  --gray-2: #86868b;
  --light: #f5f5f7;
  --light-2: #fafafa;
  --line: #e6e6eb;
  --red: #e02b2b;
  --green: #1d8a4e;
  --amber: #b98208;
  --blue: #0066cc;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 12px 32px rgba(0, 0, 0, .10);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  -webkit-font-smoothing: antialiased; background: var(--white);
  font-size: 15px; line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

svg { width: 20px; height: 20px; }

/* ------------------------------ buttons ------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 4px; border: 1px solid transparent;
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: all .18s ease; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-light:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .65); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-blue { background: #5a31f4; }
.btn-blue:hover { background: #4a26d6; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; border-bottom: 1px solid transparent; }
.link-arrow:hover { border-color: currentColor; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .15s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ------------------------------ promo bar ----------------------------- */
.promo-bar { background: var(--ink); color: #fff; font-size: 12.5px; overflow: hidden; }
.promo-track {
  display: flex; gap: 56px; justify-content: center; padding: 8px 24px;
  animation: none;
}
.promo-track span { display: inline-flex; align-items: center; gap: 7px; color: #d7d7db; white-space: nowrap; }
.promo-track svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .promo-track span:nth-child(3) { display: none; } .promo-track { gap: 28px; } }
@media (max-width: 620px) { .promo-track span:nth-child(2) { display: none; } }

/* ------------------------------- header ------------------------------- */
#site-header { position: sticky; top: calc(-1 * var(--promo-h, 35px)); z-index: 90; }
.hd-main { background: #fff; border-bottom: 1px solid var(--line); }
.hd-row { display: flex; align-items: center; gap: 28px; height: 64px; }
.hd-burger { display: none; }
.hd-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hd-logo-glyph {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px;
  background: var(--ink); color: #fff;
}
.hd-logo-glyph svg { width: 24px; height: 24px; }
.hd-logo-text { font-size: 19px; font-weight: 700; letter-spacing: .06em; }
.hd-logo-text b { font-weight: 300; margin-left: 1px; }
.hd-nav { display: flex; gap: 26px; margin-right: auto; }
.hd-nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 6px 0; position: relative; }
.hd-nav a:hover { color: var(--gray); }
.hd-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -18px; height: 2px; background: var(--ink);
}
.hd-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; color: var(--ink); position: relative; transition: background .15s;
}
.icon-btn:hover { background: var(--light); }
.hd-search { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 20px; padding: 0 4px 0 14px; height: 38px; transition: border-color .15s, box-shadow .15s; }
.hd-search:focus-within { border-color: var(--ink); }
.hd-search input { border: none; outline: none; width: 170px; background: none; font-size: 14px; }
.hd-search .icon-btn { width: 32px; height: 32px; }
.hd-cart .cart-count {
  position: absolute; top: 1px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--red); color: #fff; border-radius: 9px; font-size: 11px; font-weight: 600;
  display: grid; place-items: center; line-height: 1;
}
.hd-account { position: relative; }
.hd-menu {
  position: absolute; top: calc(100% + 10px); right: -8px; background: #fff; min-width: 190px;
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(6px); transition: all .16s ease; z-index: 99;
}
.hd-account:hover .hd-menu, .hd-account:focus-within .hd-menu { opacity: 1; pointer-events: auto; transform: none; }
.hd-menu a, .hd-menu button {
  display: block; width: 100%; text-align: left; padding: 9px 12px; border-radius: 7px;
  font-size: 14px; border: none; background: none;
}
.hd-menu a:hover, .hd-menu button:hover { background: var(--light); }
.hd-menu-hi { padding: 9px 12px 5px; font-size: 13px; color: var(--gray); border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.hd-mobile { display: none; border-bottom: 1px solid var(--line); background: #fff; }
.hd-mobile.open { display: block; }
.hd-mobile nav { display: flex; flex-direction: column; padding: 10px 24px 16px; }
.hd-mobile nav a { padding: 11px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--light); }

@media (max-width: 1080px) {
  .hd-nav { display: none; }
  .hd-burger { display: inline-grid; }
  .hd-search input { width: 110px; }
}
@media (max-width: 640px) {
  .hd-search input { display: none; }
  .hd-row { gap: 12px; }
}

/* -------------------------------- hero -------------------------------- */
.hero { position: relative; background: #0b0b0d; overflow: hidden; }
.hero-slide { position: relative; display: none; }
.hero-slide.on { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-slide img { width: 100%; height: clamp(300px, 42vw, 560px); object-fit: cover; object-position: center 40%; }
.hero-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 max(6vw, 24px); color: #fff; max-width: 720px;
}
.hero-eyebrow { font-size: 14px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .85; margin-bottom: 14px; }
.hero-title { font-size: clamp(30px, 4.6vw, 54px); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
.hero-sub { font-size: clamp(15px, 1.6vw, 19px); opacity: .88; margin: 12px 0 26px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.hero-dots button {
  width: 28px; height: 3px; border-radius: 2px; border: none; background: rgba(255, 255, 255, .35); padding: 0; transition: background .2s;
}
.hero-dots button.on { background: #fff; }

/* ------------------------------ sections ------------------------------ */
.section { padding: clamp(44px, 6vw, 84px) 0; }
.section.tight { padding: 34px 0; }
.section.alt { background: var(--light); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(26px, 4vw, 46px); }
.sec-kicker { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-2); margin-bottom: 10px; }
.sec-title { font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; letter-spacing: -.02em; }
.sec-sub { color: var(--gray); margin-top: 10px; font-size: 16px; }

/* ----------------------------- product grid --------------------------- */
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .p-grid { grid-template-columns: 1fr; } }

.p-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.section.alt .p-card { border-color: transparent; }
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.p-media { position: relative; background: var(--light); aspect-ratio: 1 / .86; display: grid; place-items: center; padding: 12%; }
.p-media img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; transition: transform .25s ease; }
.p-card:hover .p-media img { transform: scale(1.045); }
.p-badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-size: 11.5px;
  font-weight: 600; letter-spacing: .04em; padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
}
.p-badge.sale { background: var(--red); }
.p-info { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-info h3 { font-size: 16.5px; font-weight: 600; }
.p-type { color: var(--gray); font-size: 13px; }
.p-rate { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--gray); }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; color: #d9d9de; }
.stars svg.on, .stars i.on svg { color: #f5a623; }
.stars i { display: inline-flex; font-style: normal; }
.stars i:not(.on) svg { color: #d9d9de; }
.p-price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.p-price .now { font-size: 19px; font-weight: 700; }
.p-price .was { color: var(--gray-2); font-size: 14px; }
.p-price .from { font-size: 11.5px; font-style: normal; color: var(--gray-2); order: -1; }
.p-price:has(.was) .from { display: none; }
.p-cta {
  margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.p-cta svg { width: 15px; height: 15px; transition: transform .15s; }
.p-card:hover .p-cta svg { transform: translateX(3px); }

/* ---------------------------- category tiles -------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / .78;
  background: var(--light); display: flex; align-items: flex-end; color: #fff;
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55)); }
.cat-body { position: relative; z-index: 2; padding: 22px; }
.cat-body h3 { font-size: 21px; color: #fff; }
.cat-body p { font-size: 13.5px; opacity: .9; margin: 4px 0 10px; }
.cat-body .link-arrow { color: #fff; font-size: 14px; }

/* ------------------------------ promo split --------------------------- */
.promo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .promo-split { grid-template-columns: 1fr; } }
.promo-wide {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: center; color: #fff;
}
.promo-wide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-wide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.05) 65%); }
.promo-wide .cat-body { max-width: 65%; }
.promo-wide .cat-body h3 { font-size: clamp(22px, 2.6vw, 32px); }
.promo-wide .cat-body p { font-size: 15px; max-width: 420px; }

/* ------------------------------ trust strip --------------------------- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.trust-item .t-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: var(--light); color: var(--ink); flex-shrink: 0; }
.trust-item .t-ic svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 15px; }
.trust-item p { font-size: 13px; color: var(--gray); margin-top: 3px; }

/* ------------------------------ breadcrumb ---------------------------- */
.crumbs { font-size: 13.5px; color: var(--gray-2); padding: 22px 0 6px; }
.crumbs a { color: var(--gray); }
.crumbs a:hover { color: var(--ink); }
.crumbs span[aria-current] { color: var(--ink); }

/* -------------------------------- footer ------------------------------ */
#site-footer { background: #101013; color: #c9c9ce; margin-top: 0; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr; gap: 36px; padding: 60px 24px 44px; }
@media (max-width: 1000px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.ft-col > a { display: block; padding: 5.5px 0; font-size: 14px; color: #c9c9ce; }
.ft-col > a:hover { color: #fff; }
.ft-brand .hd-logo { margin-bottom: 16px; }
.ft-tag { font-size: 13.5px; line-height: 1.6; max-width: 300px; }
.ft-contact { list-style: none; padding: 0; margin: 18px 0 0; font-size: 13.5px; display: grid; gap: 8px; }
.ft-contact li { display: flex; align-items: center; gap: 10px; }
.ft-contact svg { width: 16px; height: 16px; color: #7c7c84; flex-shrink: 0; }
.ft-news p { font-size: 13.5px; }
.ft-sub { display: flex; gap: 8px; margin-top: 14px; }
.ft-sub input {
  flex: 1; min-width: 0; background: #1b1b1f; border: 1px solid #333338; color: #fff;
  border-radius: 4px; padding: 10px 14px; outline: none;
}
.ft-sub input:focus { border-color: #55555c; }
.ft-sub .btn { padding: 10px 18px; }
.ft-baseline { border-top: 1px solid #26262b; }
.ft-baseline-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; padding-bottom: 10px; flex-wrap: wrap; }
.ft-copy { display: flex; align-items: center; gap: 18px; font-size: 13px; color: #86868b; flex-wrap: wrap; }
.ft-copy a { color: #a9a9af; }
.ft-copy a:hover { color: #fff; }
.ft-legal { padding: 8px 24px 30px; }
.ft-legal p { font-size: 12px; color: #6f6f76; line-height: 1.6; max-width: 960px; }

.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pi {
  height: 26px; min-width: 42px; padding: 0 8px; border-radius: 4px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 3px;
  font-size: 10px; font-weight: 800; font-style: normal; letter-spacing: .02em;
}
.pi-mc i { width: 13px; height: 13px; border-radius: 50%; background: #eb001b; display: inline-block; }
.pi-mc i + i { background: #f79e1b; margin-left: -6px; mix-blend-mode: hard-light; }
.pi-visa { color: #1a1f71; }
.pi-amex { color: #006fcf; background: #fff; }
.pi-disc { color: #e65000; font-size: 8.5px; }
.pi-paypal { color: #003087; font-weight: 800; }
.pi-paypal b { color: #009cde; font-weight: 800; }
.pi-stripe b { color: #635bff; font-weight: 800; font-style: italic; }

/* ------------------------------- toast -------------------------------- */
#toast {
  position: fixed; bottom: 26px; left: 26px; z-index: 300; background: var(--ink); color: #fff;
  border-radius: 10px; padding: 15px 18px; font-size: 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px; max-width: 380px;
  opacity: 0; transform: translateY(14px); pointer-events: none; transition: all .25s ease;
}
#toast.show { opacity: 1; transform: none; pointer-events: auto; }
.toast-link { color: #7db4ff; font-weight: 600; white-space: nowrap; }

/* ------------------------------ auth pages ---------------------------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 64px); }
@media (max-width: 900px) { .auth-wrap { grid-template-columns: 1fr; } .auth-side { display: none; } }
.auth-side { position: relative; background: #0b0b0d; display: flex; align-items: center; }
.auth-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.auth-side-txt { position: relative; z-index: 2; color: #fff; padding: 60px; max-width: 520px; }
.auth-side-txt h2 { font-size: 34px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; }
.auth-side-txt p { opacity: .85; font-size: 16px; }
.auth-side-txt::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), transparent 70%); z-index: 1; }
.auth-form-col { display: flex; justify-content: center; padding: 56px 24px; }
.auth-box { width: 100%; max-width: 420px; }
.auth-box h1 { font-size: 28px; letter-spacing: -.02em; }
.auth-box .sub { color: var(--gray); margin: 8px 0 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px 14px; outline: none;
  transition: border-color .15s, box-shadow .15s; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,17,.07); }
.field .err { color: var(--red); font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid input { border-color: var(--red); }
.field.invalid .err { display: block; }
.auth-alt { text-align: center; margin-top: 22px; font-size: 14px; color: var(--gray); }
.auth-alt a { color: var(--ink); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.auth-note {
  margin-top: 26px; font-size: 12.5px; color: var(--gray-2); background: var(--light);
  padding: 12px 14px; border-radius: 8px; display: flex; gap: 9px; align-items: flex-start;
}
.auth-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.check-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-2); margin: 4px 0 18px; }
.check-row input { width: 16px; height: 16px; accent-color: var(--ink); }
.divider { display: flex; align-items: center; gap: 14px; color: var(--gray-2); font-size: 12.5px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ------------------------------ cart page ----------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }
@media (max-width: 1000px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-item {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 18px; padding: 20px 0;
  border-bottom: 1px solid var(--line); align-items: center;
}
.cart-item .ci-img { background: var(--light); border-radius: 10px; padding: 14px; }
.cart-item .ci-img img { width: 100%; height: auto; }
.cart-item h3 { font-size: 16px; }
.ci-var { color: var(--gray); font-size: 13px; margin-top: 3px; }
.ci-price { font-weight: 600; margin-top: 6px; }
.ci-right { text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
}
.qty button { width: 34px; height: 36px; border: none; background: #fff; font-size: 17px; }
.qty button:hover { background: var(--light); }
.qty input { width: 44px; border: none; text-align: center; font-weight: 500; outline: none; height: 36px; }
.ci-remove { background: none; border: none; color: var(--gray-2); display: inline-flex; gap: 6px; align-items: center; font-size: 13px; }
.ci-remove:hover { color: var(--red); }
.ci-remove svg { width: 15px; height: 15px; }
.summary {
  background: var(--light); border-radius: var(--radius); padding: 26px; position: sticky; top: 92px;
}
.summary h3 { font-size: 18px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 7px 0; color: var(--ink-2); }
.sum-row.total { border-top: 1px solid #d6d6db; margin-top: 10px; padding-top: 16px; font-size: 18px; font-weight: 700; color: var(--ink); }
.sum-note { font-size: 12.5px; color: var(--gray-2); margin-top: 6px; }
.summary .btn { margin-top: 18px; }
.sum-perks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; font-size: 13px; color: var(--gray); }
.sum-perks li { display: flex; gap: 8px; align-items: center; }
.sum-perks svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .ico { font-size: 44px; margin-bottom: 10px; }
.empty-state h2 { font-size: 24px; }
.empty-state p { color: var(--gray); margin: 10px 0 24px; }

/* ------------------------------ checkout ------------------------------ */
.co-layout { display: grid; grid-template-columns: 1fr 400px; gap: 44px; align-items: start; }
@media (max-width: 1000px) { .co-layout { grid-template-columns: 1fr; } }
.steps { display: flex; gap: 8px; align-items: center; margin: 8px 0 30px; font-size: 13px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 8px; color: var(--gray-2); }
.step .n { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); font-size: 12px; font-weight: 600; }
.step.on { color: var(--ink); font-weight: 600; }
.step.on .n { background: var(--ink); border-color: var(--ink); color: #fff; }
.step.done { color: var(--green); }
.step.done .n { background: var(--green); border-color: var(--green); color: #fff; }
.step-sep { width: 26px; height: 1px; background: var(--line); }
.co-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.co-block > h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.co-block > h3 svg { width: 19px; height: 19px; color: var(--gray); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 16px; }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.ship-opt {
  display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 16px 18px; cursor: pointer; transition: border-color .15s; margin-bottom: 12px;
}
.ship-opt:hover { border-color: #b9b9c0; }
.ship-opt input { accent-color: var(--ink); width: 17px; height: 17px; }
.ship-opt.on { border-color: var(--ink); }
.ship-opt .so-main { flex: 1; }
.ship-opt b { font-weight: 600; display: block; font-size: 14.5px; }
.ship-opt span.so-sub { font-size: 13px; color: var(--gray); }
.ship-opt .so-price { font-weight: 600; font-size: 15px; }
.co-items { display: grid; gap: 14px; }
.co-item { display: flex; gap: 14px; align-items: center; }
.co-item img { width: 62px; border-radius: 8px; background: var(--light); padding: 8px; }
.co-item .co-n { font-size: 14px; font-weight: 500; }
.co-item .co-v { font-size: 12.5px; color: var(--gray); }
.co-item .co-p { margin-left: auto; font-size: 14px; font-weight: 600; white-space: nowrap; }

/* ------------------------------- payment ------------------------------ */
.pay-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pay-tab {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 16px; display: flex;
  align-items: center; justify-content: center; gap: 10px; font-weight: 600; background: #fff;
}
.pay-tab.on { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.pay-tab .pp-mark { color: #003087; }
.pay-tab .pp-mark b { color: #009cde; }
.pay-tab .stripe-mark { color: #635bff; font-style: italic; font-weight: 800; }
.card-wrap {
  border: 1px solid var(--line); border-bottom: 2px solid var(--ink); border-radius: 10px 10px 0 0;
  padding: 18px; display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, #232833, #3a4252); color: #fff; margin-bottom: 18px;
}
.card-wrap .cw-num { font-size: 17px; letter-spacing: .14em; font-family: 'SF Mono', Consolas, monospace; }
.card-wrap .cw-meta { font-size: 12px; opacity: .8; margin-top: 8px; display: flex; gap: 18px; }
.card-wrap .pi { box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--gray-2); margin-top: 16px; }
.secure-note svg { width: 14px; height: 14px; }
.pp-panel { text-align: center; padding: 30px 20px; }
.pp-panel h3 { font-size: 20px; margin-bottom: 8px; }
.pp-panel p { color: var(--gray); margin-bottom: 24px; }
.pp-btn {
  display: inline-flex; align-items: center; gap: 4px; background: #ffc439; border: 1px solid #f2ba36;
  border-radius: 24px; padding: 13px 30px; font-size: 16px; font-weight: 600; color: #0c0c0d;
  transition: filter .15s;
}
.pp-btn:hover { filter: brightness(.96); }
.pp-btn i { font-style: italic; color: #003087; font-weight: 800; }
.pp-btn i b { color: #009cde; }

/* ---------------------------- order success --------------------------- */
.success-hero { text-align: center; padding: clamp(50px, 8vw, 90px) 24px 30px; }
.success-hero .big-check {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; color: #fff;
}
.success-hero .big-check svg { width: 38px; height: 38px; }
.success-hero h1 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; }
.success-hero p { color: var(--gray); margin-top: 12px; }
.order-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; text-align: left; }
@media (max-width: 900px) { .order-meta-grid { grid-template-columns: 1fr 1fr; } }
.om-card { background: var(--light); border-radius: 10px; padding: 18px; }
.om-card .k { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-2); font-weight: 600; }
.om-card .v { font-weight: 600; margin-top: 6px; font-size: 15px; }

/* ------------------------------- timeline ----------------------------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-step { position: relative; padding: 0 0 26px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -34px; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line); display: grid; place-items: center; color: #fff;
}
.tl-step.done .tl-dot { background: var(--green); border-color: var(--green); }
.tl-step.done .tl-dot svg { width: 12px; height: 12px; }
.tl-step.current .tl-dot { border-color: var(--ink); }
.tl-step.current .tl-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.tl-title { font-weight: 600; font-size: 15px; }
.tl-step.todo .tl-title { color: var(--gray-2); font-weight: 500; }
.tl-time { font-size: 13px; color: var(--gray-2); margin-top: 2px; }
.tl-desc { font-size: 13.5px; color: var(--gray); margin-top: 3px; }

/* ------------------------------ account ------------------------------- */
.acct-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .acct-layout { grid-template-columns: 1fr; } }
.acct-side { background: var(--light); border-radius: var(--radius); overflow: hidden; }
.acct-user { padding: 22px; border-bottom: 1px solid #dcdce1; display: flex; gap: 12px; align-items: center; }
.acct-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 17px; flex-shrink: 0;
}
.acct-user b { display: block; font-size: 14.5px; }
.acct-user span { font-size: 12.5px; color: var(--gray); word-break: break-all; }
.acct-nav a {
  display: flex; align-items: center; gap: 12px; padding: 13px 22px; font-size: 14.5px; font-weight: 500;
  border-left: 3px solid transparent; color: var(--ink-2);
}
.acct-nav a svg { width: 17px; height: 17px; color: var(--gray); }
.acct-nav a:hover { background: #ececf0; }
.acct-nav a.active { border-left-color: var(--ink); background: #fff; font-weight: 600; }
.acct-main h1 { font-size: 26px; letter-spacing: -.02em; margin-bottom: 6px; }
.acct-main .lead { color: var(--gray); margin-bottom: 30px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
@media (max-width: 700px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; display: flex; gap: 14px; align-items: center; }
.stat-card .t-ic { background: var(--light); }
.stat-card b { font-size: 18px; display: block; }
.stat-card span { font-size: 13px; color: var(--gray); }

.order-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.order-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-2); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.order-table td { padding: 16px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.order-table tr:hover td { background: var(--light-2); }
.order-table a.od-link { font-weight: 600; color: var(--blue); }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.status-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-pill.proc { background: #fdf3e2; color: var(--amber); }
.status-pill.ship { background: #e8f1fd; color: var(--blue); }
.status-pill.ok { background: #e7f5ee; color: var(--green); }

/* ------------------------------ tracking ------------------------------ */
.track-hero { background: linear-gradient(180deg, #101013, #23232a); color: #fff; padding: clamp(44px, 6vw, 70px) 24px; text-align: center; }
.track-hero h1 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.track-hero p { color: #b9b9c0; margin-top: 10px; }
.track-form { display: flex; gap: 12px; max-width: 620px; margin: 28px auto 0; }
.track-form input { flex: 1; border-radius: 6px; border: none; padding: 13px 16px; outline: none; font-size: 15px; }
@media (max-width: 560px) { .track-form { flex-direction: column; } }
.track-demo { margin-top: 16px; font-size: 13px; color: #86868b; }
.track-demo a { color: #7db4ff; text-decoration: underline; text-underline-offset: 3px; }
.track-result { max-width: 760px; margin: -30px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; }
.track-error { max-width: 620px; margin: -30px auto 0; background: #fdf0f0; border: 1px solid #f3c8c8; color: #a33; border-radius: var(--radius); padding: 20px 24px; position: relative; }
.carrier-chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; background: var(--light); padding: 7px 14px; border-radius: 8px; }
.carrier-chip svg { width: 16px; height: 16px; }

/* ------------------------------ product ------------------------------- */
.pd-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 44px; align-items: start; }
@media (max-width: 960px) { .pd-layout { grid-template-columns: 1fr; } }
.pd-gallery { display: grid; gap: 14px; }
.pd-main-img { background: var(--light); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / .9; display: grid; place-items: center; }
.pd-main-img img { max-height: 100%; width: auto; object-fit: contain; }
.pd-thumbs { display: flex; gap: 12px; }
.pd-thumbs button {
  width: 76px; height: 68px; border-radius: 10px; background: var(--light); border: 2px solid transparent;
  padding: 8px; display: grid; place-items: center;
}
.pd-thumbs button.on { border-color: var(--ink); }
.pd-thumbs img { max-height: 100%; }
.pd-badge-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.chip { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 4px; background: var(--ink); color: #fff; }
.chip.sale { background: var(--red); }
.chip.stock { background: #e7f5ee; color: var(--green); }
.chip.low { background: #fdf3e2; color: var(--amber); }
.pd-info h1 { font-size: clamp(24px, 2.8vw, 33px); letter-spacing: -.02em; }
.pd-type-line { color: var(--gray); margin-top: 6px; font-size: 15.5px; }
.pd-rate { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13.5px; color: var(--gray); }
.pd-rate a { color: var(--blue); }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 4px; }
.pd-price-row .now { font-size: 32px; font-weight: 700; }
.pd-price-row .was { color: var(--gray-2); font-size: 18px; }
.pd-price-row .save { color: var(--red); font-weight: 600; font-size: 14px; }
.pd-or { font-size: 13px; color: var(--gray-2); }
.pd-variants { margin: 22px 0; }
.pd-variants .lbl { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; color: var(--ink-2); }
.variant {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 13px 16px; cursor: pointer; margin-bottom: 10px; transition: border-color .15s; font-size: 14px;
}
.variant:hover { border-color: #b9b9c0; }
.variant.on { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.variant .v-price { font-weight: 600; white-space: nowrap; }
.variant .v-price s { color: var(--gray-2); font-weight: 400; margin-right: 7px; font-size: 13px; }
.pd-buy-row { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
.pd-buy-row .qty { height: 48px; }
.pd-buy-row .qty button { height: 46px; }
.pd-buy-row .qty input { height: 46px; }
.pd-buy-row .btn { flex: 1; min-width: 180px; padding: 13px 20px; }
.pd-trust { display: grid; gap: 9px; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; font-size: 13.5px; color: var(--ink-2); margin-top: 6px; }
.pd-trust li { display: flex; gap: 10px; align-items: center; list-style: none; }
.pd-trust svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.pd-highlights { background: var(--light); border-radius: var(--radius); padding: 28px 30px; }
.pd-highlights h3, .pd-specs h3, .pd-box h3 { font-size: 19px; margin-bottom: 18px; }
.pd-highlights ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.pd-highlights li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.pd-highlights li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--gray); width: 38%; }
.box-list { list-style: none; padding: 0; display: grid; gap: 9px; font-size: 14.5px; color: var(--ink-2); }
.review { border-bottom: 1px solid var(--line); padding: 20px 0; }
.review:last-child { border-bottom: none; }
.review .r-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review .r-name { font-weight: 600; font-size: 14.5px; }
.review .r-date { color: var(--gray-2); font-size: 13px; }
.review .r-title { font-weight: 600; margin-bottom: 5px; }
.review p { color: var(--ink-2); font-size: 14.5px; }
.pd-sec { padding-top: clamp(34px, 5vw, 56px); }

/* ------------------------------- support ------------------------------ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px;
  font-weight: 600; display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.faq-q svg { width: 18px; height: 18px; color: var(--gray); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a > div { padding: 0 0 20px; color: var(--ink-2); font-size: 14.5px; max-width: 760px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .support-grid { grid-template-columns: 1fr; } }
.sup-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.sup-card .t-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--light); display: grid; place-items: center; margin-bottom: 16px; }
.sup-card .t-ic svg { width: 22px; height: 22px; }
.sup-card h3 { font-size: 17px; margin-bottom: 8px; }
.sup-card p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.policy-article { max-width: 780px; margin: 0 auto; }
.policy-article h2 { font-size: 21px; margin: 34px 0 12px; }
.policy-article p, .policy-article li { color: var(--ink-2); font-size: 15px; }
.policy-article ul { padding-left: 22px; display: grid; gap: 8px; margin: 12px 0; }

/* -------------------------------- about ------------------------------- */
.about-hero { position: relative; min-height: 380px; display: grid; place-items: center; text-align: center; color: #fff; background: #0b0b0d; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.about-hero > div { position: relative; z-index: 2; padding: 60px 24px; max-width: 720px; }
.about-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.02em; }
.about-hero p { color: #d5d5da; margin-top: 14px; font-size: 17px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 800px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi b { font-size: clamp(30px, 4vw, 42px); font-weight: 700; letter-spacing: -.02em; display: block; }
.kpi span { color: var(--gray); font-size: 14px; }

/* ------------------------------- misc --------------------------------- */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 20px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 20px; } .mb-4 { margin-bottom: 40px; }
.text-c { text-align: center; }
.note { font-size: 13px; color: var(--gray-2); }
.banner-note { font-size: 12.5px; color: var(--gray-2); margin-top: 26px; text-align: center; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.filter-pill {
  border: 1px solid var(--line); background: #fff; border-radius: 22px; padding: 9px 20px;
  font-size: 14px; font-weight: 500; transition: all .15s;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.result-count { text-align: center; color: var(--gray-2); font-size: 13.5px; margin-bottom: 22px; }
.hero-fallback { background: linear-gradient(120deg, #17181c, #2b2e36); }

/* ---------------------------- story page ------------------------------ */
.story-hero { position: relative; height: clamp(440px, 78vh, 760px); overflow: hidden; background: #0b0b0d; }
.story-hero-bg { position: absolute; inset: -12% 0; will-change: transform; }
.story-hero-bg img, .story-hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
.story-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.12) 62%), linear-gradient(180deg, rgba(0,0,0,.25), transparent 34%, rgba(0,0,0,.42));
}
.story-hero-copy { position: absolute; left: 0; right: 0; bottom: clamp(48px, 10vh, 110px); z-index: 2; max-width: 860px; will-change: transform, opacity; }
.story-hero-copy h1 { font-size: clamp(38px, 5.8vw, 72px); font-weight: 700; letter-spacing: -.025em; line-height: 1.04; color: #fff; }
.story-tagline { font-size: clamp(16px, 2vw, 22px); color: #e3e3e8; margin: 14px 0 26px; }
.story-intro { max-width: 860px; }
.story-intro p { font-size: clamp(17px, 1.9vw, 21px); line-height: 1.65; color: var(--ink-2); text-align: center; }
.story-stats { background: #101013; color: #fff; padding: 44px 0; }
.story-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 800px) { .story-stats-row { grid-template-columns: 1fr 1fr; } }
.ss { text-align: center; }
.ss b { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -.02em; display: block; }
.ss span { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: #9a9aa0; }
.story-film-full { position: relative; background: #000; overflow: hidden; }
.story-film-full video { display: block; width: 100%; aspect-ratio: 2 / 1; background: #000; }
.story-film-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px clamp(24px, 5vw, 72px) 26px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
}
.story-film-cap .fct b { display: block; font-size: clamp(17px, 2vw, 22px); }
.story-film-cap .fct span { font-size: 13px; color: #c9c9ce; }
.story-film-cap .fcs {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.45); border-radius: 20px;
  padding: 9px 16px; cursor: pointer; backdrop-filter: blur(6px); white-space: nowrap;
}
.story-sec {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(28px, 4vw, 52px) 0; border-bottom: 1px solid #dcdce1;
}
.story-sec:last-child { border-bottom: none; }
.story-sec.flip .story-sec-media { order: 2; }
.story-sec-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: #e8e8ec; }
.story-sec-media img { width: 100%; height: 100%; object-fit: cover; }
.story-sec-copy h3 { font-size: clamp(21px, 2.4vw, 28px); letter-spacing: -.015em; margin-bottom: 14px; }
.story-sec-copy p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); }
@media (max-width: 860px) {
  .story-sec { grid-template-columns: 1fr; }
  .story-sec.flip .story-sec-media { order: 0; }
}
.story-cta {
  background: linear-gradient(120deg, #17181c, #2b2e36); color: #fff; text-align: center;
  padding: clamp(56px, 8vw, 96px) 24px;
}
.story-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; }
.story-cta p { color: #c9c9ce; margin: 14px 0 30px; }

/* ------------------------------ films --------------------------------- */
.film-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
@media (max-width: 900px) { .film-grid { grid-template-columns: 1fr; } }
.film-card {
  position: relative; border-radius: 14px; overflow: hidden; background: #000; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.14); border: none; padding: 0; display: block; text-align: left; width: 100%;
}
.film-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.film-card.major video { aspect-ratio: 16 / 9; }
.film-card.minor { height: 100%; min-height: 220px; }
.film-card.minor video { aspect-ratio: 16 / 10.5; }
.film-card .film-play {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45)); transition: opacity .2s;
}
.film-card .film-play i {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.75); backdrop-filter: blur(6px);
  transition: transform .18s ease;
}
.film-card .film-play svg { width: 22px; height: 22px; margin-left: 3px; }
.film-card:hover .film-play i { transform: scale(1.08); }
.film-card .film-meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 20px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62)); pointer-events: none;
}
.film-card .film-meta b { display: block; font-size: 16px; }
.film-card .film-meta span { font-size: 12.5px; color: #c9c9ce; }
.film-side { display: grid; gap: 20px; grid-template-rows: 1fr 1fr; }

/* --------------------------- brand section ---------------------------- */
.brand-band { position: relative; border-radius: 18px; overflow: hidden; color: #fff; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px); background: #0b0b0d; }
.brand-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.brand-band > * { position: relative; z-index: 2; }
.brand-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.1) 75%); z-index: 1; }
.brand-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.02em; max-width: 560px; }
.brand-band p { color: #d5d5da; max-width: 560px; margin: 16px 0 26px; font-size: 16px; line-height: 1.7; }

/* ---------------- official-style full-width banners ------------------- */
.pb { position: relative; display: block; overflow: hidden; background: #0b0b0d; min-height: clamp(380px, 58vh, 620px); }
.pb-img { position: absolute; inset: 0; }
.pb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pb:hover .pb-img img { transform: scale(1.035); }
.pb-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.04) 58%); }
.pb-copy { position: relative; z-index: 2; min-height: clamp(380px, 58vh, 620px); display: flex; flex-direction: column; justify-content: center; max-width: 620px; color: #fff; }
.pb-copy .cat { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: #d4d4da; }
.pb-copy h2 { font-size: clamp(30px, 4.4vw, 54px); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin: 12px 0 8px; color: #fff; }
.pb-copy .tag { font-size: clamp(15px, 1.7vw, 18px); color: #d9d9de; }
.pb-copy .tag b { color: #fff; font-weight: 600; }
.pb--light { background: #f5f5f7; }
.pb--light .pb-scrim { background: none; }
.pb--light .pb-copy { color: var(--ink); }
.pb--light .pb-copy h2 { color: var(--ink); }
.pb--light .pb-copy .cat { color: var(--gray); }
.pb--light .pb-copy .tag { color: var(--gray); }
.pb--light .dji-link { color: var(--ink); }
.pb-links { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }

/* official text link (white or dark, underline + arrow) */
.dji-link { display: inline-flex; align-items: center; gap: 7px; font-size: 15.5px; font-weight: 500; color: #fff; padding: 2px 0; }
.dji-link u { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.dji-link svg { width: 15px; height: 15px; transition: transform .15s; }
.dji-link:hover svg { transform: translateX(3px); }
.dji-link.dark { color: var(--ink); }

/* ambient full-width video banner */
.ambient { position: relative; overflow: hidden; background: #000; }
.ambient video { width: 100%; aspect-ratio: 21 / 9; min-height: 320px; object-fit: cover; display: block; }
.ambient .ab-copy { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 24px; }
.ambient::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.30); z-index: 1; }
.ambient .ab-copy .cat { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: #d4d4da; }
.ambient .ab-copy h2 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -.02em; margin: 10px 0 4px; color: #fff; }
.ambient .ab-copy p { color: #d9d9de; font-size: clamp(14px, 1.6vw, 17px); }
.ambient .pb-links { justify-content: center; }

/* films row — minimal official style */
.film2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .film2-grid { grid-template-columns: 1fr; } }
.film2 { position: relative; border-radius: 12px; overflow: hidden; background: #000; border: none; padding: 0; cursor: pointer; display: block; width: 100%; text-align: left; }
.film2 video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .6s ease; }
.film2:hover video { transform: scale(1.04); }
.film2 .f-cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 36px 18px 16px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.68)); }
.film2 .f-cap b { display: block; font-size: 15px; font-weight: 600; }
.film2 .f-cap span { font-size: 12px; color: #c9c9ce; }
.film2 .f-play {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.35); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.5);
}
.film2 .f-play svg { width: 15px; height: 15px; margin-left: 2px; }
.film2 .f-sound { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11px; letter-spacing: .12em; color: #fff; text-transform: uppercase; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.4); border-radius: 14px; padding: 5px 12px; backdrop-filter: blur(4px); }

/* editorial cards (innovation / brand) */
.ed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .ed-grid { grid-template-columns: 1fr; } }
.ed-card { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; background: #0b0b0d; }
.ed-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ed-card:hover img { transform: scale(1.035); }
.ed-card .f-cap { position: absolute; inset: auto 0 0 0; padding: 46px 24px 22px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.72)); z-index: 2; }
.ed-card .cat { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: #d4d4da; display: block; margin-bottom: 8px; }
.ed-card .f-cap b { font-size: clamp(19px, 2.2vw, 26px); display: block; font-weight: 700; letter-spacing: -.01em; }
.ed-card .f-cap span { font-size: 14px; color: #d9d9de; display: block; margin-top: 6px; }

/* service strip */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { display: flex; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; color: inherit; transition: border-color .15s, box-shadow .2s; }
.svc-card:hover { border-color: var(--ink); box-shadow: var(--shadow); }
.svc-card .t-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--light); flex-shrink: 0; }
.svc-card b { display: block; font-size: 15px; }
.svc-card span { font-size: 13px; color: var(--gray); }

/* ------------------------- scroll reveal ------------------------------ */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rv.inview { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; } .rv-d3 { transition-delay: .3s; }
.rv-media img, .rv-media video { transform: scale(1.08); transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.rv-media.inview img, .rv-media.inview video { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .rv, .rv-media img, .rv-media video { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --------------------- cinema hero (scroll-driven) -------------------- */
.cinema { position: relative; height: 200vh; background: #0b0b0d; }
.cinema-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.cine-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.cine-slide.active { pointer-events: auto; }
.cine-bg { position: absolute; inset: 0; }
.cine-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; will-change: transform; }
.cine-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.06) 60%),
              linear-gradient(180deg, rgba(0,0,0,.28), transparent 32%, transparent 66%, rgba(0,0,0,.5));
}
.cine-copy {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: center; color: #fff; max-width: 800px;
}
.cine-kicker { font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #ececf0; }
.cine-title { font-size: clamp(40px, 6.2vw, 76px); font-weight: 700; letter-spacing: -.025em; line-height: 1.02; margin-top: 14px; }
.cine-sub { font-size: clamp(15px, 1.7vw, 19px); color: #d9d9de; margin: 16px 0 24px; max-width: 540px; }
.cine-stats { display: flex; gap: 38px; margin-bottom: 30px; flex-wrap: wrap; }
.cine-stats span b { display: block; font-size: 25px; font-weight: 700; letter-spacing: -.01em; }
.cine-stats span i { font-style: normal; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #b9b9c0; margin-top: 3px; display: block; }
.cine-copy > * { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.cine-slide.active .cine-copy > * { opacity: 1; transform: none; }
.cine-slide.active .cine-copy > *:nth-child(2) { transition-delay: .07s; }
.cine-slide.active .cine-copy > *:nth-child(3) { transition-delay: .14s; }
.cine-slide.active .cine-copy > *:nth-child(4) { transition-delay: .21s; }
.cine-slide.active .cine-copy > *:nth-child(5) { transition-delay: .28s; }
.cine-hud {
  position: absolute; right: 38px; top: 50%; transform: translateY(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 16px; color: #fff;
}
.cine-count { font-size: 13px; letter-spacing: .12em; font-variant-numeric: tabular-nums; }
.cine-count em { font-style: normal; color: #9a9aa0; }
.cine-bar { width: 3px; height: 128px; border-radius: 2px; background: rgba(255,255,255,.22); overflow: hidden; }
.cine-bar i { display: block; width: 100%; height: 100%; background: #fff; transform-origin: top; transform: scaleY(0); }
.cine-scrollhint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 9px; color: #fff;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
}
.cine-mouse { width: 22px; height: 35px; border: 1.5px solid rgba(255,255,255,.85); border-radius: 12px; position: relative; }
.cine-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 2px; background: #fff; animation: cineWheel 1.7s ease-out infinite;
}
@keyframes cineWheel { 0% { transform: translateY(0); opacity: 1; } 75% { transform: translateY(11px); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 760px) {
  .cinema { height: 180vh; }
  .cine-hud { display: none; }
  .cine-stats { gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cinema { height: auto; }
  .cinema-sticky { position: relative; height: auto; }
  .cine-slide { position: relative; opacity: 1 !important; height: 100vh; }
  .cine-copy > * { opacity: 1 !important; transform: none !important; transition: none; }
  .cine-scrollhint { display: none; }
}

/* --------------------------- live chat widget -------------------------- */
#chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 350; font-size: 14px; }
.chat-fab {
  position: relative; display: flex; align-items: center; gap: 9px; border: none; cursor: pointer;
  background: var(--ink); color: #fff; border-radius: 30px; padding: 13px 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28); transition: transform .18s ease, background .18s;
}
.chat-fab:hover { transform: translateY(-2px); background: #2a2a2e; }
.chat-fab.hide { display: none; }
.chat-fab-ic svg { width: 20px; height: 20px; }
.chat-fab-txt { font-weight: 600; font-size: 14.5px; }
.chat-fab-dot { position: absolute; top: 7px; left: 32px; width: 10px; height: 10px; border-radius: 50%; background: #34c759; border: 2px solid #fff; }
.chat-panel {
  position: absolute; right: 0; bottom: 0; width: 352px; max-width: calc(100vw - 32px);
  height: 480px; max-height: calc(100vh - 48px); background: #fff; border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.30); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none; transition: all .22s ease;
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head {
  background: var(--ink); color: #fff; padding: 14px 16px; display: flex;
  align-items: center; justify-content: space-between;
}
.chat-agent { display: flex; align-items: center; gap: 11px; }
.chat-agent b { display: block; font-size: 14px; }
.chat-status { font-style: normal; font-size: 12px; color: #b9b9c0; display: flex; align-items: center; gap: 6px; }
.chat-status u { width: 7px; height: 7px; border-radius: 50%; background: #34c759; text-decoration: none; }
.chat-avatar, .cm-av {
  width: 36px; height: 36px; border-radius: 50%; background: #3a3a40; color: #fff;
  display: grid; place-items: center; font-weight: 600; flex-shrink: 0;
}
.cm-av { width: 26px; height: 26px; font-size: 12px; background: var(--ink); }
.chat-close { background: none; border: none; color: #c9c9ce; cursor: pointer; padding: 6px; }
.chat-close:hover { color: #fff; }
.chat-close svg { width: 18px; height: 18px; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px 14px; background: var(--light-2); display: flex; flex-direction: column; gap: 10px; }
.cm { display: flex; gap: 8px; align-items: flex-end; }
.cm.me { justify-content: flex-end; }
.cm-b {
  background: #fff; border-radius: 12px 12px 12px 4px; padding: 10px 13px;
  max-width: 82%; line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,.06); font-size: 13.5px;
}
.cm.me .cm-b { background: var(--ink); color: #fff; border-radius: 12px 12px 4px 12px; }
.cm-b a { color: var(--blue); text-decoration: underline; }
.cm-b.typing { display: flex; gap: 4px; padding: 13px 15px; }
.cm-b.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9a9aa0; animation: chatTyp 1.2s infinite; }
.cm-b.typing i:nth-child(2) { animation-delay: .18s; }
.cm-b.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes chatTyp { 0%, 60%, 100% { transform: none; opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-quick { display: flex; gap: 7px; flex-wrap: wrap; padding: 10px 12px 4px; background: #fff; }
.chat-quick button {
  border: 1px solid var(--line); background: var(--light); border-radius: 15px;
  padding: 6px 12px; font-size: 12.5px; cursor: pointer; transition: all .15s;
}
.chat-quick button:hover { border-color: var(--ink); }
.chat-input { display: flex; gap: 8px; padding: 10px 12px; background: #fff; }
.chat-input input {
  flex: 1; border: 1px solid var(--line); border-radius: 20px; padding: 10px 16px; outline: none; font-size: 13.5px;
}
.chat-input input:focus { border-color: var(--ink); }
.chat-input button {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--ink);
  color: #fff; display: grid; place-items: center; cursor: pointer; flex-shrink: 0;
}
.chat-input button:hover { background: #2a2a2e; }
.chat-input button svg { width: 17px; height: 17px; margin: 0 0 0 2px; }
.chat-foot { font-size: 10.5px; color: var(--gray-2); text-align: center; padding: 6px 0 9px; background: #fff; }
@media (max-width: 480px) {
  #chat-widget { right: 14px; bottom: 14px; }
  .chat-fab { padding: 12px 18px; }
  .chat-panel { width: calc(100vw - 28px); right: 0; height: 70vh; }
}

@media print { .promo-bar, #site-header, #site-footer, #toast, #chat-widget { display: none !important; } }
