*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c8922a;
  --gold-light: #f2d48a;
  --gold-dim: #8a6010;
  --dark: #0d0a04;
  --dark2: #1a1008;
  --dark3: #2a1c0a;
  --cream: #eaddb5;
  --blue-diamond: #4a9eff;
  --blue-glow: #1a6fff;
  --text-main: #eaddb5;
  --text-muted: #e4e1ab;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--dark);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--text-main);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.7);
}

#root { width: 100%; height: 100%; }

/* ─── HORIZONTAL SCROLL ─── */
.h-scroll-stage {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.h-scroll-stage::-webkit-scrollbar { display: none; }

/* ─── GLOBAL BG ─── */
.global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/hero_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-position 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.global-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(13,10,4,0.55) 100%),
    linear-gradient(to bottom, rgba(13,10,4,0.45) 0%, transparent 20%, transparent 80%, rgba(13,10,4,0.6) 100%);
}

/* ─── SECTIONS ─── */
.section {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8vw;
  overflow: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  background: linear-gradient(to bottom, rgba(13,10,4,0.95) 0%, rgba(13,10,4,0) 100%);
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
}
.nav-logo sup {
  font-size: 11px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  background: none; border: none;
  padding: 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-blog-link {
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 20px;
  padding: 0.2rem 0.85rem !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-blog-link:hover { background: rgba(200,146,42,0.12); color: var(--gold-light); }
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 3px 7px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.lang-btn.active {
  color: var(--gold-light);
  border-color: var(--gold-dim);
  background: rgba(200,146,42,0.1);
}
.lang-btn:hover:not(.active) { color: var(--cream); }

/* ─── SCROLL DOTS ─── */
.scroll-dots {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(240,232,208,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ─── SCROLL ARROWS ─── */
.scroll-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold-light);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 20px;
  backdrop-filter: blur(8px);
}
.scroll-arrow:hover { background: rgba(200,146,42,0.28); border-color: var(--gold); }
.scroll-arrow.left { left: 20px; }
.scroll-arrow.right { right: 20px; }
.scroll-arrow:disabled { opacity: 0.2; cursor: default; }

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 8px rgba(13,10,4,0.9), 0 2px 24px rgba(13,10,4,0.7);
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

/* ─── HERO ─── */
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(13,10,4,0.9), 0 4px 60px rgba(13,10,4,0.7);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(13,10,4,0.9), 0 2px 32px rgba(13,10,4,0.7);
}
.hero-ctas { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fff8e0 0%, var(--gold-light) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,146,42,0.35);
}
.btn-secondary {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: none;
  border: 1px solid rgba(200,146,42,0.4);
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200,146,42,0.08);
}

/* ─── LINDA BADGE ─── */
.linda-badge {
  position: absolute;
  bottom: 80px;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.linda-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,10,4,0.75);
  border: 1px solid rgba(74,158,255,0.3);
  border-radius: 4px;
  padding: 10px 18px;
  backdrop-filter: blur(16px);
}
.linda-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-diamond);
  box-shadow: 0 0 12px var(--blue-glow);
  animation: lindaPulse 2s ease-in-out infinite;
}
@keyframes lindaPulse {
  0%, 100% { box-shadow: 0 0 8px var(--blue-glow); opacity: 1; }
  50% { box-shadow: 0 0 20px var(--blue-diamond), 0 0 40px rgba(74,158,255,0.3); opacity: 0.85; }
}
.linda-text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--blue-diamond);
  letter-spacing: 0.08em;
}
.linda-sub-text {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(74,158,255,0.6);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ─── HERO TICKER ─── */
.hero-ticker {
  position: absolute;
  bottom: 44px;
  left: 0; right: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.hero-ticker-track:hover { animation-play-state: paused; }
.hero-ticker-item {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(228,225,171,0.55);
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.hero-ticker-item:hover { color: var(--cream); }
.hero-ticker-dot { color: var(--gold); font-size: 14px; opacity: 0.7; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-shimmer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(141,230,236,0.6) 30%,
    rgba(200,146,42,0.8) 50%,
    rgba(141,230,236,0.6) 70%,
    transparent 100%);
  animation: shimmerMove 4s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes shimmerMove {
  0%   { background-position: -100% 0; opacity: 0.4; }
  50%  { background-position: 100% 0; opacity: 1; }
  100% { background-position: 300% 0; opacity: 0.4; }
}
.hero-content { margin-left: 0; position: relative; z-index: 3; max-width: 680px; }

/* ─── DATA STREAM ─── */
.data-stream {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 320px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.12;
}
.data-line {
  position: absolute;
  right: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--blue-diamond);
  white-space: nowrap;
  animation: dataScroll 8s linear infinite;
}
@keyframes dataScroll {
  0%   { transform: translateY(110vh); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* ─── VIDEO ATTRACTOR ─── */
.linda-attractor {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,213,181,0.9) 0%, rgba(243,213,181,0) 70%);
  cursor: pointer;
  z-index: 20;
  bottom: 160px;
  right: calc(8vw + 20px);
  box-shadow: 0 0 24px rgba(200,146,42,0.5);
}
.video-stage {
  position: absolute;
  right: 8vw;
  bottom: 80px;
  width: 320px;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  border: 1px solid rgba(200,146,42,0.2);
}
.video-stage video { width: 100%; height: 100%; object-fit: cover; }
.video-label {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  z-index: 51;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  margin-top: 8px;
}
.product-card {
  background: rgba(30,20,8,0.45);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 4px;
  padding: 16px 18px;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: visible;
  cursor: default;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover { border-color: rgba(200,146,42,0.4); background: rgba(40,28,10,0.6); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.product-card:hover::before { opacity: 1; }
.product-popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 260px;
  background: rgba(8,12,22,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(141,230,236,0.18);
  border-radius: 10px;
  padding: 18px 20px;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.product-card.popover-visible .product-popover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-popover::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 6px;
  background: rgba(8,12,22,0.82);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.product-popover-line { display: block; width: 24px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 12px; }
.product-popover-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-weight: 400; font-style: italic; line-height: 1.45; color: var(--cream); }
.product-icon { font-size: 16px; color: var(--gold); margin-bottom: 8px; opacity: 0.8; }
.product-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--cream); margin-bottom: 6px; text-shadow: 0 1px 10px rgba(13,10,4,0.95); }
.product-desc { font-size: 12px; line-height: 1.55; color: var(--text-muted); font-weight: 300; }

/* ─── PROCESS ─── */
.process-steps { display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 680px; margin-top: 6px; }
.process-step { display: flex; align-items: flex-start; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(200,146,42,0.1); transition: all 0.3s; cursor: default; }
.process-step:last-child { border-bottom: none; }
.process-step:hover .step-num { color: var(--gold-light); }
.step-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 36px; font-weight: 300; color: rgba(200,146,42,0.25); line-height: 1; min-width: 56px; transition: color 0.3s; }
.step-content { flex: 1; padding-top: 6px; }
.step-title { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.05em; color: var(--cream); margin-bottom: 6px; text-shadow: 0 1px 10px rgba(13,10,4,0.95); }
.step-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }

/* ─── ABOUT ─── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; width: 100%; max-width: 1100px; align-items: flex-start; margin-top: 8px; }
.about-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(30px, 3.5vw, 52px); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 12px; text-shadow: 0 2px 20px rgba(13,10,4,0.95); }
.about-sub { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.value-title { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.value-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }
.about-testimonial { margin-top: 28px; padding: 18px 24px; border-left: 2px solid rgba(200,146,42,0.5); max-width: 680px; }
.testimonial-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(15px, 1.4vw, 18px); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.65; margin-bottom: 10px; }
.testimonial-author { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--gold); opacity: 0.8; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; width: 100%; max-width: 1100px; align-items: start; padding-top: 20px; }
.contact-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px, 4.5vw, 68px); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(13,10,4,0.95); }
.contact-sub { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 36px; font-weight: 300; }
.contact-info-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.8; margin-bottom: 4px; display: block; }
.contact-info-value { color: var(--cream); font-size: 15px; font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 500; letter-spacing: 0.02em; text-decoration: none; display: block; }
.contact-info-value.small { font-size: 14px; line-height: 1.6; font-weight: 400; }
.contact-info-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-input, .form-textarea {
  background: rgba(234,221,181,0.08);
  border: 1px solid rgba(228,225,171,0.3);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 14px;
  color: #eaddb5;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  backdrop-filter: blur(8px);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(228,225,171,0.45); }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; height: 110px; }
.form-row { display: flex; gap: 14px; }
.form-row .form-input { flex: 1; }
.form-submit {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  padding: 15px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(200,146,42,0.35); }
.form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-success {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--blue-diamond);
  letter-spacing: 0.06em;
  padding: 14px;
  border: 1px solid rgba(74,158,255,0.3);
  border-radius: 3px;
  background: rgba(74,158,255,0.05);
  text-align: center;
  display: none;
}

/* ─── SECTION TINTS ─── */
.section-tint { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(110deg, rgba(13,10,4,0.05) 30%, rgba(26,16,8,0.00) 100%); }

/* ─── FADE-UP ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.32s; }
.fade-up.d4 { transition-delay: 0.44s; }
.fade-up.d5 { transition-delay: 0.56s; }

/* ─── SECTION COUNTER ─── */
.section-counter {
  position: fixed;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.counter-num { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.08em; }
.counter-line { width: 1px; height: 40px; background: rgba(200,146,42,0.3); }
.counter-total { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; }

/* ─── SECURITY ─── */
.security-pillars { display: flex; flex-direction: column; gap: 6px; width: 100%; max-width: 780px; }
.security-pillar { display: flex; align-items: flex-start; gap: 16px; padding: 10px 16px; background: rgba(20,14,4,0.5); border: 1px solid rgba(200,146,42,0.14); border-radius: 6px; backdrop-filter: blur(12px); transition: border-color 0.3s; }
.security-pillar:hover { border-color: rgba(200,146,42,0.35); }
.security-pillar-num { font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; color: var(--gold); opacity: 0.6; letter-spacing: 0.12em; flex-shrink: 0; padding-top: 2px; min-width: 28px; }
.security-pillar-title { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); margin-bottom: 4px; }
.security-pillar-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; font-weight: 300; }
.security-badges { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.security-badge-item { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(228,225,171,0.75); padding: 5px 12px; border: 1px solid rgba(200,146,42,0.35); border-radius: 2px; }
.security-badge-sep { color: rgba(200,146,42,0.5); font-size: 12px; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: 100%; max-width: 1200px; margin-top: 12px; align-items: start; }
.pricing-card { background: rgba(20,14,4,0.55); border: 1px solid rgba(200,146,42,0.18); border-radius: 6px; padding: 14px 18px; display: flex; flex-direction: column; gap: 0; transition: all 0.3s; backdrop-filter: blur(16px); position: relative; overflow: hidden; cursor: pointer; }
.pricing-card.highlighted { background: rgba(30,18,4,0.88); border-color: var(--gold); box-shadow: 0 0 48px rgba(200,146,42,0.25), 0 8px 32px rgba(0,0,0,0.5); }
.pricing-card:hover { border-color: rgba(200,146,42,0.45); transform: translateY(-3px); }
.pricing-badge { position: absolute; top: 12px; right: 12px; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 3px 8px; border-radius: 2px; }
.pricing-name { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pricing-desc { display: none; }
.pricing-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pricing-features li { font-size: 12px; color: #e4e1ab; display: flex; align-items: center; gap: 6px; }
.pricing-features li::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; flex-shrink: 0; }
.pricing-from { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--cream); margin-top: 14px; text-align: center; width: 100%; max-width: 1200px; }

/* ─── FOOTER ─── */
.site-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 6vw;
  background: linear-gradient(to top, rgba(13,10,4,0.85) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}
.footer-link { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(228,225,171,0.65); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.footer-link:hover { color: var(--gold); }
.footer-sep { color: rgba(234,221,181,0.35); font-size: 10px; }
.footer-copy { font-family: 'Space Mono', monospace; font-size: 10px; color: rgba(228,225,171,0.45); letter-spacing: 0.08em; white-space: nowrap; }

/* ─── FLOUR CANVAS ─── */
#flour-canvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.55; }

/* ─── LINDA CHAT ─── */
.linda-chat-btn {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 200;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: none; border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s;
}
.linda-chat-btn:hover { transform: scale(1.08); }
.linda-btn-glow {
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(141,230,236,0.7);
  animation: lindaGlowPulse 3.2s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
.linda-btn-ring {
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(141,230,236,0.55);
  animation: lindaRingPulse 3.2s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
.linda-btn-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 0 12px rgba(141,230,236,0.2), 0 4px 20px rgba(0,0,0,0.6); }
@keyframes lindaGlowPulse {
  0%   { box-shadow: 0 0 8px 2px rgba(74,158,255,0.22), 0 0 18px 4px rgba(141,230,236,0.1); }
  50%  { box-shadow: 0 0 18px 6px rgba(74,158,255,0.38), 0 0 36px 10px rgba(141,230,236,0.18); }
  100% { box-shadow: 0 0 8px 2px rgba(74,158,255,0.22), 0 0 18px 4px rgba(141,230,236,0.1); }
}
@keyframes lindaRingPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.05); }
}
.linda-chat-window {
  position: fixed;
  bottom: 100px; left: 32px;
  z-index: 200;
  width: 360px; max-height: 520px;
  background: rgba(8,14,26,0.96);
  border: 1px solid rgba(141,230,236,0.2);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(141,230,236,0.08);
  display: flex; flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(24px);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.linda-chat-window.hidden { opacity: 0; transform: translateY(20px) scale(0.95); pointer-events: none; }
.linda-chat-header { padding: 16px 18px; border-bottom: 1px solid rgba(141,230,236,0.1); display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.linda-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #0d1f3c, #1a6fff); border: 1.5px solid rgba(141,230,236,0.5); display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 0 16px rgba(141,230,236,0.3); flex-shrink: 0; }
.linda-chat-name { font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 14px; font-weight: 600; color: var(--cream); letter-spacing: 0.04em; display: flex; align-items: center; gap: 7px; }
.linda-ai-badge { font-family: 'Space Mono', monospace; font-size: 8px; font-weight: 700; letter-spacing: 0.14em; color: var(--dark); background: var(--gold); padding: 2px 5px; border-radius: 2px; line-height: 1.4; }
.linda-chat-status { font-family: 'Space Mono', monospace; font-size: 10px; color: rgba(141,230,236,0.7); letter-spacing: 0.08em; }
.linda-chat-close { margin-left: auto; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; transition: color 0.2s; }
.linda-chat-close:hover { color: var(--cream); }
.linda-quota { font-family: 'Space Mono', monospace; font-size: 10px; color: rgba(228,225,171,0.35); margin-left: auto; }
.linda-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; scrollbar-width: thin; scrollbar-color: rgba(141,230,236,0.2) transparent; }
.msg { max-width: 88%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.55; font-family: 'Space Grotesk', system-ui, sans-serif; }
.msg.linda { background: rgba(26,63,110,0.5); border: 1px solid rgba(141,230,236,0.12); color: var(--cream); align-self: flex-start; border-bottom-left-radius: 3px; }
.msg.user { background: rgba(200,146,42,0.18); border: 1px solid rgba(200,146,42,0.2); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 3px; }
.msg.typing { color: rgba(141,230,236,0.6); font-family: 'Space Mono', monospace; font-size: 20px; letter-spacing: 4px; background: rgba(26,63,110,0.3); border: 1px solid rgba(141,230,236,0.08); }
.msg.limit { background: rgba(160,106,255,0.12); border: 1px solid rgba(160,106,255,0.3); color: var(--cream); align-self: flex-start; border-bottom-left-radius: 3px; }
.linda-contact-btn { display: block; margin-top: 8px; background: linear-gradient(135deg, rgba(74,158,255,0.2), rgba(160,106,255,0.2)); border: 1px solid rgba(160,106,255,0.4); border-radius: 8px; color: #c8aaff; font-size: 12px; padding: 7px 14px; cursor: pointer; font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: 0.04em; }
.linda-ai-disclaimer { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.04em; color: rgba(228,225,171,0.45); text-align: center; padding: 6px 14px 8px; border-top: 1px solid rgba(200,146,42,0.1); line-height: 1.4; }
.linda-chat-input-row { padding: 12px 14px; border-top: 1px solid rgba(141,230,236,0.1); display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.linda-chat-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(141,230,236,0.15); border-radius: 8px; padding: 9px 12px; font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 13px; color: var(--cream); outline: none; transition: border-color 0.2s; resize: none; }
.linda-chat-input::placeholder { color: rgba(240,232,208,0.3); }
.linda-chat-input:focus { border-color: rgba(141,230,236,0.4); }
.linda-send-btn { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, rgba(141,230,236,0.2), rgba(26,111,255,0.3)); border: 1px solid rgba(141,230,236,0.3); color: rgba(141,230,236,0.9); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; flex-shrink: 0; }
.linda-send-btn:hover { background: rgba(141,230,236,0.25); }
.linda-send-btn:disabled { opacity: 0.4; cursor: default; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,10,4,0.97);
  border-top: 1px solid rgba(200,146,42,0.25);
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(12px);
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 12px; color: rgba(228,225,171,0.7); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--dark); border: none; }
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline { background: none; color: rgba(228,225,171,0.5); border: 1px solid rgba(228,225,171,0.2); }
.cookie-decline:hover { color: var(--cream); border-color: rgba(228,225,171,0.4); }

/* ─── @keyframes ─── */
@keyframes diamondFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .section-counter { display: none; }
  .data-stream { display: none; }
  .nav-links { display: none; }
  .scroll-dots { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-desc { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; font-weight: 300; }
  .section:not(#section-hero) { overflow-y: auto; overflow-x: hidden; overscroll-behavior-x: contain; justify-content: flex-start; padding-top: 96px !important; padding-bottom: 72px !important; }
  .product-card, .pricing-card, .linda-chat-window, .linda-chat-btn, .nav, .site-footer, .process-step, .form-input, .form-textarea { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 5vw; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .section { padding: 0 6vw; }
}

/* ─── BLOG PREVIEW SEKCIA ─── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  margin: 1rem 0 1.2rem;
}
.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s;
}
.blog-preview-card:hover {
  border-color: rgba(200,146,42,0.35);
  transform: translateY(-3px);
}
.blog-preview-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-preview-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.blog-preview-card:hover .blog-preview-img img { transform: scale(1.05); }
.blog-preview-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.blog-preview-body time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.07em;
}
.blog-preview-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.blog-preview-perex {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-preview-all {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.blog-preview-all:hover { opacity: 0.7; }
