/* ============================================================
   TREND & BRAND — Premium Trade
   Editorial · Refined · Globally professional
   ============================================================ */

:root {
  /* Palette — refined gold on near-black with warm cream */
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-4: #1c1c1c;
  --ink: #f5f1e8;
  --ink-soft: rgba(245, 241, 232, 0.7);
  --ink-mute: rgba(245, 241, 232, 0.45);
  --ink-faint: rgba(245, 241, 232, 0.15);

  --gold: #d4a857;
  --gold-bright: #e8c47a;
  --gold-deep: #8b6914;
  --gold-soft: rgba(212, 168, 87, 0.14);

  --accent: #c2a05c;
  --line: rgba(245, 241, 232, 0.08);
  --line-strong: rgba(212, 168, 87, 0.25);

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --wrap: 1280px;
  --pad: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* Noise overlay */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 10000; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212, 168, 87, 0.5);
}

/* Custom cursor */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border 0.3s var(--ease);
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--gold);
}
.cursor.hover {
  width: 56px; height: 56px;
  border-color: var(--gold-bright);
  background: rgba(212, 168, 87, 0.08);
}
@media (max-width: 1024px), (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: var(--gold);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 100;
}
.announce-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 28px;
  padding-left: 28px;
}
.announce-item { display: inline-flex; align-items: center; gap: 8px; }
.announce-item i { font-size: 11px; }
.announce-dot { color: var(--bg); opacity: 0.4; font-size: 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled { padding: 6px 0; }
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding-top: 18px; padding-bottom: 18px;
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled .header-wrap { padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 87, 0.08);
  font-family: var(--serif); font-weight: 700; color: var(--bg);
}
.brand-mark img { width: 90%; height: 90%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name .amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  margin: 0 1px;
}
.brand-tag {
  font-size: 10px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav { flex: 1; display: flex; justify-content: center; }
.nav ul { display: flex; gap: 32px; }
.nav-link {
  position: relative;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px; font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.header-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.header-cta:hover::before { transform: translateX(100%); }
.header-cta:hover { transform: translateY(-2px); }

.menu-btn {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink); transition: 0.3s var(--ease);
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: fixed; top: 86px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 24px var(--pad); z-index: 80;
  }
  .nav.open ul { flex-direction: column; gap: 14px; }
  .nav.open .nav-link { font-size: 18px; padding: 10px 0; }
  .menu-btn { display: flex; }
  .header-cta { padding: 9px 18px; font-size: 12px; }
}
@media (max-width: 600px) {
  .header-cta span:not(:first-child) { display: none; }
  .brand-tag { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  padding: clamp(60px, 10vh, 100px) 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 87, 0.08), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(212, 168, 87, 0.04), transparent 60%),
    var(--bg);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.6;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -10%; right: -10%; background: rgba(212, 168, 87, 0.12); }
.orb-2 { width: 400px; height: 400px; bottom: -10%; left: -10%; background: rgba(212, 168, 87, 0.06); animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; top: 40%; left: 50%; background: rgba(232, 196, 122, 0.04); animation-delay: -13s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  background: rgba(212, 168, 87, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.dot-pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.dot-pulse::before {
  content: ''; position: absolute; inset: 0;
  background: inherit; border-radius: inherit;
  animation: pulseDot 2s var(--ease-out) infinite;
}
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 80px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-feature-settings: "ss01";
}
.hero-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); color: var(--gold); margin-left: 2px; }
.stat-label {
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 36px; background: var(--line); }

.hero-visual { position: relative; padding: 20px 0; }
.visual-frame {
  position: relative;
  aspect-ratio: 8/9;
  max-width: 480px;
  margin: 0 auto;
}
.visual-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}
.visual-tag {
  position: absolute;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: floatTag 6s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}
.visual-tag i {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.visual-tag strong { display: block; font-weight: 600; font-size: 12px; }
.visual-tag small { font-size: 10px; color: var(--ink-mute); letter-spacing: 0.05em; }
.visual-tag-1 { top: 4%; left: -4%; animation-delay: 0s; }
.visual-tag-2 { top: 48%; right: -4%; animation-delay: -2s; }
.visual-tag-3 { bottom: 6%; left: 8%; animation-delay: -4s; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-cue {
  position: absolute; left: 50%;
  bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ink-mute); text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px; height: 36px; background: var(--ink-faint); position: relative; overflow: hidden;
}
.scroll-cue-line::after {
  content: ''; position: absolute; top: -36px; left: 0; width: 100%; height: 36px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -36px; }
  100% { top: 36px; }
}

@media (max-width: 980px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; padding: 24px 0; }
  .visual-frame { max-width: 360px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .scroll-cue { display: none; }
  .visual-tag { padding: 10px 12px; font-size: 12px; }
  .visual-tag i { width: 28px; height: 28px; font-size: 12px; }
  .visual-tag strong { font-size: 11px; }
  .visual-tag small { font-size: 9px; }
  .visual-tag-1 { top: 0; left: -2%; }
  .visual-tag-2 { top: 50%; right: -2%; }
  .visual-tag-3 { bottom: 2%; left: 6%; }
}
@media (max-width: 560px) {
  .visual-frame { max-width: 280px; }
  .visual-tag-1 { top: -8px; left: 0; }
  .visual-tag-2 { top: 46%; right: 0; }
  .visual-tag-3 { bottom: -8px; left: 8%; }
}
@media (max-width: 380px) {
  /* On very small screens, hide one tag to avoid crowding */
  .visual-tag-3 { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(110%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(212, 168, 87, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
.btn i { transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(3px); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--ink-mute); text-transform: uppercase;
  margin-bottom: 28px;
}
.trust-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Edge fade so items don't pop in/out abruptly */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: max-content;
  animation: trustScroll 40s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll {
  /* Track contains TWO copies of the set; scroll exactly half of total width = one full set,
     then loop. This makes the seam invisible. */
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item:hover { opacity: 1; color: var(--gold); }
.trust-item i { color: var(--gold); font-size: 18px; }

/* Reduce motion: stop the animation, fall back to static centered display */
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; justify-content: center; width: 100%; }
  .trust-marquee { -webkit-mask-image: none; mask-image: none; }
  /* Hide the duplicate set in reduced-motion mode */
  .trust-track > [aria-hidden="true"] { display: none; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section-dark { background: var(--bg-2); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative; padding-left: 28px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: var(--ink); }
.eyebrow-light::before { background: var(--ink); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}
.section-head .section-lede { margin: 0 auto; }
.section-body { color: var(--ink-soft); margin-top: 16px; line-height: 1.7; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 480px;
}
.about-img-bg {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}
.about-img {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.about-img svg { width: 100%; height: 100%; display: block; }
.about-card {
  position: absolute;
  bottom: -32px; right: -32px;
  background: var(--gold);
  color: var(--bg);
  padding: 24px 28px;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-card-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 600;
  line-height: 1;
}
.about-card-label {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
  line-height: 1.4;
}

.about-content .eyebrow { margin-bottom: 16px; }
.about-content .section-title { font-size: clamp(28px, 3.5vw, 44px); }
.about-points {
  display: flex; flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-points li {
  display: flex; align-items: flex-start; gap: 18px;
}
.about-points li > i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.about-points li strong {
  display: block;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-points li span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-card { right: 16px; bottom: -24px; }
}

/* ============================================================
   B2B
   ============================================================ */
.b2b-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  padding: 56px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.b2b-feature::before {
  content: 'B2B';
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 280px; font-weight: 700;
  color: rgba(212, 168, 87, 0.03);
  pointer-events: none;
  line-height: 1;
}
.b2b-feature-content { position: relative; z-index: 1; }
.b2b-feature-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.b2b-feature-content > p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.b2b-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.b2b-feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.b2b-feature-list li i {
  color: var(--gold);
  font-size: 11px;
  margin-top: 5px;
}
.b2b-feature-list li strong { color: var(--ink); }

.b2b-feature-visual { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.metric-card {
  background: var(--bg-4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  transition: all 0.4s var(--ease);
}
.metric-card:hover {
  border-color: var(--line-strong);
  transform: translateX(6px);
}
.metric-label {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.metric-value {
  font-family: var(--serif);
  font-size: 38px; font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.metric-bar {
  height: 4px;
  background: var(--bg);
  border-radius: 2px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s var(--ease) 0.3s;
}
.metric-card.in-view .metric-fill { width: var(--w); }

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.b2b-card {
  position: relative;
  background: var(--bg-2);
  padding: 36px 32px 36px;
  transition: background 0.4s var(--ease);
}
.b2b-card:hover { background: var(--bg-3); }
.b2b-card-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.b2b-card-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.b2b-card:hover .b2b-card-icon { transform: translateY(-4px); }
.b2b-card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.b2b-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .b2b-feature { grid-template-columns: 1fr; padding: 36px; gap: 48px; }
  .b2b-feature-list { grid-template-columns: 1fr; }
  .b2b-feature::before { font-size: 200px; right: -60px; opacity: 0.5; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.prod-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.prod-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.prod-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.prod-card:hover::before { transform: translateX(100%); }
.prod-card-icon {
  width: 56px; height: 56px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.prod-card:hover .prod-card-icon {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(-5deg) scale(1.05);
}
.prod-card h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.prod-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.prod-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ============================================================
   SHOP CTA
   ============================================================ */
.shop-cta { padding: 80px 0; }
.shop-cta-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
}
.shop-cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 168, 87, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 105, 20, 0.4), transparent 50%),
    linear-gradient(135deg, #2a1f00 0%, #1a1200 100%);
}
.shop-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.shop-cta-content { max-width: 720px; }
.shop-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.shop-cta-content h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.shop-cta-content p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.shop-cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   CEO SECTION
   ============================================================ */
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.ceo-visual {
  position: sticky; top: 120px;
  text-align: center;
}
.ceo-portrait {
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto 28px;
}
.ceo-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.ceo-portrait-ring {
  position: absolute; inset: -16px;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ceo-name {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.01em;
}
.ceo-role {
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.ceo-socials {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.ceo-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.ceo-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}

.ceo-content .section-title em { font-family: var(--serif); }
.ceo-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 32px 0 24px;
  position: relative;
}
.ceo-quote::before {
  content: '"';
  position: absolute; top: -20px; left: 12px;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  font-style: normal;
  line-height: 1;
}
.ceo-signature {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: var(--gold);
  margin-bottom: 48px;
}
.ceo-pillars {
  display: flex; flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.ceo-pillar {
  display: flex; align-items: flex-start; gap: 18px;
}
.ceo-pillar > i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.ceo-pillar strong {
  display: block;
  font-size: 16px; font-weight: 600;
  margin-bottom: 4px;
}
.ceo-pillar span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .ceo-grid { grid-template-columns: 1fr; gap: 56px; }
  .ceo-visual { position: static; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.blog-card {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.blog-card:hover {
  background: var(--bg-4);
  transform: translateY(-4px);
}
.blog-card:hover::before { height: 100%; }
.blog-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.blog-cat {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.blog-time {
  font-size: 11px;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.04em;
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.blog-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.blog-card:hover .blog-arrow { gap: 12px; }
.blog-cta { text-align: center; }

/* ============================================================
   CAREERS
   ============================================================ */
.careers-block {
  display: grid;
  place-items: center;
  text-align: center;
}
.careers-content {
  max-width: 760px;
  padding: 64px 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.careers-content .eyebrow { margin-left: auto; margin-right: auto; padding: 0; }
.careers-content .eyebrow::before { display: none; }
.careers-content .section-lede { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.careers-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  font-size: 12px;
  color: var(--ink-soft);
}
.tag i { color: var(--gold); font-size: 11px; }
.careers-email { margin-top: 16px; font-size: 13px; color: var(--ink-mute); }
.careers-email a { color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.contact-card:hover:not(.contact-card-static) {
  border-color: var(--line-strong);
  background: var(--bg-4);
  transform: translateX(6px);
}
.contact-card > i {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-card strong {
  display: block;
  font-size: 14px; font-weight: 600;
  margin-bottom: 2px;
}
.contact-card span {
  font-size: 13px;
  color: var(--ink-soft);
}

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit; font-size: 14px;
  transition: border 0.3s var(--ease), background 0.3s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-group select option { background: var(--bg-2); color: var(--ink); }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-consent {
  margin: 18px 0 24px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
}
.form-consent label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; line-height: 1.5; }
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-consent a { color: var(--gold); text-decoration: underline; }

.form-message {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.form-message.show { display: block; }
.form-message.success { background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.3); color: #66bb6a; }
.form-message.error { background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.3); color: #ef5350; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}
.footer-socials {
  display: flex; gap: 8px;
  margin-top: 24px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}
.footer-col h3 {
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s var(--ease);
  animation: wapulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 50px rgba(37, 211, 102, 0.7); }
}

/* ============================================================
   TEDDY CHATBOT
   ============================================================ */
.chat-toggle {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b8902f 100%);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 14px 36px rgba(212, 168, 87, 0.45);
  z-index: 60;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s;
}
.chat-toggle:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 16px 50px rgba(212, 168, 87, 0.6); }
.chat-toggle.open { background: #1a1a1a; color: var(--gold); }
.chat-toggle-icon { display: flex; transition: transform 0.3s; }
.chat-toggle.open .chat-toggle-icon { transform: rotate(90deg); }
.chat-toggle-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: chatPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0% { transform: scale(0.92); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.chat-window {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 140px);
  background: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 168, 87, 0.05);
  z-index: 59;
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212, 168, 87, 0.08), transparent);
  flex-shrink: 0;
}
.chat-avatar {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: #0a0a0a;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.3);
}
.chat-avatar-mark { line-height: 1; }
.chat-status-dot {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid #141414;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(46, 204, 113, 0); }
}
.chat-header-info { flex: 1; min-width: 0; }
.chat-header-info h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.chat-badge {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 87, 0.1);
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 87, 0.2);
}
.chat-subtitle {
  font-size: 11px;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
}
.chat-status-mini {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ecc71;
}
.chat-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.chat-close:hover { color: var(--gold); border-color: var(--gold); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.chat-msg {
  display: flex;
  animation: msgIn 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.chat-msg.bot .chat-bubble {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--gold), #b8902f);
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-bubble a { color: var(--gold); font-weight: 500; }
.chat-msg.user .chat-bubble a { color: #0a0a0a; text-decoration: underline; }
.chat-bubble strong { font-weight: 600; }
.chat-typing {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 4px 0;
}
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-mute);
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chat-quick {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 18px 0;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.chat-chip {
  font-family: var(--sans);
  font-size: 12px;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.chat-chip:hover {
  background: rgba(212, 168, 87, 0.1);
  border-color: rgba(212, 168, 87, 0.3);
  color: var(--gold);
}
.chat-input-row {
  display: flex; gap: 8px; align-items: center;
  padding: 14px 18px;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.chat-input:focus {
  border-color: rgba(212, 168, 87, 0.45);
  background: rgba(245, 241, 232, 0.06);
}
.chat-input::placeholder { color: var(--ink-mute); }
.chat-send {
  background: linear-gradient(135deg, var(--gold), #b8902f);
  color: #0a0a0a;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(212, 168, 87, 0.4); }
.chat-foot {
  font-size: 10px;
  color: var(--ink-mute);
  text-align: center;
  padding: 8px 18px 12px;
  border-top: 1px solid var(--line);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.chat-foot a { color: var(--gold); text-decoration: none; }
.chat-foot a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .chat-window {
    bottom: 88px; right: 12px; left: 12px;
    width: auto; height: calc(100vh - 130px);
  }
  .chat-toggle { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 22px; }
  .float-wa { bottom: 84px; right: 22px; width: 44px; height: 44px; font-size: 20px; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 920px; margin: 0 auto;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 9000;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px; font-weight: 600;
  margin-bottom: 6px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 22px; font-size: 13px; }

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero-title .line {
  position: relative;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out) var(--delay, 0ms);
}
.hero-title .line.in-view { transform: translateY(0); }
.hero-title .line { opacity: 1 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line { transform: none; }
}

/* ============================================================
   UTILS
   ============================================================ */
.section-head .reveal:nth-child(1) { --delay: 0ms; }
.section-head .reveal:nth-child(2) { --delay: 100ms; }
.section-head .reveal:nth-child(3) { --delay: 200ms; }

.b2b-grid .b2b-card:nth-child(1) { --delay: 0ms; }
.b2b-grid .b2b-card:nth-child(2) { --delay: 80ms; }
.b2b-grid .b2b-card:nth-child(3) { --delay: 160ms; }
.b2b-grid .b2b-card:nth-child(4) { --delay: 240ms; }
.b2b-grid .b2b-card:nth-child(5) { --delay: 320ms; }
.b2b-grid .b2b-card:nth-child(6) { --delay: 400ms; }

.prod-grid .prod-card:nth-child(1) { --delay: 0ms; }
.prod-grid .prod-card:nth-child(2) { --delay: 80ms; }
.prod-grid .prod-card:nth-child(3) { --delay: 160ms; }
.prod-grid .prod-card:nth-child(4) { --delay: 240ms; }
.prod-grid .prod-card:nth-child(5) { --delay: 320ms; }
.prod-grid .prod-card:nth-child(6) { --delay: 400ms; }

.blog-grid .blog-card:nth-child(1) { --delay: 0ms; }
.blog-grid .blog-card:nth-child(2) { --delay: 100ms; }
.blog-grid .blog-card:nth-child(3) { --delay: 200ms; }

.about-points li:nth-child(1) { --delay: 0ms; }
.about-points li:nth-child(2) { --delay: 80ms; }
.about-points li:nth-child(3) { --delay: 160ms; }
.about-points li:nth-child(4) { --delay: 240ms; }

.contact-info .contact-card:nth-child(1) { --delay: 0ms; }
.contact-info .contact-card:nth-child(2) { --delay: 80ms; }
.contact-info .contact-card:nth-child(3) { --delay: 160ms; }
.contact-info .contact-card:nth-child(4) { --delay: 240ms; }
.contact-info .contact-card:nth-child(5) { --delay: 320ms; }

[data-delay] { --delay: calc(attr(data-delay number) * 1ms); }
.reveal[data-delay="0"] { --delay: 0ms; }
.reveal[data-delay="100"] { --delay: 100ms; }
.reveal[data-delay="200"] { --delay: 200ms; }
.reveal[data-delay="300"] { --delay: 300ms; }
.reveal[data-delay="450"] { --delay: 450ms; }
.reveal[data-delay="500"] { --delay: 500ms; }
.reveal[data-delay="600"] { --delay: 600ms; }
.reveal[data-delay="750"] { --delay: 750ms; }

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Skip link */
.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   PERFORMANCE: GPU-only animations
   Prefer transform/opacity over layout-triggering properties
   ============================================================ */
.cursor, .cursor-dot,
.float-wa, .chat-toggle,
.visual-tag, .scroll-cue {
  will-change: transform;
}
