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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Segoe UI",sans-serif;
  background:#f7f8fa;
  color:#1f2937;
  line-height:1.7;
}

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

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

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
}

.header-inner{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}


nav{
  display:flex;
  gap:28px;
}

nav a{
  color:#4b5563;
}

nav a:hover{
  color:#111827;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:12px;
  background:#2563eb;
  color:#fff;
  font-weight:600;
  transition:.2s;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

#hero{
  padding:100px 0;
  background:linear-gradient(135deg,#1e3a8a,#2563eb);
  color:white;
}

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

#hero h1{
  font-size:3.5rem;
  line-height:1.1;
  margin-bottom:24px;
}

#hero p{
  margin-bottom:18px;
  font-size:1.05rem;
}

#hero ul{
  list-style:none;
  margin:30px 0;
}

#hero li{
  margin-bottom:10px;
}

#hero img{
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

section{
  padding:90px 0;
}

h2{
  font-size:2.4rem;
  margin-bottom:32px;
  text-align:center;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.cards > div{
  background:white;
  padding:28px;
  border-radius:20px;
  border:1px solid #e5e7eb;
}

#services ul{
  margin:16px 0 40px 20px;
}

#services h3{
  margin-top:24px;
  margin-bottom:12px;
}

#cta{
  background:#1e40af;
  color:white;
  text-align:center;
}

#cta p{
  max-width:700px;
  margin:0 auto 24px;
}

#supplier{
  text-align:center;
}

#supplier p{
  max-width:700px;
  margin:0 auto 24px;
}

#contact{
  background:white;
}

#contact p{
  text-align:center;
  margin-bottom:16px;
}

footer{
  padding:40px 0;
  border-top:1px solid #e5e7eb;
  text-align:center;
  background:#f3f4f6;
}

footer p{
  margin-bottom:10px;
}

@media(max-width:900px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  #hero h1{
    font-size:2.6rem;
  }

  .header-inner{
    height:auto;
    padding:16px 0;
    flex-direction:column;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }
}

@media(max-width:600px){

  section{
    padding:70px 0;
  }

  h2{
    font-size:2rem;
  }

  .btn-primary{
    width:100%;
  }
}



.hero-benefits {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.hero-benefits li {
  margin-bottom: 14px;
  color: #d9e2ec;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero-note {
  margin-top: 24px;
}

.hero-note p {
  color: #bcccdc;
  font-size: 0.92rem;
  margin-bottom: 0;
}

#how-it-works {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(15,23,42,0.06);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}


#services {
  background: #f3f5f7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid #e5e7eb;
}

.service-card h3 {
  margin-bottom: 20px;
}

.service-status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card.active .service-status {
  background: #dcfce7;
  color: #166534;
}

.service-card.upcoming .service-status {
  background: #fef3c7;
  color: #92400e;
}

.service-card ul {
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 10px;
  color: #52606d;
}

.services-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#providers {
  background: #ffffff;
}

.providers-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.provider-benefits {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.provider-benefits li {
  margin-bottom: 14px;
}

.provider-highlight {
  display: flex;
  justify-content: center;
}

.highlight-card {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px;
}

.highlight-card h3 {
  margin-bottom: 20px;
}

.provider-stat {
  margin-top: 16px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}



.contact-item {
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  margin-bottom: 10px;
}

.contact-item a {
  color: #486581;
}

.line-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.line-contact img {
  width: 32px;
  height: 32px;    
}



.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9999;
  }

  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 56px;

    background: #2563eb;
    color: white;

    border-radius: 14px;

    font-weight: 600;

    box-shadow:
      0 10px 30px rgba(0,0,0,.15);
  }

}


.header-logo {
  height: 110px;
  width: auto;
}

.footer-logo {
  height: 24px;
  width: auto;
}



/* ========================================
   LEGAL PAGES
======================================== */

.legal-page {
  padding: 80px 0;
  background: #ffffff;
}

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  color: #102a43;
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.legal-updated {
  color: #64748b;
  margin-bottom: 0;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 10px;
  color: #52606d;
}

.legal-content a {
  color: #0f766e;
}

.legal-content a:hover {
  text-decoration: underline;
}



.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}






