/* ============================================================
   SUNBEAM WINDOW & DOOR CO.
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #0b111e;
  --bg2:      #0f1928;
  --card:     #142033;
  --card2:    #192840;
  --yellow:   #F5FF00;
  --yellow2:  #FFFF55;
  --ydim:     rgba(245,255,0,.15);
  --pink:     #d63b6e;
  --white:    #ffffff;
  --gray:     #7d9ab5;
  --border:   rgba(255,255,255,0.07);
  --r:        12px;
  --r2:       16px;
  --shadow:   0 4px 32px rgba(0,0,0,.5);
  --t:        .22s ease;
  --max:      1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { line-height: 1.7; color: var(--gray); }
ul { list-style: none; }
button { cursor: pointer; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.tc         { text-align: center; }

/* ── TYPOGRAPHY ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #242e10; border: 1px solid rgba(200,210,0,.35);
  color: var(--yellow); font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px var(--yellow); }
  50%      { box-shadow: 0 0 18px var(--yellow), 0 0 32px rgba(245,255,0,.4); }
}
.sh {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem,5vw,4rem); font-weight: 900;
  letter-spacing: -.01em; line-height: 1.05; color: var(--white);
}
.sub {
  font-size: 1.05rem; color: var(--gray);
  max-width: 640px; margin: 14px auto 0; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px; border: none;
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.btn-y  { background: var(--yellow); color: #111; }
.btn-y:hover { background: var(--yellow2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,255,0,.35); }
.btn-o  { background: transparent; border: 2px solid rgba(255,255,255,.3); color: var(--white); }
.btn-o:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.btn-oy { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); }
.btn-oy:hover { background: var(--yellow); color: #111; }

/* ── NAV ── */
nav {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
}
.ni { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 46px; width: auto; }

.nl { display: flex; align-items: center; gap: 2px; }
.nl > li { position: relative; }
.nl > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 13px; height: 70px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); transition: color var(--t);
}
.nl > li > a:hover,
.nl > li > a.active { color: var(--yellow); }

.dd {
  position: absolute; top: 100%; left: 0;
  background: var(--card); border: 1px solid var(--border);
  border-top: 2px solid var(--yellow);
  border-radius: 0 0 var(--r) var(--r);
  min-width: 240px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: var(--t);
  z-index: 200; box-shadow: var(--shadow);
}
.nl > li:hover .dd { opacity: 1; visibility: visible; transform: translateY(0); }
.dd a {
  display: block; padding: 11px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid var(--border); transition: all var(--t);
}
.dd a:last-child { border-bottom: none; }
.dd a:hover { color: var(--yellow); background: rgba(245,255,0,.04); padding-left: 24px; }

.ncp {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid rgba(245,255,0,.2);
  padding: 10px 18px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .9rem;
  font-weight: 800; letter-spacing: .08em; color: var(--yellow);
  transition: var(--t); white-space: nowrap;
}
.ncp:hover { border-color: var(--yellow); background: rgba(245,255,0,.07); }

.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.ham span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: var(--t); transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mn {
  display: none; position: fixed; inset: 0;
  background: var(--bg2); z-index: 999;
  padding: 80px 24px 40px; overflow-y: auto; flex-direction: column;
}
.mn.open { display: flex; }
.mnl > li { border-bottom: 1px solid var(--border); }
.mnl > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; letter-spacing: .08em;
  color: var(--white); text-transform: uppercase;
}
.ms { display: none; padding: 8px 0 16px 16px; }
.ms.open { display: block; }
.ms a {
  display: block; padding: 9px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 600; letter-spacing: .06em; color: var(--gray);
}
.ms a:hover { color: var(--yellow); }
.mnb { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mnb .btn { justify-content: center; width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 78vh;
  background: linear-gradient(rgba(11,17,30,.68),rgba(11,17,30,.65)),
    url('/images/hero/hd-roller-shades-12.jpg') center/cover no-repeat;
  display: flex; align-items: center; padding: 80px 0 60px;
}
.hero-home {
  background: linear-gradient(rgba(11,17,30,.68),rgba(11,17,30,.65)),
    url('/images/hero/hd-roller-shades-12.jpg') center/cover no-repeat;
}
.hc { max-width: 720px; }
.hc h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem,8vw,6.5rem); font-weight: 900;
  letter-spacing: -.01em; line-height: .98;
  color: var(--white); margin-bottom: 22px;
}
.hc p {
  font-size: 1.1rem; color: rgba(255,255,255,.72);
  max-width: 560px; margin-bottom: 36px; line-height: 1.65;
}
.hb { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS BAR ── */
.sb { background: var(--bg2); padding: 44px 0; border-top: 1px solid var(--border); }
.sg { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.si {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); text-align: center; padding: 28px 16px;
  transition: border-color var(--t);
}
.si:hover { border-color: rgba(245,255,0,.25); }
.sn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem,4.5vw,3.4rem); font-weight: 900;
  color: var(--yellow); display: block; line-height: 1; letter-spacing: -.01em;
}
.sl { font-size: .85rem; color: var(--gray); margin-top: 8px; font-weight: 600; }

/* ── SERVICE CARDS ── */
.scg { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.sc {
  display: block; text-decoration: none; color: inherit;
  background: var(--card); border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: pointer;
}
.sc:hover { transform: translateY(-5px); border-color: rgba(245,255,0,.28); box-shadow: 0 16px 48px rgba(0,0,0,.45); }
.sci { height: 220px; overflow: hidden; background: var(--card2); position: relative; }
.sci img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.sc:hover .sci img { transform: scale(1.06); }
.scb { padding: 26px; }
.scb h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem; font-weight: 900; letter-spacing: -.01em;
  line-height: 1.1; color: var(--white); margin-bottom: 10px;
}
.scb p { font-size: .9rem; line-height: 1.65; margin-bottom: 16px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.sc-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); background: #1e2d10; border: 1px solid rgba(200,210,0,.3);
  padding: 5px 12px; border-radius: 100px;
}

.la {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); transition: gap var(--t);
}
.la:hover { gap: 10px; }

/* ── WHY CARDS ── */
.wg { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 48px; }
.wc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px; transition: border-color var(--t);
}
.wc:hover { border-color: rgba(245,255,0,.2); }
.wi { font-size: 2.2rem; margin-bottom: 16px; }
.wc h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; letter-spacing: .01em;
  color: var(--white); margin-bottom: 10px;
}
.wc p { font-size: .9rem; }

/* ── PROCESS ── */
.pg { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.pc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 36px 28px; text-align: center;
}
.pn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg,#f59e0b,#FFD600);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: #111; margin: 0 auto 22px;
}
.pc h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 10px;
}
.pc p { font-size: .9rem; }

/* ── REVIEWS ── */
.rg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.rc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px;
}
.rs { color: var(--yellow); font-size: 1.05rem; letter-spacing: 3px; margin-bottom: 14px; }
.rc blockquote {
  font-size: .9rem; color: rgba(255,255,255,.82);
  font-style: italic; line-height: 1.7; margin-bottom: 20px;
}
.ra { display: flex; align-items: center; gap: 12px; }
.av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,#f59e0b,#d63b6e);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.an { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); }
.as { font-size: .72rem; color: var(--gray); }

/* ── CTA BOX ── */
.cb {
  background: linear-gradient(135deg,rgba(110,75,0,.45),rgba(70,20,60,.45));
  border: 1px solid rgba(245,255,0,.14); border-radius: var(--r2);
  padding: 64px 40px; text-align: center; margin: 0 auto; max-width: 920px;
}
.cb h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 14px;
}
.cb p { font-size: 1.05rem; margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cbb { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.ph { background: var(--bg2); padding: 64px 0; border-bottom: 1px solid var(--border); }
.phi { max-width: 700px; }
.bc {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: .12em; color: var(--gray);
  text-transform: uppercase; margin-bottom: 16px;
}
.bc a { color: var(--gray); transition: color var(--t); }
.bc a:hover { color: var(--yellow); }
.bc span { color: var(--yellow); }
.ph h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem,5vw,4.2rem); font-weight: 900;
  line-height: 1.02; margin-bottom: 18px;
}
.ph p { font-size: 1.02rem; max-width: 580px; line-height: 1.7; }

/* ── PROVIA IFRAME ── */
.provia-intro { background: var(--bg2); border-bottom: 3px solid var(--yellow); padding: 32px 0; }
.provia-intro h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 900; margin-bottom: 10px;
}
.provia-tip {
  background: linear-gradient(135deg,rgba(110,75,0,.55),rgba(70,20,60,.55));
  border: 2px solid var(--yellow); border-radius: var(--r2);
  padding: 22px 28px; margin-top: 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.provia-tip-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.provia-tip h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; color: var(--yellow);
  letter-spacing: .04em; margin-bottom: 6px;
}
.provia-tip p { font-size: .93rem; color: rgba(255,255,255,.88); margin: 0; line-height: 1.65; }
.provia-frame-wrap { width: 100%; background: #fff; display: block; }
.provia-frame-wrap iframe {
  width: 100%; height: 100vh; border: none;
  display: block; min-height: 700px;
}

/* ── VARIANT CARDS ── */
.vg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.vc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px;
  transition: border-color var(--t), transform var(--t);
}
.vc:hover { border-color: rgba(245,255,0,.28); transform: translateY(-3px); }
.vc h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 10px;
}
.vc p { font-size: .88rem; }
.vc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.vc-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); background: #1e2d10; border: 1px solid rgba(200,210,0,.28);
  padding: 4px 10px; border-radius: 100px;
}

/* ── BENEFITS GRID ── */
.bg2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.bfc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px;
}
.bi { font-size: 1.8rem; margin-bottom: 14px; }
.bfc h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 900; color: var(--white); margin-bottom: 8px;
}
.bfc p { font-size: .87rem; }

/* ── FEATURE SPLIT ── */
.fs {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--border); margin-top: 60px;
}
.fsimg { position: relative; min-height: 400px; background: var(--card2); }
.fsimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fsc {
  background: var(--card); padding: 50px 42px;
  display: flex; flex-direction: column; justify-content: center;
}
.fsc h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 900; margin-bottom: 16px;
}
.fsc p { margin-bottom: 14px; }

/* ── GALLERY ── */
.gg { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 44px; }
.gi {
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4/3; background: var(--card2); position: relative;
}
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gi:hover img { transform: scale(1.07); }
.go {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(11,17,30,.9) 0%,transparent 55%);
  opacity: 0; transition: opacity var(--t);
  display: flex; align-items: flex-end; padding: 16px;
}
.gi:hover .go { opacity: 1; }
.go span {
  font-family: 'Barlow Condensed', sans-serif; font-size: .8rem;
  font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.9); text-transform: uppercase;
}

/* ── SERVICE AREAS ── */
.ag { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 44px; }
.at {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .9rem;
  font-weight: 700; color: rgba(255,255,255,.8); transition: all var(--t);
}
.at:hover { border-color: var(--yellow); color: var(--yellow); }
.at.prim { border-color: rgba(245,255,0,.38); color: var(--yellow); }

/* ── TEAM ── */
.tg { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 44px; }
.tc2 {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden; text-align: center;
}
.tci { height: 210px; overflow: hidden; background: var(--card2); }
.tci img { width: 100%; height: 100%; object-fit: cover; }
.tcb { padding: 22px; }
.tcb h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 4px;
}
.tr {
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 800; letter-spacing: .16em; color: var(--yellow);
  text-transform: uppercase; display: block; margin-bottom: 8px;
}
.tcb p { font-size: .82rem; }

/* ── CONTACT ── */
.cog { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; margin-top: 44px; }
.fw { display: flex; flex-direction: column; gap: 16px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fi { display: flex; flex-direction: column; gap: 7px; }
.fi label {
  font-family: 'Barlow Condensed', sans-serif; font-size: .75rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.fi input, .fi select, .fi textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 13px 16px; font-family: 'Barlow', sans-serif;
  font-size: .93rem; color: var(--white); transition: border-color var(--t); width: 100%;
}
.fi input:focus, .fi select:focus, .fi textarea:focus { outline: none; border-color: var(--yellow); }
.fi textarea { min-height: 134px; resize: vertical; }
.fi select option { background: var(--card2); color: var(--white); }
.cic { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 34px; }
.cic h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 26px; }
.ir { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.iic {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(245,255,0,.08); border: 1px solid rgba(245,255,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.it strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 4px;
}
.it p, .it a { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.it a:hover { color: var(--yellow); }
.eb {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px; margin-top: 20px;
}
.eb h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .95rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.eb li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: rgba(255,255,255,.7);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.eb li:last-child { border-bottom: none; }
.eb li::before { content: "✓"; color: var(--yellow); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ── BLOG ── */
.blg { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.blc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}
.blc:hover { transform: translateY(-4px); border-color: rgba(245,255,0,.2); }
.blci { height: 185px; background: var(--card2); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blci img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.blc:hover .blci img { transform: scale(1.06); }
.blb { padding: 22px; }
.blcat {
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 8px;
}
.blb h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
  font-weight: 900; color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.blb p { font-size: .86rem; margin-bottom: 14px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding-top: 64px; }
.fg {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 52px; border-bottom: 1px solid var(--border);
}
.fbr p { font-size: .88rem; margin-top: 14px; line-height: 1.75; max-width: 285px; }
.fct { margin-top: 16px; font-size: .86rem; color: var(--gray); line-height: 1.9; }
.fct a { color: var(--gray); transition: color var(--t); }
.fct a:hover { color: var(--yellow); }
.fcol h5 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem;
  font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.fcol li { margin-bottom: 8px; }
.fcol a { font-size: .87rem; color: var(--gray); transition: color var(--t); }
.fcol a:hover { color: var(--white); }
.fbot {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: var(--gray);
}
.fbot a { color: var(--gray); transition: color var(--t); }
.fbot a:hover { color: var(--white); }
.fsoc { display: flex; gap: 16px; }

/* ── UTILS ── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card); border: 1px solid rgba(245,255,0,.38);
  color: var(--white); padding: 12px 26px; border-radius: 100px;
  font-size: .86rem; font-weight: 700;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

#btt {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: #111; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transition: var(--t); z-index: 500;
}
#btt.vis { opacity: 1; visibility: visible; }
#btt:hover { transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .scg  { grid-template-columns: 1fr 1fr; }
  .tg   { grid-template-columns: 1fr 1fr; }
  .fg   { grid-template-columns: 1fr 1fr; }
  .sg   { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nl, .ncp { display: none; }
  .ham { display: flex; }
  .hero { min-height: 60vh; }
  .scg, .wg, .pg, .rg, .vg, .bg2, .cog, .blg, .tg { grid-template-columns: 1fr; }
  .gg  { grid-template-columns: 1fr 1fr; }
  .ag  { grid-template-columns: 1fr 1fr; }
  .fg  { grid-template-columns: 1fr; }
  .fs  { grid-template-columns: 1fr; }
  .fsimg { min-height: 260px; }
  .fsc { padding: 34px 26px; }
  .frow { grid-template-columns: 1fr; }
  .cb  { padding: 42px 22px; }
  .section { padding: 64px 0; }
  .two-col { grid-template-columns: 1fr !important; }
  .provia-frame-wrap iframe { height: 80vh; min-height: 600px; }
}
@media (max-width: 480px) {
  .gg { grid-template-columns: 1fr; }
  .ag { grid-template-columns: 1fr 1fr; }
}

/* Product card image — sits above the title */
.vc-img {
  margin: -26px -26px 18px -26px;
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.vc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nav Schedule Consultation button */
nav .ni .btn { margin-left: 8px; }
@media(max-width:1023px){ nav .ni .btn { display:none; } }

/* Push GHL chat widget above mobile sticky CTA bar */
@media(max-width:767px){
  #lc_chat_layout { bottom: 75px !important; }
  iframe[src*="leadconnector"] { bottom: 75px !important; }
}
