/* IMPRESSOLS landing — hr_new platform showcase */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --logo-green: #98BD22;
  --logo-orange: #EE7103;
  --logo-blue: #2CB2E5;
  --ink: #0f172a;
  --ink-soft: #475569;
  --surface: #f8fafc;
  --card: #ffffff;
  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #ffffff 45%, #f7fee7 100%);
  --gradient-brand: linear-gradient(135deg, var(--logo-blue), var(--logo-green));
  --shadow-xl: 0 40px 80px -30px rgba(15, 23, 42, 0.25);
}

body.landing-v2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  padding-top: 76px;
}

/* Nav */
.navbar-elevated {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(44, 178, 229, 0.12);
}

.btn-nav-cta {
  background: var(--logo-orange) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(238, 113, 3, 0.35);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* Hero */
.hero-v2 {
  background: var(--gradient-hero);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-v2::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(44, 178, 229, 0.18), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hero-v2::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(152, 189, 34, 0.15), transparent 70%);
  bottom: -100px;
  left: -60px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(152, 189, 34, 0.35);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.hero-v2 h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-v2 h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2 .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: var(--logo-orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(238, 113, 3, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(238, 113, 3, 0.45);
}

.btn-hero-secondary {
  background: #fff;
  color: var(--logo-blue);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(44, 178, 229, 0.35);
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background: var(--logo-blue);
  color: #fff;
  border-color: var(--logo-blue);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-pill {
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  border-left: 4px solid var(--logo-orange);
  min-width: 120px;
}

.trust-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--logo-blue);
  line-height: 1.1;
}

.trust-pill span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Product mockup */
.product-mockup {
  background: var(--ink);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.product-mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 12px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-body {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 16px;
  min-height: 320px;
}

.mockup-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mockup-pill {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-weight: 600;
}

.mockup-pill.active {
  background: var(--logo-blue);
  color: #fff;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.mockup-card h6 {
  color: #94a3b8;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.mockup-card .val {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.mockup-card.wide {
  grid-column: span 2;
}

.mockup-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.mockup-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-blue));
}

/* Platform section */
.platform-section {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
  position: relative;
}

.platform-section .section-label {
  color: var(--logo-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.platform-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.platform-section .lead {
  color: #94a3b8;
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.module-card-v2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.module-card-v2:hover {
  transform: translateY(-6px);
  border-color: var(--logo-blue);
  background: rgba(44, 178, 229, 0.12);
}

.module-card-v2 .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #fff;
}

.module-card-v2 h5 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.module-card-v2 p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* Flow strip */
.flow-strip {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.flow-step {
  text-align: center;
  padding: 0 12px;
}

.flow-step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.flow-step h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Industries */
.industries-bar {
  padding: 40px 0;
  background: var(--surface);
}

.industry-tag {
  display: inline-block;
  padding: 10px 20px;
  margin: 6px;
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.sticky-cta a {
  background: var(--logo-orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Compare band */
.compare-band {
  background: linear-gradient(90deg, rgba(152, 189, 34, 0.12), rgba(44, 178, 229, 0.12));
  border-radius: 24px;
  padding: 32px 40px;
  margin: 48px 0 0;
}

.compare-band h4 {
  font-weight: 800;
  margin-bottom: 8px;
}

/* Pricing */
.pricing-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f0f9ff 100%);
}

.section-label-pricing {
  color: var(--logo-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.pricing-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.pricing-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Employee count selector */
.pricing-selector-wrap {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 0 12px;
}

.pricing-selector-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px -24px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(44, 178, 229, 0.15);
}

.pricing-selector-header {
  margin-bottom: 28px;
}

.pricing-step-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(238, 113, 3, 0.12), rgba(238, 113, 3, 0.06));
  color: var(--logo-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 113, 3, 0.25);
  margin-bottom: 14px;
}

.pricing-selector-title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.pricing-selector-hint {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.pricing-band-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .pricing-band-picker {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.band-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 12px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  color: var(--ink);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  pointer-events: auto;
  position: relative;
  text-align: center;
}

.band-btn::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  transition: all 0.2s;
}

.band-btn.active::after {
  border-color: #fff;
  background: var(--logo-green);
  box-shadow: 0 0 0 2px var(--logo-green);
}

.band-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--logo-blue);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: background 0.2s, color 0.2s;
}

.band-btn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.band-btn-label strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.band-btn-label small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.band-btn:hover {
  border-color: var(--logo-blue);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(44, 178, 229, 0.35);
}

.band-btn:hover .band-btn-icon {
  background: rgba(44, 178, 229, 0.1);
  color: var(--logo-blue);
}

.band-btn.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(44, 178, 229, 0.45);
}

.band-btn.active .band-btn-icon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--logo-blue);
}

.band-btn.active .band-btn-label small {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-selection-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(152, 189, 34, 0.12), rgba(44, 178, 229, 0.1));
  border-radius: 14px;
  border: 1px solid rgba(152, 189, 34, 0.25);
  font-size: 0.95rem;
  color: var(--ink);
}

.pricing-selection-result i {
  color: var(--logo-green);
  font-size: 1.2rem;
}

.pricing-selection-result strong {
  color: var(--logo-blue);
  font-weight: 800;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.15);
}

.pricing-card-featured {
  border: 2px solid var(--logo-blue);
  box-shadow: 0 20px 50px -20px rgba(44, 178, 229, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--logo-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.pricing-tier-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 24px;
  line-height: 1.1;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--logo-blue);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li i {
  color: var(--logo-green);
  margin-top: 3px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--logo-blue);
  color: var(--logo-blue);
  transition: all 0.2s;
}

.pricing-cta:hover {
  background: var(--logo-blue);
  color: #fff;
}

.pricing-cta-primary {
  background: var(--logo-orange);
  border-color: var(--logo-orange);
  color: #fff;
}

.pricing-cta-primary:hover {
  background: #d96202;
  border-color: #d96202;
  color: #fff;
}

.pricing-enterprise {
  margin-top: 48px;
  text-align: center;
  padding: 24px 32px;
  background: var(--ink);
  color: #e2e8f0;
  border-radius: 20px;
  font-size: 1rem;
}

.pricing-enterprise i {
  color: var(--logo-green);
  margin-right: 8px;
}

.pricing-enterprise a {
  color: var(--logo-blue);
  font-weight: 700;
  text-decoration: none;
}

.pricing-enterprise a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .product-mockup {
    transform: none;
    margin-top: 40px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-selector-card {
    padding: 24px 16px 20px;
  }

  .band-btn {
    min-height: 96px;
  }

  .band-btn-label strong {
    font-size: 0.9rem;
  }
}
