/* =====================================================
   adshaper360 — Main Stylesheet
   Ported 1:1 from original site design.
   Do not alter colors, gradients, or animation timings
   without designer approval — this preserves brand identity.
   ===================================================== */

/* ===== CSS Custom Properties ===== */
:root {
  --navy: #0A0E27;
  --navy-mid: #12183A;
  --navy-light: #1C2450;
  --violet: #6C2BD9;
  --violet-light: #8B4FE8;
  --cyan: #00D4FF;
  --cyan-muted: #00B8D9;
  --white: #FFFFFF;
  --off-white: #F0F2FF;
  --gray-400: #9BA3C4;
  --gray-600: #5C6494;
  --gradient-brand: linear-gradient(135deg, #6C2BD9 0%, #00D4FF 100%);
  --gradient-card: linear-gradient(145deg, #12183A 0%, #1C2450 100%);
}

/* ===== Base Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ===== Layout Utilities (replacing Tailwind utility classes used in markup) ===== */
.container-xl { max-width: 1280px; margin-left: auto; margin-right: auto; width: 100%; }
.container-lg { max-width: 1152px; margin-left: auto; margin-right: auto; width: 100%; }
.container-md { max-width: 1024px; margin-left: auto; margin-right: auto; width: 100%; }
.container-sm { max-width: 896px; margin-left: auto; margin-right: auto; width: 100%; }
.container-xs { max-width: 768px; margin-left: auto; margin-right: auto; width: 100%; }
.container-xxs { max-width: 576px; margin-left: auto; margin-right: auto; width: 100%; }

.px-section { padding-left: 1rem; padding-right: 1rem; }
.py-section { padding-top: 4rem; padding-bottom: 4rem; }
.py-section-sm { padding-top: 3rem; padding-bottom: 3rem; }

.bg-navy { background-color: var(--navy); }
.bg-navy-mid { background-color: var(--navy-mid); }
.bg-navy-light { background-color: var(--navy-light); }
.text-off-white { color: var(--off-white); }
.text-gray-400c { color: var(--gray-400); }
.text-gray-600c { color: var(--gray-600); }
.text-cyan { color: var(--cyan); }
.text-violet-light { color: var(--violet-light); }
.text-white { color: var(--white); }

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-auto { margin-top: auto; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.items-start { align-items: flex-start; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.no-underline { text-decoration: none; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 100px; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }

/* Icon sizing utilities — used on every data-lucide <i> tag site-wide.
   Lucide renders icons at 24x24 by default; these match the original
   Tailwind w-*/h-* scale exactly so icon sizes are identical to the
   static-site version. */
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

/* ===== Navbar ===== */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 70px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.main-nav.scrolled {
  background: rgba(10,14,39,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--navy-light);
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; z-index: 10; }
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  /* Mobile wordmark fix: always visible, no hiding utility applied */
  display: inline;
}
.desktop-nav { display: none; align-items: center; gap: 1.5rem; }
.nav-link { position: relative; color: var(--gray-400); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.3s; padding: 0.25rem 0; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--gradient-brand); border-radius: 1px;
}
.nav-cta { display: none; }
.mobile-menu-btn { display: inline-flex; padding: 0.5rem; color: var(--white); background: transparent; border: none; cursor: pointer; z-index: 10; }

/* ===== Gradient border cards ===== */
.gradient-border-card {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--gradient-card);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 1.5rem;
}
.gradient-border-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(108,43,217,0.4), rgba(0,212,255,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.gradient-border-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(108,43,217,0.25);
}

/* ===== CTA Buttons ===== */
.btn-gradient {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  background: var(--gradient-brand); color: var(--white);
  font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer;
  text-decoration: none; transition: opacity 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.btn-gradient::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-gradient:hover::after { transform: translateX(100%); }
.btn-gradient:hover { opacity: 0.95; transform: translateY(-1px); }
.btn-gradient.btn-block { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.875rem; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--navy), var(--navy)), var(--gradient-brand);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.btn-ghost:hover { background-image: var(--gradient-brand); }
.btn-ghost.btn-block { width: 100%; justify-content: center; }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  background: var(--white); color: var(--navy);
  font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.2); }

/* ===== Hero Mesh Gradient ===== */
.hero-mesh {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-mesh .blob {
  position: absolute;
  border-radius: 50%;
  /* Static blur — keeping filter out of keyframes avoids the
     "non-composited animation" PageSpeed warning. */
  filter: blur(80px);
  opacity: 0.32;
  /* Promote to own compositor layer so animation never triggers layout/paint. */
  will-change: transform;
}
.hero-mesh .blob-1 {
  width: 500px; height: 500px; background: var(--violet);
  top: -10%; left: -5%;
  animation: float-blob-1 9s ease-in-out infinite;
}
.hero-mesh .blob-2 {
  width: 400px; height: 400px; background: var(--cyan);
  bottom: -10%; right: -5%;
  animation: float-blob-2 11s ease-in-out infinite;
}
.hero-mesh .blob-3 {
  width: 300px; height: 300px; background: var(--violet-light);
  top: 40%; left: 50%;
  animation: float-blob-1 13s ease-in-out infinite 2s reverse;
}
/* translate3d only — stays on GPU compositor thread, no layout recalc. */
@keyframes float-blob-1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  33%       { transform: translate3d(40px, -30px, 0); }
  66%       { transform: translate3d(-20px, 20px, 0); }
}
@keyframes float-blob-2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  40%       { transform: translate3d(-35px, 25px, 0); }
  70%       { transform: translate3d(20px, -15px, 0); }
}


/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  /* overflow:visible was letting the marquee's width:max-content
     bleed past the viewport on mobile and cause horizontal scroll.
     overflow-x:hidden clips it while keeping overflow-y visible
     (for box-shadows or positioned children that extend vertically). */
  overflow-x: hidden;
  overflow-y: visible;
}

/* Hero container — must stay within viewport at all sizes */
.hero-section .container-xl {
  width: 100%;           /* never wider than parent */
  max-width: 1280px;
  margin-inline: auto;
  /* Use explicit padding so box model stays fully inside viewport on mobile */
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

/* Grid layout */
.hero-grid {
  display: grid;
  /* min-width:0 on the grid itself and grid children prevents the
     classic CSS Grid overflow bug where content wider than 1fr
     causes the column to expand past the viewport. */
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 10;
  width: 100%;
  min-width: 0;
}

/* Grid children must not overflow their column */
.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Hero text */
.hero-heading {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--gray-400);
  font-size: 1rem;
  /* max-width caps width on desktop; width:100% ensures it never
     overflows its grid column on mobile (was causing right-scroll). */
  width: 100%;
  max-width: 36rem;
  margin-bottom: 2rem;
  font-weight: 300;
  /* Wrap long words/URLs rather than pushing layout wide */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Dashboard wrapper */
.hero-visual {
  position: relative;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-visual {
    grid-column: 2;
    justify-self: center;
    margin-top: -20px; /* Adjust visually if needed */
  }
}

/* ===== Trust strip / Marquee ===== */
.trust-label { color: var(--gray-600); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; margin-bottom: 0.75rem; }
/* The wrapper must clip so the track's width:max-content never escapes. */
.trust-strip-wrapper > div,
.marquee-wrapper {
  overflow: hidden;
  max-width: 100%;
}
.marquee-track {
  display: flex; gap: 3rem; animation: marquee-scroll 20s linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item { color: var(--gray-600); font-weight: 600; font-size: 0.875rem; white-space: nowrap; opacity: 0.6; }

/* ===== Dashboard Mockup ===== */
.dashboard-mock {
  width: 553px; height: 351px; max-width: 100%; margin: 0 auto;
  box-sizing: border-box;
  background: var(--gradient-card); border-radius: 16px;
  border: 1px solid rgba(108,43,217,0.3);
  padding: 1.5rem; box-shadow: 0 0 60px rgba(108,43,217,0.15);
}
.dashboard-dots { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; opacity: 0.6; }
.dot-red { background: #EF4444; } .dot-yellow { background: #EAB308; } .dot-green { background: #22C55E; }
.dashboard-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.stat-block {
  background: rgba(28,36,80,0.6); border-radius: 10px; padding: 1rem;
  border: 1px solid rgba(108,43,217,0.2);
}
.stat-block .stat-label { color: var(--gray-600); font-size: 0.75rem; margin-bottom: 0.25rem; }
.stat-block .stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; }

/* ===== Sparkline ===== */
.sparkline-container { position: relative; height: 60px; margin-top: 0.75rem; }
.sparkline-container svg { width: 100%; height: 100%; }

/* ===== Stats Bar ===== */
.stats-bar { padding: 2rem 1rem; }
.stats-bar-grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: center; }
.stats-bar .stat-num { font-weight: 800; font-size: 1.5rem; }
.stats-bar .stat-caption { color: var(--gray-400); font-size: 0.875rem; margin-top: 0.25rem; }

/* ===== Service Cards Grid ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 8px;
  background: rgba(108,43,217,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-icon-wrap.cyan-bg { background: rgba(0,212,255,0.15); }
.service-card h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-400); font-size: 0.875rem; }

/* ===== Process Timeline ===== */
.timeline-wrap { display: none; position: relative; }
.timeline-connector {
  position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--violet) 0, var(--violet) 6px, transparent 6px, transparent 12px);
  opacity: 0.5;
}
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 10; }
.timeline-step { text-align: center; }
.timeline-num-circle {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--navy);
  border: 2px solid var(--violet); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.timeline-num-circle span { font-weight: 700; font-size: 1.125rem; }
.timeline-step h3 { font-weight: 700; margin-bottom: 0.5rem; }
.timeline-step p { color: var(--gray-400); font-size: 0.875rem; }

/* ===== Mobile Accordion (process) ===== */
.process-accordion-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 9999; display: flex; flex-direction: column; padding: 2rem;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-menu-logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--off-white); font-size: 1.125rem; }
.mobile-menu-close { padding: 0.5rem; color: var(--white); background: transparent; border: none; cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.mobile-menu .mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 700;
  color: var(--off-white); text-decoration: none; padding: 0.75rem 0;
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.mobile-menu.open .mobile-nav-link {
  opacity: 1; transform: translateX(0);
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu .mobile-nav-link:hover { color: var(--cyan); }
.mobile-menu-cta { margin-top: auto; padding-top: 2rem; }

/* ===== Accordion (general — process + FAQ) ===== */
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-content.open { max-height: 500px; }
.accordion-arrow { transition: transform 0.3s; }
.accordion-arrow.open { transform: rotate(180deg); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; background: transparent; border: none; cursor: pointer; color: var(--off-white);
  text-align: left; font-family: inherit;
}
.accordion-btn-row { display: flex; align-items: center; gap: 0.75rem; }

/* ===== Comparison Table ===== */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.comparison-table td, .comparison-table th { padding: 0.75rem 1rem; text-align: center; border-bottom: 1px solid var(--navy-light); }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead tr { border-bottom: 1px solid var(--navy-light); }
.comparison-table th.col-label { text-align: left; color: var(--gray-400); font-weight: 500; }
.comparison-table th.col-brand { font-weight: 700; }

/* ===== Category Pills ===== */
.cat-pill {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  border: none; cursor: pointer; font-family: inherit;
}
.cat-pill.cyan-pill { background: rgba(0,212,255,0.1); color: var(--cyan); }
.cat-pill.violet-pill { background: rgba(108,43,217,0.15); color: var(--violet-light); }
.cat-pill.green-pill { background: rgba(34,197,94,0.1); color: #4ADE80; }
.cat-pill.yellow-pill { background: rgba(234,179,8,0.1); color: #FBBF24; }
.cat-pill.red-pill { background: rgba(239,68,68,0.1); color: #F87171; }
.cat-pill.orange-pill { background: rgba(249,115,22,0.1); color: #FB923C; }
.cat-pill.muted-pill { background: var(--navy-light); color: var(--gray-400); }
.cat-pill.active-pill { background: var(--violet); color: var(--white); }

/* ===== Star Ratings ===== */
.stars { color: #FFC107; display: flex; gap: 2px; margin-bottom: 0.75rem; }

/* ===== CTA Banner ===== */
.cta-banner-bg { background: var(--gradient-brand); }
.cta-banner-section { padding: 4rem 1rem; text-align: center; }

/* ===== Pulse glow ===== */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(0,212,255,0.4); }
  50% { box-shadow: 0 0 20px rgba(0,212,255,0.7); }
}
.glow-dot { animation: pulse-glow 2s ease-in-out infinite; }

/* ===== Newsletter input ===== */
.newsletter-input {
  flex: 1; padding: 0.75rem 1rem; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1rem; font-family: inherit;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.15); }
.newsletter-row { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ===== Pricing card highlight ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.pricing-card { padding: 1.5rem; }
.pricing-highlight {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--navy-mid), var(--navy-mid)), var(--gradient-brand);
  background-origin: padding-box, border-box; background-clip: padding-box, border-box;
  border-radius: 12px; position: relative; padding: 1.5rem;
}
.pricing-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 100px;
}
.pricing-name { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.pricing-desc { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 1rem; }
.pricing-price { font-weight: 800; font-size: 1.875rem; margin-bottom: 0.25rem; }
.pricing-price .price-period { color: var(--gray-400); font-size: 0.875rem; font-weight: 400; }
.pricing-note { color: var(--gray-600); font-size: 0.75rem; margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }

/* ===== Forms ===== */
.form-field { margin-bottom: 1rem; }
.form-label { font-size: 0.875rem; color: var(--gray-400); display: block; margin-bottom: 0.25rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem; border-radius: 8px;
  background: var(--navy); border: 1px solid var(--navy-light);
  color: var(--off-white); font-size: 1rem; font-family: inherit;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--cyan); }
.form-textarea { resize: none; }
.form-success { color: #4ADE80; font-size: 0.875rem; margin-top: 0.75rem; display: none; }
.form-success.show { display: block; }
.form-error { color: #F87171; font-size: 0.875rem; margin-top: 0.75rem; display: none; }
.form-error.show { display: block; }

/* ===== MS Forms Placeholder ===== */
.ms-forms-container { border-radius: 12px; border: 1px solid var(--navy-light); background: var(--navy-mid); padding: 0.25rem; margin-bottom: 1rem; }
.ms-forms-placeholder { display: flex; align-items: center; justify-content: center; height: 500px; text-align: center; padding: 2rem; }
.ms-forms-footer-note { color: var(--gray-600); font-size: 0.75rem; text-align: center; padding: 0.5rem 0; }

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ===== Scroll depth sentinels ===== */
.scroll-sentinel { height: 1px; width: 100%; pointer-events: none; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-mid); border-top: 1px solid var(--navy-light); padding: 4rem 1rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-logo-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-tagline { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 1rem; }
.footer-copyright { color: var(--gray-600); font-size: 0.75rem; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { color: var(--gray-600); transition: color 0.3s; }
.footer-social a:hover { color: var(--cyan); }
.footer-col-title { font-weight: 700; font-size: 0.875rem; margin-bottom: 1rem; color: var(--off-white); }
.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link-list a { color: var(--gray-400); font-size: 0.875rem; text-decoration: none; transition: color 0.3s; }
.footer-link-list a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--navy-light); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: var(--gray-600); font-size: 0.75rem; }

/* Optional: Appearance > Widgets > Footer Widget Area. Unused by default —
   styled here so it matches the rest of the footer if a widget is added. */
.footer-widget { margin-top: 1.5rem; font-size: 0.875rem; color: var(--gray-400); }
.footer-widget:first-child { margin-top: 0; }
.footer-widget a { color: var(--gray-400); transition: color 0.3s; }
.footer-widget a:hover { color: var(--cyan); }

/* ===== Articles / Blog ===== */
.article-card { padding: 1.25rem; }
.article-card h3 { font-weight: 700; margin: 0.75rem 0 0.5rem; }
.article-card p { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 0.75rem; }
.article-meta-row { display: flex; align-items: center; justify-content: space-between; }
.article-meta-row .read-time { color: var(--gray-600); font-size: 0.75rem; }
.article-meta-row .read-link { color: var(--cyan); font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.featured-post-card { padding: 1.5rem; }
.featured-post-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; align-items: center; }
.featured-post-meta .meta-text { color: var(--gray-600); font-size: 0.75rem; }
.featured-post-card h2 { font-weight: 700; font-size: 1.25rem; margin-bottom: 0.75rem; }
.featured-post-card p { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 1rem; }
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.articles-filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Single article page */
.article-single-header { padding-top: 7rem; padding-bottom: 2rem; }
.article-single-header .cat-pill { margin-bottom: 1rem; }
.article-single-header h1 { font-weight: 800; font-size: 2rem; line-height: 1.2; margin-bottom: 1rem; }
.article-byline { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-400); font-size: 0.875rem; }
.article-featured-image { border-radius: 12px; overflow: hidden; margin: 2rem 0; background: var(--gradient-card); min-height: 240px; display: flex; align-items: center; justify-content: center; }
.article-body { font-size: 1.0625rem; line-height: 1.8; color: var(--off-white); }
.article-body h2 { font-weight: 700; font-size: 1.5rem; margin: 2rem 0 1rem; }
.article-body h3 { font-weight: 700; font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--gray-400); }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; color: var(--gray-400); }
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--cyan); text-decoration: underline; }
.related-articles { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--navy-light); }
.related-articles h3 { font-weight: 700; margin-bottom: 1rem; }

/* ===== Print ===== */
@media print {
  .main-nav, .site-footer, .cta-banner-section, .mobile-menu { display: none !important; }
  body { background: white; color: black; }
}
/* ===== Team Centered ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

/* Prevent the marquee from expanding the hero grid */
@media (min-width: 1024px) {
  .hero-section .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-section .hero-grid > * {
    min-width: 0;
  }

  .hero-section .trust-strip-wrapper {
    min-width: 0;
  }

  .hero-section .hero-visual {
    width: 100% !important;
    min-width: 0;
    justify-self: stretch !important;
  }

  .hero-section .dashboard-mock {
    width: min(553px, 100%);
    margin-inline: auto !important;
  }
}
@media (min-width: 1024px) {
  /* Nudge dashboard 24px toward the right */
  .hero-section .dashboard-mock {
    transform: translateX(8rem);
  }

  /* Give the marquee viewport 96px more room toward the dashboard */
  .hero-section .trust-strip-wrapper > div {
    width: calc(100% + 50rem);
  }
}

/* Invisible SEO blocks (Google-readable, user-hidden) */
.seo-links,
.seo-description {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
