/* Steel Fabrication Perth — Homepage Styles
   /wp-content/themes/hello-theme-child-master/assets/home/styles.css
*/

/* ── HERO ── */
.sfp-hero {
  background: var(--steel);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.sfp-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.sfp-hero-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,78,10,.15) 0%, transparent 68%);
  pointer-events: none;
}
.sfp-hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 36px, #2C4166 36px, #2C4166 52px);
}
.sfp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px 96px;
  width: 100%;
}
.sfp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,78,10,.12);
  border: 1px solid rgba(224,78,10,.35);
  color: #FF8050;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.sfp-hero-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: sfpBlink 2s infinite;
}
@keyframes sfpBlink { 0%,100%{opacity:1} 50%{opacity:.35} }

.sfp-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 80px);
  color: white;
  line-height: .97;
  text-transform: uppercase;
  letter-spacing: .01em;
  max-width: 800px;
  margin-bottom: 10px;
}
.sfp-hero-title .accent { color: var(--orange); }
.sfp-hero-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(14px, 2.2vw, 20px);
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.sfp-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.sfp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 52px;
}
.sfp-btn-pri {
  background: var(--orange);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .14s;
  display: inline-block;
  text-decoration: none;
}
.sfp-btn-pri:hover { background: var(--orange-hover); transform: translateY(-1px); color: white; }
.sfp-btn-ghost {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.2);
  transition: border-color .18s, background .18s;
  display: inline-block;
  text-decoration: none;
}
.sfp-btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); color: white; }

.sfp-hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.sfp-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.sfp-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}

/* ── TICKER ── */
.sfp-ticker {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.sfp-ticker-track {
  display: flex;
  gap: 52px;
  animation: sfpTick 22s linear infinite;
  white-space: nowrap;
}
.sfp-tick-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}
.sfp-tick-item::before { content: '✓'; font-size: 14px; }
@keyframes sfpTick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SHARED SECTION STYLES ── */
.sfp-section { padding: 80px 0; }
.sfp-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.sfp-sec-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sfp-sec-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); flex-shrink: 0; }
.sfp-sec-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 50px);
  color: var(--steel);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .02em;
}
.sfp-sec-title .a { color: var(--orange); }
.sfp-sec-desc {
  font-size: 16px;
  color: var(--textlight);
  max-width: 620px;
  line-height: 1.78;
  margin-top: 14px;
}

/* ── VALUE PROPOSITION ── */
.sfp-vp { background: #F4F1EB; }
.sfp-vp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.sfp-vp-items { display: flex; flex-direction: column; gap: 28px; }
.sfp-vp-item { display: flex; gap: 18px; align-items: flex-start; }
.sfp-vp-icon {
  width: 46px;
  height: 46px;
  background: var(--steel);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sfp-vp-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 11px 0;
  border-color: transparent var(--orange) transparent transparent;
}
.sfp-vp-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.sfp-vp-item h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 5px;
  letter-spacing: .03em;
}
.sfp-vp-item p { font-size: 14px; color: var(--textlight); line-height: 1.68; }

.sfp-vp-visual {
  background: var(--steel);
  border-radius: 3px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.sfp-vp-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255,255,255,.018) 24px, rgba(255,255,255,.018) 48px);
}
.sfp-vp-big {
  font-family: var(--font-head);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: .95;
  position: relative;
}
.sfp-vp-big .line1 { font-size: 22px; color: rgba(255,255,255,.45); letter-spacing: .12em; display: block; margin-bottom: 8px; }
.sfp-vp-big .line2 { font-size: 72px; color: var(--orange); display: block; letter-spacing: -.01em; }
.sfp-vp-big .line3 { font-size: 26px; letter-spacing: .06em; display: block; }
.sfp-vp-tagline {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 14px;
  position: relative;
}
.sfp-vp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-top: 22px;
  position: relative;
}
.sfp-vp-pill svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-width: 2.5; }
.sfp-vp-specs {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.sfp-vp-spec {
  background: rgba(255,255,255,.05);
  padding: 14px 16px;
  border-radius: 2px;
}
.sfp-vp-spec-label { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.sfp-vp-spec-val { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); }
.sfp-vp-spec-val.orange { color: #FF7845; }

/* ── PANEL RANGE ── */
.sfp-panels { background: white; }
.sfp-prod-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}
.sfp-panel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #D5D1C9;
  border: 1.5px solid #D5D1C9;
  border-radius: 4px;
  overflow: hidden;
}
.sfp-panel-card {
  background: white;
  padding: 28px 22px 24px;
  position: relative;
  border-right: 1px solid #D5D1C9;
  transition: background .18s;
}
.sfp-panel-card:last-child { border-right: none; }
.sfp-panel-card:hover { background: #F7F5F1; }
.sfp-panel-card.featured { background: var(--steel); border-right: 1px solid rgba(255,255,255,.07); }
.sfp-panel-card.featured:hover { background: #223352; }
.sfp-popular-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}
.sfp-panel-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.sfp-panel-card.featured .sfp-panel-badge { color: #FF7845; }
.sfp-panel-mm {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 58px;
  color: var(--steel);
  line-height: 1;
  letter-spacing: -.02em;
}
.sfp-panel-card.featured .sfp-panel-mm { color: white; }
.sfp-panel-mm sub { font-size: 20px; font-weight: 700; vertical-align: baseline; color: #9A9690; }
.sfp-panel-card.featured .sfp-panel-mm sub { color: rgba(255,255,255,.45); }
.sfp-panel-desc {
  font-weight: 600;
  font-size: 13px;
  color: #3A4F66;
  margin: 6px 0 14px;
  line-height: 1.45;
}
.sfp-panel-card.featured .sfp-panel-desc { color: rgba(255,255,255,.6); }
.sfp-panel-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.sfp-panel-specs-list li {
  font-size: 12px;
  color: #6B7A8D;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}
.sfp-panel-card.featured .sfp-panel-specs-list li { color: rgba(255,255,255,.55); }
.sfp-panel-specs-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.sfp-panel-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .18s;
  text-decoration: none;
}
.sfp-panel-card:hover .sfp-panel-link { gap: 9px; }
.sfp-panel-card.featured .sfp-panel-link { color: #FF7845; }

/* Skin band */
.sfp-skin-band {
  background: #F7F5F1;
  border: 1px solid #D5D1C9;
  border-radius: 3px;
  padding: 20px 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sfp-skin-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
  flex-shrink: 0;
}
.sfp-skin-opt { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #3A4F66; }
.sfp-skin-opt strong { color: var(--steel); font-weight: 700; }
.sfp-skin-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #9A9690; flex-shrink: 0; }
.sfp-skin-dot.light { background: #D5D1C9; }
.sfp-skin-dot.dark { background: var(--steel); }
.sfp-skin-sep { color: #D5D1C9; font-size: 18px; }

/* Length table */
.sfp-spec-table-wrap { margin-top: 32px; }
.sfp-spec-table-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}
.sfp-spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sfp-spec-table th {
  background: var(--steel);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
}
.sfp-spec-table td { padding: 9px 16px; border-bottom: 1px solid #EEEBE4; color: #3A4F66; }
.sfp-spec-table tr:hover td { background: #F7F5F1; }
.sfp-spec-table td:first-child { font-weight: 700; color: var(--steel); }

/* ── ACCESSORIES ── */
.sfp-acc { background: #F7F5F1; padding: 40px 0 56px; }
.sfp-acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.sfp-acc-card {
  background: white;
  border: 1px solid #D5D1C9;
  border-radius: 3px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .18s, box-shadow .18s;
}
.sfp-acc-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.sfp-acc-ico {
  width: 38px;
  height: 38px;
  background: var(--steel);
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfp-acc-ico svg { width: 17px; height: 17px; stroke: white; fill: none; stroke-width: 2; }
.sfp-acc-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--steel); margin-bottom: 2px; }
.sfp-acc-sub { font-size: 11px; color: #6B7A8D; }
.sfp-acc-price { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--orange); margin-top: 3px; }

/* ── WHY US ── */
.sfp-why { background: var(--steel); }
.sfp-why .sfp-sec-label { color: #FF7845; }
.sfp-why .sfp-sec-title { color: white; }
.sfp-why .sfp-sec-desc { color: rgba(255,255,255,.6); }
.sfp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.sfp-why-card {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .18s;
}
.sfp-why-card:last-child { border-right: none; }
.sfp-why-card:hover { background: rgba(255,255,255,.06); }
.sfp-why-n { font-family: var(--font-head); font-size: 52px; font-weight: 900; color: rgba(224,78,10,.2); line-height: 1; margin-bottom: 14px; }
.sfp-why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; text-transform: uppercase; color: white; margin-bottom: 10px; letter-spacing: .04em; }
.sfp-why-card p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.72; }
.sfp-why-hr { height: 1px; background: rgba(255,255,255,.07); margin: 60px 0; }

/* Diff grid */
.sfp-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sfp-diff-text h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(26px, 3.5vw, 42px); text-transform: uppercase; color: white; line-height: 1.05; margin-bottom: 18px; }
.sfp-diff-text h2 span { color: var(--orange); }
.sfp-diff-text p { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.78; margin-bottom: 14px; }
.sfp-diff-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 20px; }
.sfp-diff-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 600; }
.sfp-diff-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* Panel anatomy */
.sfp-anatomy {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 3px;
  padding: 36px;
}
.sfp-anatomy-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.sfp-layers { display: flex; flex-direction: column; border-radius: 2px; overflow: hidden; }
.sfp-layer { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.sfp-layer.skin { background: rgba(224,78,10,.12); color: #FF8050; font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 10px; }
.sfp-layer.core { background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); padding: 26px 18px; flex-direction: column; gap: 5px; text-align: center; }
.sfp-layer.core .core-title { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: white; text-transform: uppercase; }
.sfp-layer.core .core-sub { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.sfp-anatomy-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.sfp-aspec { background: rgba(255,255,255,.04); border-radius: 2px; padding: 12px 14px; }
.sfp-aspec-label { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.sfp-aspec-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85); }

/* ── APPLICATIONS ── */
.sfp-app { background: #F4F1EB; }
.sfp-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.sfp-app-card {
  background: white;
  border: 1px solid #D5D1C9;
  border-radius: 3px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.sfp-app-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.sfp-app-ico {
  width: 52px;
  height: 52px;
  background: var(--steel);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.sfp-app-ico svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.8; }
.sfp-app-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; letter-spacing: .04em; }
.sfp-app-card p { font-size: 13px; color: #6B7A8D; line-height: 1.6; }

/* ── HOW TO ORDER ── */
.sfp-order { background: white; }
.sfp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.sfp-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 10px, transparent 10px, transparent 20px);
}
.sfp-step { text-align: center; padding: 0 14px; }
.sfp-step-n {
  width: 52px;
  height: 52px;
  background: var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: white;
  position: relative;
  z-index: 1;
  border: 3px solid white;
}
.sfp-step h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; letter-spacing: .04em; }
.sfp-step p { font-size: 13px; color: #6B7A8D; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.sfp-testi { background: #F4F1EB; }
.sfp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.sfp-testi-card {
  background: white;
  border: 1px solid #D5D1C9;
  border-radius: 3px;
  padding: 26px;
  position: relative;
}
.sfp-testi-card::before { content: '"'; font-family: Georgia,serif; font-size: 70px; color: var(--orange); opacity: .12; position: absolute; top: 10px; left: 18px; line-height: 1; }
.sfp-stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.sfp-testi-text { font-size: 14px; color: #3A4F66; line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.sfp-testi-author { font-weight: 700; font-size: 13px; color: var(--steel); }
.sfp-testi-role { font-size: 12px; color: #6B7A8D; }

/* ── FAQ ── */
.sfp-faq { background: white; }
.sfp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; }
.sfp-faq details { border-bottom: 1px solid #D5D1C9; padding-bottom: 18px; margin-bottom: 18px; }
.sfp-faq summary {
  font-weight: 700;
  font-size: 15px;
  color: var(--steel);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.sfp-faq summary::-webkit-details-marker { display: none; }
.sfp-faq summary::after { content: '+'; font-size: 20px; color: var(--orange); flex-shrink: 0; transition: transform .18s; }
.sfp-faq details[open] summary::after { transform: rotate(45deg); }
.sfp-faq details p { font-size: 14px; color: #6B7A8D; line-height: 1.72; margin-top: 12px; }

/* ── CTA ── */
.sfp-cta {
  background: var(--steel);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sfp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,.012) 28px, rgba(255,255,255,.012) 56px);
}
.sfp-cta-inner { position: relative; }
.sfp-cta h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(30px, 5vw, 56px); color: white; text-transform: uppercase; line-height: 1.02; margin-bottom: 14px; }
.sfp-cta h2 span { color: var(--orange); }
.sfp-cta p { font-size: 16px; color: rgba(255,255,255,.68); max-width: 500px; margin: 0 auto 32px; line-height: 1.72; }
.sfp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sfp-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  color: var(--orange);
  margin-top: 28px;
}
.sfp-cta-phone svg { width: 28px; height: 28px; fill: var(--orange); }
.sfp-cta-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; }
.sfp-cta-note a { color: rgba(255,255,255,.6); }

/* ── SEO BLOCK ── */
.sfp-seo { background: #F7F5F1; }
.sfp-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 36px; }
.sfp-seo-block h2 { font-family: var(--font-head); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; margin-top: 28px; letter-spacing: .03em; }
.sfp-seo-block h2:first-child { margin-top: 0; }
.sfp-seo-block h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; margin-top: 20px; letter-spacing: .04em; }
.sfp-seo-block p { font-size: 14px; color: #6B7A8D; line-height: 1.8; margin-bottom: 12px; }
.sfp-seo-block strong { color: #3A4F66; }

/* ── SCROLL ANIMATIONS ── */
.sfp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.sfp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.sfp-reveal-delay-1 { transition-delay: .1s; }
.sfp-reveal-delay-2 { transition-delay: .2s; }
.sfp-reveal-delay-3 { transition-delay: .3s; }
.sfp-reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .sfp-panel-grid { grid-template-columns: repeat(3, 1fr); }
  .sfp-panel-card:nth-child(n+4) { border-top: 1px solid #D5D1C9; }
}
@media (max-width: 900px) {
  .sfp-vp-grid, .sfp-diff-grid, .sfp-faq-grid, .sfp-seo-grid { grid-template-columns: 1fr; }
  .sfp-why-grid, .sfp-testi-grid { grid-template-columns: 1fr 1fr; }
  .sfp-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sfp-steps::before { display: none; }
}
@media (max-width: 640px) {
  .sfp-panel-grid { grid-template-columns: 1fr 1fr; }
  .sfp-why-grid, .sfp-testi-grid { grid-template-columns: 1fr; }
  .sfp-steps { grid-template-columns: 1fr; }
  .sfp-section { padding: 56px 0; }
  .sfp-hero-stats { gap: 28px; }
  .sfp-hero-inner { padding: 56px 20px 72px; }
  .sfp-wrap { padding: 0 20px; }
}
@media (max-width: 380px) {
  .sfp-panel-grid { grid-template-columns: 1fr; }
}


/* ── Steps fix — proper stacked layout ── */
.sfp-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  margin-top: 52px !important;
  position: relative !important;
}
.sfp-steps::before {
  content: '' !important;
  position: absolute !important;
  top: 26px !important;
  left: 12.5% !important;
  right: 12.5% !important;
  height: 2px !important;
  background: repeating-linear-gradient(90deg, #E04E0A 0, #E04E0A 10px, transparent 10px, transparent 20px) !important;
}
.sfp-step {
  text-align: center !important;
  padding: 0 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.sfp-step-n {
  width: 52px !important;
  height: 52px !important;
  background: #1A2840 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 18px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  color: white !important;
  position: relative !important;
  z-index: 1 !important;
  border: 3px solid white !important;
  flex-shrink: 0 !important;
}
.sfp-step h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  color: #1A2840 !important;
  margin-bottom: 8px !important;
  letter-spacing: .04em !important;
}
.sfp-step p {
  font-size: 13px !important;
  color: #6B7A8D !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── Hero stats proper spacing ── */
.sfp-hero-stats {
  display: flex !important;
  gap: 44px !important;
  padding-top: 36px !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  flex-wrap: wrap !important;
  margin-top: 0 !important;
}

/* ── Hero eyebrow fix ── */
.sfp-hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(224,78,10,.12) !important;
  border: 1px solid rgba(224,78,10,.35) !important;
  color: #FF8050 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
  border-radius: 2px !important;
  margin-bottom: 22px !important;
}

/* ── Responsive steps ── */
@media (max-width: 768px) {
  .sfp-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .sfp-steps::before {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sfp-steps {
    grid-template-columns: 1fr !important;
  }
}

/* ── Responsive hero ── */
@media (max-width: 768px) {
  .sfp-hero-inner {
    padding: 56px 20px 72px !important;
  }
  .sfp-hero-title {
    font-size: 44px !important;
  }
  .sfp-hero-stats {
    gap: 24px !important;
  }
  .sfp-stat-num {
    font-size: 32px !important;
  }
}

/* ── Responsive panel grid ── */
@media (max-width: 1050px) {
  .sfp-panel-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .sfp-panel-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .sfp-vp-grid,
  .sfp-diff-grid,
  .sfp-faq-grid {
    grid-template-columns: 1fr !important;
  }
  .sfp-why-grid {
    grid-template-columns: 1fr !important;
  }
  .sfp-testi-grid {
    grid-template-columns: 1fr !important;
  }
  .sfp-app-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .sfp-wrap {
    padding: 0 20px !important;
  }
  .sfp-section {
    padding: 56px 0 !important;
  }
}
@media (max-width: 380px) {
  .sfp-panel-grid {
    grid-template-columns: 1fr !important;
  }
  .sfp-app-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── Hero top spacing fix — clear from sticky header ── */
.sfp-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.sfp-hero-inner {
  padding-top: 72px !important;
  padding-bottom: 88px !important;
}

/* ── Hero eyebrow — stop it butting up to top ── */
.sfp-hero-eyebrow {
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}

/* ── Fix hero stats overflowing into ticker ── */
.sfp-hero-stats {
  position: relative !important;
  z-index: 2 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ── Ticker must sit fully below hero — no overlap ── */
.sfp-ticker {
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
  display: block !important;
  width: 100% !important;
}

/* ── Hero stripe stays at very bottom ── */
.sfp-hero-stripe {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
}

/* ── Make sure hero section itself contains everything ── */
.sfp-hero {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 600px !important;
}



/* ── Length table — always visible, scroll on mobile ── */
.sfp-spec-table { display: table !important; }
.sfp-spec-table-wrap > div { overflow-x: auto; -webkit-overflow-scrolling: touch; }
