/* =========================================================
   BIZMATE LANDING PAGE
   Bootstrap 5 + custom responsive styling
   ========================================================= */

:root {
  --navy: #0b3d6e;
  --navy-dark: #082d52;
  --teal: #0bb8b0;
  --teal-dark: #079a94;
  --ink: #102b49;
  --muted: #66788c;
  --line: #d8e2ec;
  --soft: #f4f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(11, 61, 110, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.biz-navbar {
  height: 92px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 226, 236, .75);
  transition: .25s ease;
}

.biz-navbar.scrolled {
  height: 76px;
  box-shadow: 0 8px 25px rgba(11, 61, 110, .08);
}

.brand-logo {
  height: 80px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.25s ease;
}

.biz-navbar.scrolled .brand-logo {
  height: 50px;
  max-height: 50px;
}

.footer-logo-wrap {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
}

.footer-logo {
  height: 60px;
  max-height: 60px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 5px;
}

.brand-mark span {
  position: relative;
  z-index: 2;
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.brand-text small {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 5px;
  color: var(--navy);
  text-align: center;
}

.nav-link {
  color: #3f536a !important;
  font-size: 13px;
  font-weight: 600;
  margin: 0 9px;
  padding: 8px 3px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 50%;
  bottom: 0;
  background: var(--teal);
  transition: .25s;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 24px;
}

.btn-brand {
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, var(--teal), #13aaa4);
  box-shadow: 0 8px 20px rgba(11, 184, 176, .20);
  font-weight: 700;
  border-radius: 9px;
  transition: .25s ease;
}

.btn-brand:hover {
  background: linear-gradient(135deg, #079f99, var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 184, 176, .25);
}

.btn-outline-brand {
  color: var(--navy);
  border: 1px solid var(--teal);
  background: #fff;
  font-weight: 700;
  border-radius: 9px;
}

.btn-outline-brand:hover {
  color: var(--navy);
  background: #eefcfa;
  border-color: var(--teal);
}

.hero-section {
  padding: 145px 0 95px;
  background:
    radial-gradient(circle at 74% 43%, rgba(11, 184, 176, .11), transparent 27%),
    linear-gradient(180deg, #f7fbfd 0%, #edf7fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-section::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 120px;
  background: rgba(11, 184, 176, .06);
}

.hero-section::after {
  width: 280px;
  height: 280px;
  left: -140px;
  bottom: -120px;
  background: rgba(11, 61, 110, .04);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(11, 184, 176, .10);
}

.orb-one {
  width: 10px;
  height: 10px;
  top: 28%;
  right: 15%;
}

.orb-two {
  width: 7px;
  height: 7px;
  top: 60%;
  right: 38%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin-bottom: 13px;
}

.eyebrow.light {
  color: #8ff2eb;
}

.hero-section h1 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
}

.hero-section h1 span,
.section-heading h2 span,
.showcase-section h2 span,
.why-section h2 span {
  color: var(--teal-dark);
}

.hero-copy {
  max-width: 530px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 27px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #52667a;
  font-size: 12px;
  font-weight: 600;
}

.hero-trust i {
  color: var(--teal);
  margin-right: 5px;
}

.hero-product-wrap {
  position: relative;
  padding: 12px 35px 25px 0;
}

.product-window,
.showcase-window {
  border: 1px solid #d5e1eb;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 25px 70px rgba(11, 61, 110, .16);
  overflow: hidden;
}

.product-window {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: #728398;
  font-size: 9px;
  font-weight: 700;
  background: #f7fafc;
  border-bottom: 1px solid #e4ebf1;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cad6e0;
}

.product-window img,
.showcase-window img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-pill {
  position: absolute;
  z-index: 5;
  background: #fff;
  border: 1px solid #e4ebf1;
  box-shadow: 0 12px 28px rgba(11, 61, 110, .13);
  border-radius: 30px;
  padding: 10px 15px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.floating-pill i {
  color: var(--teal);
  margin-right: 5px;
}

.pill-one {
  top: 12%;
  right: -4px;
}

.pill-two {
  top: 42%;
  right: -22px;
}

.pill-three {
  bottom: 11%;
  right: 12px;
}

.benefit-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.benefit-item {
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 25px;
  border-right: 1px solid var(--line);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item>i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 11px;
  color: var(--teal-dark);
  background: #eafaf9;
  font-size: 19px;
}

.benefit-item strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 3px;
}

.benefit-item small {
  color: var(--muted);
  font-size: 10px;
}

.section-pad {
  padding: 100px 0;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.why-section h2,
.showcase-section h2,
.cta-box h2 {
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
}

.section-heading p,
.showcase-section p,
.why-section .lead-copy {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.feature-card {
  height: 100%;
  padding: 27px 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #bfe8e5;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #eafaf9;
  font-size: 21px;
  margin-bottom: 19px;
}

.feature-card h3,
.benefit-card h3,
.step h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p,
.benefit-card p,
.step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.why-section {
  background: linear-gradient(180deg, #f3f9fc 0%, #eaf6fa 100%);
}

.benefit-card {
  height: 100%;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  gap: 15px;
}

.benefit-card>i {
  color: var(--teal-dark);
  font-size: 23px;
  flex: 0 0 28px;
}

.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}

.step {
  position: relative;
  text-align: center;
  max-width: 290px;
  flex: 1;
  padding: 12px 20px;
}

.step-number {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 11px;
}

.step-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #eafaf9;
  border-radius: 50%;
  font-size: 23px;
  border: 7px solid #f7fbfc;
  box-shadow: 0 0 0 1px #d5eceb;
}

.step-line {
  width: 80px;
  height: 1px;
  margin-top: 88px;
  background: #cbdbe6;
}

.showcase-section {
  background: #f5f9fb;
}

.showcase-window {
  box-shadow: 0 22px 55px rgba(11, 61, 110, .12);
}

.showcase-window .window-bar {
  height: 43px;
  font-size: 10px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  font-size: 11px;
  color: #53677b;
}

.check-list i {
  color: var(--teal);
  margin-right: 7px;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.mini-stat-grid>div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}

.mini-stat-grid strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
}

.mini-stat-grid small {
  color: var(--muted);
  font-size: 10px;
}

.cta-section {
  padding: 0 0 100px;
}

.cta-box {
  border-radius: 20px;
  padding: 52px 60px;
  background:
    radial-gradient(circle at 80% 30%, rgba(11, 184, 176, .22), transparent 30%),
    linear-gradient(135deg, #0b3d6e, #082d52);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  overflow: hidden;
  position: relative;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  color: #bfd0df;
  margin: 0;
  max-width: 590px;
  font-size: 13px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.cta-phone {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.cta-phone i {
  color: #72e7df;
  margin-right: 6px;
}

.footer {
  background: #071f38;
  color: #a9bdcf;
  padding: 65px 0 20px;
}

.footer .brand-text,
.footer .brand-text small {
  color: #fff;
}

.footer-copy {
  max-width: 360px;
  color: #91a9bd;
  font-size: 12px;
  line-height: 1.8;
}

.footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer a:not(.navbar-brand) {
  display: block;
  color: #91a9bd;
  font-size: 11px;
  margin-bottom: 12px;
  transition: .2s;
}

.footer a:not(.navbar-brand):hover {
  color: #fff;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 13px;
}

.contact-line i {
  color: var(--teal);
  margin-top: 2px;
}

.contact-line a {
  display: inline !important;
  margin: 0 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  color: #718ca2;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #a9bdcf;
  font-size: 16px;
  margin: 0 !important;
  transition: all .3s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, .35);
}

.mobile-call {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  place-items: center;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 25px rgba(11, 184, 176, .30);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

/* Tablet */
@media (max-width: 991.98px) {
  .biz-navbar {
    height: 70px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px 0 20px;
    border-top: 1px solid var(--line);
  }

  .nav-link {
    margin: 2px 0;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-section h1 {
    letter-spacing: -1.2px;
  }

  .hero-product-wrap {
    padding-right: 15px;
  }

  .floating-pill {
    display: none;
  }

  .benefit-item {
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:nth-child(2) {
    border-right: 0;
  }

  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    border-bottom: 0;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 450px;
    width: 100%;
  }

  .step-line {
    width: 1px;
    height: 35px;
    margin: 0;
  }

  .cta-box {
    padding: 45px 35px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .biz-navbar {
    height: 76px;
  }

  .brand-logo {
    height: 50px;
    max-height: 50px;
  }

  .footer-logo {
    height: 48px;
    max-height: 48px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero-section {
    padding: 108px 0 65px;
  }

  .hero-section h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 13px;
  }

  .hero-trust {
    gap: 10px 17px;
  }

  .hero-product-wrap {
    margin-top: 12px;
    padding: 0;
  }

  .product-window {
    transform: none;
    border-radius: 11px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .benefit-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .benefit-item:last-child {
    border-bottom: 0 !important;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .cta-box {
    border-radius: 14px;
    padding: 35px 25px;
  }

  .cta-box h2 {
    font-size: 29px;
  }

  .cta-actions {
    display: block;
  }

  .cta-actions .btn {
    margin-bottom: 17px;
  }

  .cta-phone {
    display: block;
  }

  .footer-bottom {
    display: block;
    line-height: 1.8;
  }

  .footer-bottom div {
    margin-top: 8px;
  }

  .mobile-call {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section .btn {
    width: 100%;
  }

  .mini-stat-grid {
    grid-template-columns: 1fr;
  }
}