/* Cowboys AC – Homepage (clean single stylesheet) */
:root{
  --bg: #071629;
  --bg2:#0B1F3A;
  --card:#0f2747;
  --card2:#102a4e;
  --text:#eef4ff;
  --muted:#b7c5dc;
  --line: rgba(255,255,255,.12);

  --red:#E63946;
  --red2:#ff4a57;
  --green:#2dd4bf;

  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(230,57,70,.22), transparent 55%),
              radial-gradient(900px 600px at 100% 10%, rgba(45,212,191,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Topbar */
.topbar{
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar__left, .topbar__right{display:flex; gap:12px; align-items:center}
.toplink{
  padding:6px 10px; border-radius:999px; border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:800;
  font-size:13px;
}
.muted{color:var(--muted)}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,22,41,.72);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  height: 44px;
  width:auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

/* Nav */
.nav{display:flex; align-items:center; gap:16px}
.nav a{
  font-weight:800;
  color: rgba(238,244,255,.92);
  padding:10px 10px;
  border-radius: 12px;
  opacity:.88;
}
.nav a:hover{background: rgba(255,255,255,.06); opacity:1}
.nav a.isCta{
  background: rgba(230,57,70,.18);
  border: 1px solid rgba(230,57,70,.35);
  opacity:1;
}

.hamburger{
  display:none;
  width:46px; height:42px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  cursor:pointer;
}
.hamburger span{
  display:block; height:2px; width:18px;
  background: var(--text);
  margin:5px auto;
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing:.2px;
  gap:10px;
  user-select:none;
  min-height: 46px; /* touch-friendly */
  cursor:pointer;
}
.btn--small{padding: 10px 12px; min-height: 40px; border-radius: 12px;}
.btn--block{width:100%}

.btn--primary{
  background: linear-gradient(180deg, var(--red2), var(--red));
  box-shadow: 0 18px 50px rgba(230,57,70,.30);
}
.btn--primary:hover{filter: brightness(1.03)}
.btn--secondary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
}
.btn--secondary:hover{background: rgba(255,255,255,.13)}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.18);
}
.btn--ghost:hover{background: rgba(255,255,255,.06)}

/* Hero */
.hero{
  position:relative;
  padding: 44px 0 26px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  opacity:.36;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(230,57,70,.58), transparent 58%),
    radial-gradient(900px 520px at 95% 10%, rgba(45,212,191,.20), transparent 60%);
  pointer-events:none;
  transition: background-image 1s ease-in-out;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  font-weight:900;
  letter-spacing:.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(238,244,255,.78);
  margin-bottom: 10px;
}
.hero__title{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 14px;
  font-size: clamp(32px, 3.2vw, 56px);
}
.accent{
  /* Use a rich red gradient for the Cowboy word to match the SalesPulse palette */
  background: linear-gradient(90deg, #ff465a, #ff6b6b 70%, #ff8c7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__sub{
  margin: 0 0 18px;
  color: rgba(238,244,255,.86);
  line-height: 1.55;
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 56ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 18px}

.hero__trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* Animated truck driving across the hero.  It appears behind the hero content on larger screens. */
.heroDrive {
  position: absolute;
  bottom: 40px;
  left: -400px;
  width: 360px;
  max-width: 40vw;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
  animation: driveAcross 14s linear infinite;
}

@keyframes driveAcross {
  from { left: -400px; }
  to   { left: calc(100% + 400px); }
}
.trustItem{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 12px;
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  margin-top: 6px;
  background: rgba(45,212,191,.9);
  box-shadow: 0 0 0 6px rgba(45,212,191,.12);
}
.trustItem__title{font-weight:900}
.trustItem__sub{font-size:13px; color:var(--muted); margin-top:2px}

/* Right hero card */
.hero__visual{position:relative}
.glassCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glassCard__top{
  display:flex; gap:10px; justify-content:flex-start;
  padding: 14px 14px 0;
}
.glassCard__badge{
  font-size: 12px; font-weight:900;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(230,57,70,.18);
  border: 1px solid rgba(230,57,70,.25);
}
.glassCard__badge--outline{
  background: transparent;
  border-color: rgba(255,255,255,.16);
}
.heroMedia{padding: 12px 14px 0}
.heroMedia__fallback{
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);
  color: rgba(238,244,255,.88);
  line-height:1.5;
}
.glassCard__bottom{
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
}
.miniStats{display:flex; gap:14px}
.miniStat__num{font-weight:900; font-size:16px}
.miniStat__label{font-size:12px; color:var(--muted); margin-top:2px}

/* Sections */
.section{padding: 52px 0}
.section--alt{
  background: rgba(255,255,255,.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectionHead{margin-bottom: 18px}
.sectionHead h2{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height:1.1;
}
.sectionHead p{margin:0; color: var(--muted); max-width: 70ch}

/* Service grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 45px rgba(0,0,0,.18);
}
/* Service card icon container — larger sizes for better visibility */
.card__icon{
  /* Increase service card icon size for better visibility */
  /* Larger icon container for high‑resolution displays */
  width: 110px;
  height: 110px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  /* Neutral glass background so icons stand out on all cards */
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  margin-bottom: 14px;
}
.card__icon svg{width:28px;height:28px}

/* Increase size of service icons within the cards */
.card__icon img{
  width: 86px;
  height: 86px;
}

/* Hero truck illustration section.  The container ensures the truck image fills available space and stays proportional. */
.heroTruck{
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
  pointer-events: none;
  /* Center horizontally on smaller screens */
  display: none;
}

.heroTruck img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.25));
  object-fit: contain;
}

@media (min-width: 768px) {
  /* Show truck on medium and larger screens to balance layout */
  .heroTruck {
    display: block;
  }
}

/* Responsive adjustments for hero on smaller screens */
@media (max-width: 900px) {
  /* Stack hero columns on small screens */
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
  }
  .hero__visual {
    margin-top: 20px;
  }
  /* Hide large illustrated truck and commercial overlay on mobile to prevent layout overflow */
  .heroTruck {
    display: none;
  }
  .heroDrive {
    display: none;
  }
  .heroVideoOverlay {
    display: block;
    opacity: .28;
  }
}
.card h3{margin:0 0 8px; font-size: 18px; font-weight:900}
.card p{margin:0 0 10px; color: var(--muted); line-height:1.5}
.card__link{font-weight:900; opacity:.9}
.card__link:hover{opacity:1}

/* Financing panel */
.panel{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  overflow:hidden;
}
.panel__title{
  padding: 16px 16px 10px;
  font-weight: 950;
  font-size: 16px;
}
.panel__body{
  padding: 0 16px 16px;
  color: rgba(238,244,255,.88);
  line-height:1.55;
}
.bullets{list-style:none; padding:0; margin: 12px 0 0}
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bullets li:last-child{border-bottom:none}
.check{
  width:24px; height:24px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(45,212,191,.14);
  border: 1px solid rgba(45,212,191,.22);
  font-weight: 950;
}

/* Contact section (dark native) */
.contactWrap{
  padding: 52px 0;
}
.contactContainer{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}
.contactHeader{text-align:center; margin-bottom:18px}
.contactKicker{
  color:var(--red2);
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
  text-transform:uppercase;
}
.contactTitle{
  margin:8px 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.05;
  font-weight:950;
}
.contactSubtitle{
  margin:0 auto;
  max-width:740px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap:14px;
  align-items:stretch;
}
.contactCard, .mapCard{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  overflow:hidden;
}
.contactCard{padding:18px}
.contactRow{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contactRow:last-of-type{border-bottom:none}
.contactIcon{
  /* Enlarge contact icons */
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  color:var(--text);
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.12);
}
.contactIcon svg{width:22px;height:22px}
.contactLabel{font-weight:950; font-size:18px; margin-bottom:4px}
.contactValue{color:var(--muted); line-height:1.45}
.contactLink{font-weight:900; text-decoration:underline; text-underline-offset:3px; opacity:.95}
.contactLink:hover{opacity:1}
.contactBig{padding: 14px 0 6px}
.contactBigLine{
  display:flex; flex-wrap:wrap; gap:10px; align-items:baseline;
  margin:10px 0;
}
.contactBigLabel{
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  color: var(--red2);
}
.contactBigLink{
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  color: rgba(130,194,255,.98);
  text-decoration:none;
}
.contactBigLink:hover{text-decoration:underline}
.contactButtons{display:flex; gap:12px; margin-top:12px; flex-wrap:wrap}
.mapCard iframe{width:100%; height:100%; min-height:420px; border:0; display:block; filter:saturate(1.05) contrast(1.05);}

/* Footer (skyline image background) */
.siteFooter{
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.92);
  margin-top: 56px;
}
.footerBg{
  position:absolute; inset:0;
  background-image: url("assets/img/footercowboysweb.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.footerOverlay{
  position:absolute; inset:0;
  background: linear-gradient(
    90deg,
    rgba(6,18,35,.92),
    rgba(6,18,35,.72),
    rgba(6,18,35,.92)
  );
}
.footerInner{
  position: relative;
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
  padding: 44px 0;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}
.footerLogo{width:220px; max-width:80%; height:auto; margin-bottom:14px; opacity:.95}
.footerTitle{letter-spacing:.08em; font-size: 14px; font-weight:950; margin: 8px 0 12px}
.footerText{margin:10px 0; line-height:1.5; color: rgba(255,255,255,.86)}
.footerLinks{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 16px;
}
.footerLinks a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:800;
}
.footerLinks a:hover{text-decoration:underline}
.footerRight{display:flex; flex-direction:column; gap:12px}
.footerBadges{display:grid; gap:8px; margin-top:6px}
.footerBadge{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight:950;
}
.footerCta{
  display:inline-block;
  margin-top:4px;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(180deg, var(--red2), var(--red));
  color:#fff;
  font-weight:950;
  text-decoration:none;
  text-align:center;
  width: fit-content;
  min-width: 220px;
  box-shadow: 0 18px 50px rgba(230,57,70,.25);
}
.footerCta.ghost{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow:none;
}
.footerBottom{
  position: relative;
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
  text-align:center;
}

/* Floating call and text buttons on bottom right */
.floatingButton{
  position:fixed;
  right:20px;
  z-index:999;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: linear-gradient(135deg,#ff5a5f,#e63946);
  box-shadow:0 6px 12px rgba(0,0,0,0.3);
  transition:transform .2s ease;
}
.floatingButton img{
  width:32px;
  height:32px;
}
.floatingButton:hover{
  transform:scale(1.1);
}
.callBtn{ bottom:100px; }
.textBtn{ bottom:30px; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .hero__trust{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .mapCard iframe{min-height:360px}
  .footerInner{grid-template-columns: 1fr}
  .footerLinks{grid-template-columns: 1fr 1fr}
  .nav{
    display:none;
    position:absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    flex-direction:column;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(7,22,41,.92);
    backdrop-filter: blur(14px);
  }
  .nav.isOpen{display:flex}
  .nav a{width:100%}
  .hamburger{display:block}
}

@media (max-width: 520px){
  .footerLinks{grid-template-columns: 1fr}
  .footerCta{width:100%; min-width:0}
  .heroLoader--across{ left: -65%; }

}

/* TV / large screens */
@media (min-width: 1500px){
  :root{ --container: 1280px; }
  .hero{padding-top: 60px}
  .btn{min-height: 54px; padding: 16px 18px}
  .card{padding: 22px}
}

/* Partner carousel styles */
.partnerCarousel{
  overflow: hidden;
  width: 100%;
  margin-top: 18px;
}
.partnerTrack{
  display: flex;
  gap: 28px;
  align-items: center;
  animation: partnerScroll 40s linear infinite;
}
.partnerTrack img{
  height: 80px;
  width: auto;
  flex-shrink: 0;
  border-radius: 18px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 16px rgba(0,0,0,.24);
}
@keyframes partnerScroll{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Financing infographic card styles */
.financingInfographic{
  margin-top: 26px;
}
.infographicCard{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 45px rgba(0,0,0,.20);
  padding: 18px;
}
.infographicCard img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}



/* === Cowboys "Alive" Patch (ambient motion + proximity energy) === */

@keyframes ambientDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-6px,-4px,0) scale(1.01); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes footerSweep {
  0%   { transform: translate3d(-30%,0,0); opacity: 0; }
  10%  { opacity: .9; }
  55%  { opacity: .9; }
  100% { transform: translate3d(130%,0,0); opacity: 0; }
}

/* Ambient drift on key background layers */
.hero__bg,
.footerBg,
.footerOverlay{
  will-change: transform;
  animation: ambientDrift 46s ease-in-out infinite;
}

/* Slightly offset layers for depth */
.footerOverlay{ animation-duration: 62s; }

/* Cursor energy field (subtle radial glow) */
#ambientGlow{
  position: fixed;
  top: 0; left: 0;
  width: 1px; height: 1px;
  pointer-events: none;
  z-index: 0;
  opacity: .85;
}
#ambientGlow::before{
  content:"";
  position: absolute;
  left: -280px; top: -280px;
  width: 560px; height: 560px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(230,57,70,.16), transparent 58%),
    radial-gradient(circle at 70% 45%, rgba(45,212,191,.10), transparent 62%);
  filter: blur(2px);
}


/* =========================
   2026 AMBIENT DEPTH FIELD (replaces moving lines/grid)
   ========================= */
.ambientField{
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 20% 30%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(50vw 50vw at 80% 40%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(70vw 70vw at 50% 80%, rgba(255,255,255,0.03), transparent 65%);
  filter: blur(40px);
  animation: ambientFieldDrift 90s ease-in-out infinite;
  opacity: .95;
}
@keyframes ambientFieldDrift{
  0%   { transform: translate3d(0,0,0) scale(1); opacity: .90; }
  50%  { transform: translate3d(-4%, -3%, 0) scale(1.03); opacity: 1; }
  100% { transform: translate3d(0,0,0) scale(1); opacity: .90; }
}
@media (prefers-reduced-motion: reduce){
  .ambientField{ animation: none !important; }
}
/* Make sure content stays above the glow */
body{ position: relative; }
.hero, .section, .contactWrap, .siteFooter, header, .topbar{ position: relative; z-index: 1; }

/* Proximity energy variables (used by JS) */
.card, .glassCard, .panel, .choice, .resultCard{
  --prox: 0;
}

/* The subtle "alive" bump (hover still wins) */
.card, .glassCard, .panel, .choice, .resultCard{
  filter: brightness(calc(1 + (var(--prox) * .08)));
  transform: translate3d(0, calc(var(--prox) * -2px), 0);
}

/* Footer light sweep */
.siteFooter{
  position: relative;
}
.siteFooter::after{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.06) 45%,
    rgba(255,255,255,.10) 50%,
    rgba(255,255,255,.06) 55%,
    transparent 100%);
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translate3d(-30%,0,0);
  animation: footerSweep 28s ease-in-out infinite;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .hero__bg, .footerBg, .footerOverlay, .siteFooter::after{ animation: none !important; }
  #ambientGlow{ display:none !important; }
  .card, .glassCard, .panel, .choice, .resultCard{ transform:none !important; filter:none !important; }
}
@media (pointer: coarse){
  #ambientGlow{ display:none; }
}

/* =========================
   2ADV INTERACTIVE SHIMMER + TYPO
   Added: 2026-01-06
   ========================= */
:root{
  --shine: rgba(255,255,255,.16);
  --shine2: rgba(255,255,255,.06);
  --edge: rgba(255,255,255,.14);
  --edge2: rgba(255,255,255,.22);
  --glow-red: rgba(230,57,70,.22);
  --glow-teal: rgba(45,212,191,.20);

  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  --font-title: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
}

body{
  font-family: var(--font-sans);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
}

/* headline punch */
h1, .hero__title{
  font-family: var(--font-title);
  letter-spacing: -0.02em;
  font-weight: 950;
}
h2{
  font-weight: 920;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

/* tech-label kicker */
.kicker, .contactKicker{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  opacity: .88;
}

/* premium paragraph rhythm */
p, .hero__sub, .subtext{
  line-height: 1.65;
  font-size: 15.5px;
  opacity: .90;
}

/* accent = subtle gradient + glow */
/* Bold accent gradient for the "Cowboy" word.  Match the vibrant SalesPulse red tones */
.accent{
  background: linear-gradient(90deg, #ff2b4a 0%, #ff5a5f 50%, #e63946 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* subtle glow */
  text-shadow: 0 0 14px rgba(255,60,80,0.3), 0 0 22px rgba(255,110,120,0.15);
}

/* sharper nav */
.nav a{
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
}
.nav a:hover{ opacity: 1; }

/* buttons: less pill, more precision */
.btn{
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}

/* focus ring (expensive feel) */
:where(a, button, .btn, .card, .choice, .resultCard):focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(45,212,191,.20),
    0 0 0 1px rgba(45,212,191,.45) inset,
    0 22px 70px rgba(0,0,0,.28);
}

/* ========= Shimmer system ========= */
a, button, .btn, .card, .choice, .resultCard, .nav a, .footerLinks a, .linkArrow{
  position: relative;
}

.btn::before,
.card::before,
.choice::before,
.resultCard::before,
.nav a::before,
.footerLinks a::before,
.linkArrow::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(110deg,
      transparent 0%,
      var(--shine2) 22%,
      var(--shine) 34%,
      var(--shine2) 46%,
      transparent 60%);
  transform: translateX(-140%);
  opacity: 0;
  filter: blur(.2px);
}

@keyframes idleSheen{
  0%   { transform: translateX(-140%); opacity: 0; }
  8%   { opacity: .55; }
  30%  { transform: translateX(140%); opacity: .0; }
  100% { transform: translateX(140%); opacity: 0; }
}
@keyframes hoverSheen{
  0%   { transform: translateX(-140%); opacity: 0; }
  18%  { opacity: .75; }
  100% { transform: translateX(140%); opacity: 0; }
}

.btn, .card, .choice, .resultCard, .nav a, .footerLinks a, .linkArrow{
  overflow: hidden;
}

.btn::before,
.card::before,
.choice::before,
.resultCard::before,
.nav a::before,
.footerLinks a::before,
.linkArrow::before{
  animation: idleSheen 8.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
  opacity: .20;
}

.btn:hover::before,
.card:hover::before,
.choice:hover::before,
.resultCard:hover::before,
.nav a:hover::before,
.footerLinks a:hover::before,
.linkArrow:hover::before,
.btn:focus-visible::before,
.card:focus-visible::before,
.choice:focus-visible::before,
.resultCard:focus-visible::before,
.nav a:focus-visible::before,
.footerLinks a:focus-visible::before,
.linkArrow:focus-visible::before{
  animation: hoverSheen .55s ease-out 1;
  opacity: 1;
}

/* subtle alive edge */
.btn, .card, .choice, .resultCard{
  border: 1px solid var(--edge);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.btn:hover, .card:hover, .choice:hover, .resultCard:hover{
  border-color: var(--edge2);
  box-shadow:
    0 22px 70px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 30px var(--glow-red);
}

@media (prefers-reduced-motion: reduce){
  .btn::before, .card::before, .choice::before, .resultCard::before,
  .nav a::before, .footerLinks a::before, .linkArrow::before{
    animation: none !important;
    opacity: 0 !important;
  }
}


/* =========================
   PAGE TRANSITIONS (app-like)
   ========================= */
body{
  opacity: 0;
  animation: pageIn .28s ease-out forwards;
}
@keyframes pageIn{ to{ opacity:1; } }
body.page--out{
  opacity: 0;
  transition: opacity .18s ease-in;
}

/* === Cowboys Icon System Merge Patch (2026-01-09) === */


/* Ensure header logo never blows up */
.brand__logo{
  width:auto;
  height:44px;
  max-height:44px;
  max-width:260px;
  object-fit:contain;
  display:block;
}

/* Service card icon container supports PNG icons */
.card__icon{
  display:grid;
  place-items:center;
}
.card__icon img{
  /* Larger service icons within cards */
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}

/* Contact row icons */
.contactIcon img{
  /* Increase contact icon images to fill the larger container */
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.35));
}

/* Scroll reveal animations: sections fade and slide up into view */
.scrollReveal{
  opacity:0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scrollReveal.is-visible{
  opacity:1;
  transform: none;
}

/* Partners strip */
.partnerRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
  margin-top:18px;
}
.partnerRow img{
  /* Enlarge partner logos for better visibility */
  height: 80px;
  width: auto;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

/* Social icons in footer */
.socialIcons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.socialIcons img{
  /* Larger circular social icons; cropping ensures no white backgrounds */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
  transition: transform .2s ease;
}
.socialIcons a:hover img{
  transform: scale(1.1);
}

/* Hero slider styles */
.heroSlider{
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
}
.heroSlider img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 40s infinite;
}
.heroSlider img:nth-child(1){ animation-delay: 0s; }
.heroSlider img:nth-child(2){ animation-delay: 8s; }
.heroSlider img:nth-child(3){ animation-delay: 16s; }
.heroSlider img:nth-child(4){ animation-delay: 24s; }
.heroSlider img:nth-child(5){ animation-delay: 32s; }

@keyframes heroFade {
  0%, 15%   { opacity: 1; }
  20%, 100% { opacity: 0; }
}

.heroDispatch{
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.heroDispatch .contactLink{
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 680px){
  .heroSlider{ height: 200px; }
}

/* Virtual tour grid */
.tourGrid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:12px;
  margin-top:20px;
}
.tourGrid img{
  width:100%;
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}

/* Our work gallery grid */
.workGrid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
}
.workGrid img{
  width:100%;
  height:auto;
  max-height: 92%;
  border-radius:20px;
  box-shadow:0 8px 16px rgba(0,0,0,.35);
}

/* Community section image styling */
.communityImage img{
  width: 100%;
  height: auto;
  border-radius: var(--radius2);
  box-shadow: 0 18px 55px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

/* Packages list for financing section */
.packages{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:center;
  margin-top:20px;
}
.packageCard{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:20px;
  width:280px;
  color:#fff;
  text-align:center;
  box-shadow:0 6px 12px rgba(0,0,0,.25);
}
.packageCard h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
}
.packageCard .price{
  font-size:28px;
  font-weight:900;
  color:#ff5a5f;
  margin:8px 0;
}
.packageCard ul{
  list-style:none;
  padding-left:0;
  margin:0;
  font-size:14px;
}
.packageCard li{
  margin:4px 0;
}

/* Financing infographic for pricing breakdown */
.financingInfographic{
  margin-top:32px;
  text-align:center;
}
.financingInfographic img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 6px 12px rgba(0,0,0,.25);
}

/* Partner logos strip with variable width and uniform height */
.partnerRow{
  display:flex;
  overflow-x:auto;
  gap:24px;
  padding-bottom:8px;
}
.partnerRow img{
  height:80px;
  width:auto;
  flex:none;
  border-radius:12px;
  background: rgba(255,255,255,0.05);
  padding:8px;
  box-shadow:0 4px 8px rgba(0,0,0,.25);
}

/* Guides & tutorials */
.guideGrid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
  margin-top:20px;
}
.guideCard{
  padding:18px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 45px rgba(0,0,0,.18);
  text-align:left;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.guideCard img{
  /* Larger tutorial icons for better visibility */
  width:64px;
  height:64px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.guideCard h3{
  margin:0;
  font-size: 16px;
  font-weight:800;
}
.guideCard p{
  margin:0;
  color: var(--muted);
  font-size:14px;
  line-height:1.45;
}
@media (max-width: 680px){
  /* Smaller partner logos on small screens */
  .partnerRow img{ height: 60px; }
}

/* Financing bullets: swap ✓ for Tier-6 checkmark */
.bullets li{
  position:relative;
  padding-left:30px;
}
.bullets .check{
  position:absolute;
  left:0;
  top:2px;
  width:20px;
  height:20px;
  display:inline-block;
  color:transparent; /* hide ✓ */
  background-image:url('assets/icons/t6/cowboys-t6-checkmark-24.png');
  background-repeat:no-repeat;
  background-size:20px 20px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35));
}

/*
 * Additional styles for Community & Partnerships and Pricing Breakdown sections
 */
.communityPartners{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 18px 30px;
}
.communityHeader h2{
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .2px;
}
.communityHeader p{
  margin: 0 0 18px;
  opacity: .9;
  line-height: 1.45;
}
.partnerLockup{
  margin: 16px 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.partnerLockup img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.partnerLockup figcaption{
  margin-top: 10px;
  font-size: 13px;
  opacity: .85;
  text-align: center;
  letter-spacing: .2px;
}
.communityCopy{
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.communityCopy p{
  margin: 10px 0;
  line-height: 1.6;
  opacity: .92;
}

/* Pricing breakdown grid */
.pricingGrid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 20px;
}
.pricingItem{
  border-radius: 18px;
  padding: 18px;
  color: rgba(238,244,255,.88);
  line-height: 1.45;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.pricingItem h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.pricingItem p{
  margin: 4px 0;
  font-size: 14.5px;
}
.pricingItem.color1{
  background: rgba(230,57,70,.14);
  border-color: rgba(230,57,70,.28);
}
.pricingItem.color2{
  background: rgba(255,192,120,.12);
  border-color: rgba(255,192,120,.24);
}
.pricingItem.color3{
  background: rgba(65,139,234,.12);
  border-color: rgba(65,139,234,.24);
}
.pricingItem.color4{
  background: rgba(92,183,142,.12);
  border-color: rgba(92,183,142,.22);
}



/* =========================
   V2 HERO POLISH + TECH WALK
   ========================= */

/* Make the two top hero pills align cleanly on all widths */
.glassCard__top{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  align-items: stretch;
}
.glassCard__top .pill{
  width: 100%;
  justify-content: center;
}
@media (max-width: 520px){
  .glassCard__top{ grid-template-columns: 1fr; }
}

/* Hero media: commercial background + walking tech overlay */
.heroMedia{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 360px;
  aspect-ratio: 1 / 1;
  background: rgba(7, 18, 38, .35);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.heroMedia::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 20% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(3,10,24,.35), rgba(3,10,24,.75));
  z-index: 2;
  pointer-events:none;
}

.heroMedia__bgLink{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
}
.heroMedia__bg{
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .55;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.06);
}

.heroMedia__play{
  position:absolute;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 18px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  z-index: 4;
}

.heroLoader{
  position:absolute;
  right:-3%;
  bottom:-14%;
  width: min(320px, 44%);
  height:auto;
  max-height: 92%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.55));
  animation: techBob 1.6s ease-in-out infinite;
}


.heroLoader--across{
  left: -42%;
  right: auto;
  /* Lift slightly so boots don't clip on the card edge */
  bottom: calc(-14% + 12px);
  /* Walk across + bob */
  animation: techBob 1.6s ease-in-out infinite, techWalkAcross 8.5s linear infinite;
  /* Ensure he travels the direction he's facing (left → right) */
  animation-direction: normal, normal;
  will-change: left;
}

@keyframes techWalkAcross{
  0%{ left: -42%; opacity: 0; }
  6%{ opacity: 1; }
  92%{ opacity: 1; }
  100%{ left: 104%; opacity: 0; }
}

@keyframes techBob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce){
  .heroLoader{ animation: none; }
}

@media (max-width: 900px){
  .heroMedia{ min-height: 320px; }
  .heroLoader{
    right: -7%;
    bottom: -10%;
    width: min(320px, 58%);
  }
  .heroLoader--across{ left: -55%; bottom: calc(-10% + 12px); }

}

@media (max-width: 520px){
  .heroLoader{
    right: -10%;
    bottom: -12%;
    width: min(300px, 72%);
  }
  .heroLoader--across{ bottom: calc(-12% + 12px); }
}

/* Trust pills (Same-day help / Upfront pricing / Trusted team) */
.trustPills{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 780px){
  .trustPills{ grid-template-columns: 1fr; }
}
.trustPill{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.trustPill__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(94, 234, 212, .75);
  box-shadow: 0 0 0 6px rgba(94,234,212,.10);
}
.trustPill__title{
  font-weight: 800;
  letter-spacing: .2px;
}
.trustPill__sub{
  opacity: .78;
  margin-top: 2px;
  font-size: .92rem;
}

/* Badges row (Satisfaction / 24-7) - center + consistent sizing */
.trustBadges{
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}
.trustBadges img{
  width: clamp(88px, 12vw, 118px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}


/* Hero badges row (Satisfaction / 24-7) */
.heroBadges{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.heroBadges img{
  width: clamp(92px, 13vw, 128px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* Hero media rotator (square slideshow) */
.heroMedia__bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body > :not(.ambientField):not(#ambientGlow){ position: relative; z-index: 1; }
body > .ambientField{ position: fixed; inset: -20%; z-index: -2; pointer-events:none; }
