/* =============================================
   LogicX Technologies LLC — Main Stylesheet
   Theme: White · Red Accent · Raleway + DM Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Backgrounds */
  --bg:       #ffffff;
  --bg-alt:   #f9fafb;
  --bg-card:  #ffffff;
  --bg-dark:  #111827;

  /* Text */
  --heading:  #0f172a;
  --text:     #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Red accent */
  --accent:       #dc2626;
  --accent-dark:  #b91c1c;
  --accent-light: #fee2e2;
  --accent-mid:   #fca5a5;
  --accent-glow:  rgba(220, 38, 38, 0.18);

  /* Utility */
  --success:  #16a34a;
  --warning:  #d97706;
  --info:     #2563eb;
  --white:    #ffffff;

  /* Borders */
  --border:       #e5e7eb;
  --border-dark:  #d1d5db;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:        0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:     0 20px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-accent: 0 8px 32px rgba(220,38,38,0.18);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Fonts */
  --font-heading: 'Raleway', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --transition: 0.22s ease;
  --nav-height: 74px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 800;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-lg { padding: 16px 34px; font-size: 1.02rem; border-radius: var(--radius); font-weight: 700; }
.btn-sm { padding: 8px 16px; font-size: 0.83rem; border-radius: var(--radius-sm); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(220,38,38,0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 9px 18px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--accent);
}

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent-mid);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

.section-cta { text-align: center; margin-top: 48px; }

.accent { color: var(--accent); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--heading);
  padding: 9px 0;
  font-size: 0.78rem;
  color: #9ca3af;
  font-family: var(--font-body);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a { color: var(--accent-mid); }
.topbar a:hover { color: var(--white); }
.topbar-right { white-space: nowrap; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 6px rgba(220,38,38,0.4));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--heading);
  background: var(--bg-alt);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  margin-left: 10px;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 2px 8px rgba(220,38,38,0.25);
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 120px;
  background: var(--heading);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.22) saturate(0.5);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,10,15,0.97) 42%, rgba(10,10,15,0.65) 100%);
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-company-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.5s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 26px;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #9ca3af;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}

.stat-item { display: flex; flex-direction: column; gap: 3px; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #374151;
}

/* Hero right photo panel */
.hero-photo-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #374151;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.hero-panel-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.hero-panel-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #9ca3af;
  font-family: var(--font-body);
}

.hpb-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #4b5563;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  font-family: var(--font-body);
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid #4b5563;
  border-bottom: 2px solid #4b5563;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* =============================================
   SEARCH SECTION
   ============================================= */
.search-section {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.search-card { text-align: center; }

.search-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.search-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.search-form { max-width: 760px; margin: 0 auto; }

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 5px 5px 5px 18px;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.search-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}

.search-icon { font-size: 1.1rem; flex-shrink: 0; }

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--heading);
  padding: 10px 0;
}
.search-input::placeholder { color: var(--text-light); }

.search-btn { flex-shrink: 0; border-radius: var(--radius-sm); padding: 12px 24px; }

.search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.search-tag {
  display: inline-block;
  padding: 4px 13px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}
.search-tag:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}

/* =============================================
   STORY SECTION
   ============================================= */
.story-section { background: var(--white); }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-photo-wrap { position: relative; }

.story-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.story-photo-caption {
  position: absolute;
  bottom: -16px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  box-shadow: var(--shadow-sm);
}

.story-text .section-badge { margin-bottom: 14px; }

.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.story-text p {
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.story-text em { color: var(--heading); font-style: italic; font-weight: 500; }

.story-callout {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 22px 0;
  font-size: 1rem;
  color: var(--accent-dark);
  line-height: 1.5;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* =============================================
   PHOTO STRIP
   ============================================= */
.photo-strip {
  overflow: hidden;
  background: var(--bg-dark);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}

.photo-strip-inner { display: flex; gap: 0; }

.photo-strip-item {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-strip-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.55) saturate(0.65);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(1);
}

.photo-strip-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* =============================================
   INDUSTRIES — with photo cards
   ============================================= */
.industries { background: var(--bg-alt); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.industry-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.industry-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.82);
}

.industry-card:hover .industry-card-img-wrap img { transform: scale(1.05); }

.industry-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 60%, transparent);
}

.industry-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.industry-card-body { padding: 24px 24px 28px; }

.industry-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.industry-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.industry-list { list-style: none; margin-bottom: 20px; }

.industry-list li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.industry-list li:last-child { border-bottom: none; }

.industry-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

/* =============================================
   WHY LOGICX — 2-col photo layout
   ============================================= */
.why-section { background: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-visual { position: sticky; top: 100px; }

.why-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.why-quote-card {
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.why-quote-card p {
  font-size: 0.93rem;
  color: var(--accent-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.why-quote-card span {
  font-size: 0.75rem;
  color: #9b1c1c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}

.why-icon { font-size: 1.6rem; margin-bottom: 10px; }

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   FEATURED COMPONENTS
   ============================================= */
.featured-section { background: var(--bg-alt); }

.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.component-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.component-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.comp-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.comp-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.comp-badge.in-stock {
  background: #dcfce7;
  color: var(--success);
  border: 1px solid #86efac;
}

.comp-badge.discontinued {
  background: #fef3c7;
  color: var(--warning);
  border: 1px solid #fcd34d;
}

.comp-pn {
  font-family: var(--font-mono);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.comp-mfr {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.comp-desc {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}

.comp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.comp-qty { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }

/* =============================================
   HOW IT WORKS — with step photos
   ============================================= */
.how-section { background: var(--white); }

.steps-grid { display: flex; align-items: flex-start; gap: 0; }

.step-card {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px);
}

.step-icon-wrap { height: 150px; overflow: hidden; }

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.04);
}

.step-card > .step-num,
.step-card > h4,
.step-card > p { padding-left: 22px; padding-right: 22px; }

.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  padding-top: 18px;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.step-card:hover .step-num { opacity: 1; }

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 22px;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--border-dark);
  padding: 0 6px;
  margin-top: 92px;
  flex-shrink: 0;
}

/* =============================================
   AUTHORIZED LINE CARD
   ============================================= */
.linecard-section { background: var(--bg-alt); }

.linecard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  justify-content: center;
}

.lc-brand {
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: default;
}

.lc-brand:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent-dark);
}

.linecard-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.linecard-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.linecard-note a:hover { text-decoration: underline; }

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  background: var(--heading);
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item { display: flex; gap: 16px; align-items: flex-start; }

.trust-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section { background: var(--bg-alt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap { height: 220px; overflow: hidden; }

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
  filter: saturate(1);
}

.team-info { padding: 18px 20px 22px; }

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.team-info span {
  display: block;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--border-dark);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.87rem;
  color: var(--heading);
  margin-bottom: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.testimonial-author span { font-size: 0.74rem; color: var(--text-muted); }

/* =============================================
   CTA SECTION — background photo
   ============================================= */
.cta-section { padding: 80px 0; position: relative; overflow: hidden; }

.cta-bg-img-wrap { position: absolute; inset: 0; z-index: 0; }

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.18) saturate(0.4);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.93) 0%, rgba(30,0,0,0.85) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-text p {
  color: #9ca3af;
  max-width: 500px;
  line-height: 1.75;
  font-size: 0.97rem;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--heading);
  border-top: 1px solid #1f2937;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 16px 0 20px;
}

.footer-contact p { font-size: 0.83rem; color: #6b7280; margin-bottom: 6px; }

.footer-logo { margin-bottom: 0; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-sub { color: #6b7280; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.83rem;
  color: #6b7280;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-mid); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid #1f2937;
}

.footer-bottom p { font-size: 0.76rem; color: #4b5563; }

.footer-shipping {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #4b5563;
}

.shipper-badge {
  padding: 4px 10px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

/* =============================================
   FADE-IN ANIMATION UTILITY
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo-panel { display: none; }
  .hero { padding: 80px 0 100px; }
}

@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .story-photo { height: 360px; }
  .story-photo-caption { position: static; margin-top: 12px; }
  .photo-strip-item img { height: 160px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar-right { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; color: var(--text); }
  .nav-links a:hover { background: var(--bg-alt); color: var(--heading); }
  .hamburger { display: flex; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero-stats { gap: 18px; }
  .stat-divider { display: none; }

  .components-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 0 auto;
    padding: 4px 0;
    font-size: 1.2rem;
  }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .search-input-wrap { flex-wrap: wrap; }
  .search-btn { width: 100%; border-radius: var(--radius-sm); margin: 4px 0; }

  .photo-strip-inner { flex-wrap: wrap; }
  .photo-strip-item { flex: 0 0 50%; }
  .photo-strip-item img { height: 140px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .photo-strip-item { flex: 0 0 100%; }
  .components-grid { grid-template-columns: 1fr; }
}
