/* =========================================================
   FORTRESS EQUIPMENT — ADDITIONAL CSS
   Paste this entire file into:
   Appearance → Customize → Additional CSS → Save
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================================
   TEXTURE SYSTEM — subtle, site-wide
   Dark sections (story, footer): faint white dot grid via ::after
   Light/white sections (trust, compat, product, use cases): faint hairline grid via ::before
   .fe-final-cta excluded — its ::before/::after are the diagonal stripe accents
   ========================================================= */

/* DARK sections — white dot grid */
.fe-section-dark { position: relative; overflow: hidden; }

.fe-section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 1;
}
.fe-section-dark > * { position: relative; z-index: 2; }

/* LIGHT / WHITE sections — hairline grid */
.fe-trust,
.fe-compat,
.fe-section { position: relative; overflow: hidden; }

.fe-trust::before,
.fe-compat::before,
.fe-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.fe-trust > *,
.fe-compat > *,
.fe-section > * { position: relative; z-index: 1; }

/* =========================================================
   GLOBAL VARIABLES & RESET
   ========================================================= */
:root {
  --fe-orange: #FF6B00;
  --fe-orange-dark: #E55C00;
  --fe-black: #0A0A0A;
  --fe-charcoal: #1A1A1A;
  --fe-steel: #2A2A2A;
  --fe-grey: #555555;
  --fe-grey-light: #E5E5E5;
  --fe-offwhite: #F5F5F5;
  --fe-white: #FFFFFF;
  --fe-container: 1320px;
}

/* Scoped reset — won't fight Kadence defaults */
.fe * { box-sizing: border-box; }
.fe h1, .fe h2, .fe h3, .fe h4, .fe h5, .fe p, .fe ul, .fe li, .fe a {
  margin: 0; padding: 0; font-family: inherit; text-decoration: none; list-style: none;
}
.fe img { max-width: 100%; display: block; }
.fe { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--fe-black); line-height: 1.6; }
.fe-display { font-family: 'Oswald', Impact, sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-weight: 700; line-height: 1; }
.fe-container { max-width: var(--fe-container); margin: 0 auto; padding: 0 24px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.fe-btn {
  display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 10px;
  padding: 18px 52px !important; font-family: 'Oswald', sans-serif !important; font-weight: 700 !important;
  font-size: 17px !important; letter-spacing: 0.12em; text-transform: uppercase;
  border: 2px solid transparent !important; cursor: pointer; transition: all 0.18s ease;
  border-radius: 6px !important; line-height: 1.2 !important; box-sizing: border-box !important;
}
.fe-btn-primary { background: var(--fe-orange) !important; color: var(--fe-white) !important; border-color: var(--fe-orange) !important; }
.fe-btn-primary:hover { background: var(--fe-orange-dark) !important; border-color: var(--fe-orange-dark) !important; color: var(--fe-black) !important; transform: translateY(-2px); }
.fe-btn-outline { background: transparent !important; color: var(--fe-white) !important; border: 2px solid var(--fe-white) !important; }
.fe-btn-outline:hover { background: var(--fe-white) !important; color: var(--fe-black) !important; border-color: var(--fe-white) !important; }
.fe-btn-dark { background: var(--fe-black) !important; color: var(--fe-white) !important; border-color: var(--fe-black) !important; }
.fe-btn-dark:hover { background: var(--fe-orange) !important; border-color: var(--fe-orange) !important; color: var(--fe-black) !important; }
.fe-btn-sm { padding: 12px 22px !important; font-size: 13px; }

/* =========================================================
   HERO
   ========================================================= */
.fe-hero {
  position: relative; background: var(--fe-black); color: var(--fe-white);
  min-height: 720px; overflow: hidden; display: flex; align-items: center;
}
.fe-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://fortressequip.com/wp-content/uploads/2026/02/IMG_3403.jpg');
  background-size: cover; background-position: center right; opacity: 0.85;
}
.fe-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.10) 100%);
}
@media (max-width: 640px) {
  .fe-hero::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.10) 100%);
  }
}
.fe-hero-inner { position: relative; z-index: 2; padding: 120px 48px; width: 100%; }
.fe-hero-kicker {
  display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fe-orange) !important; padding: 8px 20px; border: 2px solid var(--fe-orange);
  margin-bottom: 28px; text-shadow: none;
}
.fe-hero h1 {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.92; letter-spacing: -0.01em;
  margin-bottom: 24px; max-width: 900px; color: #ffffff !important;
  text-shadow: 0 0 60px rgba(0,0,0,0.9), 0 2px 24px rgba(0,0,0,0.95), 0 0 120px rgba(0,0,0,0.6);
}
.fe-hero h1 span {
  color: var(--fe-orange) !important;
  text-shadow: 0 0 40px rgba(255,107,0,0.5), 0 2px 24px rgba(0,0,0,0.9);
}
.fe-hero-sub {
  font-size: 20px; line-height: 1.5; max-width: 620px; color: #ffffff !important;
  margin-bottom: 0; font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}
.fe-hero-ctas { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 64px; }
.fe-hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(-45deg, var(--fe-orange) 0 20px, var(--fe-black) 20px 40px);
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.fe-trust {
  background: var(--fe-offwhite); padding: 48px 0;
}
.fe-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.fe-trust-item { display: flex; align-items: center; gap: 16px; }
.fe-trust-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--fe-black); color: var(--fe-orange);
  display: flex; align-items: center; justify-content: center;
}
.fe-trust-icon svg { width: 28px; height: 28px; }
.fe-trust-text { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 16px; line-height: 1.15; letter-spacing: 0.04em; }
.fe-trust-text small { display: block; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 12px; color: var(--fe-grey); text-transform: none; letter-spacing: 0; margin-top: 4px; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.fe-section { padding: 96px 0; }
.fe-section-dark { background: var(--fe-black); color: var(--fe-white); }
.fe-section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.fe-section-head .fe-eyebrow {
  display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fe-orange); margin-bottom: 16px;
}
.fe-section-head .fe-eyebrow::before { content: "— "; }
.fe-section-head .fe-eyebrow::after { content: " —"; }
.fe-section-head h2 {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 56px); line-height: 1; margin-bottom: 20px;
}
.fe-section-head p { font-size: 18px; color: var(--fe-grey); }
.fe-section-dark .fe-section-head p { color: var(--fe-grey-light); }

/* =========================================================
   PRODUCT GRID
   ========================================================= */
.fe-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fe-product-card {
  background: var(--fe-white); border: 1px solid var(--fe-grey-light);
  display: flex; flex-direction: column; transition: all 0.22s ease;
  position: relative; overflow: hidden;
}
.fe-product-card:hover { border-color: var(--fe-orange); transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.fe-product-card-img {
  aspect-ratio: 4/3; background: var(--fe-offwhite); position: relative; overflow: hidden;
}
.fe-product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fe-product-card:hover .fe-product-card-img img { transform: scale(1.05); }
.fe-product-badge {
  position: absolute; top: 16px; left: 16px; background: var(--fe-orange);
  color: var(--fe-white); font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 11px; padding: 6px 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.fe-product-badge.fe-badge-dark { background: var(--fe-black); }
.fe-product-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fe-product-body h3 { font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; }
.fe-product-body p { font-size: 14px; color: var(--fe-grey); flex: 1; }
.fe-product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--fe-offwhite);
}
.fe-product-price {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px; color: var(--fe-black);
}
.fe-product-price small { font-size: 12px; color: var(--fe-grey); font-weight: 400; display: block; }

/* =========================================================
   SPLIT / STORY SECTION
   ========================================================= */
.fe-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.fe-split-media { background: var(--fe-steel); min-height: 560px; position: relative; overflow: hidden; }
.fe-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fe-split-content { padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; }
.fe-split-content h2 {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(36px, 4vw, 52px); line-height: 1; margin-bottom: 24px;
  color: #ffffff !important;
}
.fe-split-content h2 span {
  color: var(--fe-orange) !important;
  text-shadow: 0 0 32px rgba(255,107,0,0.5);
}
.fe-split-content p { font-size: 17px; color: #e5e5e5 !important; margin-bottom: 16px; line-height: 1.7; }
.fe-section-dark, .fe-section-dark * { color: #e5e5e5; }
.fe-section-dark h2, .fe-section-dark h3 { color: #ffffff !important; }
.fe-split-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0;
  padding-top: 32px; border-top: 2px solid var(--fe-steel);
}
.fe-split-stat-num {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 44px; line-height: 1; color: var(--fe-orange);
}
.fe-split-stat-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fe-grey); margin-top: 6px; font-weight: 600; }

/* =========================================================
   USE CASES
   ========================================================= */
.fe-usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fe-usecase-card {
  background: var(--fe-white); border: 1px solid var(--fe-grey-light);
  transition: all 0.22s ease; overflow: hidden; display: flex; flex-direction: column;
}
.fe-usecase-card:hover { border-color: var(--fe-orange); }
.fe-usecase-img { aspect-ratio: 16/10; background: var(--fe-steel); overflow: hidden; }
.fe-usecase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fe-usecase-card:hover .fe-usecase-img img { transform: scale(1.05); }
.fe-usecase-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.fe-usecase-body h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px;
  text-transform: uppercase; margin-bottom: 12px; position: relative; padding-left: 24px;
}
.fe-usecase-body h3::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 8px; height: 22px; background: var(--fe-orange);
}
.fe-usecase-body p { color: var(--fe-grey); font-size: 15px; flex: 1; }
.fe-usecase-link {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--fe-black); text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
}
.fe-usecase-link:hover { color: var(--fe-orange); }
.fe-usecase-link::after { content: "→"; transition: transform 0.2s ease; }
.fe-usecase-link:hover::after { transform: translateX(4px); }

/* =========================================================
   BRAND LOGO STRIP (inside compat section)
   ========================================================= */
.fe-brand-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center;
}
.fe-brand-item {
  background: var(--fe-white); border: 2px solid var(--fe-grey-light);
  padding: 28px 16px; text-align: center; transition: all 0.2s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none !important; color: inherit; min-height: 160px;
}
.fe-brand-item:hover { border-color: var(--fe-orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
/* Fixed-height logo container ensures all cards look uniform regardless of logo proportions */
.fe-brand-logo-wrap {
  height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; width: 100%;
}
.fe-brand-item img {
  max-height: 60px; max-width: 130px; width: auto; height: auto;
  display: block; object-fit: contain;
}
.fe-brand-models { font-size: 11px; color: var(--fe-grey); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }

@media (max-width: 1024px) {
  .fe-brand-strip { grid-template-columns: repeat(3, 1fr); }
  .fe-brand-item { min-height: 140px; }
}
@media (max-width: 640px) {
  .fe-brand-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fe-brand-item { min-height: 130px; padding: 20px 12px; }
  .fe-brand-logo-wrap { height: 48px; }
  .fe-brand-item img { max-height: 48px; max-width: 100px; }
  .fe-compat-head h3 { font-size: clamp(28px, 7vw, 40px); }
}

/* =========================================================
   COMPATIBILITY STRIP
   ========================================================= */
.fe-compat { background: var(--fe-offwhite); padding: 48px 0 32px; }
/* Tighten gap between OEM strip and the product section below it */
.fe-compat + .fe-section { padding-top: 48px; }
.fe-compat-head { text-align: center; margin-bottom: 40px; }
.fe-compat-head h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: 0.02em;
}
.fe-compat-head h3 span { color: var(--fe-orange); }
.fe-compat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: center; }
.fe-compat-card {
  background: var(--fe-white); border: 2px solid var(--fe-grey-light);
  padding: 32px 20px; text-align: center; transition: all 0.2s ease;
}
.fe-compat-card:hover { border-color: var(--fe-orange); }
.fe-compat-brand {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px;
  text-transform: uppercase; margin-bottom: 6px;
}
.fe-compat-models { font-size: 12px; color: var(--fe-grey); letter-spacing: 0.05em; text-transform: uppercase; }
.fe-compat-status {
  display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 8px;
  background: var(--fe-orange); color: var(--fe-white); margin-top: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.fe-compat-status.fe-soon { background: var(--fe-grey); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.fe-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fe-testimonial-card {
  background: var(--fe-charcoal); border-left: 4px solid var(--fe-orange); padding: 32px;
}
.fe-testimonial-quote {
  font-size: 16px; line-height: 1.7; color: var(--fe-white); margin-bottom: 20px;
  font-style: italic; font-weight: 500;
}
.fe-testimonial-meta { display: flex; align-items: center; gap: 12px; }
.fe-testimonial-avatar {
  width: 44px; height: 44px; background: var(--fe-orange); color: var(--fe-white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px;
}
.fe-testimonial-name {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--fe-white); text-transform: uppercase; letter-spacing: 0.04em;
}
.fe-testimonial-title { font-size: 12px; color: var(--fe-grey); }
.fe-stars { color: var(--fe-orange); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.fe-final-cta {
  background: var(--fe-orange); color: var(--fe-white); padding: 96px 0;
  position: relative; overflow: hidden;
}
.fe-final-cta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--fe-black) 0 20px, var(--fe-orange) 20px 40px);
}
.fe-final-cta::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--fe-black) 0 20px, var(--fe-orange) 20px 40px);
}
.fe-final-cta-inner { text-align: center; max-width: 840px; margin: 0 auto; }
.fe-final-cta h2 {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 5vw, 64px); line-height: 1; margin-bottom: 20px;
}
.fe-final-cta p { font-size: 19px; margin-bottom: 36px; opacity: 0.95; }
.fe-final-cta .fe-btn-dark:hover { background: var(--fe-white); color: var(--fe-orange); border-color: var(--fe-white); }

/* =========================================================
   FOOTER
   ========================================================= */
footer.fe-footer, div.fe-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  background: var(--fe-black) !important;
  color: var(--fe-grey-light);
  padding: 80px 0 0;
}
.fe-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--fe-steel);
}
.fe-footer-brand h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 28px;
  color: var(--fe-white); text-transform: uppercase; margin-bottom: 16px; letter-spacing: 0.08em;
}
.fe-footer-brand h3 span { color: var(--fe-orange); }
.fe-footer-brand p { font-size: 15px; line-height: 1.6; max-width: 340px; margin-bottom: 20px; }
.fe-footer-tagline {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--fe-orange);
  display: inline-block; padding: 6px 12px; border: 1px solid var(--fe-orange);
}
.fe-footer-col h4 {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--fe-white); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--fe-orange);
  display: inline-block;
}
.fe-footer-col ul li { margin-bottom: 10px; }
.fe-footer-col ul a { color: var(--fe-grey-light); font-size: 14px; transition: all 0.15s ease; }
.fe-footer-col ul a:hover { color: var(--fe-orange); padding-left: 4px; }
.fe-footer-newsletter p { font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.fe-footer-newsletter form { display: flex; border: 2px solid var(--fe-steel); background: var(--fe-charcoal); }
.fe-footer-newsletter input {
  flex: 1; background: transparent; border: none; color: var(--fe-white);
  padding: 12px 14px; font-family: inherit; font-size: 14px; outline: none;
}
.fe-footer-newsletter input::placeholder { color: var(--fe-grey); }
.fe-footer-newsletter button {
  background: var(--fe-orange); color: var(--fe-white); border: none; cursor: pointer;
  padding: 0 20px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.15s ease;
}
.fe-footer-newsletter button:hover { background: var(--fe-orange-dark); }
.fe-footer-contact { margin-top: 24px; font-size: 14px; line-height: 1.8; }
.fe-footer-contact strong { color: var(--fe-white); display: block; font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; margin-bottom: 4px; }
.fe-footer-contact a { color: var(--fe-grey-light); }
.fe-footer-contact a:hover { color: var(--fe-orange); }
.fe-footer-bottom {
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.fe-footer-legal { font-size: 13px; color: var(--fe-grey); }
.fe-footer-legal a { color: var(--fe-grey); margin-left: 20px; }
.fe-footer-legal a:hover { color: var(--fe-orange); }
.fe-footer-social { display: flex; gap: 12px; }
.fe-footer-social a {
  width: 40px; height: 40px; background: var(--fe-charcoal); color: var(--fe-grey-light);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s ease;
}
.fe-footer-social a:hover { background: var(--fe-orange); color: var(--fe-white); }
.fe-footer-social svg { width: 18px; height: 18px; }
.fe-payment-icons { display: flex; gap: 8px; align-items: center; }
.fe-payment-icons span {
  background: var(--fe-charcoal); padding: 6px 10px; font-size: 10px; font-weight: 700;
  color: var(--fe-grey-light); letter-spacing: 0.05em;
}

/* =========================================================
   PAGE TITLE + GREY BAR SUPPRESSION
   ========================================================= */
.entry-title,
.entry-header,
.page-header,
.page-hero-section,
.kadence-breadcrumbs,
.wp-block-post-title,
.site-above-header-wrap,
.kadence-page-title-wrap { display: none !important; }

/* Strip ALL top spacing from every content wrapper Kadence might use */
.content-area,
.site-content,
article.page,
.page .entry-content,
.wp-site-blocks,
.entry-content,
.wp-block-group,
.is-layout-constrained,
.wp-block-post-content,
.hentry { padding-top: 0 !important; margin-top: 0 !important; }

/* Kill any grey background on the content wrapper */
article.page,
.page .hentry { background: transparent !important; box-shadow: none !important; }

/* =========================================================
   KADENCE FOOTER WRAPPER RESET
   #colophon is now used as the global footer container.
   Strip all Kadence default styling so our .fe-footer CSS
   controls 100% of the appearance.
   ========================================================= */
#colophon,
#colophon.site-footer {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  max-width: 100% !important;
  width: 100% !important;
}
/* Reset all Kadence footer inner wrappers */
#colophon .kadence-footer-row,
#colophon .site-footer-row,
#colophon .footer-wrap,
#colophon > div {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Force the custom footer to break out of any column constraint
   and stretch edge-to-edge regardless of the Footer Builder layout */
#colophon .fe-footer {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  max-width: 100vw !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .fe-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-product-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-usecase-grid { grid-template-columns: 1fr; }
  .fe-compat-grid { grid-template-columns: repeat(3, 1fr); }
  .fe-testimonial-grid { grid-template-columns: 1fr; }
  .fe-split { grid-template-columns: 1fr; }
  .fe-split-media { min-height: 380px; }
  .fe-split-content { padding: 64px 32px; }
  .fe-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fe-hero-inner { padding: 100px 48px; }
}
@media (max-width: 768px) {
  .fe-hero-inner { padding: 90px 40px; }
  .fe-hero h1 { font-size: clamp(38px, 8vw, 72px); }
  .fe-hero-sub { margin-bottom: 0; }
  .fe-hero-ctas { margin-top: 52px; }
}
@media (max-width: 640px) {
  .fe-section { padding: 48px 0; }

  /* ---- HERO: shift text to top, expose image below ---- */
  .fe-hero { min-height: 580px; align-items: flex-start; }
  .fe-hero-inner { padding: 36px 28px 24px; }
  .fe-hero h1 { font-size: clamp(30px, 9vw, 52px); margin-bottom: 16px; }
  .fe-hero-kicker { margin-bottom: 16px; font-size: 12px; padding: 6px 12px; }
  .fe-hero-sub { font-size: 15px; margin-bottom: 0; max-width: 100%; }
  .fe-hero-ctas { flex-direction: column; align-items: stretch; margin-top: 40px; }

  /* ---- PRODUCT GRID: 2 columns, compact cards ---- */
  .fe-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fe-product-card-img { aspect-ratio: 1 / 1; }
  .fe-product-body { padding: 12px; gap: 6px; }
  .fe-product-body h3 { font-size: 13px; letter-spacing: 0; }
  .fe-product-body p { font-size: 11px; display: none; } /* hide description on mobile — too cramped */
  .fe-product-price-row { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 10px; }
  .fe-product-price { font-size: 18px; }
  .fe-product-price small { font-size: 10px; }
  .fe-product-price-row .fe-btn-sm { width: 100% !important; text-align: center; justify-content: center; padding: 10px 8px !important; font-size: 12px; }
  .fe-product-badge { font-size: 9px; padding: 4px 8px; }

  /* ---- OTHER ---- */
  .fe-trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .fe-compat-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-btn { width: 100% !important; }

  /* Footer: single column, everything centered */
  .fe-footer-top { grid-template-columns: 1fr; }
  .fe-footer-brand,
  .fe-footer-col,
  .fe-footer-newsletter { text-align: center; }

  /* Brand description max-width reset so it centers properly */
  .fe-footer-brand p { max-width: 100%; }

  /* Tagline centered */
  .fe-footer-tagline { display: block; text-align: center; }

  /* Nav link lists: center the items */
  .fe-footer-col ul { padding: 0; list-style: none; }
  .fe-footer-col ul li { text-align: center; }

  /* Column headings underline: center the orange bar */
  .fe-footer-col h4,
  .fe-footer-newsletter h4 { text-align: center; }
  .fe-footer-col h4::after,
  .fe-footer-newsletter h4::after { left: 50%; transform: translateX(-50%); }

  /* Newsletter form: full width */
  .fe-footer-newsletter form { width: 100%; }

  /* Contact block centered */
  .fe-footer-contact { text-align: center; }

  /* Footer bottom: stacked and centered */
  .fe-footer-bottom { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .fe-footer-legal { text-align: center; }
  .fe-footer-legal a { margin: 0 10px; }
}

/* =========================================================
   KADENCE HEADER — MINIMAL OVERRIDES
   Background colors, fonts, and sticky are set in
   Appearance → Customize → Header Builder.
   This block only handles things Kadence can't do natively.
   ========================================================= */

/* ---- Scroll-reveal: fixed + slide on JS-toggled class ---- */
@media (min-width: 1025px) {
  #masthead,
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transition: transform 0.3s ease !important;
    will-change: transform !important;
  }
  #masthead.fe-header-hidden,
  .site-header.fe-header-hidden {
    transform: translateY(-100%) !important;
  }
  /* Push ALL page content below the fixed header.
     JS on the homepage overrides this with the exact measured value.
     Other pages use this CSS fallback (~top bar 40px + nav row 80px + buffer). */
  body {
    padding-top: 160px !important;
  }
}
@media (max-width: 1024px) {
  #masthead,
  .site-header {
    position: relative !important;
    transform: none !important;
    transition: none !important;
  }
  body {
    padding-top: 0 !important;
  }
}

/* ---- Dropdown menus: black panel with orange top accent ---- */
.main-navigation .sub-menu,
.kadence-navigation .sub-menu,
#site-navigation .sub-menu {
  background: var(--fe-black) !important;
  border: 1px solid var(--fe-steel) !important;
  border-top: 3px solid var(--fe-orange) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5) !important;
  border-radius: 0 !important;
  min-width: 200px !important;
}
.main-navigation .sub-menu a,
.kadence-navigation .sub-menu a,
#site-navigation .sub-menu a {
  font-size: 13px !important;
  padding: 12px 20px !important;
  color: var(--fe-grey-light) !important;
  border-bottom: 1px solid var(--fe-steel) !important;
  letter-spacing: 0.08em !important;
}
.main-navigation .sub-menu a:hover,
.kadence-navigation .sub-menu a:hover,
#site-navigation .sub-menu a:hover {
  color: var(--fe-orange) !important;
  background: var(--fe-charcoal) !important;
}

/* ---- Nav hover + active state ---- */
.kadence-navigation .nav-menu > li > a:hover,
.main-navigation a:hover {
  color: var(--fe-orange) !important;
}
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
  color: var(--fe-orange) !important;
}

/* =========================================================
   PAGE ANIMATIONS
   Hero: CSS keyframes fire on page load (no JS needed).
   Sections/grids: JS adds .fe-will-animate or
   .fe-will-animate-stagger, then IntersectionObserver adds
   .fe-animated when the element enters the viewport.
   Honors prefers-reduced-motion throughout.
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {

  /* ---- Hero: staggered entrance on load ---- */
  .fe-hero-kicker {
    opacity: 0;
    animation: fe-rise 0.55s ease 0.10s forwards;
  }
  .fe-hero h1 {
    opacity: 0;
    animation: fe-rise 0.65s ease 0.28s forwards;
  }
  .fe-hero-sub {
    opacity: 0;
    animation: fe-rise 0.60s ease 0.48s forwards;
  }
  .fe-hero-ctas {
    opacity: 0;
    animation: fe-rise 0.55s ease 0.68s forwards;
  }

  @keyframes fe-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0);    }
  }

  /* ---- Scroll-triggered: initial hidden state (set by JS) ---- */
  .fe-will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  /* Staggered grid items — JS sets transition-delay per child */
  .fe-will-animate-stagger {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  /* ---- Triggered state: JS adds this class via IntersectionObserver ---- */
  .fe-animated {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* If user prefers reduced motion: skip all animations */
@media (prefers-reduced-motion: reduce) {
  .fe-hero-kicker, .fe-hero h1, .fe-hero-sub, .fe-hero-ctas {
    opacity: 1 !important;
    animation: none !important;
  }
  .fe-will-animate, .fe-will-animate-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}