/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  --red:   #E8381A;
  --red2:  #c42e12;
  --black: #0a0a0a;
  --dark:  #111111;
  --dark2: #181818;
  --dark3: #1e1e1e;
  --muted: #888888;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius: 3px;
  --tr: .2s ease;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
.propulse, .propulse *, .propulse *::before, .propulse *::after { margin: 0; padding: 0; }
body.propulse-site {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════ */
.propulse-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.tag::before { content: '— '; }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes floatDot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes navSlide { from{opacity:0;transform:translateY(-100%)} to{opacity:1;transform:translateY(0)} }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  z-index: 10000; padding: 12px 18px; background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius);
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto;
}

.fade-up { opacity:0; animation: fadeUp .75s ease forwards; }
.d1{animation-delay:.08s} .d2{animation-delay:.22s}
.d3{animation-delay:.38s} .d4{animation-delay:.54s} .d5{animation-delay:.68s}

/* ════════════════════════════════════════════
   ── HEADER / NAV ──
════════════════════════════════════════════ */
.propulse-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  animation: navSlide .5s ease forwards;
}
.propulse-header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.06);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.site-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-brand .site-logo img { height: 34px; }

/* Desktop nav */
.site-nav {
  display: flex; align-items: center; gap: 6px;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 8px 14px; border-radius: 2px;
  transition: color var(--tr), background var(--tr);
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.site-nav a.active { color: var(--white); }

/* CTA button in nav */
.nav-cta {
  margin-left: 12px;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-size: 12px !important;
  transition: background var(--tr), transform .15s !important;
}
.nav-cta:hover { background: var(--red2) !important; transform: translateY(-1px); }

/* ── Language toggle ── */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px; overflow: hidden;
  margin-left: 14px; flex-shrink: 0;
}
.lang-toggle button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  padding: 6px 11px; transition: background var(--tr), color var(--tr);
  text-transform: uppercase; line-height: 1;
}
.lang-toggle button.active { background: var(--red); color: var(--white); }
.lang-toggle button:not(.active):hover { color: var(--white); }
.mobile-nav .lang-toggle { margin-left: 0; margin-top: 16px; align-self: flex-start; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.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 drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,.97);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px 28px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--tr);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .nav-cta {
  margin-left: 0 !important; margin-top: 10px;
  display: block; text-align: center;
  padding: 13px !important;
}

/* ════════════════════════════════════════════
   ── HERO ──
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 72% 50%, rgba(232,56,26,.11) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 55%, #160806 100%);
}
.hero-bg::before {
  content:'';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 85% at 72% 50%, black 20%, transparent 75%);
}
.hero-bg::after {
  content:'';
  position: absolute;
  top:0; right:36%; bottom:0; width:1px;
  background: linear-gradient(to bottom, transparent, rgba(232,56,26,.15), transparent);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px; align-items: start;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 148px 40px 90px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
}
.hero-eyebrow span { display:block; width:28px; height:2px; background:var(--red); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(50px,5.8vw,84px);
  font-weight: 800; line-height: .93;
  text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.6);
  max-width: 500px; line-height: 1.75;
  margin-bottom: 36px;
}

.hero-trust { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
.trust-badge {
  display:flex; align-items:center; gap:7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px; padding: 7px 13px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.5);
}
.trust-badge svg { flex-shrink:0; }

.hero-stats {
  display:flex; gap:40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-item { display:flex; flex-direction:column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 11px; font-weight: 400;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ════════════════════════════════════════════
   ── LEAD CARD + WPFORMS OVERRIDES ──
════════════════════════════════════════════ */
.lead-card {
  background: var(--dark2);
  border: 1px solid rgba(232,56,26,.22);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  position: sticky; top: 90px;
  overflow: hidden;
}
.lead-card::before {
  content:'';
  position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--red), #ff6644, var(--red2));
}
.lead-card-head .lead-card-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 6px;
}
.lead-card-head p {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  margin-bottom: 20px;
}

/* ── WPForms Reset & Brand Overrides ── */
.lead-card .wpforms-container,
.lead-card .wpforms-form { width:100%; }
.lead-card .wpforms-title,
.lead-card .wpforms-description { display:none; }
.lead-card .wpforms-field-container { padding:0; }
.lead-card .wpforms-field { padding:0 0 11px !important; margin:0 !important; }

/* Labels */
.lead-card .wpforms-field-label,
.lead-card .wpforms-field label {
  font-family: var(--font-body) !important;
  font-size: 10px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: 1.8px !important;
  color: rgba(255,255,255,.38) !important;
  margin-bottom: 5px !important; display:block;
}

/* Inputs / Selects / Textareas */
.lead-card .wpforms-field input[type="text"],
.lead-card .wpforms-field input[type="email"],
.lead-card .wpforms-field input[type="tel"],
.lead-card .wpforms-field input[type="url"],
.lead-card .wpforms-field input[type="number"],
.lead-card .wpforms-field select,
.lead-card .wpforms-field textarea {
  width:100% !important;
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 11px 14px !important;
  outline: none !important;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr) !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.lead-card .wpforms-field input::placeholder,
.lead-card .wpforms-field textarea::placeholder { color:rgba(255,255,255,.25) !important; }
.lead-card .wpforms-field input:focus,
.lead-card .wpforms-field select:focus,
.lead-card .wpforms-field textarea:focus {
  border-color: var(--red) !important;
  background: rgba(232,56,26,.04) !important;
  box-shadow: 0 0 0 3px rgba(232,56,26,.1) !important;
}

/* Select arrow */
.lead-card .wpforms-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-color: rgba(255,255,255,.05) !important;
  padding-right: 34px !important; cursor:pointer !important;
}
.lead-card .wpforms-field select option { background:#1c1c1c; color:var(--white); }

/* Textarea */
.lead-card .wpforms-field textarea { min-height:80px !important; resize:vertical !important; }

/* Radio / Checkbox */
.lead-card .wpforms-field-radio li,
.lead-card .wpforms-field-checkbox li {
  display:flex; align-items:center; gap:8px;
  padding:4px 0; font-size:13px;
  color:rgba(255,255,255,.55); list-style:none;
}
.lead-card .wpforms-field-radio input[type="radio"],
.lead-card .wpforms-field-checkbox input[type="checkbox"] {
  width:15px !important; height:15px !important;
  padding:0 !important; accent-color:var(--red); cursor:pointer;
}

/* Half-width columns */
.lead-card .wpforms-field.wpforms-one-half {
  width:calc(50% - 5px) !important;
  display:inline-block !important; vertical-align:top;
}
.lead-card .wpforms-field.wpforms-one-half.wpforms-first { margin-right:10px !important; }

/* Error states */
.lead-card .wpforms-field input.wpforms-error,
.lead-card .wpforms-field select.wpforms-error,
.lead-card .wpforms-field textarea.wpforms-error {
  border-color: var(--red) !important;
  background: rgba(232,56,26,.06) !important;
}
.lead-card .wpforms-error-container,
.lead-card label.wpforms-error {
  font-size:11px !important; color:#ff6b50 !important;
  margin-top:3px !important;
  font-family:var(--font-body) !important;
  font-weight:500 !important;
  text-transform:none !important; letter-spacing:0 !important;
}

/* ── Submit Button ── */
.lead-card .wpforms-submit-container { padding:4px 0 0 !important; margin:0 !important; }
.lead-card .wpforms-submit,
.lead-card button[type="submit"],
.lead-card input[type="submit"] {
  width:100% !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-display) !important;
  font-size: 15px !important; font-weight: 800 !important;
  letter-spacing: 2.5px !important; text-transform: uppercase !important;
  padding: 15px 24px !important; cursor: pointer !important;
  transition: background var(--tr), transform .15s, box-shadow .2s !important;
  box-shadow: 0 4px 20px rgba(232,56,26,.28) !important;
  outline: none !important; display: block !important; margin: 0 !important;
}
.lead-card .wpforms-submit:hover,
.lead-card button[type="submit"]:hover {
  background: var(--red2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 7px 28px rgba(232,56,26,.4) !important;
}
.lead-card .wpforms-submit:active { transform: translateY(0) !important; }

/* Confirmation message */
.lead-card .wpforms-confirmation-container-full,
.lead-card .wpforms-confirmation-scroll {
  background: rgba(232,56,26,.08) !important;
  border: 1px solid rgba(232,56,26,.28) !important;
  border-radius: var(--radius) !important;
  padding: 26px 22px !important; text-align: center !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important; margin-top: 8px !important;
}

/* Multi-step */
.lead-card .wpforms-page-indicator { display:none; }
.lead-card .wpforms-page-button {
  background: var(--red) !important; color: var(--white) !important;
  border: none !important; border-radius: var(--radius) !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  padding: 11px 22px !important; cursor: pointer !important;
  transition: background var(--tr) !important;
}
.lead-card .wpforms-page-button:hover { background: var(--red2) !important; }

/* Remove default padding wrappers */
.lead-card .wpforms-container-full { padding:0 !important; }
.lead-card .wpforms-form .wpforms-field-container { margin:0 !important; }

.form-trust {
  display:flex; align-items:center; justify-content:center; gap:7px;
  margin-top:12px;
  font-size: 11px; color:rgba(255,255,255,.28); font-weight:500;
}
.form-trust svg { flex-shrink:0; opacity:.45; }

/* ════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════ */
.propulse section, section.propulse-section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px,4.2vw,60px);
  font-weight: 800; text-transform: uppercase;
  line-height: .93; letter-spacing: -1px;
}
.section-header h2 em { font-style: normal; color: var(--red); }
.section-header p {
  margin-top: 18px;
  font-size: 16px; color: rgba(255,255,255,.5);
  max-width: 540px; line-height: 1.75;
}

/* ════════════════════════════════════════════
   WHY PROPULSE
════════════════════════════════════════════ */
.why { background: var(--dark); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.why-item {
  background: var(--dark2); padding: 38px 32px;
  position:relative; overflow:hidden;
  transition: background var(--tr); cursor:default;
}
.why-item:hover { background: var(--dark3); }
.why-item::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--red);
  transition: width .45s ease;
}
.why-item:hover::after { width:100%; }
.why-icon { font-size:26px; margin-bottom:16px; display:block; }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing:.3px;
  margin-bottom: 10px;
}
.why-item p { font-size:14px; color:rgba(255,255,255,.44); line-height:1.75; }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services { background: var(--black); }
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
.service-card {
  background: var(--dark2); padding: 44px 40px;
  position:relative; overflow:hidden;
  transition: transform .3s ease, background .2s;
}
.service-card:hover { background: var(--dark3); transform: translateY(-3px); }
.service-card.featured {
  background: linear-gradient(140deg,#180d09 0%,#1e1313 100%);
  border: 1px solid rgba(232,56,26,.18);
  grid-column: span 2;
}
.service-card.featured:hover { transform: translateY(-2px); }
.service-num {
  font-family:var(--font-display); font-size:80px; font-weight:800;
  color:rgba(255,255,255,.03);
  position:absolute; top:16px; right:24px;
  line-height:1; user-select:none; pointer-events:none;
}
.service-badge {
  display:inline-flex; align-items:center; gap:5px;
  background: rgba(232,56,26,.09); border:1px solid rgba(232,56,26,.27);
  border-radius:2px; padding:4px 11px;
  font-size:10px; font-weight:700;
  color:var(--red); text-transform:uppercase; letter-spacing:2px;
  margin-bottom:16px;
}
.service-card h3 {
  font-family:var(--font-display);
  font-size:26px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px;
  margin-bottom:11px; line-height:1.08;
}
.service-card p { font-size:14px; color:rgba(255,255,255,.44); line-height:1.8; margin-bottom:20px; }
.service-list { list-style:none; display:flex; flex-direction:column; gap:7px; }
.service-list li {
  font-size:13px; color:rgba(255,255,255,.54);
  display:flex; align-items:flex-start; gap:10px;
}
.service-list li::before {
  content:''; display:block; width:14px; height:2px;
  background:var(--red); margin-top:9px; flex-shrink:0;
}
.featured .service-list { columns:2; gap:0; }
.featured .service-list li { break-inside:avoid; }

/* ════════════════════════════════════════════
   AI SECTION
════════════════════════════════════════════ */
.ai-section { background: var(--dark); overflow:hidden; }
.ai-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }

.ai-visual {
  position:relative; height:440px;
  display:flex; align-items:center; justify-content:center;
}
.orbit {
  position:absolute; border-radius:50%;
  border:1px solid rgba(232,56,26,.13);
}
.orbit-1 { width:380px; height:380px; animation:spin 22s linear infinite; }
.orbit-2 { width:272px; height:272px; animation:spin 15s linear infinite reverse; }
.orbit-3 { width:165px; height:165px; animation:spin 9s linear infinite; }
.orbit::before {
  content:''; position:absolute; top:-5px; left:50%;
  width:10px; height:10px; background:var(--red); border-radius:50%;
  transform:translateX(-50%); animation:pulse 2.2s infinite;
}
.ai-center {
  position:absolute; width:92px; height:92px;
  background:linear-gradient(135deg,var(--red),var(--red2)); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:34px;
  box-shadow:0 0 70px rgba(232,56,26,.38),0 0 140px rgba(232,56,26,.12); z-index:2;
}
.ai-node {
  position:absolute; background:var(--dark2);
  border:1px solid rgba(232,56,26,.27); border-radius:var(--radius);
  padding:7px 13px; font-size:11px; font-weight:600;
  color:rgba(255,255,255,.65); letter-spacing:1px; text-transform:uppercase;
  white-space:nowrap; z-index:3;
}
.ai-node:nth-child(1){top:6px;left:50%;transform:translateX(-50%);animation:floatDot 3.2s ease-in-out infinite 0s}
.ai-node:nth-child(2){top:28%;right:0;animation:floatDot 3.2s ease-in-out infinite .6s}
.ai-node:nth-child(3){bottom:24%;right:4%;animation:floatDot 3.2s ease-in-out infinite 1.2s}
.ai-node:nth-child(4){bottom:8%;left:50%;transform:translateX(-50%);animation:floatDot 3.2s ease-in-out infinite 1.8s}
.ai-node:nth-child(5){top:28%;left:0;animation:floatDot 3.2s ease-in-out infinite 2.4s}

.ai-content h2 {
  font-family:var(--font-display);
  font-size:clamp(36px,3.8vw,54px);
  font-weight:800; text-transform:uppercase;
  line-height:.93; letter-spacing:-1px; margin-bottom:18px;
}
.ai-content h2 em { font-style:normal; color:var(--red); }
.ai-content > p { font-size:15px; color:rgba(255,255,255,.5); line-height:1.8; margin-bottom:28px; }

.ai-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.pill {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:2px; padding:5px 12px;
  font-size:12px; font-weight:500;
  color:rgba(255,255,255,.48); letter-spacing:.3px;
}
.pill.hot { background:rgba(232,56,26,.09); border-color:rgba(232,56,26,.27); color:var(--red); }

.ai-models { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.model-chip {
  background:var(--dark2); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius); padding:11px 12px;
  display:flex; flex-direction:column; gap:3px;
  transition:border-color var(--tr);
}
.model-chip:hover { border-color:rgba(232,56,26,.28); }
.model-chip span:first-child { font-size:13px; font-weight:600; color:var(--white); }
.model-chip span:last-child  { font-size:11px; color:var(--muted); }

/* ════════════════════════════════════════════
   AI SERVICES (detailed)
════════════════════════════════════════════ */
.ai-services { background: var(--black); position:relative; overflow:hidden; }
.ai-services::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 40% at 50% 0%, rgba(232,56,26,.06) 0%, transparent 70%);
  pointer-events:none;
}
.ai-serv-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  position:relative; z-index:1;
}
.ai-serv-card {
  background:var(--dark2); padding:38px 32px;
  position:relative; overflow:hidden;
  transition:transform .3s ease, background .2s;
}
.ai-serv-card:hover { background:var(--dark3); transform:translateY(-3px); }
.ai-serv-card::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--red);
  transition:width .45s ease;
}
.ai-serv-card:hover::after { width:100%; }
.ai-serv-icon {
  width:48px; height:48px; border-radius:var(--radius);
  background:rgba(232,56,26,.1); border:1px solid rgba(232,56,26,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:20px;
}
.ai-serv-card h3 {
  font-family:var(--font-display);
  font-size:21px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px;
  margin-bottom:11px; line-height:1.1;
}
.ai-serv-card > p { font-size:14px; color:rgba(255,255,255,.45); line-height:1.75; margin-bottom:18px; }
.ai-serv-list { list-style:none; display:flex; flex-direction:column; gap:7px; }
.ai-serv-list li {
  font-size:12.5px; color:rgba(255,255,255,.52);
  display:flex; align-items:flex-start; gap:9px;
}
.ai-serv-list li::before {
  content:''; display:block; width:5px; height:5px; border-radius:50%;
  background:var(--red); margin-top:7px; flex-shrink:0;
}

/* AI USE CASES band */
.ai-usecases { background: var(--dark); }
.usecase-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
.usecase {
  background:var(--dark2); padding:36px 36px;
  display:flex; gap:22px; align-items:flex-start;
  transition:background var(--tr);
}
.usecase:hover { background:var(--dark3); }
.usecase-num {
  font-family:var(--font-display); font-size:30px; font-weight:800;
  color:var(--red); line-height:1; flex-shrink:0;
  min-width:48px;
}
.usecase h4 {
  font-family:var(--font-display); font-size:19px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px; margin-bottom:8px;
}
.usecase p { font-size:13.5px; color:rgba(255,255,255,.48); line-height:1.7; }
.usecase .result-tag {
  display:inline-block; margin-top:12px;
  font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase;
  color:var(--red); background:rgba(232,56,26,.08);
  border:1px solid rgba(232,56,26,.22); border-radius:2px;
  padding:4px 10px;
}

/* AI WORKFLOW diagram strip */
.ai-flow { background: var(--black); }
.flow-steps {
  display:flex; align-items:stretch; gap:0;
  position:relative; flex-wrap:wrap;
}
.flow-step {
  flex:1; min-width:180px;
  background:var(--dark2); border:1px solid rgba(255,255,255,.05);
  padding:28px 24px; position:relative;
  display:flex; flex-direction:column; gap:10px;
}
.flow-step:not(:last-child)::after {
  content:'→'; position:absolute; right:-12px; top:50%;
  transform:translateY(-50%); z-index:2;
  color:var(--red); font-size:20px; font-weight:700;
  background:var(--black); width:24px; text-align:center;
}
.flow-step .fs-num {
  font-family:var(--font-display); font-size:12px; font-weight:700;
  letter-spacing:2px; color:rgba(232,56,26,.7); text-transform:uppercase;
}
.flow-step h5 {
  font-family:var(--font-display); font-size:17px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px; color:var(--white);
}
.flow-step p { font-size:12.5px; color:var(--muted); line-height:1.6; }

@media (max-width:1024px) {
  .ai-serv-grid { grid-template-columns:1fr; }
  .usecase-grid { grid-template-columns:1fr; }
  .flow-step { min-width:calc(50% - 1px); }
  .flow-step:nth-child(2)::after,
  .flow-step:nth-child(4)::after { display:none; }
}
@media (max-width:640px) {
  .flow-step { min-width:100%; }
  .flow-step::after { display:none !important; }
  .usecase { flex-direction:column; gap:12px; }
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process { background: var(--black); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::before {
  content:''; position:absolute; top:43px; left:12%; right:12%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(232,56,26,.5),transparent);
}
.step { padding:0 18px; text-align:center; }
.step-num {
  width:86px; height:86px; border:1px solid rgba(232,56,26,.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; background:var(--dark); position:relative; z-index:1;
  transition:background .3s, border-color .3s;
}
.step:hover .step-num { background:rgba(232,56,26,.09); border-color:var(--red); }
.step-num span { font-family:var(--font-display); font-size:30px; font-weight:800; color:var(--red); }
.step h4 {
  font-family:var(--font-display); font-size:18px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px; margin-bottom:8px;
}
.step p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ════════════════════════════════════════════
   RESULTS
════════════════════════════════════════════ */
.results { background: var(--dark); }
.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-bottom:52px; }
.result-card {
  background:var(--dark2); padding:38px 32px;
  position:relative; overflow:hidden;
}
.result-card::before {
  content:''; position:absolute; top:0; left:0;
  width:3px; height:0; background:var(--red);
  transition:height .45s ease;
}
.result-card:hover::before { height:100%; }
.result-metric { font-family:var(--font-display); font-size:54px; font-weight:800; color:var(--red); line-height:1; margin-bottom:8px; }
.result-card h4 { font-family:var(--font-display); font-size:16px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; color:var(--white); margin-bottom:10px; }
.result-card p { font-size:13px; color:var(--muted); line-height:1.65; }
.result-client { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:2px; color:rgba(232,56,26,.65); margin-top:14px; }

.testimonial-strip {
  border:1px solid rgba(255,255,255,.07); border-radius:var(--radius);
  padding:38px 44px;
  display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center;
  background:rgba(255,255,255,.02);
}
.testimonial-strip blockquote {
  font-size:17px; font-weight:300;
  color:rgba(255,255,255,.7); line-height:1.75; font-style:italic;
}
.testimonial-strip blockquote::before {
  content:'"'; font-family:var(--font-display); font-size:76px; font-weight:800;
  color:var(--red); line-height:0; vertical-align:-28px; margin-right:5px;
}
.t-author { text-align:right; white-space:nowrap; }
.t-author strong { display:block; font-size:15px; font-weight:600; color:var(--white); }
.t-author span   { font-size:12px; color:var(--muted); }

/* ════════════════════════════════════════════
   TECH STACK
════════════════════════════════════════════ */
.stack { background:var(--black); padding:72px 0; }
.stack-label { font-family:var(--font-display); font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--muted); text-align:center; margin-bottom:30px; }
.stack-list { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.stack-chip {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  border-radius:2px; padding:7px 15px;
  font-size:12px; font-weight:500; color:rgba(255,255,255,.43);
  transition:color .2s, border-color .2s; cursor:default;
}
.stack-chip:hover { color:var(--white); border-color:rgba(232,56,26,.35); }

/* ════════════════════════════════════════════
   INDUSTRIES
════════════════════════════════════════════ */
.industries { background:var(--dark); }
.ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.ind-item {
  background:var(--dark2); padding:30px 24px;
  display:flex; flex-direction:column; gap:11px;
  transition:background var(--tr); cursor:default;
}
.ind-item:hover { background:var(--dark3); }
.ind-icon { font-size:26px; }
.ind-item h4 { font-family:var(--font-display); font-size:17px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; }
.ind-item p { font-size:12px; color:var(--muted); line-height:1.65; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { background:var(--black); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.faq-item {
  background:var(--dark2); padding:30px 32px;
  border-bottom:1px solid rgba(255,255,255,.04);
  transition:background var(--tr); cursor:default;
}
.faq-item:hover { background:var(--dark3); }
.faq-item h4 {
  font-family:var(--font-display); font-size:17px; font-weight:700;
  text-transform:uppercase; letter-spacing:.3px; margin-bottom:9px; color:var(--white);
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.faq-item h4 span { color:var(--red); font-size:18px; flex-shrink:0; margin-top:1px; }
.faq-item p { font-size:13px; color:var(--muted); line-height:1.7; }

/* ════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════ */
.cta-band {
  background:linear-gradient(135deg,var(--red) 0%,#b52c12 100%);
  padding:88px 0; position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:42px 42px;
}
.cta-band::after {
  content:'START'; position:absolute; right:-50px; top:50%;
  transform:translateY(-50%);
  font-family:var(--font-display); font-size:200px; font-weight:800;
  color:rgba(255,255,255,.05); letter-spacing:-5px; line-height:1;
  user-select:none; pointer-events:none;
}
.cta-band-inner {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.cta-band h2 {
  font-family:var(--font-display);
  font-size:clamp(30px,3.8vw,52px);
  font-weight:800; text-transform:uppercase;
  line-height:.93; letter-spacing:-1px;
}
.cta-band p { font-size:16px; color:rgba(255,255,255,.78); margin-top:10px; max-width:480px; }
.btn-white {
  display:inline-block; background:var(--white); color:var(--red);
  font-family:var(--font-display); font-size:15px; font-weight:800;
  letter-spacing:2px; text-transform:uppercase;
  padding:18px 40px; border:none; border-radius:var(--radius);
  cursor:pointer; white-space:nowrap; text-decoration:none;
  transition:transform .15s, box-shadow .2s;
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.3); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background:var(--dark); border-top:1px solid rgba(255,255,255,.05);
  padding:60px 0 32px;
}
.footer-inner {
  display:grid; grid-template-columns:1fr auto auto auto; gap:60px; margin-bottom:48px;
}
.footer-brand .site-logo { margin-bottom:16px; }
.footer-brand p { font-size:13px; color:var(--muted); line-height:1.7; max-width:220px; }
.footer-col h5 {
  font-family:var(--font-display); font-size:11px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,.35);
  margin-bottom:16px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a {
  font-size:13px; color:rgba(255,255,255,.5);
  transition:color var(--tr);
}
.footer-col ul li a:hover { color:var(--red); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:28px; border-top:1px solid rgba(255,255,255,.05);
  font-size:12px; color:rgba(255,255,255,.25);
}
.footer-bottom a { color:rgba(255,255,255,.35); transition:color var(--tr); }
.footer-bottom a:hover { color:var(--white); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:52px; padding:120px 24px 70px; }
  .lead-card  { position:static; max-width:600px; }
  .why-grid   { grid-template-columns:1fr 1fr; }
  .services-grid { grid-template-columns:1fr; }
  .service-card.featured { grid-column:span 1; }
  .featured .service-list { columns:1; }
  .ai-inner   { grid-template-columns:1fr; }
  .ai-visual  { height:300px; }
  .process-steps { grid-template-columns:1fr 1fr; gap:48px; }
  .process-steps::before { display:none; }
  .results-grid { grid-template-columns:1fr; }
  .testimonial-strip { grid-template-columns:1fr; }
  .t-author   { text-align:left; }
  .ind-grid   { grid-template-columns:1fr 1fr; }
  .faq-grid   { grid-template-columns:1fr; }
  .cta-band-inner { flex-direction:column; text-align:center; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:36px; }
  .hamburger  { display:flex; }
  .site-nav   { display:none; }
  .propulse-container  { padding:0 24px; }
  .header-inner { padding:0 24px; }
}
@media (max-width:640px) {
  .site-logo img { height: 32px; }
  .footer-brand .site-logo img { height: 30px; }
  section { padding:72px 0; }
  .hero h1 { font-size:44px; }
  .hero-stats { flex-wrap:wrap; gap:22px; }
  .hero-trust { gap:8px; }
  .why-grid   { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .ind-grid   { grid-template-columns:1fr; }
  .ai-models  { grid-template-columns:1fr 1fr; }
  .lead-card  { padding:26px 20px 22px; }
  .lead-card .wpforms-field.wpforms-one-half { width:100% !important; display:block !important; }
  .lead-card .wpforms-field.wpforms-one-half.wpforms-first { margin-right:0 !important; }
  .footer-inner { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .cta-band::after { display:none; }
}
/* ═══ BLOG / ARCHIVE (hello-elementor native templates) ═══ */
/*
 * White background culprit: hello-elementor reset.css sets
 *   body { background-color: #fff; color: #333; }
 * which can win via load order / LiteSpeed CSS merge unless overridden
 * with equal-or-higher specificity on html, body, and content wrappers.
 */
html:has(body.propulse-blog) {
  background-color: var(--black);
}

body.propulse-site.propulse-blog,
body.propulse-site.propulse-blog.elementor-default,
body.propulse-site.propulse-blog.elementor-kit-3217 {
  background-color: var(--black) !important;
  background: var(--black) !important;
  color: var(--white);
}

body.propulse-site.propulse-blog #content.site-main,
body.propulse-site.propulse-blog main.site-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  background-color: var(--black);
  color: rgba(255,255,255,.85);
}

body.propulse-site.propulse-blog .page-header {
  margin-bottom: 28px;
  background: transparent;
}

body.propulse-site.propulse-blog .entry-title,
body.propulse-site.propulse-blog h1.entry-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}

body.propulse-site.propulse-blog .page-content,
body.propulse-site.propulse-blog .entry-content,
body.propulse-site.propulse-blog .page-content p,
body.propulse-site.propulse-blog .entry-content p,
body.propulse-site.propulse-blog .wp-block-paragraph,
body.propulse-site.propulse-blog .wp-block-list,
body.propulse-site.propulse-blog li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

body.propulse-site.propulse-blog .page-content h2,
body.propulse-site.propulse-blog .entry-content h2,
body.propulse-site.propulse-blog .wp-block-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 2em 0 .6em;
}

body.propulse-site.propulse-blog .page-content h3,
body.propulse-site.propulse-blog .entry-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 1.6em 0 .5em;
}

body.propulse-site.propulse-blog .page-content h4,
body.propulse-site.propulse-blog .entry-content h4,
body.propulse-site.propulse-blog .page-content h5,
body.propulse-site.propulse-blog .entry-content h5,
body.propulse-site.propulse-blog .page-content h6,
body.propulse-site.propulse-blog .entry-content h6 {
  font-family: var(--font-display);
  color: var(--white);
}

body.propulse-site.propulse-blog .page-content a,
body.propulse-site.propulse-blog .entry-content a { color: var(--red); }
body.propulse-site.propulse-blog .page-content a:hover,
body.propulse-site.propulse-blog .entry-content a:hover { color: var(--red2); }

body.propulse-site.propulse-blog .post-tags,
body.propulse-site.propulse-blog .tag-links {
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
body.propulse-site.propulse-blog .post-tags a { color: var(--red); }

body.propulse-site.propulse-blog .navigation,
body.propulse-site.propulse-blog .pagination,
body.propulse-site.propulse-blog .nav-links {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.propulse-site.propulse-blog .navigation a,
body.propulse-site.propulse-blog .pagination a,
body.propulse-site.propulse-blog .nav-links a,
body.propulse-site.propulse-blog .page-numbers {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  transition: color var(--tr), border-color var(--tr);
  background: transparent;
}

body.propulse-site.propulse-blog .navigation a:hover,
body.propulse-site.propulse-blog .pagination a:hover,
body.propulse-site.propulse-blog .nav-links a:hover,
body.propulse-site.propulse-blog .page-numbers:hover,
body.propulse-site.propulse-blog .page-numbers.current {
  color: var(--white);
  border-color: var(--red);
}
body.propulse-site.propulse-blog .page-numbers.current { background: rgba(232,56,26,.15); }

body.propulse-site.propulse-blog .archive .page-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 24px;
}

body.propulse-site.propulse-blog article.post {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: transparent;
}

body.propulse-site.propulse-blog article.post .entry-title a {
  color: inherit;
  text-decoration: none;
}
body.propulse-site.propulse-blog article.post .entry-title a:hover { color: var(--red); }

/* Comments */
body.propulse-site.propulse-blog .comments-area,
body.propulse-site.propulse-blog .comment-respond {
  background: transparent;
  color: rgba(255,255,255,.72);
}

body.propulse-site.propulse-blog .comments-area .title-comments,
body.propulse-site.propulse-blog .comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

body.propulse-site.propulse-blog .comment-body,
body.propulse-site.propulse-blog .comment-content,
body.propulse-site.propulse-blog .comment-metadata,
body.propulse-site.propulse-blog .comment-form label {
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
}

body.propulse-site.propulse-blog .comment-body {
  border-color: rgba(255,255,255,.08) !important;
}

body.propulse-site.propulse-blog .comment-form input[type="text"],
body.propulse-site.propulse-blog .comment-form input[type="email"],
body.propulse-site.propulse-blog .comment-form input[type="url"],
body.propulse-site.propulse-blog .comment-form textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-body);
}

body.propulse-site.propulse-blog .comment-form input:focus,
body.propulse-site.propulse-blog .comment-form textarea:focus {
  border-color: var(--red);
  outline: none;
}

/* ═══ BLOG INDEX / ARCHIVE LISTING ═══ */
body.propulse-site.propulse-blog.blog main.site-main,
body.propulse-site.propulse-blog.archive main.site-main,
body.propulse-site.propulse-blog.search main.site-main {
  max-width: 1200px !important;
  padding: 120px 40px 80px;
}

body.propulse-site.propulse-blog .archive-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 640px;
}

body.propulse-site.propulse-blog.blog .page-content,
body.propulse-site.propulse-blog.archive .page-content,
body.propulse-site.propulse-blog.search .page-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

body.propulse-site.propulse-blog.blog article.post,
body.propulse-site.propulse-blog.archive article.post,
body.propulse-site.propulse-blog.search article.post {
  background: var(--dark2) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  padding: 36px 32px !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
  transition: background var(--tr), border-color var(--tr), transform .25s ease;
}

body.propulse-site.propulse-blog.blog article.post:hover,
body.propulse-site.propulse-blog.archive article.post:hover,
body.propulse-site.propulse-blog.search article.post:hover {
  background: var(--dark3) !important;
  border-color: rgba(232,56,26,.22) !important;
  transform: translateY(-2px);
}

body.propulse-site.propulse-blog.blog article.post::after,
body.propulse-site.propulse-blog.archive article.post::after,
body.propulse-site.propulse-blog.search article.post::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .45s ease;
}

body.propulse-site.propulse-blog.blog article.post:hover::after,
body.propulse-site.propulse-blog.archive article.post:hover::after,
body.propulse-site.propulse-blog.search article.post:hover::after {
  width: 100%;
}

body.propulse-site.propulse-blog.blog article.post h2.entry-title,
body.propulse-site.propulse-blog.archive article.post h2.entry-title,
body.propulse-site.propulse-blog.search article.post h2.entry-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.05;
  margin-bottom: 0;
}

body.propulse-site.propulse-blog.blog article.post h2.entry-title a,
body.propulse-site.propulse-blog.archive article.post h2.entry-title a,
body.propulse-site.propulse-blog.search article.post h2.entry-title a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--tr);
}

body.propulse-site.propulse-blog.blog article.post h2.entry-title a:hover,
body.propulse-site.propulse-blog.archive article.post h2.entry-title a:hover,
body.propulse-site.propulse-blog.search article.post h2.entry-title a:hover {
  color: var(--red);
}

body.propulse-site.propulse-blog .propulse-post-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,56,26,.75);
  margin: 10px 0 14px;
}

body.propulse-site.propulse-blog .propulse-post-meta time {
  color: inherit;
}

body.propulse-site.propulse-blog.blog article.post .wp-post-image,
body.propulse-site.propulse-blog.archive article.post .wp-post-image,
body.propulse-site.propulse-blog.search article.post .wp-post-image {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  margin: 18px 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}

body.propulse-site.propulse-blog.blog article.post > a:has(.wp-post-image),
body.propulse-site.propulse-blog.archive article.post > a:has(.wp-post-image) {
  display: block;
  line-height: 0;
}

body.propulse-site.propulse-blog.blog article.post p,
body.propulse-site.propulse-blog.archive article.post p,
body.propulse-site.propulse-blog.search article.post p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.5) !important;
  margin-top: 0;
}

body.propulse-site.propulse-blog nav.pagination {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
}

body.propulse-site.propulse-blog nav.pagination .nav-previous,
body.propulse-site.propulse-blog nav.pagination .nav-next {
  flex: 1;
}

body.propulse-site.propulse-blog nav.pagination .nav-next {
  text-align: right;
}

body.propulse-site.propulse-blog nav.pagination a {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 12px 20px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.6) !important;
  background: transparent !important;
  border-radius: var(--radius);
  transition: color var(--tr), border-color var(--tr), background var(--tr);
}

body.propulse-site.propulse-blog nav.pagination a:hover {
  color: var(--white) !important;
  border-color: var(--red) !important;
  background: rgba(232,56,26,.1) !important;
}

body.propulse-site.propulse-blog nav.pagination .meta-nav {
  color: var(--red);
}

@media (max-width: 640px) {
  body.propulse-site.propulse-blog.blog main.site-main,
  body.propulse-site.propulse-blog.archive main.site-main,
  body.propulse-site.propulse-blog.search main.site-main {
    padding: 100px 24px 64px;
  }

  body.propulse-site.propulse-blog.blog article.post,
  body.propulse-site.propulse-blog.archive article.post,
  body.propulse-site.propulse-blog.search article.post {
    padding: 28px 22px !important;
  }

  body.propulse-site.propulse-blog nav.pagination .nav-next {
    text-align: left;
  }
}

/* Hide hello-elementor default skip link when ours is present */
body.propulse-site .skip-link.screen-reader-text:not(.propulse-skip) { display: none !important; }
/* Elementor canvas full width */
body.propulse-site.elementor-default .elementor-location-header + #content,
body.propulse-site.elementor-default .elementor-location-header ~ main { padding-top: 0; }