/* ============================================================
   SIRITI.AI — Shared Website Styles
   Colors: Navy #0d1b2a | Blue #2563eb | Sky #0ea5e9 | Gold #e8a020
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --navy2:  #112236;
  --navy3:  #1a2d44;
  --blue:   #2563eb;
  --sky:    #0ea5e9;
  --gold:   #e8a020;
  --green:  #16a34a;
  --white:  #ffffff;
  --light:  #cbd5e1;
  --muted:  #64748b;
  --grad:   linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --grad-gold: linear-gradient(135deg, #e8a020 0%, #f59e0b 100%);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { color: var(--light); line-height: 1.8; }
a  { color: var(--sky); text-decoration: none; }
a:hover { color: var(--white); }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text { color: var(--gold); }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 20px;
}
/* Scroll progress bar at very top of nav */
nav::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  height: 2px; width: var(--scroll-pct, 0%);
  background: var(--grad); transition: width .1s linear;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  height: 64px; position: relative;
}
.nav-logo {
  font-size: 1.4rem; font-weight: 900; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0; min-height: 44px; display: flex; align-items: center;
}
.nav-logo span { color: var(--gold); -webkit-text-fill-color: var(--gold); }

.nav-links { display: flex; gap: 20px; align-items: center; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--light);
  transition: color .15s; padding: 8px 4px; white-space: nowrap;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
/* Active page indicator */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad); border-radius: 2px;
}

.nav-cta {
  margin-left: auto;
  background: var(--grad); color: #fff; border: none; border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; text-decoration: none; display: inline-block;
  transition: opacity .15s; min-height: 44px; display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; color: #fff; }

/* ── HAMBURGER MENU (mobile only) ────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 10px; margin-left: auto; border: none; background: none;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: rgba(13,27,42,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  flex-direction: column; padding: 8px 0 16px;
  transform: translateY(-8px); opacity: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s;
  pointer-events: none;
}
.nav-mobile-menu.open {
  display: flex; transform: none; opacity: 1; pointer-events: all;
}
.nav-mobile-menu a {
  display: flex; align-items: center; padding: 14px 24px;
  font-size: 16px; font-weight: 600; color: var(--light);
  text-decoration: none; min-height: 52px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s, color .15s;
}
.nav-mobile-menu a:hover { background: rgba(255,255,255,.04); color: var(--white); }
.nav-mobile-menu a.active { color: var(--sky); }
.nav-mobile-menu .mob-cta {
  margin: 12px 24px 0; padding: 14px;
  background: var(--grad); color: #fff;
  border-radius: 10px; text-align: center;
  font-size: 15px; font-weight: 700;
  border-bottom: none;
}
.nav-mobile-menu .mob-cta:hover { opacity: .9; background: var(--grad); }

/* ── MOBILE STICKY CTA BAR ───────────────────────────────── */
/* Appears at the bottom on mobile — always visible */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(13,27,42,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.mobile-cta-bar-inner { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.mobile-cta-bar .m-cta-pri { flex: 2; background: var(--grad); color: #fff; border: none; border-radius: 10px; padding: 12px 16px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.mobile-cta-bar .m-cta-sec { flex: 1; background: rgba(255,255,255,.08); color: var(--light); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 700;
  font-size: 15px; cursor: pointer; border: none; transition: all .15s;
  text-decoration: none;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn-gold { background: var(--grad-gold); color: #fff; }
.btn-gold:hover { opacity: .9; transform: translateY(-1px); color: #fff; box-shadow: 0 8px 24px rgba(232,160,32,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 12px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,.18) 0%, transparent 70%);
}
.hero-tag {
  display: inline-block; background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.4);
  color: var(--sky); font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { max-width: 800px; margin: 0 auto 20px; }
.hero .sub { font-size: clamp(1rem, 2vw, 1.2rem); max-width: 620px; margin: 0 auto 40px; color: var(--light); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(37,99,235,.4); transform: translateY(-3px); }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── PRODUCT CARDS ──────────────────────────────────────── */
.product-card {
  background: var(--navy3);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0; transition: opacity .2s;
  border-radius: 20px;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card:hover::before { opacity: .04; }
.product-card.snapledger { border-top: 3px solid var(--sky); }
.product-card.jobtrail   { border-top: 3px solid var(--gold); }
.product-card .product-name { font-size: 1.8rem; font-weight: 900; margin: 16px 0 8px; }
.product-card .product-desc { font-size: 0.95rem; color: var(--light); margin-bottom: 24px; }
.product-card .product-price { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.product-card .price-period { font-size: 14px; font-weight: 400; color: var(--muted); }
.product-card .feature-list { text-align: left; margin: 20px 0; }
.product-card .feature-list li { list-style: none; padding: 6px 0; font-size: 14px; color: var(--light); display: flex; gap: 8px; align-items: flex-start; }
.product-card .feature-list li::before { content: '✓'; color: var(--sky); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── FEATURE ICONS ──────────────────────────────────────── */
.feature-icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.feature-icon-item { text-align: center; padding: 28px 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; }
.feature-icon-item .icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature-icon-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-icon-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── COMPARISON TABLE ───────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--navy3); padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.compare-table th.highlight { background: rgba(37,99,235,.2); color: var(--sky); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--card-border); font-size: 14px; color: var(--light); }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }
.compare-table td.highlight { background: rgba(37,99,235,.06); color: var(--white); font-weight: 700; }
.check { color: #22c55e; font-size: 16px; }
.cross { color: #ef4444; font-size: 16px; }
.partial { color: var(--gold); font-size: 13px; }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 24px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--card-border); }
.flow-step:last-child { border-bottom: none; }
.flow-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; margin-top: 2px; }
.flow-content h4 { font-size: 16px; margin-bottom: 4px; }
.flow-content p { font-size: 14px; color: var(--muted); }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--light); }

/* ── BADGES / PILLS ─────────────────────────────────────── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-blue  { background: rgba(37,99,235,.2); color: var(--sky); border: 1px solid rgba(37,99,235,.3); }
.badge-gold  { background: rgba(232,160,32,.2); color: var(--gold); border: 1px solid rgba(232,160,32,.3); }
.badge-green { background: rgba(22,163,74,.2); color: #4ade80; border: 1px solid rgba(22,163,74,.3); }

/* ── DIVIDERS ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--card-border); margin: 0; }
.divider-grad { height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,.5), transparent); }

/* ── TESTIMONIAL ────────────────────────────────────────── */
.testimonial { background: var(--navy3); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 24px 28px; font-size: 1.05rem; font-style: italic; color: var(--light); }
.testimonial .author { margin-top: 12px; font-style: normal; font-size: 13px; color: var(--sky); font-weight: 700; }

/* ── TWO-AUDIENCE SPLIT ─────────────────────────────────── */
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--card-border); border-radius: 20px; overflow: hidden; }
.audience-panel { padding: 48px 40px; background: var(--navy3); }
.audience-panel h3 { font-size: 1.4rem; margin-bottom: 8px; }
.audience-panel .audience-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #070e17;
  border-top: 1px solid var(--card-border);
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-logo { font-size: 1.8rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--sky); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band { background: radial-gradient(ellipse at center, rgba(37,99,235,.25) 0%, transparent 70%); padding: 80px 24px; text-align: center; }
.cta-band h2 { max-width: 700px; margin: 0 auto 16px; }
.cta-band p { max-width: 480px; margin: 0 auto 36px; color: var(--light); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Layout */
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .audience-split { grid-template-columns: 1fr; }

  /* Nav — show hamburger, hide desktop links */
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: block; }
  /* Add bottom padding so content doesn't hide behind sticky bar */
  body { padding-bottom: 76px; }

  /* Hero */
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 2rem; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 32px; }

  /* Product cards */
  .product-card { padding: 24px 18px; }

  /* Comparison tables — horizontal scroll on mobile */
  .compare-table-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border-radius: 12px; border: 1px solid var(--card-border);
    position: relative;
  }
  .compare-table-wrap::after {
    content: 'Scroll →'; position: absolute; right: 8px; top: 8px;
    font-size: 10px; color: var(--muted); font-weight: 700;
    background: rgba(13,27,42,.9); padding: 2px 8px; border-radius: 4px;
    pointer-events: none;
  }
  .compare-table { font-size: 12px; min-width: 560px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  /* Sticky first column on mobile tables */
  .compare-table td:first-child,
  .compare-table th:first-child {
    position: sticky; left: 0;
    background: var(--navy3); z-index: 1;
    border-right: 1px solid var(--card-border);
  }

  /* Buttons */
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; min-height: 52px; }
  .btn-lg { min-height: 52px; }

  /* Mockup images */
  .mockup-section { gap: 24px; }

  /* Section header */
  .section-header h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero .sub { font-size: 0.95rem; }
  nav { padding: 0 16px; }
  .section { padding: 32px 0; }
  .product-card { padding: 20px 16px; }
  h2 { font-size: 1.4rem; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
/* Fade-in on scroll — apply class 'fade-up' to any element */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* Floating animation for logos */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.logo-float { animation: float 4s ease-in-out infinite; }
.logo-float.delay-half { animation-delay: 2s; }

/* Counter number animation */
@keyframes countUp {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
.stat-num { animation: countUp .5s cubic-bezier(.2,.8,.2,1) both; }

/* Gradient text shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 25%, #e8a020 50%, #0ea5e9 75%, #2563eb 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Scan beam animation (for mockup) */
@keyframes scanBeam {
  0%, 100% { top: 20%; opacity: .8; }
  50%       { top: 80%; opacity: 1; }
}

/* Pulse glow on CTA buttons */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}
.btn-primary { animation: ctaPulse 2.5s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* Scroll-triggered intersection observer script (inline in pages) */

/* ── MOCKUP SCREENSHOT SECTIONS ─────────────────────────────────────────── */
.mockup-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mockup-section.reverse { direction: rtl; }
.mockup-section.reverse > * { direction: ltr; }
.mockup-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.mockup-img-wrap img { width: 100%; display: block; border-radius: 16px; }
.mockup-img-wrap::after {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,.4));
  pointer-events: none;
}
.mockup-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(13,27,42,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 6px 12px; font-size: 11px; font-weight: 700; color: #4ade80;
}

/* Video embed placeholder */
.video-placeholder {
  background: var(--navy3);
  border: 2px dashed rgba(37,99,235,.3);
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.video-placeholder:hover { border-color: var(--blue); background: rgba(37,99,235,.06); }
.video-play { width: 64px; height: 64px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 24px; }

@media (max-width: 768px) {
  .mockup-section { grid-template-columns: 1fr; }
  .mockup-section.reverse { direction: ltr; }
}

/* ── LOGO DISPLAY CLASSES ───────────────────────────────────────────────── */
/* SnapLedger: transparent — floats directly on dark background */
.product-logo-wrap {
  display: flex; justify-content: center; margin: 0 0 12px;
}
.product-logo {
  width: 220px; height: auto; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(37,99,235,.3));
  transition: transform .2s;
}
.product-logo:hover { transform: scale(1.04); }

/* Both logos: white card treatment — clean, consistent, professional */
/* SnapLedger and JobTrail both sit on matching white rounded cards */
.product-logo-wrap {
  padding: 14px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.08);
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 16px;
  transition: box-shadow .25s, transform .25s;
}
.product-logo-wrap:hover {
  box-shadow: 0 14px 52px rgba(0,0,0,.38);
  transform: translateY(-3px);
}
.product-logo-wrap .product-logo {
  filter: none;  /* logos designed for white — no artificial drop shadow */
  width: 200px;
}
/* Keep jobtrail-logo-wrap as an alias so existing HTML still works */
.product-logo-wrap.jobtrail-logo-wrap { /* same style — no extra rules needed */ }

/* Hero logo pair: both logos on matching white cards */
.hero-logo-pair {
  display: flex; gap: 32px; justify-content: center;
  align-items: center; flex-wrap: wrap; margin-bottom: 48px;
}
.hero-logo-pair .logo-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.hero-logo-pair .logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 56px rgba(0,0,0,.45);
}
.hero-logo-pair .logo-card img {
  width: 180px; height: auto; display: block;
}
@media (max-width: 600px) {
  .product-logo { width: 160px; }
  .product-logo-wrap.jobtrail-logo-wrap .product-logo { width: 150px; }
  .hero-logo-pair .snap-hero-logo { width: 150px; }
  .hero-logo-pair .jt-hero-logo-wrap img { width: 140px; }
}
