:root {
  --primary: #0051FF;
  --accent: #30A66D;
  --foreground: #0F1729;
  --muted: #65758B;
  --bg: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.mb-4 {
  margin-bottom: 16px;
}

.container {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .container {
    width: 92%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity .15s, background .15s, color .15s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #0044d6;
}

.btn-outline {
  background: #fff;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  height: 170px;
  width: auto;
}

@media (min-width: 768px) {
  .nav-logo {
    height: 300px;
  }
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .login {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.nav-cta .login:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-cta .login {
    display: inline;
  }
}

/* Hero */
.hero {
  background-color: #000;
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(164, 206, 185, 0.414);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 45px;
  }
}

.hero h1 .accent {
  color: var(--primary);
}

.hero p {
  font-size: 16px;
  color: #dddcdc;
  margin-bottom: 32px;
  max-width: 540px;

}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 41, .15);
  position: relative;
}

.dash-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.dash-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border);
}

.dash-bar span:nth-child(1) {
  background: #ff5f57;
}

.dash-bar span:nth-child(2) {
  background: #febc2e;
}

.dash-bar span:nth-child(3) {
  background: #28c840;
}

.dash-title {
  font-size: 13px;
  color: var(--muted);
  margin-left: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.stat .icon {
  color: var(--primary);
}

.stat:nth-child(2) .icon,
.stat:nth-child(2) .stat-head {
  color: var(--accent);
}

.stat .num {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat .lbl {
  font-size: 12px;
  color: var(--muted);
}

.float-chip {
  position: absolute;
  right: -16px;
  bottom: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 41, .2);
}

.float-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.float-chip .t {
  font-weight: 700;
  font-size: 13px;
}

.float-chip .s {
  font-size: 11px;
  color: var(--muted);
}

/* Section base */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 40px;
  }
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
}

.bg-white {
  background: #fff;
}

.bg-muted {
  background: rgba(101, 117, 139, .05);
}

.bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Core promise */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promise-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.promise-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 81, 255, .1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.promise-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promise-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .15s;
}

.feature-card:hover {
  border-color: rgba(0, 81, 255, .3);
}

.feature-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(101, 117, 139, .1);
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Two-col split (payroll, compliance) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.eyebrow.accent {
  color: var(--accent);
}

.split h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .split h2 {
    font-size: 40px;
  }
}

.split .lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}

.check-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 81, 255, .1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-list.accent .check {
  background: rgba(48, 166, 109, .1);
  color: var(--accent);
}

.split .closing {
  font-weight: 600;
  color: var(--foreground);
}

.preview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 41, .15);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 4px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
}

.timeline .item {
  position: relative;
  padding-left: 36px;
}

.timeline .item .dot {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
  border: 2px solid var(--primary);
}

.timeline .item.active .dot {
  background: #fff;
}

.timeline .item .t {
  font-weight: 700;
}

.timeline .item .s {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.preview-card .footer-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.preview-card .footer-block .t {
  font-weight: 700;
  margin-bottom: 6px;
}

.preview-card .footer-block .s {
  font-size: 14px;
  color: var(--muted);
}

.compliance-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 41, .15);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compliance-tile {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px;
}

.compliance-tile .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.compliance-tile .val {
  font-weight: 700;
  color: var(--accent);
}

/* Testimonial */
.testimonial-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
}

.testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial .eyebrow {
  display: block;
}

.testimonial blockquote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 24px 0;
  color: #fff;
}

@media (min-width: 768px) {
  .testimonial blockquote {
    font-size: 30px;
  }
}

.testimonial .attribution {
  color: var(--muted);
  font-weight: 600;
}

.quote-mark {
  width: 40px;
  height: 40px;
  color: rgba(0, 81, 255, .2);
  margin: 0 auto;
}

/* Everything you need */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .tile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .15s;
}

.tile:hover {
  border-color: rgba(0, 81, 255, .3);
}

.tile .t {
  font-weight: 700;
  margin-bottom: 4px;
}

.tile .s {
  font-size: 13px;
  color: var(--muted);
}

/* Setup + Built for scale */
.dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .dual {
    grid-template-columns: 1fr 1fr;
  }
}

.dual h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .dual h3 {
    font-size: 28px;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 81, 255, .1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step .label {
  font-weight: 500;
  font-size: 17px;
}

.scale-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.scale-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}

.scale-list .ico {
  color: var(--muted);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.audience-card .t {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.audience-card .s {
  font-size: 13px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 44px;
  }
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.final-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  /* justify-content: space-between; */
  margin-bottom: 40px;
}

.footer-top .footer-brand {
  text-align: center;
}

.footer-top .footer-brand .footer-logo-wrap {
  display: inline-block;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .footer-top .footer-brand {
    text-align: left;
    width:280px
  }

  .footer-top .footer-brand .footer-logo-wrap {
    display: inline-block;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
  }

  .footer-tag {
    font-size: 14px;
    color: #fefefe;
  }
}

.footer-logo {
  height: 60px;
  width: 300px;
  object-fit: cover;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
}

.footer-tag {
  font-size: 14px;
  color: #fefefe;
  max-width: 100%;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;

  }
}

.footer-cols h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fefefe;
}

.footer-cols a {
  display: block;
  font-size: 14px;
  color: #fefefe;
  margin-bottom: 8px;
}

.footer-cols a:hover {
  color: var(--primary);
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  /* justify-items: center; */
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

  }



  .footer-bottom.right {
    text-align: right;
  }
}

.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: #fefefe;
  text-align: center;
}



.footer-bottom.right {
  text-align: center;
}

.footer-bottom-grid a:hover {
  color: var(--primary);
}