/* home.css — Hero · USP · Trust Strip · CTA Banner */

/* ── Hero ── */
.hero {
  background: #111;
  /* fallback */
  padding: 50px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ── Hero Slider ── */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%); */
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(46, 196, 182, .16);
  color: var(--color-teal);
  padding: .36rem 1rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(46, 196, 182, .32);
  box-shadow: 0 0 24px rgba(46, 196, 182, .18);
  letter-spacing: .02em;
}

.hero-title {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  color: var(--bg);
  letter-spacing: -.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--color-teal) 0%, #7EEEE7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: white;
  font-size: 1.02rem;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  gap: .95rem;
  flex-wrap: wrap;
  margin-bottom: 1.9rem;
}

.hero-trust-badges {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 255, 252, .1);
}

.hero-trust-badges span {
  font-size: .78rem;
  color: white;
  display: flex;
  align-items: center;
  gap: .32rem;
}

.hero-trust-badges i {
  color: var(--color-teal)
}

/* ── Features Strip ── */
.features-strip {
  background: #1a2a40;
  /* Dark blue background matching screenshot */
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.fs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-item:last-child {
  border-right: none;
}

.fs-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #8ab4f8;
  /* Light blue icon color */
  flex-shrink: 0;
}

.fs-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .fs-item:nth-child(2) {
    border-right: none;
  }

  .fs-item:nth-child(1),
  .fs-item:nth-child(2) {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .features-strip-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fs-item {
    padding: 1.5rem 0;
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fs-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .fs-item:first-child {
    padding-top: 0;
  }

  .hero-slide img {
    object-position: right;
  }

  .hero-slider-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgb(0 0 0 / 59%) 50%, rgb(0 0 0 / 53%) 100%);
  }
}

/* ── USP Section ── */
.usp-section {
  background: var(--bg-alt)
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.usp-card {
  background: var(--grad-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  transition: all .25s ease;
  position: relative;
  border-left: 3px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--accent);
  border-color: var(--border);
}

.usp-card--highlight {
  border-left-color: var(--accent);
  background: linear-gradient(145deg, #E8F9F8, #D6F7F5);
  border-color: var(--border);
}

.usp-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(46, 196, 182, .2), rgba(46, 196, 182, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(46, 196, 182, .2);
}

.usp-card h3 {
  font-size: 1rem;
  margin-bottom: .48rem
}

.usp-card p {
  font-size: .855rem;
  color: var(--text-2);
  line-height: 1.67
}

.usp-highlight-badge {
  display: inline-block;
  margin-top: .85rem;
  background: var(--success-bg);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  padding: .24rem .75rem;
  border-radius: 99px;
  text-transform: uppercase;
  border: 1px solid rgba(46, 196, 182, .3);
  letter-spacing: .04em;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 1.75rem 0;
  overflow: hidden;
}

.trust-strip-label {
  text-align: center;
  font-size: .72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}

.trust-logos-ticker {
  overflow: hidden;
  position: relative
}

.trust-logos-ticker::before,
.trust-logos-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trust-logos-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.trust-logos-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.trust-logos-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.trust-logos-track:hover {
  animation-play-state: paused
}

.trust-logo-item {
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.trust-logo-item span {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-3);
  transition: var(--t);
}

.trust-logo-item:hover span {
  color: var(--accent)
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--grad-hero);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, .08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: 1.75rem;
  margin-bottom: .45rem;
  color: var(--bg);
  letter-spacing: -.015em;
}

.cta-banner-content p {
  color: rgba(253, 255, 252, .72);
  font-size: .935rem
}

.cta-banner-actions {
  display: flex;
  gap: .95rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Who We Are Strip ── */
.who-we-are-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}

.who-we-are-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  align-items: center;
  justify-content: center;
}

.wwa-item {
  font-size: .76rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: .32rem;
}

.wwa-item i {
  color: var(--accent);
  font-size: .7rem;
}

.wwa-item strong {
  color: var(--text);
  font-weight: 600;
}

.wwa-divider {
  color: var(--border);
  font-size: .9rem;
}

/* ── USP Payment Logos ── */
.usp-payment-logos {
  display: flex;
  gap: .55rem;
  align-items: center;
  margin-top: .65rem;
  flex-wrap: wrap;
}

.usp-payment-logos i {
  font-size: 1.55rem;
  color: var(--text-2);
}

.usp-ssl-note {
  font-size: .74rem !important;
  color: var(--text-3) !important;
  margin-top: .35rem !important;
  display: flex;
  align-items: center;
  gap: .28rem;
}

.usp-ssl-note i {
  color: var(--accent);
  font-size: .7rem;
}

/* ── USP DUNS note ── */
.usp-duns {
  font-size: .74rem !important;
  color: var(--text-3) !important;
  margin-top: .4rem !important;
  line-height: 1.55 !important;
}

/* ── Hero Payment Logos ── */
.hero-payment-logos {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: .8rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(253, 255, 252, .1);
}

.hero-payment-logos .pay-label {
  font-size: .72rem;
  color: white;
}

.hero-payment-logos i.fab {
  font-size: 1.45rem;
  color: rgba(253, 255, 252, .65);
}

.hero-payment-logos .ssl-note {
  font-size: .71rem;
  color: white;
  display: flex;
  align-items: center;
  gap: .22rem;
  margin-left: .2rem;
}

.hero-payment-logos .ssl-note i {
  font-size: .68rem;
  color: var(--color-teal);
}