@charset "UTF-8";
/* CSS Document */

:root{
  --blue: #0b66a3;
  --accent: #1f8ad6;
  --text: #1f2b3a;
  --text-dark: #123957;
  --text-muted: #5b6f7f;
  --success: #28a745;
  --bg-top: #f7f9fb;
  --bg-bottom: #eef4f9;
  --card-shadow: 0 12px 30px rgba(20,40,60,.10);
  --card-shadow-soft: 0 8px 20px rgba(20,40,60,.08);
  --radius-sm: .45rem;
  --radius-md: .6rem;
  --radius-lg: 10px;
  --radius-xl: 14px;
}

/* Base */
body{
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

a{
  color: inherit;
}

/* Header */
.logo{
  max-width: 540px;
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

/* Hero label */
.hero-label-wrap{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  transform: translateY(-12px);
}

.hero-label{
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(20,40,60,.08);
}

/* Hero */
.hero{
  position: relative;
  padding: 5.5rem 0 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(31,138,214,.10) 0%, rgba(31,138,214,0) 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

.hero-art{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-art-bg{
  position: absolute;
  right: 10%;
  top: 95px;
  width: 52%;
  max-width: 920px;
  height: auto;
  opacity: .88;
  display: block;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247,249,251,.98) 0%,
    rgba(247,249,251,.94) 34%,
    rgba(247,249,251,.75) 56%,
    rgba(247,249,251,.22) 100%
  );
}

.hero .container{
  position: relative;
  z-index: 3;
}

.hero h1{
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.hero h2{
  margin-bottom: 1rem;
}

.hero p.lead{
  color: var(--text-muted);
}

/* Optional helper classes used by your HTML */
.hero-subtitle{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-subtitle span{
  color: var(--blue);
}

.hero-note{
  color: var(--text-muted);
  line-height: 1.55;
}

/* Form */
.track-form .form-control{
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.btn-track{
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.btn-track:hover,
.btn-track:focus{
  background: var(--blue);
  color: #fff;
}

/* Hero graphic */
.hero-graphic{
  position: relative;
  min-height: 340px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.container-box{
  position: absolute;
  right: -20px;
  bottom: -2em;
  transform: rotate(-1deg);
  z-index: 4;
}

.floating-container{
  width: 360px;
  height: auto;
  display: block;
  max-width: 100%;
  filter:
    drop-shadow(0 18px 35px rgba(20,40,60,.18))
    drop-shadow(0 6px 12px rgba(20,40,60,.10));
}

/* White card */
.solution-wrap{
  margin-top: 1%;
  position: relative;
  z-index: 10;
}

.solution-card{
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.solution-title{
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Feature pill */
.feature-pill{
  background: linear-gradient(180deg, #f1f7fb, #eef6ff);
  border-radius: var(--radius-md);
  padding: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-pill:hover{
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-soft);
}

.feature-pill i{
  color: rgba(33, 37, 41, 0.75);
  font-size: 1.2rem;
}

/* Feature pill as link */
.feature-pill-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-pill-link:hover,
.feature-pill-link:focus{
  text-decoration: none;
  color: inherit;
}

.feature-pill-link *{
  text-decoration: none;
}

.feature-pill-link .text-muted{
  color: var(--text-muted);
}

.feature-pill-link strong{
  color: var(--success);
}

/* Tool cards */
.card-btn{
  background: linear-gradient(180deg, var(--accent), var(--blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.card-btn i{
  font-size: 32px;
  margin: 10px 0;
}

.card-btn .btn{
  width: 100%;
  margin-top: auto;
  text-decoration: none;
}

/* Partners */
.partners{
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20,30,40,.06);
}

.partners-title{
  font-weight: 700;
  margin-bottom: 0;
}

.partners-title span{
  color: var(--blue);
  display: inline-block;
}

.partner-logos img{
  max-height: 36px;
}

/* Carrier links section */
.carrier-links-section{
  padding: 3.5rem 0 1rem;
}

.carrier-divider{
  width: 100%;
  height: 1px;
  background: rgba(20,30,40,.12);
  margin-bottom: 1.5rem;
}

.carrier-title{
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.carrier-grid{
  margin-bottom: 1rem;
}

.carrier-card{
  background: #fff;
  border: 1px solid rgba(20,30,40,.08);
  border-radius: 12px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(20,40,60,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.carrier-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20,40,60,.08);
  border-color: rgba(11,102,163,.18);
}

.carrier-card img{
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Footer */
footer{
  padding: 2rem 0 1rem;
  font-size: .9rem;
  color: var(--text-muted);
}

/* Tablet */
@media (max-width: 991.98px){
  .hero-art-bg{
    width: 62%;
    right: -70px;
    top: 120px;
    opacity: .78;
  }

  .solution-wrap{
    margin-top: -85px;
  }

  .card-btn{
    min-height: 180px;
  }
}

/* Mobile */
@media (max-width: 767.98px){

  /* Header */
  .logo{
    max-width: 260px;
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  /* Hide hero label on mobile */
  .hero-label-wrap{
    display: none;
  }

  /* Hero */
  .hero{
    padding: 1.5rem 0 1.5rem;
  }

  .hero h1{
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: .5rem;
  }

  .hero-subtitle{
    font-size: 1.2rem;
    line-height: 1.15;
    margin-bottom: .85rem;
  }

  .hero p.lead{
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 32rem;
  }

  .hero-note{
    font-size: .92rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .hero-art-bg{
    width: 92%;
    right: -130px;
    top: 125px;
    opacity: .22;
  }

  .hero::after{
    background: linear-gradient(
      180deg,
      rgba(247,249,251,.96) 0%,
      rgba(247,249,251,.92) 45%,
      rgba(247,249,251,.82) 100%
    );
  }

  /* Hero graphic */
  .hero-graphic{
    min-height: auto;
    justify-content: center;
    margin-top: 1rem;
  }

  .container-box{
    position: static;
    transform: none;
    margin-top: .75rem;
    text-align: center;
  }

  .floating-container{
    width: 320px;
    max-width: 95%;
  }

  /* Form */
  .track-form .form-control{
    border-radius: .45rem;
    min-height: 48px;
    font-size: 1rem;
  }

  .btn-track{
    border-radius: .45rem;
    min-height: 48px;
    font-size: 1rem;
  }

  /* White card */
  .solution-wrap{
    margin-top: 1rem;
  }

  .solution-card{
    padding: 1rem;
    border-radius: 12px;
  }

  .solution-title{
    font-size: 1rem;
    margin-bottom: .9rem;
  }

  /* Feature pills */
  .feature-pill{
    padding: .8rem;
    min-height: auto;
    align-items: center;
  }

  .feature-pill i{
    font-size: 1.1rem;
    flex: 0 0 auto;
  }

  .feature-pill small{
    font-size: .82rem;
    line-height: 1.3;
  }

  .feature-pill strong{
    font-size: .95rem;
    line-height: 1.25;
  }

  /* Tool cards */
  .card-btn{
    min-height: 138px;
    padding: 1rem .9rem;
    border-radius: 10px;
  }

  .card-btn .fw-bold{
    font-size: .98rem;
    line-height: 1.2;
  }

  .card-btn i{
    font-size: 28px;
    margin: 8px 0;
  }

  .card-btn .btn{
    font-size: .9rem;
    padding: .45rem .7rem;
  }

  /* Partners */
  .partners{
    margin-top: 1.25rem;
    padding-top: 1rem;
  }

  .partners-title{
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .partners-title span{
    display: inline;
  }

  /* Carrier section */
  .carrier-links-section{
    padding: 2rem 0 1rem;
  }

  .carrier-divider{
    margin-bottom: 1rem;
  }

  .carrier-title{
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .carrier-card{
    min-height: 84px;
    padding: .9rem;
    border-radius: 10px;
  }

  .carrier-card img{
    max-height: 34px;
  }

  /* Footer */
  footer{
    padding: 1.5rem 0 1rem;
    font-size: .9rem;
  }

  footer .col-md-4{
    text-align: center !important;
  }
}

/* Small mobile */
@media (max-width: 575.98px){
  .hero h1{
    font-size: 1.75rem;
  }

  .hero-subtitle{
    font-size: 1.08rem;
  }

  .hero-art-bg{
    width: 100%;
    right: -145px;
    top: 140px;
    opacity: .18;
  }

  .floating-container{
    width: 280px;
  }

  .card-btn{
    min-height: 128px;
  }

  .carrier-card{
    min-height: 78px;
  }

  .carrier-card img{
    max-height: 30px;
  }
}