@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0e2a45;
  --blue-mid:   #163d60;
  --blue-light: #1e5480;
  --steel:      #6b7f91;
  --steel-light:#9fb3c2;
  --steel-pale: #c8d8e4;
  --dark:       #080f16;
  --darker:     #050b10;
  --white:      #dce8f0;
  --accent:     #4a9eca;
  --accent2:    #2d7aaa;
  --silver:     #a8bfcc;
  --silver-bright: #ccdde8;
  --rust:       #b87333;
  --text:       #c8d8e4;
  --text-dark:  #0e1e2a;
  --font-body: 'IBM Plex Sans', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'IBM Plex Sans', 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  /* subtle metal grain overlay */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

img {
  max-width: 100%;
  height: auto;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.16em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-right: 0.45rem;
}

.header-phone-icon,
.easy-icon,
.card-icon,
.value-icon,
.spotlight-icon,
.rare-icon,
.step-arrow,
.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.header-phone-icon .inline-icon,
.easy-icon .inline-icon,
.card-icon .inline-icon,
.value-icon .inline-icon,
.spotlight-icon .inline-icon,
.rare-icon .inline-icon,
.step-arrow .inline-icon,
.faq-arrow .inline-icon {
  margin-right: 0;
}

.header-phone-icon .icon,
.easy-icon .icon,
.card-icon .icon,
.value-icon .icon,
.spotlight-icon .icon,
.rare-icon .icon {
  width: 1.35em;
  height: 1.35em;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background:
    linear-gradient(180deg, #0a1a28 0%, #0e2a45 100%);
  background-image:
    linear-gradient(180deg, #0a1a28 0%, #0e2a45 100%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px);
  padding: 0 2rem;
  min-height: 148px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--silver-bright);
  white-space: nowrap;
  border: 1px solid rgba(74,158,202,0.35);
  padding: 0.35rem 1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s;
}
.header-phone:hover {
  background: rgba(74,158,202,0.1);
  color: var(--accent);
}
.header-phone-icon { color: var(--accent); font-size: 1rem; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  user-select: none;
  text-decoration: none;
}
.logo img {
  height: 134px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-m {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--silver-bright);
  letter-spacing: 2px;
  text-shadow:
    0 1px 0 #fff,
    0 2px 4px rgba(0,0,0,0.8),
    0 0 20px rgba(74,158,202,0.4);
  background: linear-gradient(180deg, #e0eef8 0%, #7aaac8 50%, #4a9eca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amp {
  background: linear-gradient(180deg, #d4a843 0%, #8a6820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--steel);
  text-transform: uppercase;
  border-left: 2px solid var(--steel);
  padding-left: 0.7rem;
  line-height: 1.2;
}

nav {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
  align-items: center;
}
nav a,
.nav-trigger {
  padding: 0.45rem 0.9rem;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--steel-light);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
nav a:hover,
nav a.active,
.nav-dropdown:hover .nav-trigger,
.nav-dropdown.active .nav-trigger {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-mid) 100%);
  color: var(--silver-bright);
  border-bottom-color: var(--accent);
}
.nav-dropdown {
  position: relative;
}
.nav-trigger {
  display: block;
}
.nav-trigger::after {
  content: 'v';
  margin-left: 0.45rem;
  color: var(--accent);
}
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  padding: 0.45rem;
  background: #050b10;
  border: 1px solid rgba(74,158,202,0.45);
  border-top: 2px solid var(--accent);
  box-shadow: 0 14px 34px rgba(0,0,0,0.7);
  z-index: 1200;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown.active .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  display: flex;
}
.nav-menu a {
  clip-path: none;
  border-bottom: 1px solid rgba(74,158,202,0.14);
  padding: 0.65rem 0.8rem;
}
.nav-menu a:last-child {
  border-bottom: 0;
}

.hamburger {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(74,158,202,0.35);
  padding: 0.35rem 0.65rem;
  line-height: 1;
  font-family: inherit;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background:
    linear-gradient(90deg, #050b10 0%, #0e2a45 30%, #163d60 50%, #0e2a45 70%, #050b10 100%);
  overflow: hidden;
  padding: 0.85rem 0 0.72rem;
  border-bottom: 2px solid rgba(74,158,202,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 2px 12px rgba(0,0,0,0.6);
}
.ticker {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.35;
  color: var(--silver-bright);
  text-transform: uppercase;
}
.ticker span {
  flex-shrink: 0;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.ticker span::before {
  content: '';
  width: 0.42rem;
  height: 0.42rem;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(74,158,202,0.35);
}
@keyframes ticker {
  0%   { transform: translateX(0) translateY(2px); }
  100% { transform: translateX(-50%) translateY(2px); }
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--dark);
}
.slides { width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.018) 60px,
    rgba(255,255,255,0.018) 61px
  );
  pointer-events: none;
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,11,16,0.75) 100%);
  pointer-events: none;
}
.slide-1 { background: linear-gradient(135deg, #050b10 0%, #0e2a45 55%, #071520 100%); }
.slide-2 { background: linear-gradient(135deg, #080f16 0%, #163d60 60%, #0e2a45 100%); }
.slide-3 { background: linear-gradient(135deg, #060d14 0%, #0e2a45 40%, #1e5480 100%); }
.slide-4 { background: linear-gradient(135deg, #080f16 0%, #122840 50%, #1a3e60 100%); }
.slide-5 { background: linear-gradient(135deg, #050b10 0%, #0e2040 55%, #163d60 100%); }
.slide-1 {
  background:
    linear-gradient(90deg, rgba(5,11,16,0.95) 0%, rgba(5,11,16,0.72) 46%, rgba(5,11,16,0.35) 100%),
    url('assets/photo-carbide.png') center/cover no-repeat;
}
.slide-2 {
  background:
    linear-gradient(90deg, rgba(5,11,16,0.95) 0%, rgba(5,11,16,0.72) 46%, rgba(5,11,16,0.35) 100%),
    url('assets/photo-xray.png') center/cover no-repeat;
}
.slide-4 {
  background:
    linear-gradient(90deg, rgba(5,11,16,0.95) 0%, rgba(5,11,16,0.72) 46%, rgba(5,11,16,0.35) 100%),
    url('assets/photo-precious-metals.png') center/cover no-repeat;
}
.slide-5 {
  background:
    linear-gradient(90deg, rgba(5,11,16,0.95) 0%, rgba(5,11,16,0.72) 46%, rgba(5,11,16,0.35) 100%),
    url('assets/photo-escrap-logistics.png') center/cover no-repeat;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-content {
  text-align: center;
  padding: 2rem;
  z-index: 2;
  max-width: 780px;
  position: relative;
}
.slide-content::before {
  content: '';
  display: block;
  width: min(330px, 58vw);
  height: 164px;
  margin: 0 auto 1rem;
  background: url('logo.png') center/contain no-repeat;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55));
}
.slide-tag {
  display: inline-block;
  background: rgba(74,158,202,0.1);
  border: 1px solid rgba(74,158,202,0.5);
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  margin-bottom: 1rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.slide-content h1 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #e8f4fc 0%, #9fc8e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.slide-content p {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--steel-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  letter-spacing: 1px;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  background: linear-gradient(180deg, #2d7aaa 0%, #1e5480 100%);
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn:hover {
  background: linear-gradient(180deg, #3a8fc0 0%, #2d7aaa 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,158,202,0.35);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--silver);
  color: var(--silver-bright);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(168,191,204,0.08);
  border-color: var(--silver-bright);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14,42,69,0.8);
  border: 1px solid var(--steel);
  color: var(--silver-bright);
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.slide-btn:hover { background: var(--blue-mid); }
.slide-btn .icon {
  display: block;
  width: 1.3em;
  height: 1.3em;
}
.prev { left: 1rem; }
.next { right: 1rem; }

.slide-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.dot {
  width: 28px;
  height: 4px;
  background: var(--steel);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active { background: var(--accent); transform: scaleX(1.3); }

/* ===== SECTION SHARED ===== */
section { padding: 4rem 2rem; }
.section-title {
  text-align: center;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--silver-bright);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0.7rem auto 0;
}

/* ===== EASY BANNER ===== */
.easy-banner {
  background: linear-gradient(90deg, #050b10 0%, #0e2a45 50%, #050b10 100%);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 1.2rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.easy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.easy-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--steel-light);
  text-transform: uppercase;
  white-space: nowrap;
}
.easy-item strong { color: var(--silver-bright); }
.easy-icon { font-size: 1.3rem; }
.easy-divider {
  width: 1px;
  height: 36px;
  background: rgba(74,158,202,0.3);
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .easy-divider { display: none; }
  .easy-item { padding: 0.4rem 1rem; }
}

/* ===== SPOTLIGHT ===== */
.spotlight {
  background: linear-gradient(180deg, #050b10 0%, #0a1a28 100%);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 800px) { .spotlight-grid { grid-template-columns: 1fr; } }
.spotlight-card {
  background: linear-gradient(160deg, #0a1a28 0%, #0e2a45 60%, #0a1a28 100%);
  border: 1px solid rgba(74,158,202,0.2);
  border-top: 2px solid var(--accent);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(74,158,202,0.1);
}
.spotlight-label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(90deg, #1e5480, #0e2a45);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.2rem 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.spotlight-icon { font-size: 2.8rem; margin-bottom: 0.8rem; }
.spotlight-card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 0.8rem;
}
.spotlight-card p {
  font-size: 0.92rem;
  color: var(--steel-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.spot-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0;
}
.spot-list li {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--steel-light);
  padding: 0.3rem 0 0.3rem 1rem;
  border-left: 2px solid var(--accent);
  letter-spacing: 0.5px;
}

/* ===== EASY SECTION ===== */
.easy-section {
  background: linear-gradient(180deg, #0a1a28 0%, #0e2a45 100%);
}
.section-sub {
  text-align: center;
  color: var(--steel-light);
  font-size: 1rem;
  max-width: 650px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(180deg, #050b10 0%, #0a1a28 100%);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: linear-gradient(160deg, #0a1a28 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.15);
  border-top: 2px solid rgba(74,158,202,0.4);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(74,158,202,0.08);
  border-top-color: var(--accent);
}
.card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--silver-bright);
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.card p { font-size: 0.88rem; color: var(--steel); line-height: 1.6; }

/* ===== FEATURED ===== */
.photo-proof {
  background: linear-gradient(180deg, #080f16 0%, #0a1a28 100%);
  border-bottom: 1px solid rgba(74,158,202,0.24);
}
.photo-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.photo-proof figure {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(74,158,202,0.24);
  border-bottom: 2px solid var(--accent);
  background: #080f16;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.photo-proof img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.photo-proof figure:hover img {
  transform: scale(1.04);
}
.photo-proof figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(5,11,16,0.92) 25%, rgba(5,11,16,0.98));
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured {
  background: linear-gradient(180deg, #0a1a28 0%, #050b10 100%);
}
.priority-materials {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background:
    linear-gradient(180deg, rgba(74,158,202,0.16) 0%, rgba(10,26,40,0.98) 45%, #050b10 100%);
  border-top: 2px solid rgba(74,158,202,0.55);
  border-bottom: 2px solid rgba(74,158,202,0.25);
}
.priority-materials .section-title {
  margin-bottom: 1.1rem;
}
.material-search {
  max-width: 680px;
  margin: -0.9rem auto 2rem;
}
.material-search label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}
.material-search input {
  width: 100%;
  background: #080f16;
  border: 1px solid rgba(74,158,202,0.35);
  border-bottom: 2px solid var(--accent);
  color: var(--silver-bright);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 0.85rem 1rem;
  text-align: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.material-search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74,158,202,0.14);
}
.material-search input::placeholder {
  color: var(--steel);
}
.priority-materials .feat-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}
.priority-materials .feat-card {
  border-color: rgba(74,158,202,0.35);
  border-bottom-color: var(--accent);
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}
.materials-cta {
  text-align: center;
  margin-top: 2rem;
}
.feat-card.is-hidden {
  display: none;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feat-card {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.15);
  border-bottom: 2px solid rgba(74,158,202,0.3);
  padding: 1.8rem 1.3rem;
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 178px;
  transition: transform 0.25s, box-shadow 0.25s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.feat-card::before,
.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.feat-card::before {
  background: var(--material-photo, none) center/cover no-repeat;
  opacity: 0.42;
  transform: scale(1.02);
  transition: opacity 0.25s, transform 0.3s;
}
.feat-card::after {
  background:
    linear-gradient(180deg, rgba(5,11,16,0.62) 0%, rgba(5,11,16,0.88) 100%),
    linear-gradient(135deg, rgba(14,42,69,0.7), rgba(5,11,16,0.35));
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.6), 0 0 20px rgba(74,158,202,0.1);
  border-bottom-color: var(--accent);
}
.feat-card:hover::before {
  opacity: 0.58;
  transform: scale(1.07);
}
.feat-card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 0.5rem;
}
.feat-card h3,
.feat-card p {
  position: relative;
  z-index: 1;
}
.feat-card p { font-size: 0.84rem; color: var(--steel-light); line-height: 1.5; }
.material-card--carbide { --material-photo: url('assets/photo-carbide.png'); }
.material-card--xray { --material-photo: url('assets/photo-xray.png'); }
.material-card--precious { --material-photo: url('assets/photo-precious-metals.png'); }
.material-card--nonferrous { --material-photo: url('assets/photo-nonferrous-metals.png'); }
.material-card--nickel { --material-photo: url('assets/photo-nickel-alloys.png'); }
.material-card--escrap { --material-photo: url('assets/photo-escrap-logistics.png'); }

/* ===== COMPETITIVE EDGE ===== */
.edge-section {
  background: linear-gradient(180deg, #050b10 0%, #0e2a45 55%, #050b10 100%);
  border-top: 1px solid rgba(74,158,202,0.25);
  border-bottom: 1px solid rgba(74,158,202,0.25);
}
.edge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.edge-card {
  background: rgba(8,15,22,0.82);
  border: 1px solid rgba(74,158,202,0.25);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  min-height: 210px;
}
.edge-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.edge-card h3 {
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.edge-card p {
  color: var(--steel-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, #0e2a45 0%, #050b10 100%);
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.2);
  border-top: 2px solid var(--accent);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.step-num {
  width: 50px; height: 50px;
  background: linear-gradient(180deg, #2d7aaa 0%, #0e2a45 100%);
  border: 1px solid var(--accent);
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.step h3 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--silver-bright);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: var(--steel); line-height: 1.6; }
.step-arrow { font-size: 2rem; color: var(--accent); flex-shrink: 0; opacity: 0.6; }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(180deg, #050b10 0%, #080f16 100%);
}
.contact-wrap {
  display: flex;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #080f16;
  border: 1px solid rgba(74,158,202,0.25);
  border-bottom: 2px solid rgba(74,158,202,0.4);
  padding: 0.75rem 1rem;
  color: var(--silver-bright);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: border-color 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--steel); }
.contact-form select {
  appearance: none;
  color: var(--steel-light);
}
.contact-form select option {
  background: #080f16;
  color: var(--silver-bright);
}
.form-success {
  display: none;
  color: #5cb85c;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.contact-info {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-logo {
  width: min(360px, 86%);
  height: auto;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}
.contact-info h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-bright);
}
.contact-info p { font-size: 0.95rem; color: var(--steel-light); letter-spacing: 0.5px; }
.contact-info a { color: var(--accent); }
.contact-info a:hover { text-decoration: underline; }
.contact-promise { margin-top: 1rem; }
.contact-promise p { font-size: 0.85rem; color: var(--steel); margin-bottom: 0.3rem; }
.badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.badge {
  background: linear-gradient(90deg, #0e2a45, #163d60);
  border: 1px solid rgba(74,158,202,0.4);
  color: var(--steel-light);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  padding: 0.3rem 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ===== FOOTER ===== */
footer {
  background: #030709;
  border-top: 2px solid var(--blue-mid);
  padding: 2rem;
  text-align: center;
}
footer::before {
  content: '';
  display: block;
  width: 310px;
  height: 152px;
  margin: 0 auto 1rem;
  background: url('logo.png') center/contain no-repeat;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--silver-bright); }
footer p { color: var(--steel); font-size: 0.78rem; letter-spacing: 1px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #050b10 0%, #0e2a45 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: clamp(1rem, 8vw, 7rem);
  top: 50%;
  width: min(430px, 54vw);
  height: 230px;
  background: url('logo.png') center/contain no-repeat;
  opacity: 0.16;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #e8f4fc 0%, #9fc8e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--steel-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
.material-photo {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.material-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(74,158,202,0.28);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.inline-material-photo {
  margin: 1.4rem 0 2rem;
}
.inline-material-photo img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(74,158,202,0.24);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 10px 28px rgba(0,0,0,0.38);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.classification-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 2rem;
}
.classification-gallery figure {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(74,158,202,0.24);
  border-bottom: 2px solid var(--accent);
  background: #080f16;
  box-shadow: 0 10px 28px rgba(0,0,0,0.34);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.classification-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.classification-gallery figure::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(5,11,16,0) 0%, rgba(5,11,16,0.88) 100%);
  pointer-events: none;
}
.classification-gallery figure:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}
.classification-gallery figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 1;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--silver-bright);
  text-transform: uppercase;
}

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.content-section h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--silver-bright);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(74,158,202,0.3);
  padding-bottom: 0.5rem;
}
.content-section h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1.5rem 0 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.content-section p {
  color: var(--steel-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}
.content-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.content-section ul li {
  background: linear-gradient(90deg, #0a1a28, #0e2a45);
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0.9rem;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--steel-light);
}
.info-box {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.2);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.info-box h3 { margin-top: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.highlight-bar {
  background: linear-gradient(90deg, #0e2a45, #163d60);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.8rem;
  margin: 1.5rem 0;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--silver-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

/* ===== FLOATING QUOTE BUTTON ===== */
.float-quote {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(180deg, #2d7aaa 0%, #1e5480 100%);
  color: var(--silver-bright);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--accent);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 20px rgba(74,158,202,0.2);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.float-quote:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #3a8fc0 0%, #2d7aaa 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7), 0 0 30px rgba(74,158,202,0.35);
}
@media (max-width: 600px) {
  .float-quote { bottom: 1rem; right: 1rem; font-size: 0.78rem; padding: 0.65rem 1.2rem; }
}

/* ===== FAQ PAGE ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.faq-item {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.15);
  border-left: 3px solid rgba(74,158,202,0.4);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-left-color: var(--accent);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-bright);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.faq-q:hover {
  background: rgba(74,158,202,0.06);
  color: var(--accent);
}
.faq-item.open .faq-q {
  color: var(--accent);
  background: rgba(74,158,202,0.06);
}
.faq-arrow {
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}
.faq-a p {
  color: var(--steel-light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin: 0;
}
.faq-a a { color: var(--accent); }
.faq-a a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 800px) { .about-story { grid-template-columns: 1fr; } }

.about-text h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--silver-bright);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(74,158,202,0.3);
  padding-bottom: 0.5rem;
}
.about-text p {
  color: var(--steel-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 260px;
}
.stat-box {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.2);
  border-top: 2px solid var(--accent);
  padding: 1.5rem 1rem;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.stat-num {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #e8f4fc 0%, #4a9eca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
}

.about-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,158,202,0.3), transparent);
  margin: 2.5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.value-card {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.15);
  border-top: 2px solid rgba(74,158,202,0.4);
  padding: 1.8rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border-top-color: var(--accent);
}
.value-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.value-card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: var(--steel); line-height: 1.7; }

.about-commitment {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.2);
  border-left: 3px solid var(--accent);
  padding: 2rem 2.5rem;
}
.about-commitment h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--silver-bright);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-commitment p {
  color: var(--steel-light);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 0;
}
.trust-panel > div {
  background: linear-gradient(160deg, #080f16 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.18);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.4rem;
}
.trust-panel h3 {
  margin-top: 0;
}
.trust-panel a {
  color: var(--accent);
}
.trust-panel a:hover {
  text-decoration: underline;
}

.about-rare {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #050b10 0%, #0e2a45 100%);
  border: 1px solid rgba(74,158,202,0.25);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin: 2rem 0;
}
.rare-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.rare-text h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--silver-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.rare-text p {
  color: var(--steel-light);
  line-height: 1.8;
  font-size: 0.93rem;
}
.rare-text strong { color: var(--accent); }
@media (max-width: 600px) { .about-rare { flex-direction: column; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    min-height: 118px;
    gap: 0.7rem;
  }
  .logo img {
    height: 98px;
  }
  .header-phone {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 0.55rem 1rem;
  }
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #050b10; padding: 0.75rem 1rem 1rem; border-bottom: 2px solid var(--accent); max-height: calc(100vh - 78px); overflow-y: auto; }
  nav.open { display: flex; }
  nav a,
  .nav-trigger {
    width: 100%;
    padding: 0.75rem 0.9rem;
  }
  .nav-dropdown { width: 100%; }
  .nav-menu {
    position: static;
    display: flex;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
    background: rgba(8,15,22,0.85);
  }
  .nav-menu a { padding-left: 1.5rem; }
  .hamburger { display: block; }
  .hero { height: 500px; }
  .slide-content::before {
    width: min(280px, 58vw);
    height: 138px;
    margin-bottom: 0.8rem;
  }
  .photo-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  header { padding: 0 1rem; }
  section { padding: 2.5rem 1rem; }
  .hero { height: 480px; }
  .slide-content {
    padding: 1.25rem 3.2rem;
  }
  .slide-content::before {
    width: min(145px, 52vw);
    height: 70px;
  }
  .logo img {
    height: 86px;
  }
  .contact-logo {
    width: min(280px, 86%);
  }
  footer::before {
    width: 250px;
    height: 122px;
  }
  .page-hero::before {
    width: min(320px, 82vw);
    opacity: 0.1;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .contact-wrap { flex-direction: column; }
  .header-phone {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .photo-proof-grid { grid-template-columns: 1fr; }
  .photo-proof figure,
  .photo-proof img {
    min-height: 210px;
  }
  .material-photo {
    margin-top: 1rem;
    padding: 0 1rem;
  }
  .material-photo img {
    aspect-ratio: 4 / 3;
  }
  .classification-gallery {
    grid-template-columns: 1fr;
  }
  .classification-gallery figure,
  .classification-gallery img {
    min-height: 220px;
  }
  .float-quote {
    max-width: calc(100vw - 2rem);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .ticker {
    animation: none;
    transform: none;
  }
}

/* ===== READABILITY FONT REFRESH ===== */
body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body * {
  letter-spacing: 0 !important;
}

nav a,
.nav-trigger,
.header-phone,
.ticker,
.slide-tag,
.btn,
.section-title,
.easy-item,
.spotlight-label,
.spotlight-card h3,
.card h3,
.material-search label,
.feat-card h3,
.edge-kicker,
.edge-card h3,
.step-num,
.step h3,
.contact-info h3,
.badge,
.footer-links a,
.page-hero h1,
.content-section h2,
.content-section h3,
.highlight-bar,
.faq-q,
.about-text h2,
.value-card h3,
.about-commitment h2,
.rare-text h3,
.stat-num,
.stat-label {
  font-family: var(--font-heading);
}

nav a,
.nav-trigger,
.btn,
.section-title,
.easy-item,
.spotlight-label,
.spotlight-card h3,
.card h3,
.feat-card h3,
.edge-kicker,
.edge-card h3,
.step h3,
.footer-links a,
.content-section h2,
.content-section h3,
.faq-q,
.value-card h3,
.rare-text h3 {
  text-transform: none;
}

.section-title,
.page-hero h1,
.slide-content h1 {
  font-weight: 700;
  line-height: 1.15;
}

.slide-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 5vw, 3.7rem);
}

.slide-content p,
.page-hero p,
.section-sub,
.content-section p,
.info-box p,
.spotlight-card p,
.edge-card p,
.card p,
.feat-card p,
.step p,
.contact-info p,
.about-text p,
.value-card p,
.rare-text p,
.about-commitment p,
.faq-a p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
}

nav a,
.nav-trigger {
  font-size: 0.88rem;
  font-weight: 600;
}

.btn,
.header-phone {
  font-size: 0.95rem;
  font-weight: 700;
}

.ticker {
  font-size: 0.9rem;
  font-weight: 600;
}

.feat-card h3,
.card h3,
.edge-card h3,
.step h3,
.faq-q {
  font-size: 1.05rem;
  line-height: 1.35;
}

.content-section h2,
.about-text h2,
.about-commitment h2 {
  font-size: 1.5rem;
}

.content-section h3 {
  font-size: 1.12rem;
}

.material-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .slide-content h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .section-title,
  .page-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  nav a,
  .nav-trigger,
  .btn,
  .header-phone {
    font-size: 1rem;
  }
}
