/*
  GET MARKETED — Mobile-First Stylesheet v2
  Strategy: Base styles = 375px phone
  sm breakpoint : min-width 640px  (tablet)
  lg breakpoint : min-width 1024px (desktop)
  Colors: Navy #1B2B4B | Orange #F5A623
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --navy:       #1B2B4B;
  --navy-dk:    #111d32;
  --navy-lt:    #243760;
  --orange:     #F5A623;
  --orange-dk:  #d98e10;
  --orange-lt:  #FEF3DC;
  --white:      #ffffff;
  --gray-50:    #f8f9fa;
  --gray-100:   #f0f2f5;
  --gray-300:   #cbd5e0;
  --gray-500:   #718096;
  --gray-700:   #2d3748;
  --gray-900:   #1a202c;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
  --transition: .2s ease;
  /* Bottom bar height — add as padding to body */
  --bar-h:      72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  /* Space for fixed bottom bar on mobile */
  padding-bottom: var(--bar-h);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* Remove bottom-bar padding on desktop */
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ─── Typography — mobile base ─── */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; }

@media (min-width: 640px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
  p  { font-size: 1.05rem; }
}

.lead { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }
@media (min-width: 1024px) { .lead { font-size: 1.15rem; } }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── Section ─── */
.section     { padding: 3rem 0; }
.section-sm  { padding: 1.75rem 0; }
@media (min-width: 640px)  { .section { padding: 4.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 5.5rem 0; } }

.section-dark   { background: var(--navy); }
.section-light  { background: var(--gray-50); }
.section-orange { background: var(--orange-lt); }

/* ─── Grid ─── */
.grid-auto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .grid-auto { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .grid-auto { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }

.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 50px; /* touch target */
}
.btn-primary  { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.btn-primary:hover,
.btn-primary:active { background: var(--orange-dk); border-color: var(--orange-dk); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .82rem; min-height: 40px; }

/* ─── NAV ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
/* Logo */
.navbar-logo { display: flex; align-items: center; gap: .65rem; }
.logo-icon   { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text   { display: flex; flex-direction: column; line-height: 1.05; }
.logo-get    { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; color: var(--orange); letter-spacing: .04em; }
.logo-mkted  { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; color: var(--white); letter-spacing: .04em; }

/* Right side of nav */
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--transition);
}
.nav-phone:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-cta-desk { display: none; }
@media (max-width: 639px) { .nav-phone { display: none; } }
@media (min-width: 1024px) { .nav-cta-desk { display: inline-flex; } }

/* Desktop links */
.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
  }
  .nav-links > li { position: relative; list-style: none; }
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    color: rgba(255,255,255,.72);
    padding: .5rem .8rem;
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: .25rem;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
  }
  /* Dropdown arrow */
  .nav-arrow { font-size: .55rem; opacity: .6; transition: transform .2s; display: inline-block; }
  .nav-links li:hover .nav-arrow { transform: rotate(180deg); }
  /* Dropdown menu */
  .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-dk);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    min-width: 220px;
    padding: .5rem 0;
    z-index: 500;
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    list-style: none;
  }
  /* Invisible bridge across the 6px gap — without this the dropdown closes
     the moment the pointer leaves the menu item, before reaching the submenu. */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
  }
  /* Widen the hover target slightly beyond the panel edges too */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 0; bottom: -6px; left: -8px; right: -8px;
    z-index: -1;
    background: transparent;
  }
  .nav-links > li:hover .nav-dropdown,
  .nav-links > li:focus-within .nav-dropdown { display: block; }
  .nav-dropdown li a {
    padding: .6rem 1.2rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    border-radius: 0;
    white-space: nowrap;
    background: transparent;
  }
  .nav-dropdown li a:hover { color: var(--orange); background: rgba(255,255,255,.06); }
  .nav-dropdown li:first-child { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: .25rem; margin-bottom: .25rem; }
  .nav-dropdown li:first-child a { font-weight: 700; color: rgba(255,255,255,.5); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; pointer-events: none; padding-bottom: .5rem; }
}

/* Mobile overlay accordion */
.overlay-accordion { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
.overlay-accord-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
  gap: .75rem;
}
.overlay-accord-btn:hover { color: var(--orange); }
.accord-arrow { font-size: .65rem; opacity: .6; transition: transform .2s; }
.overlay-accordion.open .accord-arrow { transform: rotate(180deg); }
.overlay-accord-content { display: none; padding: .25rem 0 .75rem 1rem; }
.overlay-accordion.open .overlay-accord-content { display: block; }
.overlay-accord-content a {
  display: flex !important;
  padding: .7rem .5rem !important;
  font-size: 1rem !important;
  color: rgba(255,255,255,.65) !important;
  border-bottom: none !important;
}
.overlay-accord-content a:hover { color: var(--orange) !important; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-right: -8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ─── Full-screen Mobile Menu Overlay ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  top: 62px;
  background: var(--navy-dk);
  z-index: 89;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay a {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.nav-overlay a:hover, .nav-overlay a.active { color: var(--orange); }
.nav-overlay a:last-child { border-bottom: none; }
.nav-overlay .overlay-cta {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (min-width: 1024px) { .nav-overlay { display: none !important; } }

/* ─── Consultation Split (pricing page top) ─── */
.consult-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 680px) {
  .consult-split {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
}
.consult-free {
  background: rgba(245,166,35,.1);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.consult-free-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .85rem;
  border-radius: 100px;
  margin-bottom: .85rem;
}
.consult-free h2 { color: var(--white); font-size: 1.35rem; margin: 0 0 .6rem; }
.consult-free p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.35rem; }
.consult-or-link { color: rgba(255,255,255,.45); font-size: .82rem; margin-top: .75rem; margin-bottom: 0; }
.consult-or-link a { color: rgba(255,255,255,.65); text-decoration: underline; }
.consult-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .9rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
}
.consult-paid {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.consult-paid-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-bottom: .65rem;
}
.consult-paid h3 { color: var(--white); font-size: 1.05rem; margin: 0 0 .5rem; }
.consult-paid p { color: rgba(255,255,255,.65); font-size: .86rem; margin-bottom: .85rem; }

/* ─── Retainer category label ─── */
.retainer-category {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 100px;
  background: var(--orange-lt);
  color: var(--orange-dk);
  margin-bottom: .1rem;
}

/* ─── Fixed Bottom Action Bar (mobile/tablet only) ─── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 88;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 1024px) { .bottom-bar { display: none; } }
.bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  min-height: 48px;
  transition: all var(--transition);
}
.bottom-call { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.bottom-call:hover { background: rgba(255,255,255,.15); }
.bottom-cta  { background: var(--orange); color: var(--navy); }
.bottom-cta:hover { background: var(--orange-dk); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-lt) 100%);
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,.14) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 640px)  { .hero { padding: 4.5rem 0 4rem; } }
@media (min-width: 1024px) { .hero { padding: 6rem 0 5rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--orange); }
.hero .lead { color: rgba(255,255,255,.72); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}
.hero-note { color: rgba(255,255,255,.4); font-size: .8rem; margin-top: 1.1rem; line-height: 1.6; }

/* Interior page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 600px; margin: .5rem auto 0; }
@media (min-width: 640px) {
  .page-hero { padding: 4rem 0 3.5rem; }
  .page-hero p { font-size: 1.1rem; }
}

/* ─── Section Header ─── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--gray-500); }
@media (min-width: 1024px) { .section-header { margin-bottom: 3.5rem; } }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
@media (min-width: 1024px) { .card { padding: 2rem; } }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card h3 { margin-bottom: .5rem; }
.card p  { font-size: .93rem; color: var(--gray-500); line-height: 1.6; }

/* ─── Pain Points ─── */
.pain-point {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.pain-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.pain-point p { font-size: .97rem; color: var(--gray-700); margin: 0; line-height: 1.55; }

/* ─── Case Study Cards ─── */
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.case-card-header {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.case-store-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.case-card-header h3  { color: var(--white); margin: 0; font-size: .97rem; }
.case-card-header span { color: rgba(255,255,255,.5); font-size: .78rem; }
.case-card-body { padding: 1.5rem; flex: 1; }
.case-card-body p { font-size: .93rem; color: var(--gray-700); line-height: 1.7; }
.case-card-footer {
  padding: 1.1rem 1.5rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
}
.result-number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--orange); }
.result-label  { font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
.case-tag {
  background: var(--orange-lt);
  color: var(--orange-dk);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}

/* ─── Steps ─── */
.step-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { color: var(--navy); margin-bottom: .25rem; }
.step-content p  { font-size: .92rem; color: var(--gray-500); }

/* ─── Budget Card ─── */
.budget-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.budget-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,.18) 0%, transparent 70%);
  pointer-events: none;
}
.budget-range {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin: .6rem 0;
}
@media (min-width: 640px) { .budget-range { font-size: 3.2rem; } }

/* ─── Stat Strip ─── */
.stat-strip { background: var(--orange); padding: 2rem 0; }
.stat-grid  {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 640px)  { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: .78rem; color: var(--navy); opacity: .65; margin-top: .2rem; font-weight: 600; }

/* ─── Industry Card ─── */
.industry-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.5rem;
  transition: all var(--transition);
}
.industry-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.industry-icon { font-size: 2rem; margin-bottom: .6rem; }
.industry-card h3 { font-size: .97rem; margin-bottom: .35rem; }
.industry-card p  { font-size: .83rem; color: var(--gray-500); line-height: 1.55; }

/* ─── USP Items ─── */
.usp-item { display: flex; align-items: flex-start; gap: .85rem; }
.usp-dot  { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.usp-item p { font-size: .95rem; color: rgba(255,255,255,.78); }

/* ─── Info Box ─── */
.info-box {
  background: var(--orange-lt);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.info-box p { font-size: .93rem; color: var(--gray-700); }

/* ─── Service Bullets ─── */
.service-bullets li {
  display: flex;
  gap: .55rem;
  margin-bottom: .45rem;
  font-size: .93rem;
  color: var(--gray-700);
}
.service-bullets li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ─── PRICING CARDS ─── */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 2px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,.18), var(--shadow);
}
.price-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-icon  { font-size: 1.8rem; }
.price-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); line-height: 1.25; }
.price-desc  { font-size: .88rem; color: var(--gray-500); line-height: 1.55; flex: 1; }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--orange);
  line-height: 1;
}
.price-amount span { font-size: 1rem; color: var(--gray-500); font-weight: 600; }
.price-type  { font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .07em; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.price-card .btn { margin-top: .25rem; }

/* Tier header */
.tier-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tier-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-header h2 { margin: 0; }
.tier-tag {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange-dk);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  padding: .2rem .7rem;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tier-section { padding: 3rem 0; border-bottom: 2px dashed var(--gray-100); }
.tier-section:last-child { border-bottom: none; }

/* ─── Contact Form ─── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .9rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 1.1rem;
  min-height: 50px;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--orange); }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-700);
  margin-bottom: .35rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-form textarea { height: 130px; resize: vertical; }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.62); max-width: 520px; margin: 0 auto 1.75rem; }
@media (min-width: 1024px) { .cta-section { padding: 5.5rem 0; } }

/* ─── Footer ─── */
.footer { background: var(--navy-dk); color: rgba(255,255,255,.6); padding: 3rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: .9rem; }
.footer-tagline { font-style: italic; color: var(--orange); font-size: .83rem; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact p   { font-size: .88rem; margin-bottom: .55rem; }
.footer-contact a   { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .8rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--orange); }

/* ─── Footer Option C ─── */
.footer-opt-c {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-opt-c { grid-template-columns: 1fr 1fr; align-items: center; }
}
.footer-nav-links {
  display: flex;
  gap: 1.75rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}
.footer-nav-links a {
  color: rgba(255,255,255,.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: color var(--transition);
}
.footer-nav-links a:hover { color: var(--orange); }
.footer-free-badge {
  display: inline-block;
  background: rgba(245,166,35,.15);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 100px;
  margin-bottom: .9rem;
}
.footer-cta-heading {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0 .5rem;
}
.footer-cta-desc {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.footer-call-btn {
  display: block;
  text-align: center;
  margin-bottom: .6rem;
  font-size: 1rem;
  padding: .9rem 1.5rem;
}
.footer-msg-btn {
  display: block;
  text-align: center;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.75) !important;
  font-size: .88rem;
  padding: .75rem 1.5rem;
  margin-bottom: .9rem;
  border-radius: var(--radius);
}
.footer-msg-btn:hover { background: rgba(255,255,255,.06) !important; color: var(--white) !important; }
.footer-email {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-bottom: .4rem;
}
.footer-founder {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  margin: 0;
}

/* ─── Helpers ─── */
.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-orange   { color: var(--orange); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.flex-col  { display: flex; flex-direction: column; gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   CART / ORDER SYSTEM
═══════════════════════════════════════════════════════ */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  padding: .3rem .45rem;
  text-decoration: none;
  margin-right: .1rem;
}
.cart-badge {
  display: none;
  position: absolute;
  top: -4px; right: -5px;
  background: var(--orange);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}
.add-to-cart.btn-outline { pointer-events: auto; }

/* ── Free Consultation button: hover menu (desktop) ── */
.nav-cta-wrap { display: none; position: relative; }
@media (min-width: 1024px) { .nav-cta-wrap { display: inline-flex; } }
.nav-cta-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--navy-dk);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  min-width: 225px;
  padding: .4rem 0;
  z-index: 600;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  list-style: none;
}
/* bridge the 6px gap so the menu doesn't close on the way down */
.nav-cta-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-cta-wrap:hover .nav-cta-menu,
.nav-cta-wrap:focus-within .nav-cta-menu { display: block; }
.nav-cta-menu li a {
  display: block;
  padding: .62rem 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta-menu li a:hover { color: var(--orange); background: rgba(255,255,255,.06); }
.nav-cta-menu li a small { display: block; font-size: .7rem; color: rgba(255,255,255,.4); font-weight: 500; margin-top: .1rem; }
.nav-cta-wrap .nav-cta-desk { display: inline-flex; align-items: center; gap: .3rem; }

/* keep anchored sections clear of the sticky navbar */
[id] { scroll-margin-top: 84px; }

/* Cart icon feedback when an item is added */
@keyframes cartPop { 0%{transform:scale(1)} 35%{transform:scale(1.35)} 100%{transform:scale(1)} }
.cart-pop { animation: cartPop .45s ease; }
@media (prefers-reduced-motion: reduce) { .cart-pop { animation: none; } }

/* ── Quantity stepper on service cards ── */
.qty-box { background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: .7rem .8rem; display: flex; flex-direction: column; gap: .5rem; }
.qty-q { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; color: var(--navy); }
.qty-row { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.qty-ctl { display: flex; align-items: center; border: 1.5px solid var(--gray-200, #d9dee8); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.qty-btn { width: 38px; height: 40px; background: var(--gray-50); border: none; color: var(--navy); font-size: 1.25rem; font-weight: 400; cursor: pointer; line-height: 1; display: flex; align-items: center; justify-content: center; user-select: none; -webkit-user-select: none; transition: background .15s; }
.qty-btn:hover { background: var(--orange-lt); }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-val { width: 62px; height: 40px; text-align: center; border: none; outline: none; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); background: var(--white); -moz-appearance: textfield; }
.qty-val::-webkit-outer-spin-button, .qty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-unit { font-size: .82rem; color: var(--gray-500); }
.qty-note { font-size: .74rem; color: var(--gray-400); line-height: 1.45; }
.qty-note strong { color: var(--orange-dk, #b97400); }

/* Keep the price / fee / button group pinned to the bottom of every card so a
   stepper — or a two-line price-type — never knocks a row out of alignment.
   Card order is always: icon, title, desc, [qty-box], price-wrap, fee-split, button
   so the price wrapper is reliably the 3rd element from the end. */
.price-card > .price-desc { flex: 1 1 auto; }
.price-card > div:nth-last-child(3) { margin-top: auto; }
.price-card > .qty-box { margin-top: auto; }
.price-card > .qty-box + div { margin-top: .6rem; }
/* One line vs two lines of price-type was shifting the fee box and button */
.price-card .price-type { min-height: 2.6em; }
.price-card .fee-split { min-height: 4.6em; }

/* ── Pricing mega menu: featured monthly rail + link columns ── */
@media (min-width: 1024px) {
  .nav-mega {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    max-width: calc(100vw - 40px);
    background: var(--navy-dk);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    overflow: hidden;
    z-index: 600;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    grid-template-columns: 276px 1fr;
  }
  .nav-mega::before { content:''; position:absolute; top:-10px; left:0; right:0; height:10px; }
  .nav-links > li:hover .nav-mega,
  .nav-links > li:focus-within .nav-mega { display: grid; }

  .mega-rail { background: rgba(0,0,0,.3); padding: 1.15rem 1.2rem; display:flex; flex-direction:column; }
  .mega-rail-label { font-family:'Montserrat',sans-serif; font-size:.62rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin-bottom:.4rem; }
  .mega-rail h4 { font-family:'Montserrat',sans-serif; font-size:.98rem; font-weight:800; color:var(--white); margin:0 0 .6rem; line-height:1.3; }
  .mega-opt { display:flex; align-items:baseline; gap:.5rem; padding:.4rem 0; border-top:1px solid rgba(255,255,255,.1); }
  .mega-opt:first-of-type { border-top:none; }
  .mega-opt-fig { font-family:'Montserrat',sans-serif; font-weight:900; font-size:1.02rem; color:var(--orange); flex-shrink:0; }
  .mega-opt-txt { font-size:.75rem; color:rgba(255,255,255,.72); line-height:1.45; }
  .mega-save { background:rgba(245,166,35,.15); border:1px solid rgba(245,166,35,.35); border-radius:6px; padding:.4rem .55rem; font-size:.72rem; color:rgba(255,255,255,.82); line-height:1.45; margin:.6rem 0 .8rem; }
  .mega-save strong { color:var(--orange); }
  .mega-cta { display:block; text-align:center; background:var(--orange); color:var(--navy); font-family:'Montserrat',sans-serif; font-weight:800; font-size:.78rem; padding:.55rem .8rem; border-radius:var(--radius); text-decoration:none; margin-top:auto; }
  .mega-cta:hover { background:var(--orange-dk,#d98f10); }

  .mega-cols { padding: 1.15rem 1.3rem; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.1rem 1.4rem; align-content:start; }
  .mega-h { font-family:'Montserrat',sans-serif; font-size:.62rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin-bottom:.45rem; }
  .mega-cols a { display:block; font-size:.82rem; font-weight:600; color:rgba(255,255,255,.8); text-decoration:none; padding:.3rem .5rem; margin-left:-.5rem; border-radius:6px; white-space:nowrap; }
  .mega-cols a:hover { color:var(--orange); background:rgba(255,255,255,.06); }
  .mega-foot { grid-column:1 / -1; border-top:1px solid rgba(255,255,255,.12); padding-top:.7rem; display:flex; gap:1.1rem; flex-wrap:wrap; }
  .mega-foot a { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.65); text-decoration:none; padding:0; margin:0; }
  .mega-foot a:hover { color:var(--orange); background:none; }
}
@media (max-width: 1023px) { .nav-mega { display:none !important; } }

.overlay-group { font-family:'Montserrat',sans-serif; font-size:.64rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin:.85rem 0 .25rem; }
.overlay-group:first-child { margin-top:.2rem; }

