
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}

:root{
  --black:  #000000;
  --dark:   #1d1d1f;
  --mid:    #6e6e73;
  --light:  #f5f5f7;
  --white:  #ffffff;
  --blue:   #0071e3;
  --blue2:  #0077ed;
  --green:  #1d7a0a;
  --lime:   #4caf1a;
  --lime2:  #6dbf1e;
}

body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  background:var(--white);
  color:var(--dark);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  height:48px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 22px;
  background:rgba(255,255,255,0.72);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.nav-logo img{
  height:28px;width:auto;display:block;
}
nav ul{
  list-style:none;display:flex;gap:28px;align-items:center;
}
nav ul a{
  color:var(--dark);text-decoration:none;
  font-size:.8rem;font-weight:400;
  opacity:.85;transition:opacity .2s;
}
nav ul a:hover{opacity:1;}
.nav-cta{
  background:var(--blue)!important;
  color:white!important;opacity:1!important;
  padding:7px 18px;border-radius:980px;
  font-size:.8rem!important;font-weight:500!important;
  transition:background .2s,transform .15s!important;
}
.nav-cta:hover{background:var(--blue2)!important;transform:scale(1.02);}

/* ─── HERO ─── */
.hero{
  min-height:100vh;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:100px 24px 60px;
  background:var(--white);
  position:relative;overflow:hidden;
}
.hero-logo-big {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo-big img {
  width: 480px;
  max-width: 88vw;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.14));
  animation: rise .8s cubic-bezier(.22,.61,.36,1) both;
}
.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 32px;
  white-space: nowrap;
}
.hero-contact-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1e4db7;
  text-decoration: none;
  transition: color .2s;
  line-height: 1;
  white-space: nowrap;
}
.hero-contact-link:first-child { color: #1e4db7; }
.hero-contact-link-green { color: #2d8a1e !important; }
.hero-contact-link:hover { opacity: .75; }
.hero-contact-sep {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(0,0,0,.18);
  line-height: 1;
}
.hero-contact-local {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #2d8a1e;
  line-height: 1;
  white-space: nowrap;
}
.hcb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime2);
  box-shadow: 0 0 0 3px rgba(109,191,30,.2);
  animation: livepulse 2.5s infinite;
  flex-shrink: 0;
}
.hero h1{
  font-size:clamp(3rem,7vw,6.8rem);
  font-weight:700;line-height:1.0;
  letter-spacing:-3px;color:var(--dark);
  margin-bottom:18px;
}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(135deg,var(--lime),var(--green));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub{
  font-size:1.35rem;font-weight:300;
  color:var(--mid);line-height:1.6;
  max-width:560px;margin:0 auto 36px;
  letter-spacing:-.2px;
}
.hero-sub strong{color:var(--dark);font-weight:500;}
.hero-btns{
  display:flex;gap:14px;justify-content:center;
  flex-wrap:wrap;margin-bottom:64px;
}
.btn-blue{
  background:var(--blue);color:white;
  font-size:.95rem;font-weight:500;
  padding:13px 28px;border-radius:980px;
  text-decoration:none;letter-spacing:-.1px;
  transition:background .2s,transform .15s;
  display:inline-flex;align-items:center;gap:6px;
}
.btn-blue:hover{background:var(--blue2);transform:scale(1.02);}
.btn-ghost{
  color:var(--blue);font-size:.95rem;font-weight:500;
  text-decoration:none;padding:13px 4px;
  display:inline-flex;align-items:center;gap:4px;
  border-bottom:1px solid transparent;
  transition:border-color .2s;
}
.btn-ghost:hover{border-color:var(--blue);}
.btn-ghost svg{transition:transform .2s;}
.btn-ghost:hover svg{transform:translateX(3px);}

/* Machine hero image */
.hero-machine{
  width:100%;max-width:560px;
  margin:0 auto;position:relative;
}
.hero-machine img{
  width:100%;height:auto;
  filter:drop-shadow(0 40px 80px rgba(0,0,0,.2));
  animation:rise 1s cubic-bezier(.22,.61,.36,1) .2s both;
}

/* ─── SECTION RHYTHM (Apple-style) ─── */
.section{
  padding:120px 24px;
  text-align:center;
}
.section.alt{background:var(--light);}
.section.dark{background:var(--dark);color:var(--white);}
.section.black{background:var(--black);color:var(--white);}

.wrap{max-width:980px;margin:0 auto;}
.wrap-wide{max-width:1200px;margin:0 auto;}

.eyebrow{
  font-size:.85rem;font-weight:600;letter-spacing:.5px;
  text-transform:uppercase;color:var(--lime2);
  margin-bottom:12px;display:block;
}
.eyebrow.on-dark{color:var(--lime2);}
.eyebrow.blue{color:var(--blue);}

h2{
  font-size:clamp(2.4rem,5vw,4.8rem);
  font-weight:700;letter-spacing:-2px;line-height:1.05;
  color:inherit;margin-bottom:18px;
}
h2 em{
  font-style:normal;
  background:linear-gradient(135deg,var(--lime2),var(--green));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.on-dark h2 em,.dark h2 em,.black h2 em{
  background:linear-gradient(135deg,#a8e063,#7ed321);
  -webkit-background-clip:text;background-clip:text;
}
.body-copy{
  font-size:1.2rem;font-weight:300;color:var(--mid);
  line-height:1.75;max-width:600px;margin:0 auto;
  letter-spacing:-.1px;
}
.dark .body-copy,.black .body-copy{color:rgba(255,255,255,.55);}

/* ─── PERKS (thin Apple-style bar) ─── */
.perks-bar{
  background:var(--light);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:0;
  display:flex;justify-content:center;
  flex-wrap:wrap;
}
.perk{
  display:flex;align-items:center;gap:8px;
  padding:18px 32px;
  border-right:1px solid rgba(0,0,0,.06);
  font-size:.82rem;font-weight:500;color:var(--dark);
  white-space:nowrap;
}
.perk:last-child{border-right:none;}
.pk{color:var(--lime2);font-size:.9rem;}

/* ─── HOW IT WORKS ─── */
.steps-apple{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;overflow:hidden;
  margin-top:64px;text-align:left;
}
.step-a{
  background:var(--white);
  padding:40px 32px;
  transition:background .25s;
}
.step-a:hover{background:#fafafa;}
.step-a .snum{
  font-size:3rem;font-weight:700;
  background:linear-gradient(135deg,var(--lime2),var(--green));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-2px;line-height:1;
  margin-bottom:20px;display:block;
}
.step-a h3{font-size:1.05rem;font-weight:600;color:var(--dark);margin-bottom:8px;}
.step-a p{font-size:.88rem;color:var(--mid);line-height:1.6;}

/* Step 3 products — large, tilted, fun */
.step3-prods{
  display:flex;align-items:flex-end;
  justify-content:flex-start;
  gap:6px;
  height:120px;
  margin-bottom:18px;
  position:relative;
}
.sp{
  display:flex;flex-direction:column;
  align-items:center;gap:5px;
  flex-shrink:0;
}
.sp img{
  object-fit:contain;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.18));
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.sp1{transform:rotate(-9deg) translateY(4px);}
.sp1 img{height:88px;}
.sp2{transform:rotate(0deg) translateY(-12px);}
.sp2 img{height:110px;}
.sp3{transform:rotate(8deg) translateY(0px);}
.sp3 img{height:84px;}
.sp1:hover{transform:rotate(-9deg) translateY(-10px) scale(1.1);}
.sp2:hover{transform:rotate(0deg) translateY(-24px) scale(1.1);}
.sp3:hover{transform:rotate(8deg) translateY(-10px) scale(1.1);}
.sp-lbl{
  font-size:.58rem;font-weight:600;letter-spacing:.8px;
  text-transform:uppercase;color:var(--lime2);
  background:rgba(109,191,30,.1);
  padding:2px 7px;border-radius:100px;
}

/* ─── PRODUCT GRID (magazine layout) ─── */
.pgrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto;
  gap:16px;margin-top:64px;text-align:left;
}
.pc{
  border-radius:22px;padding:48px 44px;
  position:relative;overflow:hidden;
  transition:transform .3s,box-shadow .3s;
}
.pc:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,.1);}
.pc.span2{grid-column:span 2;}
.pc.green-bg{background:linear-gradient(160deg,#f0fde4,#e4f7d0);}
.pc.blue-bg{background:linear-gradient(160deg,#e8f1fd,#d6e8fc);}
.pc.cream{background:var(--light);}
.pc.dark-bg{background:linear-gradient(160deg,#1a2a1a,#0f1f0f);color:white;}
.pc-tag{
  font-size:.72rem;font-weight:600;letter-spacing:1px;
  text-transform:uppercase;margin-bottom:12px;display:block;
}
.pc.green-bg .pc-tag{color:var(--green);}
.pc.blue-bg .pc-tag{color:var(--blue);}
.pc.cream .pc-tag{color:var(--lime2);}
.pc.dark-bg .pc-tag{color:var(--lime2);}
.pc h3{
  font-size:1.6rem;font-weight:700;letter-spacing:-.5px;
  margin-bottom:10px;color:inherit;
}
.pc p{font-size:.9rem;line-height:1.65;color:var(--mid);}
.pc.dark-bg p{color:rgba(255,255,255,.55);}
.pc-imgs{
  display:flex;align-items:flex-end;
  gap:16px;margin-bottom:28px;
}
.pc-imgs img{
  height:140px;width:auto;object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.15));
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.pc:hover .pc-imgs img{transform:scale(1.05) translateY(-6px);}
.pc-solo img{
  height:160px;width:auto;object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.15));
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
  margin-bottom:28px;display:block;
}
.pc:hover .pc-solo img{transform:scale(1.05) translateY(-6px);}
.pc-icon{font-size:3rem;margin-bottom:20px;display:block;}

/* ─── VENUE GRID ─── */
.venues{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:12px;margin-top:56px;text-align:left;
}
.venue{
  background:rgba(0,0,0,.03);
  border-radius:16px;padding:24px 20px;
  display:flex;align-items:center;gap:14px;
  transition:background .2s,transform .2s;
  border:1px solid rgba(0,0,0,.05);
}
.venue:hover{background:rgba(0,0,0,.055);transform:translateY(-2px);}
.vi{font-size:1.6rem;}
.vn{font-size:.9rem;font-weight:500;color:var(--dark);}

/* ─── CTA ─── */
.cta{
  background:var(--black);
  padding:160px 24px;
  text-align:center;position:relative;overflow:hidden;
}
.cta-ring{
  position:absolute;border-radius:50%;
  border:1px solid rgba(255,255,255,.05);
  pointer-events:none;
}
.cta-ring.r1{width:600px;height:600px;top:50%;left:50%;transform:translate(-50%,-50%);}
.cta-ring.r2{width:900px;height:900px;top:50%;left:50%;transform:translate(-50%,-50%);}
.cta-ring.r3{width:1200px;height:1200px;top:50%;left:50%;transform:translate(-50%,-50%);}
.cta-logo{margin-bottom:40px;display:flex;justify-content:center;position:relative;z-index:2;}
.cta-logo img{
  width:260px;height:auto;
  filter:brightness(0) invert(1);opacity:.9;
}
.cta h2{
  font-size:clamp(2.8rem,6vw,5.5rem);
  font-weight:700;letter-spacing:-3px;
  color:white;margin-bottom:16px;
}
.cta h2 em{
  font-style:normal;
  background:linear-gradient(135deg,#a8e063,#5db81a);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.cta-sub{
  font-size:1.25rem;font-weight:300;
  color:rgba(255,255,255,.5);
  max-width:480px;margin:0 auto 48px;line-height:1.7;
}
.cta-contacts{
  display:flex;justify-content:center;gap:14px;
  flex-wrap:wrap;position:relative;z-index:2;
}
.ccard{
  display:flex;align-items:center;gap:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;padding:22px 28px;
  text-decoration:none;color:white;min-width:240px;
  backdrop-filter:blur(12px);
  transition:background .25s,border-color .25s,transform .25s;
}
.ccard:hover{
  background:rgba(109,191,30,.14);
  border-color:rgba(109,191,30,.35);
  transform:translateY(-3px);
}
.ccard-icon{font-size:2rem;flex-shrink:0;}
.ccard-label{
  font-size:.65rem;font-weight:500;letter-spacing:1px;
  text-transform:uppercase;color:rgba(255,255,255,.35);
  margin-bottom:3px;
}
.ccard-val{font-size:1rem;font-weight:600;color:#a8e063;}

/* ─── FOOTER ─── */
footer{
  background:#1d1d1f;
  padding:24px 44px;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-logo img{height:26px;width:auto;filter:brightness(0) invert(1);opacity:.4;}
footer p{font-size:.76rem;color:rgba(255,255,255,.25);}

/* ─── DIVIDER ─── */
.rule{
  border:none;
  border-top:1px solid rgba(0,0,0,.08);
  margin:0;
}

/* ─── ANIMATIONS ─── */
@keyframes rise{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:translateY(0);}
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .steps-apple{grid-template-columns:repeat(2,1fr);}
  .pgrid{grid-template-columns:1fr;}
  .pc.span2{grid-column:span 1;}
  .venues{grid-template-columns:repeat(2,1fr);}
  nav ul{display:none;}
}
@media(max-width:600px){
  nav{padding:0 16px;}
  .hero h1{letter-spacing:-2px;}
  .steps-apple{grid-template-columns:1fr;}
  .venues{grid-template-columns:1fr 1fr;}
  .cta{padding:100px 24px;}
  footer{flex-direction:column;text-align:center;padding:20px;}
  .perks-bar{flex-direction:column;}
  .perk{border-right:none;border-bottom:1px solid rgba(0,0,0,.06);width:100%;justify-content:center;}
}

/* ── PRODUCT CATEGORY SECTIONS ── */
.cat-section { margin-top: 56px; }
.cat-header {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.cat-label {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.3px;
}
.cat-desc {
  font-size: .88rem; color: var(--mid); font-weight: 400;
}

/* Scrollable row */
.prod-scroll-wrap {
  position: relative;
  overflow: hidden;
}
.prod-scroll-wrap::before,
.prod-scroll-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.prod-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.prod-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.prod-scroll {
  display: flex; gap: 14px;
  padding: 12px 44px 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.prod-scroll::-webkit-scrollbar { display: none; }

/* Individual product tile */
.prod-tile {
  flex-shrink: 0;
  width: 168px;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  scroll-snap-align: start;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  cursor: default;
}
.prod-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.13);
}
.prod-tile-img-wrap {
  height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  gap: 8px;
}
.prod-emoji-large {
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
  transition: transform .25s;
}
.prod-tile:hover .prod-emoji-large {
  transform: scale(1.15) translateY(-3px);
}
.prod-brand-badge {
  font-size: .55rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: white; padding: 2px 8px;
  border-radius: 100px;
  opacity: .9;
}
.prod-tile-info {
  padding: 12px 14px 14px;
}
.prod-tile-name {
  font-size: .82rem; font-weight: 600;
  color: var(--dark); margin-bottom: 3px;
  letter-spacing: -.1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prod-tile-sub {
  font-size: .72rem; color: var(--mid); font-weight: 400;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Section bg is white — fade edges need to match */
.alt .prod-scroll-wrap::before { background: linear-gradient(to right, var(--light), transparent); }
.alt .prod-scroll-wrap::after  { background: linear-gradient(to left,  var(--light), transparent); }


/* ── NAV CTA as phone number ── */
nav .nav-cta {
  font-size: .78rem !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

/* ── CONTACT RIBBON ── */
.contact-ribbon {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 0 44px;
}
.contact-ribbon-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 18px 0;
}
.cr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 36px 8px 0;
  color: var(--mid);
  flex-shrink: 0;
}
.cr-item svg { color: var(--lime2); flex-shrink: 0; }
.cr-label {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--mid);
  margin-bottom: 2px;
}
.cr-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}
.cr-val:hover { color: var(--blue); }
.cr-green { color: var(--lime) !important; }
.cr-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,.1);
  margin-right: 36px;
  flex-shrink: 0;
}
.cr-cta {
  margin-left: auto;
}

/* ── MID CONTACT STRIP ── */
.mid-contact {
  background: linear-gradient(135deg, #0f2d5e, #1a4fa0);
  padding: 48px 44px;
}
.mid-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mc-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.mc-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.mc-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.mc-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime2);
  color: white;
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 980px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(109,191,30,.35);
  white-space: nowrap;
}
.mc-btn-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,191,30,.5); }
.mc-btn-email {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.mc-btn-email:hover { color: white; border-color: rgba(255,255,255,.5); }

@media(max-width:900px) {
  .contact-ribbon { padding: 0 20px; }
  .cr-divider { display: none; }
  .cr-item { padding: 8px 20px 8px 0; }
  .cr-cta { margin-left: 0; width: 100%; }
  .mid-contact { padding: 36px 24px; }
  .mid-contact-inner { flex-direction: column; align-items: flex-start; }
}
@media(max-width:600px) {
  .cr-item:last-of-type { display: none; }
}


/* ── REAL PRODUCT PHOTO GRID ── */
.real-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.real-prod-card {
  background: var(--light);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: default;
}
.real-prod-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}
.real-prod-img-wrap {
  background: white;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.real-prod-img-wrap img {
  max-height: 170px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.14));
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.real-prod-card:hover .real-prod-img-wrap img {
  transform: scale(1.08) translateY(-4px);
}
.real-prod-info {
  padding: 18px 20px 20px;
}
.real-prod-brand {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime2);
  margin-bottom: 5px;
}
.real-prod-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.2px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.real-prod-detail {
  font-size: .78rem;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.5;
}

@media(max-width:900px) {
  .real-prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:560px) {
  .real-prod-grid { grid-template-columns: 1fr; }
  .real-prod-img-wrap { height: 180px; }
}



/* SEO expansion and content-page styles */
picture.optimized-picture { display: contents; }
img { max-width: 100%; }

/* Header brand sizing */
nav {
  height: 64px;
  padding-inline: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 64px;
  overflow: visible;
}
nav .nav-logo img {
  display: block;
  width: 88px !important;
  max-width: none;
  height: 88px !important;
  object-fit: contain;
}

/* Keep the product art in steps 3 and 4 inside its own card. */
.step-a {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.step-product {
  display: flex;
  height: 150px;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.step-product img {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: 112px !important;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.16));
  transform: none !important;
}
.step-product-cold img {
  height: 118px !important;
}
.step-product .sp-lbl {
  flex: 0 0 auto;
}
.hero-kicker {
  margin: 2px 0 18px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-qualifier {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--mid);
  font-size: .8rem;
  line-height: 1.55;
}
.trust-grid,
.local-grid,
.faq-preview-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.trust-card,
.local-card,
.faq-preview-card,
.fact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 34px rgba(0,0,0,.045);
}
.trust-card h3,
.local-card h3,
.faq-preview-card h3,
.fact-card h2,
.fact-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.08rem;
  line-height: 1.25;
}
.trust-card p,
.local-card p,
.faq-preview-card p,
.fact-card p,
.fact-card li {
  color: var(--mid);
  font-size: .92rem;
  line-height: 1.65;
}
.fact-card ul { padding-left: 19px; }
.fact-card li + li { margin-top: 8px; }
.local-card a,
.faq-preview-card a,
.text-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.area-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #eef8e9;
  color: #275d19;
  font-size: .9rem;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin: 20px auto 16px;
}
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .82rem; }
.footer-links a:hover { color: white; }
.content-hero {
  padding: 132px 24px 70px;
  background: linear-gradient(180deg, #f6fbf3 0%, #fff 100%);
  text-align: center;
}
.content-hero .eyebrow { display: block; margin-bottom: 14px; }
.content-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: .99;
  letter-spacing: -.055em;
}
.content-hero p {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--mid);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 300;
}
.breadcrumbs {
  max-width: 1080px;
  margin: 0 auto 24px;
  text-align: left;
  color: var(--mid);
  font-size: .78rem;
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.content-page { padding: 72px 24px; }
.content-page.alt { background: var(--light); }
.content-page .wrap-readable { max-width: 820px; margin: 0 auto; }
.content-page h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.content-page h2:first-child { margin-top: 0; }
.content-page p,
.content-page li {
  color: #515154;
  font-size: 1rem;
  line-height: 1.75;
}
.content-page p + p { margin-top: 18px; }
.content-page ul,
.content-page ol { padding-left: 22px; margin-top: 18px; }
.content-page li + li { margin-top: 8px; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-chips a,
.area-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  padding: 10px 15px;
  background: #fff;
  color: var(--dark);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0,0,0,.11);
}
.faq-item h2,
.faq-item h3 {
  margin: 0 0 9px;
  color: var(--dark);
  font-size: 1.16rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.faq-item p { margin: 0; }
.page-cta {
  padding: 72px 24px;
  background: #0c2208;
  color: white;
  text-align: center;
}
.page-cta h2 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: white;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.page-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.page-cta .btn-blue { display: inline-flex; }
.contact-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.contact-pair a {
  display: block;
  padding: 26px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  color: var(--dark);
  text-decoration: none;
}
.contact-pair strong { display: block; margin-bottom: 5px; }
.contact-pair span { color: var(--blue); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mobile-call {
  display: none;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
}
.sms-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime2), #4ea816);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(35,91,12,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.sms-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(35,91,12,.34);
  background: linear-gradient(135deg, #79cf27, #469a13);
}
.sms-chat:focus-visible {
  outline: 3px solid rgba(30,77,183,.34);
  outline-offset: 3px;
}
.sms-chat-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.sms-chat-icon svg {
  width: 18px;
  height: 18px;
}
.sms-chat-copy {
  display: grid;
  gap: 1px;
  line-height: 1.08;
}
.sms-chat-copy strong {
  font-size: .9rem;
  font-weight: 800;
}
.sms-chat-copy small {
  color: rgba(255,255,255,.84);
  font-size: .67rem;
  font-weight: 500;
}
@media (max-width: 760px) {
  nav {
    height: 60px;
    padding-inline: 16px;
  }
  .nav-logo {
    height: 60px;
  }
  nav .nav-logo img {
    width: 78px !important;
    height: 78px !important;
  }
  .trust-grid,
  .local-grid,
  .faq-preview-grid,
  .content-grid,
  .contact-pair { grid-template-columns: 1fr; }
  .content-hero { padding-top: 106px; }
  .trust-card,
  .local-card,
  .faq-preview-card,
  .fact-card { padding: 23px; }
  .sms-chat {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 9px 15px 9px 10px;
  }
  .sms-chat-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}
@media (max-width: 900px) {
  .mobile-call { display: inline-flex; }
}

/* Shared navigation refresh for SEO and location pages */
nav .nav-logo {
  width: 205px;
  height: 56px;
  overflow: visible;
}
nav .nav-logo img {
  width: 205px !important;
  height: auto !important;
  max-height: 56px;
  object-fit: contain;
}
.sub-mobile-menu {
  display: none;
  position: static;
}
.sub-mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 9px;
  background: #fff;
}
.sub-mobile-menu summary::-webkit-details-marker { display: none; }
.sub-mobile-menu summary span {
  width: 19px;
  height: 2px;
  display: block;
  background: #06396d;
}
.sub-mobile-menu div {
  padding: 16px;
  display: grid;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 16px 30px rgba(6,57,109,.13);
}
.sub-mobile-menu div a {
  padding: 10px;
  color: #06396d;
  font-size: .9rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .sub-mobile-menu { display: block; }
  nav { gap: 10px; }
  nav .nav-logo {
    width: 170px;
    height: 48px;
  }
  nav .nav-logo img {
    width: 170px !important;
    max-height: 48px;
  }
  .mobile-call {
    margin-left: auto;
  }
}
@media (max-width: 520px) {
  nav .nav-logo {
    width: 145px;
  }
  nav .nav-logo img {
    width: 145px !important;
  }
  .mobile-call {
    padding-inline: 11px;
    font-size: 0;
  }
  .mobile-call::after {
    content: "Call";
    font-size: .78rem;
  }
}
