/* ═══════════════════════════════════════════════
   SteelEdge Industrial Knives — Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b0d12;
  --bg2:       #111420;
  --surface:   #161b26;
  --border:    #252c3e;
  --accent:    #3b82f6;
  --accent2:   #60a5fa;
  --accent-glow: rgba(59,130,246,0.25);
  --text:      #e2e8f0;
  --text-muted:#8892a4;
  --white:     #ffffff;
  --red:       #ef4444;
  --green:     #22c55e;
  --nav-h:     68px;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent2); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,13,18,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.btn-nav:hover {
  background: var(--accent2) !important;
  box-shadow: 0 0 18px var(--accent-glow) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.btn-mobile {
  margin-top: 8px;
  background: var(--accent) !important;
  color: var(--white) !important;
  text-align: center;
  font-weight: 600 !important;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(59,130,246,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(59,130,246,0.05) 0%, transparent 60%),
    linear-gradient(160deg, #0b0d12 0%, #0f1520 100%);
}

/* grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  flex: 1;
  max-width: 600px;
  margin-left: calc((100vw - 1200px) / 2);
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--accent); color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat { padding: 0 24px 0 0; }
.stat:first-child { padding-left: 0; }

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: 'Rajdhani', sans-serif;
}

.stat span { font-size: 0.78rem; color: var(--text-muted); }

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 24px;
}

/* Blade visual + knife photo */
.hero-visual {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 58vw;
  max-width: 760px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.blade-showcase {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.blade {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(135deg, #2a3a5c 0%, #1a2a45 50%, #0d1825 100%);
  border: 1px solid rgba(96,165,250,0.2);
}

.blade-1 {
  width: 280px;
  height: 18px;
  top: 130px;
  left: 40px;
  transform: rotate(-8deg);
  animation: floatBlade1 4s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.blade-2 {
  width: 320px;
  height: 14px;
  top: 180px;
  left: 20px;
  transform: rotate(-6deg);
  animation: floatBlade2 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
  box-shadow: 0 0 20px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0.8;
}

.blade-3 {
  width: 240px;
  height: 22px;
  top: 225px;
  left: 60px;
  transform: rotate(-4deg);
  animation: floatBlade3 5s ease-in-out infinite;
  animation-delay: 1s;
  box-shadow: 0 0 16px rgba(59,130,246,0.12);
  opacity: 0.6;
}

.blade-glow {
  position: absolute;
  width: 200px;
  height: 80px;
  top: 160px;
  left: 80px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes floatBlade1 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-10px); }
}
@keyframes floatBlade2 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-7px); }
}
@keyframes floatBlade3 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-5px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Hero knife product photo */
.hero-knife-wrap {
  flex-shrink: 0;
  position: relative;
}

.hero-knife-img {
  display: block;
  width: 540px;
  height: auto;
  transform: rotate(-8deg);
}

@media (max-width: 1400px) {
  .hero-knife-img { width: 440px; }
}

@media (max-width: 1200px) {
  .hero-knife-img { width: 340px; }
}

/* ════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.trust-items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-items span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}

.trust-items span:hover { color: var(--text); border-color: var(--accent); }

/* ════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-dark { background: var(--surface); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59,130,246,0.12);
}

.product-card.featured {
  border-color: rgba(59,130,246,0.45);
  background: linear-gradient(135deg, #161b26 0%, #0f1a2e 100%);
}

.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.product-icon svg { width: 36px; height: 36px; }

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-specs {
  margin-bottom: 20px;
}

.product-specs li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent2);
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.btn-card::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-card:hover { color: var(--white); }
.btn-card:hover::after { transform: translateX(4px); }

/* ════════════════════════════════════════════════
   CAPABILITIES
   ════════════════════════════════════════════════ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.capability-item {
  background: var(--bg2);
  padding: 32px 28px;
  transition: background 0.2s;
}

.capability-item:hover { background: #1a2035; }

.cap-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(59,130,246,0.2);
  line-height: 1;
  margin-bottom: 14px;
}

.capability-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.capability-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-glow);
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

.step-connector {
  flex: 0 0 auto;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(59,130,246,0.2) 100%);
  margin-top: 26px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(59,130,246,0.4);
}

/* ════════════════════════════════════════════════
   ORDER SECTION
   ════════════════════════════════════════════════ */
.section-order {
  background: linear-gradient(160deg, var(--bg) 0%, #0a1020 100%);
  border-top: 1px solid var(--border);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.req { color: var(--accent2); }
.optional { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; }

input, select, textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238892a4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 110px; }

/* Upload area */
.upload-group { margin-bottom: 24px; }

.upload-area {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-area:hover, .upload-area.drag-over {
  border-color: var(--accent);
  background: rgba(59,130,246,0.04);
}

.upload-area svg { color: var(--text-muted); }

.upload-area span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.upload-area small {
  font-size: 0.75rem;
  color: rgba(136,146,164,0.6);
}

/* File list */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
}

.file-item-name {
  flex: 1;
  min-width: 0;
  font-size: 0.83rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-size {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.file-item-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}

.file-item-remove:hover {
  color: var(--red);
  background: rgba(239,68,68,0.1);
}

.file-count {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

/* Blueprint icon in section header */
.section-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  margin: 0 auto 20px;
  color: var(--accent2);
}

/* Submit button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  background: var(--accent2);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-submit:active { transform: translateY(0); }

.btn-submit.loading { opacity: 0.7; pointer-events: none; }

.form-submit-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  padding: 10px 14px;
  background: rgba(59,130,246,0.05);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 8px;
}

.upload-progress {
  margin-top: 14px;
}

.upload-progress-track {
  height: 5px;
  background: rgba(59,130,246,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.upload-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  transition: width 0.25s ease;
}

.upload-progress-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent2);
  text-align: center;
}

/* Sidebar */
.order-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.sidebar-list { display: flex; flex-direction: column; gap: 12px; }

.sidebar-list li {
  display: flex;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.sidebar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.sidebar-contact:hover { color: var(--accent2); }
.sidebar-contact svg { flex-shrink: 0; color: var(--accent2); }

.sidebar-hours {
  margin-top: 12px !important;
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
}

/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-eyebrow { display: block; margin-bottom: 12px; }

.about-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cert-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent2);
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 6px;
  padding: 5px 12px;
  background: rgba(59,130,246,0.06);
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-stat {
  background: var(--bg2);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-stat strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-links span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.25s;
}

.modal-overlay.show .modal {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.modal p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ════════════════════════════════════════════════
   SLIDER
   ════════════════════════════════════════════════ */
.slider-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--bg);
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 520px;
}

.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  color: var(--border);
  background: var(--bg);
}

.slide-placeholder svg { opacity: 0.4; }

.slide-placeholder span {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.5;
  text-align: center;
  padding: 0 24px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,13,18,0.75);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: rgba(59,130,246,0.25);
  border-color: var(--accent);
  color: var(--white);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot.active {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: scale(1.25);
}

/* ════════════════════════════════════════════════
   VIDEO
   ════════════════════════════════════════════════ */
.video-section { background: var(--bg); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-grid.video-single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Shorts side by side in one row */
.video-shorts-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

/* YouTube Shorts — vertical 9:16 */
.video-wrapper-short {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.video-wrapper-short iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════════════════
   PROCESS GRID
   ════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.process-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.process-card .step-num {
  margin: 0 auto 16px;
}

.process-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.process-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   PAYMENT BLOCK
   ════════════════════════════════════════════════ */
.payment-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.payment-block h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.payment-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.payment-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}

.payment-item:first-child { padding-left: 0; }
.payment-item:last-child { padding-right: 0; }

.payment-percent {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
  flex-shrink: 0;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.payment-info span {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.payment-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.payment-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   GUARANTEES
   ════════════════════════════════════════════════ */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.guarantee-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.guarantee-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent2);
  flex-shrink: 0;
}

.guarantee-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.guarantee-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .hero { min-height: 600px; }
  .hero-content { padding: 56px 24px; }
  .hero-visual { opacity: 0.4; width: 50vw; justify-content: space-between; }
  .hero-knife-img { width: 210px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-grid { flex-direction: column; gap: 20px; }
  .payment-divider { width: 80%; height: 1px; }
  .payment-item { padding: 0 !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 48px) 0 60px; }
  .hero-content {
    padding: 0 24px;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .products-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-content p { max-width: none; }
  .step-num { margin-bottom: 0; }
  .step-connector { display: none; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }

  .slider-track { height: 320px; }
  .slider { max-height: 320px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .payment-block { padding: 28px 24px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-shorts-grid { grid-template-columns: 1fr; max-width: 360px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; }

  .order-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three-col { grid-template-columns: 1fr; }
  .form-submit-note { margin-top: 20px; padding: 14px 16px; }

  .trust-bar .container { justify-content: flex-start; }
  .trust-label { border-right: none; padding-right: 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 40px 20px; }
  .section { padding: 56px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .slider-track { height: 220px; }
  .slider { max-height: 220px; }
  .about-stat { padding: 22px 16px; }
  .about-stat strong { font-size: 1.9rem; }
  .form-submit-note { font-size: 0.77rem; padding: 12px 14px; }
  .video-shorts-grid { max-width: 280px; }
}

/* ════════════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(160deg, #0b0d12 0%, #0f1520 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero-content .section-eyebrow {
  display: block;
  margin-bottom: 14px;
}

.page-hero-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.page-hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   NAV ACTIVE STATE (inner pages)
   ════════════════════════════════════════════════ */
.nav-links .nav-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08) !important;
}

/* ════════════════════════════════════════════════
   CONTRACT PAGE
   ════════════════════════════════════════════════ */
.contract-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contract-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
}

.contract-body { flex: 1; }

.contract-body .section-eyebrow { display: block; margin-bottom: 10px; }

.contract-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contract-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contract-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.contract-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.contract-feature svg {
  flex-shrink: 0;
  color: var(--green);
}

.btn-contract {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-contract:hover {
  background: var(--accent2);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-1px);
}

.contract-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contract-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
  }

  .contract-icon {
    width: 72px;
    height: 72px;
  }
}

/* ════════════════════════════════════════════════
   FOOTER PRIVACY LINK
   ════════════════════════════════════════════════ */
.footer-privacy {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-privacy:hover { color: var(--accent2); }

/* ════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ════════════════════════════════════════════════ */
.privacy-doc {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.privacy-intro {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--accent2);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-section a { color: var(--accent2); text-decoration: none; }
.privacy-section a:hover { text-decoration: underline; }

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 12px;
}

.privacy-info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.6;
}

.privacy-info-row:last-child { border-bottom: none; }
.privacy-info-row strong { color: var(--text); }
.privacy-info-row span { color: var(--text-muted); }

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.privacy-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.privacy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.privacy-purposes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.privacy-purpose-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.privacy-purpose-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-top: 2px;
}

.privacy-purpose-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 4px;
}

.privacy-purpose-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.privacy-right {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.privacy-right svg {
  flex-shrink: 0;
  color: var(--accent2);
  margin-top: 2px;
}

.privacy-right strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 4px;
}

.privacy-right p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.privacy-link {
  color: var(--accent2);
  text-decoration: none;
}

.privacy-link:hover { text-decoration: underline; }

.privacy-contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 768px) {
  .privacy-rights-grid { grid-template-columns: 1fr; }
  .privacy-info-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ════════════════════════════════════════════════
   HONEYPOT — invisible to humans, bots fill it
   ════════════════════════════════════════════════ */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}