/* Net3000 Marketing Site Preview — Shared Design Tokens + Components
   Bootstrap 5.3 + FontAwesome 7 base styles shared across all preview pages. */

:root {
  --navy: #003261;
  --navy-900: #001a33;
  --navy-800: #002649;
  --navy-700: #003261;
  --navy-600: #1a4a78;
  --navy-500: #33628f;
  --navy-400: #5c83a8;
  --navy-300: #8aa7c2;
  --navy-100: #dbe4ee;
  --navy-50: #eef3f8;
  --orange: #F26522;
  --orange-600: #d94f0e;
  --paper: #F7F9FC;
  --ink: #1a2330;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

/* --- Brand utility classes --- */
.text-navy { color: var(--navy) !important; }
.text-navy-500 { color: var(--navy-500) !important; }
.text-navy-600 { color: var(--navy-600) !important; }
.text-navy-100 { color: var(--navy-100) !important; }
.text-orange { color: var(--orange) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-900 { background-color: var(--navy-900) !important; }
.bg-navy-100 { background-color: var(--navy-100) !important; }
.bg-navy-50 { background-color: var(--navy-50) !important; }
.bg-paper { background-color: var(--paper) !important; }
.border-navy-100 { border-color: var(--navy-100) !important; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { color: var(--navy); font-weight: 700; letter-spacing: -0.02em; }
.display-1, .display-2, .display-3, .display-4, .display-5 { font-weight: 800; letter-spacing: -0.03em; }
.lead { color: var(--navy-600); }

/* --- Buttons --- */
.btn-orange {
  background: var(--orange);
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
}
.btn-orange:hover, .btn-orange:focus {
  background: var(--orange-600);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.25);
}
.btn-orange.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-navy {
  background: var(--navy);
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-900); color: white; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-100);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* --- Forms --- */
.form-control, .form-select {
  border: 1.5px solid var(--navy-100);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}
.payment-currency-select { max-width: 110px; }
.payment-provider-logo {
  height: 32px;
  max-width: 104px;
  object-fit: contain;
}

/* --- Navbar --- */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-100);
}
.navbar-brand { font-weight: 700; color: var(--navy) !important; }
.navbar-brand img {
  height: 30px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
}
.hero-strip-brand img {
  height: 28px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
}
.footer-brand-logo {
  height: 28px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
}
.navbar-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy); color: white;
  font-weight: 700; border-radius: 8px; font-size: 15px;
}
.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0 !important;
  margin: 0 0.75rem;
}
.navbar-nav .nav-link.active { color: var(--orange) !important; }
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* --- Sectional strip hero (all pages except homepage) --- */
.hero-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-strip h1, .hero-strip h2 { color: white; }
.hero-strip .lead { color: rgba(255, 255, 255, 0.85); }
.hero-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 360px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* --- Cards --- */
.card-brand {
  border: 1px solid var(--navy-100);
  border-radius: 1rem;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 50, 97, 0.12) !important;
}

/* Icon bubble */
.icon-bubble {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 0.875rem;
  background: var(--navy-50);
  color: var(--navy);
  font-size: 1.4rem;
}
.icon-bubble-navy { background: var(--navy); color: white; }
.icon-bubble-lg { width: 64px; height: 64px; font-size: 1.75rem; border-radius: 1rem; }

/* Tag chip */
.tag-chip {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--navy-100); color: var(--navy);
  padding: 4px 10px; border-radius: 999px;
}
.tag-chip-orange { background: var(--orange); color: white; }
.tag-chip.active { background: var(--orange); color: white; }

/* --- CTA band --- */
.cta-band {
  background: var(--navy);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 400px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.cta-band h2 { color: white; }

/* --- Section padding --- */
.section-pad { padding: 5rem 0; }
@media (min-width: 992px) { .section-pad { padding: 6.5rem 0; } }

/* --- Preview badge --- */
.preview-badge {
  /* top-right so fixed badge does not cover the navbar logo (sticky nav is ~1020) */
  position: fixed; top: 12px; right: 12px; left: auto; z-index: 1060;
  background: rgba(26, 35, 48, 0.85); color: white;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Arrow link */
.link-arrow {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex; align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.link-arrow:hover { color: var(--orange-600); gap: 0.6rem; }
.link-arrow-navy { color: var(--navy); }
.link-arrow-navy:hover { color: var(--orange); }

/* Stat */
.stat-value {
  font-weight: 800; font-size: 2.75rem;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-500);
  margin-top: 0.5rem;
}

/* Process step */
.process-step {
  position: relative;
  padding: 1.5rem;
}
.process-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Pricing tier */
.pricing-card {
  border: 1.5px solid var(--navy-100);
  border-radius: 1rem;
  background: white;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(242, 101, 34, 0.12);
}
.pricing-card .price {
  font-size: 2.5rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.pricing-card .price-period {
  font-size: 0.9rem; color: var(--navy-500);
  font-weight: 500;
}
.pricing-card ul { list-style: none; padding: 0; }
.pricing-card li {
  padding: 0.5rem 0;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid var(--navy-50);
}
.pricing-card li i { color: var(--orange); }
.pricing-card .popular-ribbon {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--orange);
  color: white;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
}

/* App card thumbnail */
.app-thumb {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.25rem;
  position: relative;
}

/* Footer link */
footer a { transition: color 0.2s; }
footer a:hover { color: var(--orange) !important; }

/* ====================================================================
   Homepage hero hexagon animation
   ==================================================================== */
.hex {
  position: absolute;
  width: 140px; height: 160px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 50, 97, 0.25);
  color: white;
  font-size: 2rem;
}
.hex-cluster {
  position: relative;
  width: 360px; height: 400px;
  margin: 0 auto;
}
.hex-1 { top: 0;    left: 90px;  background: var(--navy-600); }
.hex-2 { top: 120px; left: 0;    background: var(--navy); }
.hex-3 { top: 120px; left: 180px; background: var(--navy-500); }
.hex-4 { top: 240px; left: 90px; background: var(--navy-800); }

.hex-3::after {
  content: '';
  position: absolute; inset: -4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, transparent 40%, rgba(242, 101, 34, 0.55) 50%, transparent 60%);
  opacity: 0;
  animation: seam-glow 1.2s ease-out 3.2s forwards;
  z-index: -1;
}
@keyframes seam-glow { to { opacity: 1; } }

@keyframes fly-in-1 {
  0%   { transform: translate(-220px, -260px) scale(0.25) rotate(-20deg); opacity: 0; }
  60%  { opacity: 0.9; }
  80%  { transform: translate(8px, -12px) scale(1.06) rotate(3deg); opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0); opacity: 1; }
}
@keyframes fly-in-2 {
  0%   { transform: translate(-320px, 260px) scale(0.3) rotate(25deg); opacity: 0; }
  60%  { opacity: 0.9; }
  80%  { transform: translate(-10px, 6px) scale(1.05) rotate(-2deg); opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0); opacity: 1; }
}
@keyframes fly-in-3 {
  0%   { transform: translate(300px, 240px) scale(0.3) rotate(-30deg); opacity: 0; }
  60%  { opacity: 0.9; }
  80%  { transform: translate(12px, 8px) scale(1.07) rotate(4deg); opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0); opacity: 1; }
}
@keyframes fly-in-4 {
  0%   { transform: translate(60px, 340px) scale(0.25) rotate(15deg); opacity: 0; }
  60%  { opacity: 0.9; }
  80%  { transform: translate(-4px, 14px) scale(1.06) rotate(-3deg); opacity: 1; }
  100% { transform: translate(0, 0) scale(1) rotate(0); opacity: 1; }
}
.hex-1 { animation: fly-in-1 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.hex-2 { animation: fly-in-2 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.hex-3 { animation: fly-in-3 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.hex-4 { animation: fly-in-4 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both; }

@media (prefers-reduced-motion: reduce) {
  .hex-1, .hex-2, .hex-3, .hex-4 { animation: none !important; transform: none !important; opacity: 1 !important; }
  .hex-3::after { animation: none !important; opacity: 1 !important; }
}

.hero-home {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(180deg, #F7F9FC 0%, #c5d4e2 55%, #a8bdd1 100%);
  overflow: hidden;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(168, 189, 209, 0) 40%, rgba(168, 189, 209, 0.6) 75%, rgba(168, 189, 209, 0.9) 100%);
  pointer-events: none;
}


/* ====================================================================
   Photo treatments + extra components
   ==================================================================== */

.hero-photo {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900);
}
.hero-photo .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(0.9);
}
.hero-photo .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(0,26,51,0.92) 0%, rgba(0,50,97,0.78) 45%, rgba(0,50,97,0.35) 100%),
    linear-gradient(180deg, rgba(0,26,51,0.55) 0%, rgba(0,26,51,0.1) 40%, rgba(0,26,51,0.7) 100%);
}
.hero-photo .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}
.hero-photo .hero-content { position: relative; z-index: 3; color: white; }
.hero-photo h1, .hero-photo h2 { color: white; }
.hero-photo .lead { color: rgba(255,255,255,0.88); }
.hero-photo .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-photo .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.hex-cluster-side {
  position: relative;
  width: 320px; height: 360px;
  margin-left: auto;
}
.hex-cluster-side .hex { width: 130px; height: 150px; box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.hex-cluster-side .hex-1 { top: 0;   left: 95px; }
.hex-cluster-side .hex-2 { top: 110px; left: 0; }
.hex-cluster-side .hex-3 { top: 110px; left: 190px; }
.hex-cluster-side .hex-4 { top: 220px; left: 95px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-stats > div { background: rgba(0, 26, 51, 0.55); padding: 18px 20px; }
.hero-stats .num { font-size: 1.6rem; font-weight: 800; color: white; letter-spacing: -0.02em; }
.hero-stats .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-top: 4px; }

.photo-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy-900);
  display: block;
  height: 100%;
  text-decoration: none;
  color: white;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,50,97,0.22); color: white; }
.photo-card .pc-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.photo-card:hover .pc-img { transform: scale(1.06); }
.photo-card .pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,51,0.15) 0%, rgba(0,26,51,0.55) 55%, rgba(0,26,51,0.92) 100%);
  z-index: 1;
}
.photo-card .pc-body {
  position: relative; z-index: 2;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px;
  height: 100%;
}
.photo-card .pc-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
  margin-bottom: 14px;
}
.photo-card h3 { color: white; font-size: 1.35rem; margin-bottom: 6px; }
.photo-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-bottom: 12px; }
.photo-card .pc-arrow {
  color: var(--orange); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; transition: gap 0.2s;
}
.photo-card:hover .pc-arrow { gap: 12px; }
.photo-card.tall .pc-body { min-height: 420px; }
.photo-card.short .pc-body { min-height: 240px; }

/* Horizontal case-study card: feature image left, text right, one per row */
.case-card {
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  background: white;
  border: 1px solid var(--navy-100);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,50,97,0.16); color: inherit; }
.case-card .cc-img {
  flex: 0 0 40%;
  min-height: 280px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.case-card .cc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,50,97,0.20) 0%, rgba(0,50,97,0) 55%);
}
.case-card .cc-body {
  flex: 1;
  padding: 2.25rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.case-card .cc-tags { display: flex; gap: 8px; margin-bottom: 14px; }
.case-card .cc-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--navy-50, rgba(0,50,97,0.06));
  border: 1px solid var(--navy-100);
  color: var(--navy-500);
  padding: 4px 10px; border-radius: 999px;
}
.case-card .cc-tag.cc-tag-orange {
  background: rgba(242,101,34,0.10);
  border-color: rgba(242,101,34,0.30);
  color: var(--orange);
}
.case-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 6px; }
.case-card .cc-client { color: var(--navy-500); font-size: 0.95rem; margin-bottom: 12px; }
.case-card .cc-teaser { color: var(--navy-600); font-size: 0.98rem; line-height: 1.6; margin-bottom: 18px; }
.case-card .cc-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.case-card .cc-arrow {
  color: var(--orange); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.95rem; transition: gap 0.2s;
}
.case-card:hover .cc-arrow { gap: 12px; }
.case-card .cc-metric { font-size: 0.9rem; font-weight: 600; color: var(--navy-500); }
@media (max-width: 767px) {
  .case-card { flex-direction: column; }
  .case-card .cc-img { flex-basis: auto; min-height: 200px; }
  .case-card .cc-body { padding: 1.75rem; }
}

.split-photo {
  border-radius: 1.25rem; overflow: hidden;
  background: white; border: 1px solid var(--navy-100);
}
.split-photo .sp-img {
  background-size: cover; background-position: center;
  min-height: 420px; position: relative;
}
.split-photo .sp-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,50,97,0.15) 0%, rgba(0,50,97,0) 60%);
}
.split-photo .sp-body { padding: 3rem; }
@media (max-width: 991px) {
  .split-photo .sp-img { min-height: 280px; }
  .split-photo .sp-body { padding: 2rem; }
}

.eyebrow-text {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
  display: inline-block; margin-bottom: 12px;
}
.big-metric {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy);
  letter-spacing: -0.04em; line-height: 1; white-space: nowrap;
}
.big-metric .unit { color: var(--orange); }

.process-photo-card {
  background: white; border-radius: 1rem;
  border: 1px solid var(--navy-100);
  overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
}
.process-photo-card .pc-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.process-photo-card .pc-num {
  position: absolute; top: 16px; left: 16px;
  width: 40px; height: 40px;
  background: white; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,50,97,0.25);
}
.process-photo-card .pc-content { padding: 1.5rem; flex: 1; }

.svc-tile {
  position: relative;
  border-radius: 1rem; overflow: hidden;
  background: var(--navy); color: white;
  height: 100%; display: flex; flex-direction: column;
  text-decoration: none; isolation: isolate;
}
.svc-tile:hover { color: white; }
.svc-tile .svc-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.svc-tile .svc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,50,97,0) 40%, rgba(0,26,51,0.85) 100%);
}
.svc-tile .svc-icon {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  width: 44px; height: 44px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 1.1rem;
}
.svc-tile .svc-body { background: white; color: var(--ink); padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.svc-tile .svc-body h3 { color: var(--navy); margin-bottom: 0.5rem; }
.svc-tile .svc-arrow {
  color: var(--orange); font-weight: 600; margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.svc-tile:hover .svc-arrow { gap: 12px; }

.quote-card {
  background: white; border: 1px solid var(--navy-100);
  border-radius: 1.25rem; padding: 2.5rem;
  position: relative;
}
.quote-card .qc-mark {
  position: absolute; top: -16px; left: 32px;
  width: 56px; height: 56px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.6rem;
  box-shadow: 0 12px 32px rgba(242,101,34,0.35);
}
.quote-card blockquote {
  font-size: 1.35rem; line-height: 1.55; color: var(--navy);
  font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}
.quote-card .qc-author { display: flex; align-items: center; gap: 14px; }
.quote-card .qc-portrait {
  width: 56px; height: 56px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--navy-100);
}
.quote-card .qc-name { font-weight: 700; color: var(--navy); }
.quote-card .qc-role { font-size: 0.85rem; color: var(--navy-500); }

.portrait {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 1rem;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,26,51,0.6) 100%);
}

/* --- AI teammates (About section) --- */
.ai-team { margin-top: 2.75rem; }
.ai-team-head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.1rem;
  color: var(--navy-500);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
}
.ai-team-head::before, .ai-team-head::after {
  content: ''; flex: 1; height: 1px; background: var(--navy-100);
}
.ai-card { text-align: center; }
.ai-avatar {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 1rem; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 15%,
    color-mix(in srgb, var(--ai) 22%, #fff) 0%,
    color-mix(in srgb, var(--ai) 48%, var(--navy-900)) 100%);
  box-shadow: 0 6px 18px rgba(0, 26, 51, 0.12);
}
.ai-avatar svg { display: block; width: 100%; height: 100%; }
.ai-name { display: block; margin-top: 0.55rem; font-weight: 700; color: var(--navy); font-size: 0.9rem; line-height: 1.1; }
.ai-role { display: block; color: var(--navy-400); font-size: 0.72rem; }

.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: 2.25rem;
  filter: grayscale(1); opacity: 0.65;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.logo-strip:hover { filter: grayscale(0); opacity: 1; }
.logo-strip .lg-logo {
  height: 30px; width: auto; max-width: 190px;
  object-fit: contain;
}
/* Optical balancing: stacked / multi-line logos need extra height so their
   wordmark text reads at the same weight as the horizontal wordmarks. */
.logo-strip .lg-logo.is-tall { height: 40px; }      /* Classy Travel: icon + 2 lines */
.logo-strip .lg-logo.is-stacked { height: 52px; }   /* Bullish Investor: bull over wordmark */
.logo-strip .lg-item {
  font-family: 'Inter', sans-serif;
  font-weight: 800; letter-spacing: -0.02em;
  font-size: 1.4rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-strip .lg-mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
}

.pill-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.pill-outline:hover { background: rgba(255,255,255,0.08); color: white; }

/* Outline button for dark backgrounds — matches .btn radius so it's
   consistent with the orange primary button beside it */
.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}
.btn-outline-light.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.u-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.u-link:hover { color: var(--orange); }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

/* Uniform application card — image header + text body, scales to any count */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 850px)  { .app-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .app-grid { grid-template-columns: 1fr; } }

.app-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--navy-100);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,50,97,0.14);
  border-color: var(--navy-300);
}
.app-card .ac-img {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.app-card .ac-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,50,97,0.05) 0%, rgba(0,26,51,0.35) 100%);
}
.app-card .ac-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: white;
  background: rgba(0,26,51,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.app-card .ac-body {
  padding: 20px;
  display: flex; flex-direction: column;
  flex: 1;
}
.app-card .ac-body h3 {
  font-size: 1.2rem; margin-bottom: 6px; color: var(--navy);
}
.app-card .ac-body p {
  font-size: 0.9rem; color: var(--navy-600); line-height: 1.5;
  margin-bottom: 16px;
}
.app-card .ac-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--navy-50);
}
.app-card .ac-link {
  color: var(--orange); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.app-card:hover .ac-link { gap: 11px; }
.app-card .ac-price { font-size: 0.85rem; color: var(--navy-500); font-weight: 600; }
[v-cloak] { display: none; }
.app-card-loading { pointer-events: none; }
.app-card-loading .ac-img,
.app-card-loading .loading-line {
  background: linear-gradient(90deg, var(--navy-50) 0%, var(--navy-100) 50%, var(--navy-50) 100%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.2s ease-in-out infinite;
}
.app-card-loading .loading-line {
  display: block;
  height: 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.bento > * { border-radius: 1rem; overflow: hidden; }
.b-1 { grid-column: span 5; grid-row: span 2; }
.b-2 { grid-column: span 4; grid-row: span 1; }
.b-3 { grid-column: span 3; grid-row: span 1; }
.b-4 { grid-column: span 4; grid-row: span 1; }
.b-5 { grid-column: span 3; grid-row: span 1; }
@media (max-width: 991px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .b-1 { grid-column: span 6; grid-row: span 2; }
  .b-2, .b-3, .b-4, .b-5 { grid-column: span 3; grid-row: span 1; }
}
.bg-orange {
    background-color: var(--bs-orange);
}
.btn.btn-orange.disabled, .btn.btn-orange:disabled, fieldset:disabled .btn.btn-orange {
    background-color: var(--bs-orange);
    color: white
}

/* --- Public docs --- */
.docs-searchbox .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.docs-searchbox .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.docs-app-logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
.docs-article-body {
  color: var(--ink);
  line-height: 1.75;
}
.docs-article-body h2,
.docs-article-body h3,
.docs-article-body h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.docs-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--navy-100);
}
.docs-article-body pre {
  background: var(--navy-900);
  color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  overflow-x: auto;
}
.docs-article-body code {
  color: var(--orange-600);
}
.docs-sidebar {
  position: sticky;
  top: 96px;
}
@media (max-width: 991px) {
  .docs-sidebar {
    position: static;
  }
}