:root{
  /* Option 1: Clean Corporate (Tuned - less bright, logo-friendly header) */
  --navy:#1B3A6B;              /* Dark anchor */
  --blue:#3A86FF;              /* Primary brand blue */
  --green:#4EA72E;
  --deepgreen:#275317;

  /* Softer light theme surfaces (reduces glare vs pure white) */
  --bg:#F6F9FF;                /* Page background */
  --panel:#ffffff;             /* Card background */
  --text:#1F2D3D;              /* Primary text */
  --muted:#5C6B80;             /* Secondary text */

  /* Shadows / radius */
  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --radius:18px;
  --radius-sm:12px;
  --max:1160px;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);color:var(--text);line-height:1.45
}
a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px));margin:0 auto}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* adjust if header is taller */
}

/* Reviews stars */
.reviews-float__stars span{
  color: #f5c518;
  text-shadow: 0 0 6px rgba(245,197,24,.35);
}
.review-author { opacity: .85; font-weight: 800; white-space: nowrap; }

.reviews-float__debug{
  margin-top: 6px;
  font-size: 11px;
  opacity: .75;
}

/* Header (darker so white logo is visible) */
.site-header{
  position:sticky;top:0;z-index:50;
  background: linear-gradient(to bottom, rgba(27,58,107,.94), rgba(27,58,107,.86));
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}

/* Logo: subtle backing + shadow so white logo never washes out */
.brand img{
  display:block;
  background: rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.nav{display:flex;align-items:center;gap:14px; position: relative;}
.nav-toggle{
  display:none;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.22);
  color:#ffffff;
  padding:8px 10px;
  border-radius:10px
}

.nav-menu{list-style:none;display:flex;gap:18px;margin:0;padding:0;align-items:center}
.nav-menu a{
  opacity:.92;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,.92);
}
.nav-menu a:hover{opacity:1}

.has-dropdown{position:relative}
.dropdown{
  display:none; position:absolute; top:130%; left:0;
  background:#ffffff; border:1px solid rgba(27,58,107,.14);
  border-radius:14px; padding:10px; min-width:220px; box-shadow: var(--shadow);
}
.dropdown li{list-style:none}
.dropdown a{display:block;padding:10px 12px;border-radius:10px;color:var(--navy)}
.dropdown a:hover{background:rgba(58,134,255,.10)}
.has-dropdown:hover .dropdown{display:block}

.header-cta{display:flex;align-items:center;gap:10px}
.pill{
  text-decoration:none;font-weight:800;font-size:13px;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#ffffff;
}
.persona-pill{
  cursor:pointer;
  font-weight:900;font-size:13px;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(78,167,46,.95), rgba(58,134,255,.85));
  color:#0b1220;
}

/* Hero */
.hero{position:relative;min-height:72vh;display:flex;align-items:center}
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
  object-position: center 20%;
  filter:contrast(1.02) saturate(.98);
}
.hero-content{position:relative; z-index:2;}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* Less “white wash” */
  background: linear-gradient(
    to right,
    rgba(234,243,255,.78) 0%,
    rgba(234,243,255,.62) 35%,
    rgba(234,243,255,.42) 55%,
    rgba(234,243,255,.18) 75%,
    rgba(234,243,255,0) 100%
  );
}

.hero-copy{max-width:680px}
h1{
  font-size: clamp(38px, 5vw, 64px);
  line-height:1.05;
  margin:0 0 14px;
  font-weight:950;
  letter-spacing:-.02em;
  color:var(--navy);
}
.hero-sub{
  font-size: clamp(18px, 2.2vw, 22px);
  color:var(--muted);
  margin:0 0 22px
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 18px;border-radius:14px;text-decoration:none;font-weight:900;
  border:1px solid rgba(27,58,107,.16);
}
.btn.primary{background:rgba(78,167,46,.92); color:#0b1220}
.btn.primary:hover{filter:brightness(1.03)}
.btn.secondary{
  background:rgba(255,255,255,.92);
  color:var(--navy);
  border-color: rgba(58,134,255,.35)
}
.btn.secondary:hover{background:rgba(58,134,255,.08)}

.trust-strip{margin:14px 0 0;color:rgba(27,58,107,.86);font-weight:800;font-size:14px}
.dot{opacity:.7;padding:0 8px}

/* Sections */
section{padding:70px 0}
.section-title{font-size:32px;margin:0 0 10px;letter-spacing:-.01em;color:var(--navy)}
.section-lede{color:var(--muted);max-width:820px;margin:0 0 24px}

/* Quick tiles */
.quick-tiles{background:linear-gradient(to bottom, rgba(234,243,255,.70), var(--bg))}
.tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.tile{
  background:var(--panel);
  border:1px solid rgba(27,58,107,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.tile img{display:block;margin-bottom:10px}
.tile h3{margin:0 0 8px;font-size:18px;color:var(--navy)}
.tile p{margin:0;color:var(--muted)}

/* Process */
.process{background:linear-gradient(to bottom, rgba(58,134,255,.10), var(--bg))}
.steps{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.step{
  display:flex;gap:12px;align-items:flex-start;
  background:var(--panel); border:1px solid rgba(27,58,107,.12);
  border-radius: var(--radius); padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.step-n{
  width:36px;height:36px;border-radius:12px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(58,134,255,.18); border:1px solid rgba(27,58,107,.12);
  font-weight:900;
  color:var(--navy);
}
.step h3{margin:0 0 6px;color:var(--navy)}
.step p{margin:0;color:var(--muted)}

/* Plan */
.plan{background:linear-gradient(to bottom, rgba(78,167,46,.06), var(--bg))}
.plan-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;align-items:stretch}
.plan-card, .trust-card{
  background:var(--panel);
  border:1px solid rgba(27,58,107,.12);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: 0 14px 45px rgba(0,0,0,.08);
}
.plan-card h2{margin-top:0;color:var(--navy)}
.fineprint{color:rgba(31,45,61,.75);font-size:13px;margin:14px 0 0}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}
.badge{
  font-weight:800;font-size:12px;padding:8px 10px;border-radius:999px;
  border:1px solid rgba(27,58,107,.16); background:rgba(58,134,255,.08);
  color:var(--navy);
}
.checklist{padding-left:18px;margin:0 0 10px}
.checklist li{margin:10px 0}
.muted{color:var(--muted)}

/* Industries */
.industries{background:linear-gradient(to bottom, rgba(58,134,255,.08), var(--bg))}
.pill-grid{display:flex;flex-wrap:wrap;gap:10px}
.pill2{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(27,58,107,.16);
  background:rgba(58,134,255,.08);
  font-weight:700;font-size:13px;
  color:var(--navy);
}

/* About */
.about{background:linear-gradient(to bottom, rgba(27,58,107,.07), var(--bg))}
.about-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}

/* FIX: About “bubble” uses same navy gradient as header/footer */
.about-card{
  background: linear-gradient(to bottom, rgba(27,58,107,.96), rgba(27,58,107,.90));
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
}

/* If headings/paragraphs exist inside the about card, keep them readable */
.about-card h2,
.about-card h3,
.about-card h4{
  color:#ffffff;
}
.about-card p{ color: rgba(234,243,255,.88); }

/* Muted text in the About card should still be light */
.about-card .muted{ color: rgba(234,243,255,.80) !important; }

.logo-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 6px 0 14px;
}
.logo-wrap img{
  width: 220px;
  max-width: 85%;
  height: auto;
  display:block;
  transform: none; /* remove old nudge */
  background: rgba(255,255,255,.08);
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

/* About meta links: light + dotted underline */
.about-meta{margin-top:14px;display:grid;gap:10px}
.about-meta a{
  text-decoration:none;
  border-bottom:1px dotted rgba(234,243,255,.55);
  color: rgba(255,255,255,.92);
}
.about-meta a:hover{border-bottom-color:#ffffff}

/* Contact */
.contact{background:linear-gradient(to bottom, rgba(78,167,46,.05), var(--bg))}
.contact-inner{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.contact-form{
  background:var(--panel);
  border:1px solid rgba(27,58,107,.12);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
label{display:grid;gap:8px;margin-bottom:12px;font-weight:800;font-size:13px;color:var(--navy)}
input, textarea{
  width:100%; padding:12px 12px; border-radius:12px;
  border:1px solid rgba(27,58,107,.18); background:#ffffff;
  color:var(--text);
}
input::placeholder, textarea::placeholder{color:rgba(92,107,128,.75)}
input:focus, textarea:focus{outline:2px solid rgba(58,134,255,.25); border-color: rgba(58,134,255,.55)}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(27,58,107,.12);
  background:rgba(27,58,107,.98);
  color:#fff
}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.footer-left p{margin:8px 0 0;color:rgba(234,243,255,.85);font-weight:700}
.footer-right a{text-decoration:none;border-bottom:1px dotted rgba(234,243,255,.55)}
.footer-right a:hover{border-bottom-color:#ffffff}

/* Hero rotator */
.hero-rotator{
  margin:10px 0 0;
  color:rgba(27,58,107,.92);
  font-weight:900;
  letter-spacing:.01em;
  font-size:14px;
  text-transform:none;
  opacity:.95
}
.fade{animation:fadeSwap .45s ease}
@keyframes fadeSwap{from{opacity:.15;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}

/* =========================
   Partners marquee (Desktop only)
   FIX: Match header/footer navy color
   ========================= */
.partner-strip{
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(27,58,107,.96), rgba(27,58,107,.90));
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.partner-strip__label{
  color: rgba(234,243,255,.88);
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 10px 2px;
}
.partner-marquee{
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  /* Full-bleed */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partner-track{
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 90px;
  padding: 12px 18px;

  width: max-content;
  white-space: nowrap;

  animation: partnerScroll 250s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.partner-track img{
  display: inline-block;
  flex: 0 0 auto;

  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;

  opacity: .92;
  filter: brightness(1.08);
}
@keyframes partnerScroll{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

/* Responsive */
@media (max-width: 980px){
  .nav-toggle{display:inline-flex}
  .nav-menu{
    display:none; position:absolute; top:64px; left:20px; right:20px;
    background:#ffffff;
    border:1px solid rgba(27,58,107,.14);
    border-radius:16px;
    padding:10px;
    flex-direction:column;
    gap:6px;
    z-index: 9999;
  }
  .nav-menu.open{display:flex}
  .nav-menu a{color:var(--navy)}
  .dropdown{position:static; box-shadow:none; border:none; padding:0; background:transparent}
  .has-dropdown:hover .dropdown{display:none}
  .has-dropdown > a{display:none}
  .has-dropdown .dropdown{display:block}

  .tiles{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .plan-inner{grid-template-columns:1fr}
  .about-inner{grid-template-columns:1fr}
  .contact-inner{grid-template-columns:1fr}
  .hero-content{padding:64px 0}
}

/* Anchor offset for sticky header */
.anchor{
  position: relative;
  top: -100px;     /* adjust if your header is taller/shorter */
  height: 1px;
}

/* Mobile: remove partner strip entirely */
@media (max-width: 768px){
  .partner-strip{ display:none; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto}
}
@media screen and (max-width: 768px){
  section.partner-strip{
    display: none !important;
  }
}

/* Mobile tap fix for hero CTA buttons (iOS Safari quirk) */
.hero { position: relative; }
.hero::after { pointer-events: none !important; }
.hero-bg { pointer-events: none; }
.hero-content, .hero-content * { pointer-events: auto; }

/* Floating Reviews (top-left on hero) */
.reviews-float{
  position:absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  max-width: 320px;
  pointer-events: auto;
}

.reviews-float__inner{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(27,58,107,.14);
  backdrop-filter: blur(10px) saturate(140%);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.reviews-float__stars{
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 6px;
}

.reviews-float__source{
  display:block;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 4px;
  color: rgba(27,58,107,.85);
}

.reviews-float__quote{
  font-size: 13px;
  color: rgba(31,45,61,.92);
  font-weight: 800;
}

.reviews-float.fade { animation: reviewFade .45s ease; }
@keyframes reviewFade { from{opacity:.15;transform:translateY(2px)} to{opacity:1;transform:translateY(0)} }

@media (max-width: 768px){
  .reviews-float{ top: 12px; left: 12px; max-width: 280px; }
  .reviews-float__inner{ padding: 10px 10px; }
}

/* Reviews link: no underline anywhere */
.reviews-float,
.reviews-float:visited,
.reviews-float:hover,
.reviews-float:active,
.reviews-float:focus {
  text-decoration: none !important;
  color: inherit;
}

.reviews-float * {
  text-decoration: none !important;
}

/* Footer links */
.footer a { text-decoration: none; color: inherit; }
.footer a:hover { text-decoration: underline; }

/* =========================================
   Mobile-only: move floating Google reviews
   from top-left to bottom (and keep it sane)
   ========================================= */
@media (max-width: 768px){
  .reviews-float{
    position: fixed;              /* keep it visible */
    top: auto !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;

    width: auto !important;
    max-width: 520px;
    margin: 0 auto;

    z-index: 9999;
  }

  .reviews-float__inner{
    max-width: 100%;
  }

  /* prevent it from forcing a horizontal scroll */
  .reviews-float,
  .reviews-float *{
    max-width: 100%;
    box-sizing: border-box;
  }

  /* make it a bit tighter on mobile */
  .reviews-float__quote{
    font-size: 13px;
    line-height: 1.25;
  }
}

/* =========================
   Footer Badges (Fixed)
   ========================= */
.footer-badges{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-badges img{
  height: 55px;
  width: auto;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(1.05);
  opacity: .95;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Mobile tuning */
@media (max-width: 768px){
  .footer-badges{
    justify-content: center;
    margin-top: 14px;
  }

  .footer-badges img{
    height: 45px;
  }
}

/* =========================
   Featured / Recognition Section
   ========================= */
.featured-in{
  padding: 50px 0;
  background: rgba(58,134,255,.05);
  border-top: 1px solid rgba(27,58,107,.12);
}

.featured-grid{
  margin-top: 22px;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.featured-card{
  display: block;
  padding: 18px;
  border: 1px solid rgba(27,58,107,.12);
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none !important;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.featured-card:hover{
  transform: translateY(-3px);
  background: rgba(58,134,255,.04);
  border-color: rgba(58,134,255,.25);
}

.featured-card__title{
  display:block;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -.01em;
  color: var(--navy);
}

.featured-card__desc{
  display:block;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

/* Vertical layout: form on top, plan below */
.plan-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Hide/collapse form after generation (smooth) */
.form-card{
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin .25s ease, padding .25s ease, border-width .25s ease;
  max-height: 2000px;
  opacity: 1;
}
.form-card.is-hidden{
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

/* Mobile nav hardening */
@media (max-width: 980px){
  .nav{ position: relative; }
  .nav-menu{ z-index: 9999; }
}

/* If any parent has overflow hidden, this helps prevent clipping */
.site-header{ overflow: visible; }

/* Promo badge */
.promo-badge{
  display:inline-block;
  margin-top:14px;
  padding:10px 18px;
  background: linear-gradient(90deg,#4EA72E,#275317);
  color:#ffffff;
  font-weight:700;
  font-size:0.95rem;
  border-radius:999px;
  letter-spacing:.5px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  animation: pulsePromo 2.8s ease-in-out infinite;
}

@keyframes pulsePromo{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.04); }
  100%{ transform:scale(1); }
}

/* Floating workshop CTA (top-right) */
.cf-workshop-float{
  position: fixed !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 99999 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  padding: 12px 16px !important;
  border-radius: 999px !important;

  background: linear-gradient(90deg,#4EA72E,#275317) !important;
  border: 1px solid rgba(78,167,46,.45) !important;
  color: #ffffff !important;

  font-weight: 800 !important;
  font-size: .95rem !important;
  text-decoration: none !important;

  box-shadow: 0 10px 28px rgba(0,0,0,.20) !important;
  transform: translateZ(0);
  animation: cfPulse 2.8s ease-in-out infinite;
}

.cf-workshop-float:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cf-workshop-float:active{
  transform: translateY(0);
}

@keyframes cfPulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.045); }
  100%{ transform: scale(1); }
}

/* Mobile: keep it compact */
@media (max-width: 900px){
  .cf-workshop-float{
    top: 10px !important;
    right: 10px !important;
    padding: 10px 12px !important;
    font-size: .9rem !important;
  }
}