/* ============================================================
   Iron Wei Steel Corp - Main Stylesheet
   ironweimetals.com
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --primary: #1b2a4a;       /* deep navy */
  --primary-dark: #0f1c33;
  --accent: #e07b1a;        /* industrial orange */
  --accent-dark: #c06512;
  --steel: #3a4d6b;         /* steel blue-grey */
  --gunmetal: #2c3444;
  --light-bg: #f4f6f9;
  --mid-bg: #eaecf0;
  --white: #ffffff;
  --text-dark: #1a1e2a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #dde2ea;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Barlow', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,26,0.15);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ----- Layout ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,26,0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.40);
  color: var(--white);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.88rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 2px solid var(--accent);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27,42,74,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--accent); }
.logo-text { line-height: 1.1; }
.logo-text .brand { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; font-family: var(--font-heading); }
.logo-text .tagline { font-size: 0.68rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1.1rem;
  height: 70px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: var(--light-bg);
  color: var(--accent);
  padding-left: 1.5rem;
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); background: var(--light-bg); }
.mobile-nav .mobile-sub a {
  padding-left: 2.5rem;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.mobile-nav-group-title {
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.mobile-nav-cta { padding: 1rem 1.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/ironwei-facility-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,28,51,0.92) 0%,
    rgba(27,42,74,0.80) 50%,
    rgba(15,28,51,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224,123,26,0.15);
  border: 1px solid rgba(224,123,26,0.4);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.trust-item svg { color: var(--accent); width: 18px; height: 18px; }

/* Hero Stats Bar */
.hero-stats {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: 0;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
.value-prop {
  padding: 5rem 0;
}
.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.value-prop-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.value-prop-text h2 { margin-bottom: 1.25rem; }
.value-prop-text p { color: var(--text-mid); }
.value-bullets {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.value-bullet svg { color: var(--accent); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.value-prop-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.value-prop-img img { width: 100%; height: 100%; object-fit: cover; }
.value-prop-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.value-prop-badge .badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.value-prop-badge .badge-text { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  flex: 1;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.product-card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,123,26,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.service-card .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card .learn-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .learn-more svg { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(224,123,26,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon svg { width: 32px; height: 32px; color: var(--accent); }
.why-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; color: var(--text-mid); }
.section-dark .why-card p { color: rgba(255,255,255,0.70); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.industry-card:hover {
  background: rgba(224,123,26,0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.industry-card svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin: 0 auto 1rem;
}
.industry-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.82rem; color: rgba(255,255,255,0.60); margin: 0; }

/* ============================================================
   PROCESS / WORKFLOW
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 76px;
  height: 76px;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  transition: all var(--transition);
}
.process-step.active .step-num,
.process-step:hover .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.process-step h4 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   FACILITY / STRENGTH SECTION
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.facility-img-stack {
  position: relative;
}
.facility-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.facility-img-main img { width: 100%; height: 100%; object-fit: cover; }
.facility-img-thumb {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.facility-img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.facility-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.facility-text h2 { margin-bottom: 1.25rem; }
.facility-text p { color: var(--text-mid); margin-bottom: 1rem; }
.facility-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.facility-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.facility-feature svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.area-tag:hover, .area-tag.highlight {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-mid); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-info .role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.blog-cat {
  background: rgba(224,123,26,0.12);
  color: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-read-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--steel) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,123,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-text p { color: rgba(255,255,255,0.75); max-width: 550px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(224,123,26,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-info-detail strong { display: block; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.contact-info-detail a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.80);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.45); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin: 1.25rem 0;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); }
.social-link svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a::before { content: '→'; color: var(--accent); font-size: 0.75rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.60); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}
.footer-partner {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-partner a { color: var(--accent); }
.footer-partner a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/ironwei-facility-2.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ============================================================
   PRODUCT PAGE SPECIFIC
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.product-gallery {
  position: sticky;
  top: 90px;
}
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.product-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { margin-bottom: 0.75rem; }
.product-desc { color: var(--text-mid); margin-bottom: 2rem; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; font-size: 0.9rem; }
.spec-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.spec-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--light-bg); }
.product-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Specs cards */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.spec-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
}
.spec-card .label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.spec-card .value { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* Related products */
.related-products { margin-top: 4rem; }
.related-products h2 { margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ============================================================
   BLOG SPECIFIC
   ============================================================ */
.blog-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.blog-posts-list { display: flex; flex-direction: column; gap: 2rem; }
.blog-post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-post-card:hover { box-shadow: var(--shadow-lg); }
.blog-post-img { overflow: hidden; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-post-card:hover .blog-post-img img { transform: scale(1.05); }
.blog-post-body { padding: 1.75rem 1.75rem 1.75rem 0; display: flex; flex-direction: column; }
.blog-post-body h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.blog-post-body h2 a:hover { color: var(--accent); }
.blog-post-body p { color: var(--text-mid); font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.cat-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.cat-item:last-child { border-bottom: none; }
.cat-item a { color: var(--text-mid); }
.cat-item a:hover { color: var(--accent); }
.cat-count {
  background: var(--light-bg);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0;
  margin-top: 2rem;
}
.hours-table { width: 100%; font-size: 0.9rem; }
.hours-table tr td { padding: 0.5rem 0; color: var(--text-mid); }
.hours-table tr td:first-child { font-weight: 600; color: var(--text-dark); }
.hours-today td { color: var(--accent) !important; font-weight: 700 !important; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.mobile-sticky .btn { flex: 1; justify-content: center; font-size: 0.9rem; padding: 0.75rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-mid); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 900px) {
  .main-nav, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .hero { min-height: 80vh; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }

  .value-prop-grid,
  .facility-grid,
  .contact-section-grid,
  .product-detail-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; }

  .value-prop-badge,
  .facility-img-thumb { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-body { padding: 1.25rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 72px; }
  .cta-content { flex-direction: column; }
  .cta-actions { width: 100%; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 1rem; }
  .services-grid,
  .why-grid,
  .testimonials-grid,
  .blog-grid,
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-partner { text-align: center; }
  .top-bar-left, .top-bar-right { display: none; }
  .spec-cards { grid-template-columns: 1fr 1fr; }
  .facility-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOMEPAGE v2 — UPGRADE STYLES
   ============================================================ */

/* ----- Hero v2 enhancements ----- */
.hero-v2 { min-height: 88vh; }
.hero-v2 .hero-overlay {
  background: linear-gradient(
    110deg,
    rgba(11,20,40,0.95) 0%,
    rgba(20,35,65,0.85) 45%,
    rgba(11,20,40,0.50) 100%
  );
}
.hero-accent-line {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-h1-v2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-h1-v2 .line-accent { color: var(--accent); display: block; }
.hero-h1-v2 .line-white { color: var(--white); display: block; }
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}
.hero-cap-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.9rem;
  border-radius: 2rem;
  text-transform: uppercase;
}
.hero-cap-tag.accent-tag {
  background: rgba(224,123,26,0.20);
  border-color: rgba(224,123,26,0.50);
  color: #f5a44a;
}
.hero-cta-v2 { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-cta-v2 .btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.hero-cta-v2 .btn-hero-call:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}
.hero-social-proof {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.75rem;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; }
.proof-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
}
.proof-label { font-size: 0.72rem; color: rgba(255,255,255,0.60); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ----- Stats v2 ----- */
.stats-v2 {
  background: var(--primary-dark);
  border-top: none;
  border-bottom: 3px solid var(--accent);
  padding: 0;
}
.stats-v2 .container { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-v2 .stat-item { padding: 1.5rem 1.25rem; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-sub { font-size: 0.72rem; color: rgba(255,255,255,0.40); margin-top: 0.15rem; }

/* ----- Material Types Strip ----- */
.material-strip {
  background: var(--primary);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.material-strip .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.material-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}
.material-strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.material-types { display: flex; gap: 1rem; flex-wrap: wrap; }
.mat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.mat-badge.carbon { background: rgba(60,80,110,0.40); border-color: rgba(60,80,110,0.70); color: rgba(255,255,255,0.85); }
.mat-badge.stainless { background: rgba(150,170,200,0.15); border-color: rgba(150,170,200,0.35); color: rgba(200,220,255,0.90); }
.mat-badge.aluminum { background: rgba(224,123,26,0.12); border-color: rgba(224,123,26,0.30); color: #f5a44a; }
.mat-badge svg { width: 14px; height: 14px; }
.material-strip-cta { margin-left: auto; }

/* ----- Urgency Call Strip ----- */
.urgency-strip {
  background: var(--accent);
  padding: 0.9rem 0;
  text-align: center;
}
.urgency-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.urgency-text {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.urgency-strip a.urgency-call {
  background: var(--white);
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.urgency-strip a.urgency-call:hover { background: var(--primary-dark); color: var(--white); }

/* ----- Products v2 ----- */
.products-v2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products-v2-header .left h2 { margin-bottom: 0.4rem; }
.products-v2-header .left .sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
}
.stock-badge::before { content: '●'; font-size: 0.65rem; }
.product-card-v2 .mat-tag {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(27,42,74,0.82);
  color: rgba(255,255,255,0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 2rem;
  text-transform: uppercase;
}
.product-card-v2 .product-card-img { position: relative; }

/* ----- Capabilities Section ----- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cap-card {
  background: var(--gunmetal);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.cap-card:hover {
  background: rgba(44,52,68,0.95);
  transform: translateY(-4px);
  border-left-color: #f5a44a;
}
.cap-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.35;
}
.cap-card h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.05rem; }
.cap-card p { color: rgba(255,255,255,0.60); font-size: 0.87rem; margin-bottom: 1rem; }
.cap-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cap-spec-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----- Compare Table ----- */
.compare-table-wrap { overflow-x: auto; margin-top: 2rem; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 580px;
}
.compare-table th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.compare-table th:first-child { text-align: left; color: rgba(255,255,255,0.50); }
.compare-table th.highlight-col { background: rgba(224,123,26,0.15); color: var(--accent); border-radius: 4px 4px 0 0; }
.compare-table td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.80); font-weight: 600; }
.compare-table td.highlight-col { background: rgba(224,123,26,0.08); }
.compare-table .check { color: #4ade80; font-size: 1.1rem; }
.compare-table .cross { color: rgba(255,255,255,0.20); font-size: 1.1rem; }
.compare-table .partial { color: #fbbf24; font-size: 0.85rem; }

/* ----- Why Choose v2 ----- */
.why-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-v2-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-v2-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(224,123,26,0.30); }
.why-v2-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,123,26,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-v2-icon svg { width: 26px; height: 26px; color: var(--accent); }
.why-v2-body h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.why-v2-body p { font-size: 0.86rem; color: var(--text-mid); margin: 0; }

/* ----- Service Area v2 ----- */
.area-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.area-borough-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.borough-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 1.1rem 0.85rem;
  text-align: center;
  transition: all var(--transition);
}
.borough-card:hover,
.borough-card.primary { background: rgba(224,123,26,0.15); border-color: rgba(224,123,26,0.40); }
.borough-name { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.borough-note { font-size: 0.72rem; color: rgba(255,255,255,0.50); }
.area-map-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.area-map-block iframe { border-radius: var(--radius); filter: brightness(0.85) saturate(0.7) invert(0.05); }

/* ----- FAQ v2 ----- */
.faq-v2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; max-width: 1000px; margin: 0 auto; }
.faq-v2-grid .faq-item { border-bottom: 1px solid var(--border); }

/* ----- Final CTA v2 ----- */
.final-cta-v2 {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1f3c 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.final-cta-v2::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,123,26,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-v2::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,74,122,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.cta-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-v2-left h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-v2-left p { color: rgba(255,255,255,0.65); margin-bottom: 0; }
.cta-v2-proof {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cta-proof-item { text-align: center; }
.cta-proof-num { font-size: 1.5rem; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }
.cta-proof-label { font-size: 0.72rem; color: rgba(255,255,255,0.50); letter-spacing: 0.06em; text-transform: uppercase; }
.cta-v2-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.cta-v2-right h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.1rem; }
.cta-v2-right .sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.cta-phone-block {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  text-align: center;
  margin-bottom: 0.85rem;
  display: block;
  transition: all var(--transition);
}
.cta-phone-block:hover { background: var(--accent-dark); }
.cta-phone-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: rgba(255,255,255,0.75); }
.cta-phone-num { font-size: 1.6rem; font-weight: 800; color: var(--white); font-family: var(--font-heading); display: block; line-height: 1.2; }
.cta-divider-text {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-divider-text::before,
.cta-divider-text::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.10); }
.cta-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  justify-content: center;
  margin-top: 0.75rem;
}

/* ----- Responsive v2 additions ----- */
@media (max-width: 900px) {
  .why-v2-grid { grid-template-columns: 1fr; }
  .cta-v2-grid { grid-template-columns: 1fr; }
  .area-v2-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-v2-grid { grid-template-columns: 1fr; }
  .area-borough-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-h1-v2 { font-size: 2rem; }
  .hero-social-proof { gap: 1.25rem; }
  .hero-cta-v2 { flex-direction: column; }
  .hero-cta-v2 .btn, .hero-cta-v2 .btn-hero-call { width: 100%; justify-content: center; }
  .cap-grid { grid-template-columns: 1fr; }
  .area-borough-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-v2-proof { gap: 1rem; }
  .stats-v2 .container { grid-template-columns: 1fr 1fr; }
  .material-strip .container { gap: 1rem; }
  .material-strip-divider { display: none; }
}
