:root {
  --primary: #1b75d0;
  --primary-dark: #14539b;
  --accent: #ffb21c;
  --bg: #f5f7fb;
  --bg-dark: #0c1524;
  --text-main: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
  --transition-fast: 0.2s ease-out;
  --max-width: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(24, 94, 177, 0.45);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(24, 94, 177, 0.55);
}

.btn-outline {
  background: #f3f4ff;
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.btn-outline:hover {
  background: #e0e7ff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0.25rem auto 0;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

/* Header / Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(12, 19, 37, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  color: #e5e7eb;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 32px;      /* adjust to 28–36 if you want */
  width: auto;
  display: block;
}

.nav-brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;   /* a bit smaller so header doesn’t feel heavy */
}

.nav-brand-sub {
  font-size: 0.72rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffb21c, #f97316, #1b75d0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav .btn-primary {
  padding-inline: 1.1rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: #e5e7eb;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Hero with single background */
.hero {
  position: relative;
  color: #e5e7eb;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  min-height: calc(100vh - 64px); /* full viewport minus header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1; /* always visible */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.9)),
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
}

.hero-left {
  max-width: 640px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-highlight {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  inset: 60% -6px -4px;
  background: rgba(250, 204, 21, 0.35);
  filter: blur(12px);
  z-index: -1;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges span {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-meta {
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-meta-soft {
  color: #9ca3af;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why Us */
.stats-section {
  background: #0f172a;
  color: #e5e7eb;
}

.stats-inner {
  display: block;
}

.stats-header .section-title {
  color: #e5e7eb;
}

.stats-header .section-subtitle {
  color: #9ca3af;
}

.why-list {
  list-style: none;
  margin-top: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #cbd5f5;
}

.why-bullet {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #bfdbfe;
}

/* How It Works */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.steps {
  position: relative;
  padding-left: 1rem;
  border-left: 1px dashed var(--border);
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding-left: 1rem;
}

.step-marker {
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.step-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.how-card {
  background: linear-gradient(135deg, #eff6ff, #f9fafb);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.how-pill {
  font-size: 0.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.how-list {
  margin-top: 0.6rem;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.how-list li {
  margin-bottom: 0.2rem;
}

/* For Businesses */
.business-section {
  background: #ffffff;
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  background: rgba(22, 163, 74, 0.06);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.35);
}

.business-points {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.feature-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: #f3f4ff;
  color: #1d4ed8;
  border: 1px solid rgba(129, 140, 248, 0.4);
}

.business-card {
  background: radial-gradient(circle at top, #eff6ff, #e0f2fe);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.business-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #111827;
}

.business-card-text {
  font-size: 0.86rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.business-card-list {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.83rem;
  color: #4b5563;
}

.business-card-list li {
  margin-bottom: 0.25rem;
}

.business-footnote {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 0.7rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: flex-start;
}

.faq-item {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.18);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.faq-a {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.faq-tag {
  font-size: 0.7rem;
  color: var(--primary-dark);
}

/* Contact & Footer */
.contact-section {
  background: #020617;
  color: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.contact-col span {
  display: block;
  color: #9ca3af;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}

.contact-highlight {
  color: #e5e7eb;
  font-weight: 500;
}

.contact-mini {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.contact-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.3rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  font-size: 0.85rem;
}

.contact-card label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.15rem;
  color: #cbd5f5;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  outline: none;
  margin-bottom: 0.75rem;
}

.contact-card textarea {
  min-height: 70px;
  resize: vertical;
}

.footer {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 960px) {
  .stats-inner,
  .how-grid,
  .business-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.75rem 1.25rem 1rem;
    flex-direction: column;
    gap: 0.7rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3rem 0;
  }
}
