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

:root {
  /* Brand palette (sampled from screenshot) */
  --teal: #029696;
  --teal-dark: #087096;
  --teal-deep: #0d4d6a;        /* darker teal section bg */
  --teal-section: #105f7e;     /* "How it works" deep teal-blue band */
  --mint: #95F7B1;
  --navy: #074267;
  --navy-deep: #374151;        /* footer & final CTA */

  --orange: #F6B046;
  --orange-hover: #ecaf2a;
	
  --purple: #CE7DFF;

  --bg-page: #ffffff;
	--bg-grey: #f9f9f9;
  --bg-soft-blue: #eef6fa;     /* products section pale blue */
  --bg-faq: #eaf3f7;
  --bg-cream: #fde6c8;         /* stats band start */
  --bg-cream-end: #fcefd2;     /* stats band end */

  --hero-bg-base: #f9f9f9;     /* very pale blue */
  --hero-glow-orange: rgba(245, 184, 52, 0.18);
  --hero-glow-blue: rgba(10, 139, 184, 0.14);

  --text: #333333;
  --text-muted: #333333;
  --text-light: #88a0ab;

  --border: #e3ecf0;
  --border-soft: #eef3f6;

  --green: #00b67a;
  --pill-green-bg: #e6f7f0;
  --pill-green-text: #0a8a5b;
	
	--gray-100: #F7F7F8;
	--white: #ffffff;

  /* Layout */
  --container: 1300px;
  --container-narrow: 900px;

  --radius-sm: 6px;
  --radius: 10px;
	--radius-md: 16px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13, 44, 61, 0.05), 0 1px 3px rgba(13, 44, 61, 0.04);
  --shadow: 0 8px 24px rgba(13, 44, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 44, 61, 0.12);
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1 {
  font-size: 60px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: var(--container-narrow); }

.light-section {
  background: #ffffff;
  padding: 80px 0 90px;
}

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
}
	
.eyebrow.light { color: #ffffff;}
.eyebrow.center { display: block; text-align: center;  padding-bottom: 15px;  }

.section-title {
  font-size: 48px;
  line-height: 1.18;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.01em;
}
.section-title.white { color: #ffffff; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 14px;
	padding-bottom: 20px;
  line-height: 1.6;
	max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.section-sub.light { color: #ffffff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 44, 61, 0.14);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(13, 44, 61, 0.12);
}
.btn .arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-sm { padding: 10px 18px 12px 18px; font-size: 16px; }
.btn-md { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; padding: 14px; }

.btn-teal { background: var(--mint); color: var(--navy); }
.btn-teal:hover { background: var(--mint); color: var(--navy); }


.btn-teal-outline {
  background: transparent;
  color: #ffffff;
  border-color: var(--mint);
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: #ffffff;
}

.btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}



.btn-orange { background: var(--orange); color: var(--navy); }
.btn-orange:hover { background: var(--orange); color: var(--navy); }



/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-nav {
  flex: 1;
}
.primary-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
	justify-content: center;
}
.primary-nav a {
  color: var(--navydeep);
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.primary-nav a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}
.caret { font-size: 20px; opacity: 0.7; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.dropdown a:hover { background: var(--bg-soft-blue); }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sign-in-link {
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}
.sign-in-link:hover { color: var(--teal); }

/* ---------- Hamburger button (visible at mobile only) ---------- */
.nav-toggle {
  display: none; /* hidden on desktop */
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  margin-left: auto;
}
.nav-toggle:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 6px rgba(13, 44, 61, 0.06);
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/* Animate to an X when the menu is open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ---------- Mobile breakpoint: nav becomes a dropdown panel ---------- */
@media (max-width: 980px) {

  .nav-toggle { display: inline-flex; }

  /* Let the menu wrap below the logo + hamburger row */
  .header-inner { flex-wrap: wrap; gap: 12px; }

  /* Hide the desktop nav and right-side actions by default */
  .primary-nav,
  .header-right { display: none; }

  /* When the hamburger is tapped, reveal them as full-width rows below */
  .site-header.is-open .primary-nav {
    display: block;
    flex: 1 0 100%;
    border-top: 1px solid var(--border-soft);
    margin: 12px -24px 0;
    padding: 0 24px;
  }
  .site-header.is-open .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-header.is-open .primary-nav li {
    border-bottom: 1px solid var(--border-soft);
    padding: 0;
    width: 100%;       /* force full-width rows */
    display: block;
  }
  .site-header.is-open .primary-nav li:last-child { border-bottom: none; }

  .site-header.is-open .primary-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
  }
  .site-header.is-open .primary-nav > ul > li > a:hover {
    transform: none;
    color: var(--teal);
  }
  .site-header.is-open .primary-nav .caret {
    color: var(--teal);
    font-size: 12px;
    transition: transform 0.2s ease;
  }

  /* Submenus (Our Services, Resources): collapsed; expand inline when parent .is-open */
  .site-header.is-open .has-dropdown:hover .dropdown {
    opacity: 0;
    visibility: hidden;       /* defeat desktop hover on touch devices */
  }
  .site-header.is-open .primary-nav .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 12px 16px;
    background: #f7fbfd;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0 -4px;
  }
  .site-header.is-open .has-dropdown.is-open > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .site-header.is-open .has-dropdown.is-open > a .caret {
    transform: rotate(180deg);
  }
  .site-header.is-open .primary-nav .dropdown a {
    display: block;
    padding: 12px 8px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border-soft);
  }
  .site-header.is-open .primary-nav .dropdown a:last-child { border-bottom: none; }
  .site-header.is-open .primary-nav .dropdown a:hover {
    color: var(--teal);
    transform: none;
  }

  /* Bottom action row: Sign In (outline) + Get Paid Now (filled) */
  .site-header.is-open .header-right {
    display: flex;
    flex: 1 0 100%;
    gap: 12px;
    padding: 16px 0 8px;
  }
  .site-header.is-open .header-right .sign-in-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 1;
    text-align: center;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    background: #ffffff;
    border-radius: var(--radius-pill);
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
  }
  .site-header.is-open .header-right .sign-in-link:hover {
    background: #f5fafc;
    transform: translateY(-1px);
  }
  .site-header.is-open .header-right .btn {
    flex: 1;
    padding: 12px 18px;
    font-size: 15px;
  }

}



/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
  background: var(--hero-bg-base);
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.hero-left {
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.hero-left-ca {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.hero-right {
  position: absolute;
  top: 10px;
  right: 32px;
  width: 500px;
  z-index: 2;
}

.pg-hero-right {
  position: absolute;
  top: 60px;
  right: 32px;
  width: 650px;
  z-index: 2;
}

 .hero-proof {
   
    margin-left: -285px;
	padding-top: 50px;
   
  }

 @media (max-width: 900px) {
	 
	 .hero-proof {
   
    margin-left: 0px;
		 padding-bottom: 30px;
   
  }
	 
}

 .review-proof {
   
    margin-left: -180px;
	 padding-bottom: 40px;
   
  }

 @media (max-width: 900px) {
	 
	 .hero-proof {
   
    margin-left: 0px;
		 padding-bottom: 30px;
   
  }
	 
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d3e4ec;
  color: var(--teal);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.eyebrow-pill .sparkle {
  color: var(--teal);
  font-size: 11px;
}

.hero-h1 {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-fineprint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Hero Card */
  .hero-visual {
    position: relative;
	  margin-top: 20px;
  
  }

  .hero-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 25px;
    box-shadow:
      0 1px 3px rgba(0,0,0,0.04),
      0 8px 40px rgba(0,0,0,0.06),
      0 30px 80px rgba(11,122,117,0.08);
    position: relative;
  }

  .hero-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6B7785;
    margin-top: 5px;
    font-weight: 500;
  }

  .hero-card-amount {
    
    font-size: 48px;
	  font-weight: 700;
    color: var(--navy);
    
  }

  .hero-card-amount span {
    color: var(--navy);
  }

  .hero-card-progress {
    margin-bottom: 15px;
  }

  .progress-bar-bg {
    height: 8px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;

  }

  .progress-bar-fill {
    height: 100%;
   background: #CE7DFF;
background: linear-gradient(90deg, rgba(206, 125, 255, 1) 0%, rgba(2, 150, 150, 1) 69%, rgba(149, 247, 177, 1) 100%);
    border-radius: 100px;
    width: 0%;
    animation: progressFill 2s ease 1s forwards;
  }

  @keyframes progressFill {
    to { width: 100%; }
  }

  .progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    
	  padding-bottom: 10px;
  }

  .hero-card-steps {
    display: flex;
    flex-direction: column;
     }

  .card-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
   
    border-radius: 14px;
    transition: all 0.3s ease;
  }

  .card-step:hover {
    background: var(--teal-light);
  }

  .card-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
	  background: #EEEEEE;
  }

  

  .card-step-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
  }

  .card-step-text small {
    display: block;
    font-weight: 400;
    color: #545454;
    font-size: 15px;
    margin-top: 2px;
  }

  /* Floating notification */
  .floating-notif {
    position: absolute;
    top: -20px;
    right: -30px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.6s ease 1.5s forwards;
    opacity: 0;
    transform: translateY(-10px);
    z-index: 5;
  }

  @keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .notif-icon {
    width: 42px;
    height: 42px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .notif-text { font-size: 13px; font-weight: 500; }
  .notif-text strong { display: block; color: #2E7D32; }
  .notif-text span { color: var(--gray-500); }


/*----- LOGO MARQUEE --- */

.marquee-container {
  
  overflow: hidden;
 
  margin-top: 90px;
  white-space: nowrap;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #F4F9FB, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #F4F9FB, transparent);
}

.marquee-content {
  display: inline-flex;
  animation: scroll 20s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.logo-item {
  margin: 0 20px;
}

.logo-item img {

  opacity: 0.7;
  transition: opacity 0.3s;
  cursor: pointer;
}

.logo-item img:hover {
  opacity: 1;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Feature rows ----- */
.advance-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.advance-features li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feat-tile {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e6f3f8;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.advance-features strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
}
.advance-features span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ----- Hero (centered, simpler than homepage) ----- */
.page-hero {
  position: relative;
  padding: 70px 0 70px;
  text-align: center;
  background: var(--teal);
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #029696;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-hero h1 {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 .accent { color: var(--teal); }
.page-hero .lead {
  font-size: 30px;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
	padding-bottom: 40px;
  line-height: 1.3;
}

.image-block
 {
    background-color: #f9f9f9;
    border-radius: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 420px;
    padding: 0;
    display: flex;
}

.image-block-dark
 {
    background-color: #f1f1f1;
    border-radius: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    padding: 0;
    display: flex;
}

.image-box
 {
    background-color: #f9f9f9;
    border-radius: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 420px;
	 max-width: 700px;
    padding: 0;
    display: flex;
	  overflow: hidden;
  position: relative;
}

.image-box img {
  position: absolute;
  max-width: 1500px;      /* larger than container */
  top: 0;
  left: 10px;       /* shift image left/right */
	display:block;

}

.page-hero-light {
  position: relative;
  padding: 70px 0 60px;
  text-align: center;
  background: #f9f9f9;
  overflow: hidden;
}
.page-hero-light .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #f9f9f9;
  pointer-events: none;
}
.page-hero-light .container { position: relative; }
.page-hero-light .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-hero-light h1 {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-light .lead {
  font-size: 23px;
   max-width: 800px;
  margin: 0 auto;
	padding-bottom: 40px;
  line-height: 1.3;
}

.page-hero-dark {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-dark .hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  pointer-events: none;
}
.page-hero-dark .container { position: relative; }
.page-hero-dark .eyebrow { margin-bottom: 18px; display: inline-block; color: var(--mint) }
.page-hero-dark h1 {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-dark .lead {
  font-size: 23px;
	color: #ffffff;
   max-width: 800px;
  margin: 0 auto;
	padding-bottom: 40px;
  line-height: 1.3;
}


/* ============ STATS BAND ============ */
.stats-band {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-end) 100%);
  padding: 38px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}



/* ============ HOW IT WORKS (deep teal band) ============ */
.how-it-works {
  background: var(--teal-section);
  padding: 80px 0 100px;
  color: #ffffff;
  text-align: center;
}
.how-it-works .eyebrow.light { display: block; margin-bottom: 14px; }
.how-it-works .section-sub.light { max-width: 640px; margin: 14px auto 0; }

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.hiw-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: left;
  color: var(--text);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.hiw-icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.hiw-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e6f3f8;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hiw-num {
  font-size: 22px;
  font-weight: 700;
  color: #b9cdd6;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}
.hiw-card h3 {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.hiw-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ── TWO PRODUCTS ── */
  .products-section {

  background: #f9f9f9;
  padding: 80px 0 90px;
  }

  .products-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .products-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .products-header h2 { margin-bottom: 12px; }

  .products-header p {
    font-size: 16px;
    color: var(--stone);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .prod-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: var(--radius-xl);
    padding: 52px 44px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  }

  .prod-card.featured {
    border-color: var(--purple);
    border-width: 2px;
  }

  .prod-featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--purple);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 100px;
  }

  .prod-icon {
    width: 56px;
    height: 56px;
	  background-color: #eeeeee;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
  }

  
  .prod-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .prod-desc {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .prod-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    
  }

  .prod-amount-note {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 15px;
  }

  .prod-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .prod-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
  }

  .prod-list li .check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
	  background: #eeeeee;
	  color: var(--navy);
  }

  

  .btn-prod {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
  }

  .prod-card.featured .btn-prod {
    background: var(--mint);
    color: var(--navy);
  }

  .prod-card.featured .btn-prod:hover {
    background-color: #81ea9f;
    box-shadow: 0 8px 24px rgba(26,92,76,0.25);
  }

.prod-card:not(.featured) .btn-prod {
    background-color: #F9FAFB;
    color: var(--navy);
    border: 1px solid var(--navy);
  }

  .prod-card:not(.featured) .btn-prod:hover {
    border-color: var(--navy);
    color: var(--navy);
  }

/*---------------ABOUT CARDS----------------*/

 .aboutus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .aboutus-card {
    background: #ffffff;
    border: 1px solid var(--teal);
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }


  
  .aboutus-name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .aboutus-desc {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
	  padding-top: 10px;
    padding-bottom: 15px;
  }

    .btn-aboutus {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
		background: var(--mint);
    color: var(--navy);
  }

 .btn-aboutus:hover {
    background-color: #81ea9f;
    box-shadow: 0 8px 24px rgba(26,92,76,0.25);
  }

/*---------------LEADERSSHIP----------------*/

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.leader-card {
  background: #ffffff;
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 18px 18px 22px;
  text-align: center;
  
}

.leader-photo {
  background:
    repeating-linear-gradient(
      135deg,
      #e6f2f7,
      #e6f2f7 10px,
      #ddedf3 10px,
      #ddedf3 20px
    );
  border-radius: 12px;

  margin-bottom: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 180px;
}
.leader-photo .placeholder-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 8px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.16em;
}
.leader-photo .person-icon {
  width: 28px;
  height: 28px;
  color: var(--text-light);
}
.leader-photo h5 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.leader-photo small {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  display: block;
}
.leader-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-card .leader-role {
  font-size: 13px;
  color: var(--text-muted);
}
.leadership-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
}

@media (max-width: 980px) {

  .leadership-grid { grid-template-columns: 1fr; max-width: 420px; }

}


/* ============ VALUE PROP ============ */
.value-section {
  background-color: #ffffff;
  padding: 80px 0 90px;
	max-width: 1050px;
	margin: 0 auto;
}
.value-section .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 50px 40px 50px 40px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13, 44, 61, 0.10);
  border-color: #d3e4ec;
}

.value-card h3 {
  font-size: 35px;
	line-height: 1.3;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
	margin-left: 0px;
}
.value-card > p {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.55;
  margin-bottom: 18px;
}


@media (max-width: 980px) {
  .value-grid { grid-template-columns: 1fr; gap: 30px; }
 }

/* ============ SUPPLIERS ============ */
.suppliers-section {
  background: #f9f9f9;
  padding: 70px 0;
}
.suppliers-section .eyebrow.center { margin-bottom: 32px; }
.supplier-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.supplier-row:last-child { margin-bottom: 0; }
.supplier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
}
.supplier strong {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.supplier strong small { font-weight: 500; font-size: 11px; }
.supplier span {
  font-size: 9px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PAYMENT GATEWAY PAGE
   ============================================================ */

/* ----- 2-col how-it-works (left text, right preview card) ----- */
.pg-how-section {
  background: #f9f9f9;
  padding: 80px 0 90px;
}
.about-section {
  background: #ffffff;
  padding: 80px 0 90px;
}
.pg-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.pg-how-left .eyebrow { display: block; margin-bottom: 14px; }
.pg-how-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pg-how-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pg-how-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.pg-how-bullets .check {
  color: var(--teal);
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 980px) {
  .pg-how-grid { grid-template-columns: 1fr; gap: 30px; }
 }

/* ============================================================
 BACK OFFICE
   ============================================================ */

.backoffice-section {
  background: #ffffff;
  padding: 80px 0 90px;
}

.backoffice-section .eyebrow { margin-bottom: 18px; align: center; }


.bo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
  }

  .bo-card {
    background-color: #fbfcfc;
    border-radius: 20px;
    padding: 25px 36px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--orange);
  }


  .bo-title {
    font-size: 16px;
    font-weight: 600;
	 text-transform: uppercase;
	  letter-spacing: 2.4px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .bo-desc {
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
  }

@media (max-width: 900px) {
.bo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 BACK OFFICE - HOW IT WORKS
   ============================================================ */

.bohiw-section {
  background: #f9f9f9;
  padding: 80px 0 80px;
}

.bohiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	padding-top: 20px;
	padding-bottom: 60px;
  }

  .bohiw-card {
    background: #ffffff;
    border: 1px solid var(--teal);
    border-radius: var(--radius-xl);
    padding: 40px 44px 20px 44px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  
  .bohiw-name {
    
    font-size: 35px;
	  line-height: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
	  max-width: 400px;
  }

  .bohiw-desc {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .bohiw-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .bohiw-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
  }

  .bohiw-list li .check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
	  background: #ddfce2;
	  color: #1A5C4C;
  }

@media (max-width: 900px) {
.bohiw-grid { grid-template-columns: 1fr; }
}

/* ============ NO RISK ============ */
.norisk-cta {
  background: var(--teal);
  padding: 80px 0 70px;
  text-align: center;
  color: #ffffff;
}

.norisk-cta.light {  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  color: #333333;}

.norisk-cta .eyebrow.center { margin-bottom: 14px; }
.norisk-cta .section-sub.light { max-width: 850px; }
.norisk-cta .section-title {max-width: 800px; padding-bottom: 10px;}
.norisk-cta a {color: #F6B046;}


/* ----- Payment Gateway promo (2-col) ----- */
.pg-promo-section {
  background: #ffffff;
  padding: 80px 0 90px;
}
.pg-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}
.pg-promo-left .eyebrow { margin-bottom: 14px; }
.pg-promo-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.pg-promo-left p {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 22px;
}

.pg-promo-card {
  background: #f9f9f9;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  border: 1px solid #E5E7EB;
  box-shadow: var(--shadow);
}
.pg-promo-card .eyebrow { display: block; margin-bottom: 10px; }
.pg-promo-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pg-promo-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 18px;
}
.pg-promo-card .pg-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 980px) {

  .pg-promo-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--bg-faq);
  padding: 80px 0 90px;
}

.faq-section .section-title { margin-bottom: 36px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item:hover {
  border-color: #c8dde6;
  box-shadow: 0 4px 12px rgba(13, 44, 61, 0.05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  font-size: 22px;
  font-weight: 500;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-body {
  padding: 0 22px 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.faq-foot a { font-weight: 500; }

/* ----- Broker FAQ wrapper ----- */
.broker-faq { background: #f9f9f9; padding: 80px 0 90px; }

.broker-faq .section-title { margin-bottom: 36px; max-width: 700px;}

/* ----- Agent FAQ wrapper ----- */
.agent-faq { background: #f9f9f9; padding: 80px 0 90px; }

.agent-faq .section-title { margin-bottom: 60px; max-width: 700px;}



/* ============================================================
   REVIEWS
   ============================================================ */



.reviews-section {
  background: #ffffff;
  padding: 80px 0 90px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.reviews-left .eyebrow { display: block; margin-bottom: 14px; }

.reviews-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom:40px;
	padding-right: 20px;
	
}

.reviews-right
 {
    
    border-left: 2px solid var(--teal);
    flex-flow: column;

    padding-left: 50px;
    display: flex;
}

.reviews-right p
 {
    
    font-size: 23px;

}

.quote-icon {
  width: 50px;
  height:50px;
  background: #e7fdeb; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
margin-bottom: 20px;
	
}

.quote-icon span {
  color: #CE7DFF; 
  font-size: 82px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(17px);

}


@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 30px; }
   
}

/* ----- Inline stats row (white bg) ----- */
.stats-inline {
background: #DFF0F5;
background: linear-gradient(180deg, rgba(223, 240, 245, 1) 0%, rgba(234, 245, 248, 1) 35%, rgba(255, 255, 255, 1) 100%);
  padding: 40px 0 40px;
}
.stats-inline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.stats-inline-row .stat-num {
  font-size: 48px;
  color: var(--teal);
  margin-bottom: 4px;
}
.stats-inline-row .stat-label {
  font-size: 15px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
.stats-inline-row { grid-template-columns: 1fr; gap: 30px;}
}

/* ============ BRANDS ============ */

.brands-section {
  background: #f9f9f9;
  padding: 80px 0 90px;
}

.brands-section h2 {
  max-width: 900px;
 
}

.brands-section-light {
  background: #ffffff;
  padding: 80px 0 90px;
}

.brands-section-light h2 {
  max-width: 900px;
 
}

  .logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .logo-item img{
   filter: grayscale(1);
	  opacity: 0.8;
  }

/* ============ STATS BAND ============ */
.stats-band {
 background: #DFF0F5;
background: linear-gradient(180deg, rgba(223, 240, 245, 1) 0%, rgba(234, 245, 248, 1) 35%, rgba(255, 255, 255, 1) 100%);
  padding: 38px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}


/* ----- Contact cards row ----- */
.contact-cards-section {
  background: #ffffff;
  padding: 50px 0 80px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  background: #ffffff;
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(13, 44, 61, 0.07);
  border-color: #c8dde6;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #e2fbe9;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-card h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 10px;
}
.contact-card a {
  font-size: 22px;
  font-weight: 600;
  color: var(--purple);
}

.contact-card a:hover {
 text-decoration: underline;
}

@media (max-width: 900px) {
.contact-cards { grid-template-columns: 1fr; }
}

/* ----- FAQ tabs section ----- */
.faq-tabs-section {
  background: var(--bg-soft-blue);
  padding: 70px 0 90px;
}
.faq-tabs-section .eyebrow.center { margin-bottom: 14px; }
.faq-tabs-section .section-title { margin-bottom: 24px; }

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
	padding-top: 25px;
	padding-bottom: 20px;
}
.faq-tab {
  background: #eaf3f7;
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.faq-tab.active {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: 0 2px 6px rgba(13, 44, 61, 0.04);
}
.faq-tab:hover:not(.active) {
  background: #ffffff;
  color: var(--navy);
}

.faq-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border: 1px solid var(--border-soft);
  max-width: 800px;
  margin: 0 auto 22px;
	display:none;
}

.faq-card.active {
  display: block;
}

.faq-card h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.faq-card .faq-list {
  gap: 0;
}
.faq-card .faq-item {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border-soft);
	padding-left: 5px;
}
.faq-card .faq-item:last-child { border-bottom: none; }
.faq-card .faq-item:hover {
  border-color: transparent;
  border-bottom-color: var(--border-soft);
  box-shadow: none;
  background: #f9fbfc;
}
.faq-card .faq-item summary {
  padding: 14px 0;
  font-size: 18px;
	font-weight: 500;
	color: #333333;
}
.faq-card .faq-item .faq-body {
  padding: 0 0 14px;
  font-size: 16px;
}

.faq-card .faq-toggle {
	padding-right:5px;
}




/* ----- Our Story section ----- */
.our-story {
  background: #ffffff;
  padding: 80px 0 60px 0;
  text-align: center;
}
.our-story .eyebrow.center { margin-bottom: 12px; }
.our-story .section-title { margin-bottom: 28px; }
.our-story-body {
max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ============ VIDEOS ============ */

.videos-secion {
  background: var(--teal);
  padding: 80px 0;
 
  color: #ffffff;
}
.videos-secion .eyebrow.center { margin-bottom: 14px; }
.videos-secion .section-sub.light { max-width: 600px; margin: 14px auto 32px; }

/* === Grid Container for the Cards === */
.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem; /* Optional: provides spacing from the viewport edges */
}

/* === General Card Styles === */
.it-card-container {
    --it-card-padding: 1.5rem;
    --it-card-border-radius: 12px;
    --it-card-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);

    background: #ffffff;
    border-radius: var(--it-card-border-radius);
    overflow: hidden;
    box-shadow: var(--it-card-shadow);
    transition: transform 0.2s ease-in-out;
}

.it-card-container:hover {
    transform: translateY(-5px);
}

.it-card-container a.it-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* === Card Image === */
.it-card-container .it-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* === Card Content === */
.it-card-container .it-card-content {
    padding: var(--it-card-padding);
}

.it-card-container .it-card-title {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
}

.it-card-container .it-card-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #4b5563; /* A muted gray */
}

/* === Optional "Read More" Button === */
.it-card-container .it-card-action {
    display: inline-block;
    background-color: #f3f4f6;
    color: #111827;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.it-card-container .it-card-action:hover {
    background-color: #e5e7eb;
}




/* === WHAT IS ECOMMISSION PROPS === */

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }

  .step-card {
    background-color: #fbfcfc;
    border-radius: 24px;
    padding: 25px 36px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--orange);
  }

  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

  .step-number {
    
    font-size: 34px;
    color: var(--teal);
	  padding-bottom: 10px;
    
  }
  .step-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
  }

  .step-desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
  }

@media (max-width: 900px) {
.steps-grid, .valprops-grid { grid-template-columns: 1fr; }
}

/* ============================================================
INFO SECTION
   ============================================================ */



.info-section {
  background: #ffffff;
  padding: 80px 0 90px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}


.info-left h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom:20px;
	padding-right: 20px;
	
}

.info-right
 {
    
    border-left: 2px solid var(--teal);
    flex-flow: column;

    height: 420px;
    padding-left: 50px;
    display: flex;
}

.info-right p
 {
    
    font-size: 23px;

}

@media (max-width: 980px) {
  .info-grid { grid-template-columns: 1fr; gap: 30px; }
   
}

  .checks { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 0px; margin-bottom: 40px; }
  .check { display: flex; align-items: center; gap: 9px; font-size: 16px; color: #16324A; font-weight: 600; }
  .check svg { flex: none; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.final-cta.light {  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  color: #333333;}

.final-cta .eyebrow.center { margin-bottom: 14px; }
.final-cta .section-sub.light { max-width: 580px; }
.final-cta .section-title {max-width: 700px;}
.final-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
	padding-top: 15px;
}
.or-call {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.or-call strong { color: #ffffff; }



/* ============================================================
   AUTH PAGES (Sign In / Sign Up)
   ============================================================ */

.auth-page {
  background: #f4f9fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ----- Teal auth header ----- */
.auth-header {
  background: var(--teal);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-header .logo,
.auth-header .logo .logo-rest,
.auth-header .logo .logo-r {
  color: #ffffff;
}
.auth-header .logo .logo-e {
  color: #ffffff;
  font-style: italic;
}
.auth-header .logo .logo-r { opacity: 0.7; }
.home-btn {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
}
.home-btn:hover {
  background: var(--orange);
  color: var(--navy);
}

/* ----- Auth body ----- */
.auth-main {
  flex: 1;
  padding: 60px 32px 80px;
  background: linear-gradient(180deg, #f4f9fb 0%, #eaf3f7 100%);
}
.auth-container {
  max-width: 1200px;
  margin: 0 auto;
}

.auth-intro {
  margin-bottom: 36px;
  max-width: 720px;
}

.auth-intro p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.55;
}

/* ----- 2-col grid: form + sidebar ----- */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ----- Form card ----- */
.auth-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 40px 32px;
  box-shadow: 0 4px 14px rgba(13, 44, 61, 0.05);
}
.auth-card-header {
  margin-bottom: 22px;
}
.auth-card-header strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.auth-card-header .sub {
  display: block;
  font-size: 16px;
  color: var(--text-muted);
}

/* ----- Step indicator (sign-up) ----- */
.auth-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.auth-step-info span:first-child {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.auth-step-info strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.step-pips-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.step-pips-wrap .step-of {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.step-pips {
  display: flex;
  gap: 6px;
  align-items: center;
}
.pip {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-soft);
}
.pip.active { background: var(--teal); }

/* ----- Form fields ----- */
.auth-card .form-group {
  margin-bottom: 18px;
}
.auth-card .form-group label,
.auth-card .form-group .group-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="tel"],
.auth-card input[type="password"],
.auth-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-card input:focus,
.auth-card select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 139, 184, 0.15);
}
.auth-card input::placeholder {
  color: var(--text-light);
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.forgot-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  font-style: italic;
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ----- Radio tiles (Agent / Managing Broker) ----- */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.radio-tile:hover { border-color: var(--teal); background: #f7fbfd; }
.radio-tile input { accent-color: var(--teal); }
.radio-tile span { font-size: 14px; color: var(--navy); font-weight: 500; }

/* ----- Checkbox rows ----- */
.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin: -8px 0 16px;
  cursor: pointer;
}
.checkbox-inline input { accent-color: var(--teal); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 18px;
  cursor: pointer;
}
.checkbox-row input { accent-color: var(--teal); margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: var(--teal); text-decoration: underline; font-style: italic; }

/* ----- Orange auth submit button ----- */
.btn-orange-block {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  width: 100%;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-orange-block:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 184, 52, 0.35);
}
.btn-orange-block:active { transform: translateY(0); }
.btn-orange-block .arrow { transition: transform 0.18s ease; }
.btn-orange-block:hover .arrow { transform: translateX(3px); }

/* ----- Helper text below button ----- */
.auth-help-link {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 14px;
}
.auth-help-link a {
  color: var(--teal);
  font-style: italic;
  text-decoration: underline;
}
.auth-disclaimer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}
.auth-already {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-top: 0;
}
.auth-already a { color: var(--teal); font-style: italic; text-decoration: underline; }

.auth-divider {
  border-top: 1px solid var(--border-soft);
  margin: 22px 0;
}

/* ----- "Need an account?" alert box ----- */
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef3d8;
  border: 1px solid #f9d895;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  margin-top: 6px;
  line-height: 1.5;
}
.auth-alert .clock-icon {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}
.auth-alert strong { color: var(--navy); font-weight: 700; }
.auth-alert a { color: var(--teal); text-decoration: underline; font-style: italic; }

/* ----- Sidebar ----- */
.auth-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Trustpilot testimonial pill */
.auth-side .testimonial-pill {
  background: linear-gradient(180deg, #fde6c8 0%, #fcefd2 100%);
  border: 1px solid #f5d9a8;
  border-radius: 12px;
  padding: 18px 22px;
}
.auth-side .testimonial-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}
.auth-side .green-squares {
  display: inline-flex;
  gap: 2px;
}
.auth-side .green-squares span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00b67a;
  border-radius: 1px;
}
.auth-side .testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 10px;
}
.auth-side .testimonial-attr {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Process / Team card */
.auth-side .process-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
}
.auth-side .process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.auth-side .process-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.auth-side .process-card strong { color: var(--navy); font-weight: 700; }
.auth-side .process-card .team-heading { margin-top: 4px; }
.team-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.team-action:hover { background: #f5fafc; transform: translateY(-1px); }
.team-action-yellow {
  border-color: var(--yellow);
  color: #b88500;
}
.team-action-yellow:hover { background: #fff8eb; }

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 12px;
}
.trust-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
}
.badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.15;
  text-align: center;
  flex-shrink: 0;
}
.badge-bbb { font-size: 8px; }
.badge-grade { font-size: 13px; color: var(--navy); font-weight: 700; margin-left: auto; }
.badge-shield {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex-shrink: 0;
}
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.badge-text strong {
  font-size: 9px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.badge-text span {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ----- Brand-blue footer band ----- */
.auth-footer-band {
  background: var(--teal);
  color: #ffffff;
  padding: 18px;
  text-align: center;
  font-size: 16px;
}
.auth-footer-band strong { font-weight: 700; }

/* ----- White bottom info strip ----- */
.auth-bottom {
  background: #ffffff;
  padding: 28px 32px;
  border-top: 1px solid var(--border-soft);
}
.auth-bottom-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-bottom-info p { margin: 0 0 4px; }
.auth-bottom-info p strong { color: var(--navy); font-weight: 700; }
.auth-bottom-info a { color: var(--teal); }
.auth-bottom-meta { text-align: right; }
.auth-bottom-meta p { margin: 0 0 4px; }
.auth-bottom-meta a { color: var(--teal); }

@media (max-width: 880px) {
  .auth-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .auth-intro h1 { font-size: 42px; }
  .auth-bottom-grid { grid-template-columns: 1fr; gap: 18px; }
  .auth-bottom-meta { text-align: left; }
}
@media (max-width: 540px) {
  .auth-card { padding: 26px 24px; }
  .auth-main { padding: 40px 20px 60px; }
}


/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p{
  color: #ffffff;
  }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-logo { color: #ffffff; font-size: 20px; margin-bottom: 16px; }
.footer-logo .logo-rest { color: #ffffff; }
.footer-logo .logo-r { color: rgba(255, 255, 255, 0.5); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 380px;
}
.footer-contact {
  font-size: 13px;
}
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--teal); }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 400;
}
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { padding: 50px 0 60px; }
  .hero-right {
    position: static;
    width: 100%;
    max-width: 440px;
    margin: 30px auto 0;
  }
	 .pg-hero-right {
    position: static;
    width: 100%;
    max-width: 440px;
    margin: 30px auto 0;
  }
  .hero-left { max-width: 100%; }
  .hero-h1 { font-size: 50px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
	.aboutus-grid { grid-template-columns: 1fr; }
  .supplier-row { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 20px; gap: 16px; }
  .hero { padding: 50px 0 70px; }
  .hero-h1 { font-size: 40px; }
  .section-title { font-size: 30px; }
  .stats-row { gap: 18px; }
  .stat-num { font-size: 28px; }
  .supplier-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

}