/* =========================================================
   LENDRO - MAIN STYLESHEET
   ========================================================= */

:root {
  --lendro-indigo: #4f46e5;
  --lendro-indigo-dark: #3730a3;
  --lendro-indigo-deep: #312e81;
  --lendro-indigo-light: #eef2ff;
  --lendro-yellow: #f3c303;
  --lendro-purple: #6366f1;
  --lendro-dark: #111827;
  --lendro-text: #374151;
  --lendro-muted: #6b7280;
  --lendro-light: #f8fafc;
  --lendro-border: #e5e7eb;
  --white: #fff;
  --transition: all 0.3s ease;
}

/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--lendro-dark);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.section-padding {
  padding: 60px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lendro-indigo);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}
/*--lendro-indigo: #4f46e5;
  --lendro-indigo-dark: #3730a3;
  --lendro-indigo-deep: #312e81;*/
.round-badge {
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(55, 48, 163, 0.1);
  border: 1px solid rgba(55, 48, 163, 0.18);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 24px;
}

.section-title span {
  color: var(--lendro-indigo);
}

.section-description {
  color: var(--lendro-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.section-heading-center {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

/* =========================================================
   HERO WRAPPER
   ========================================================= */

.hero-wrapper {
  position: relative;
  background: linear-gradient(
    135deg,
    #3730a3 0%,
    #4f46e5 45%,
    #6366f1 100%
  );
  color: #fff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
}

.hero-glow-one {
  width: 550px;
  height: 550px;
  background: rgba(129, 140, 248, 0.35);
  top: -250px;
  right: -100px;
}

.hero-glow-two {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.09);
  bottom: -200px;
  left: -150px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.6) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.6) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    #000,
    transparent 90%
  );
}

.hero-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.hero-circle-one {
  width: 600px;
  height: 600px;
  right: -70px;
  top: 90px;
}

.hero-circle-two {
  width: 380px;
  height: 380px;
  right: 0px;
  top: 200px;
}

.hero-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.3;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.7) 1.5px,
    transparent 1.5px
  );
  background-size: 18px 18px;
}

.hero-dots-one {
  left: 5%;
  top: 25%;
}

.hero-dots-two {
  right: 5%;
  bottom: 20%;
  opacity: 0.18;
}

.hero-line {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 45%;
  transform: rotate(35deg);
}

.hero-line-one {
  right: -350px;
  top: 180px;
}

.hero-line-two {
  left: -420px;
  bottom: -300px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header .container {
  max-width: 1200px;
  padding: 0 18px;
}

.site-header .navbar {
  min-height: 72px;
  padding: 0 18px 0 24px;
  background: #fff;
  border-radius: 35px;
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.12);
}

.lendro-logo {
  color: var(--lendro-indigo) !important;
   font-family: Arial Black, Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -2px;
  -webkit-text-stroke: 0.3px currentColor;
}

.lendro-logo span {
  color: var(--lendro-yellow)!important;
}
.round-btn{
  border-radius: 25px !important;
}
.text-yellow {
  color: var(--lendro-yellow)!important;
}

.site-header .nav-link {
  position: relative;
  color: var(--lendro-text);
  font-size: 14px;
  font-weight: 500;
  padding: 26px 15px !important;
  transition: var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--lendro-indigo);
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 17px;
  height: 2px;
  border-radius: 10px;
  background: var(--lendro-indigo);
  transform: scaleX(0);
  transition: var(--transition);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.header-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  color: #fff;
  background: var(--lendro-indigo);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 7px 20px rgba(79, 70, 229, 0.2);
}

.header-download-btn:hover {
  color: #fff;
  background: var(--lendro-indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.28);
}

.header-download-btn i {
  font-size: 16px;
}

.site-header.header-scrolled {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.header-scrolled .navbar {
  background: #fff;
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.14);
}

.site-header.header-scrolled .lendro-logo {
  color: var(--lendro-indigo) !important;
}

.site-header.header-scrolled .lendro-logo span {
  color: var(--lendro-dark);
}

.site-header.header-scrolled .nav-link {
  color: var(--lendro-text);
}

.site-header.header-scrolled .nav-link:hover,
.site-header.header-scrolled .nav-link.active {
  color: var(--lendro-indigo);
}

.site-header.header-scrolled .nav-link::after {
  background: var(--lendro-indigo);
}

.site-header.header-scrolled .header-download-btn {
  color: #fff;
  background: var(--lendro-indigo);
}

.site-header.header-scrolled .header-download-btn:hover {
  color: #fff;
  background: var(--lendro-indigo-dark);
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 550px;
  padding: 130px 0 80px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-section > .container {
  position: relative;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-right: 25px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  margin-bottom: 24px;
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-content h1 {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -3.5px;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
  color: #c7d2fe;
}

.hero-description {
  max-width: 625px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.hero-primary-btn {
  color: var(--lendro-indigo-dark);
  background: #fff;
}

.hero-primary-btn:hover {
  color: var(--lendro-indigo-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-secondary-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item i {
  color: #c7d2fe;
}

.hero-trust-divider {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  isolation: isolate;
}

/* =========================================================
   ORIGINAL OPTIMIZED PHONE IMAGE
   IMPORTANT:
   - Uses original optimized image
   - Keeps natural aspect ratio
   - No fixed height
   - No transform scaling
   - Responsive width only
   ========================================================= */

.hero-phone-image {
  position: relative;
  z-index: 10;
  display: block;
  width: 250px;
  height: auto;
  max-width: none;
  object-fit: contain;
  animation: phoneFloat 5s ease-in-out infinite;
  filter: drop-shadow(
    0 35px 50px rgba(17, 24, 39, 0.35)
  );
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* =========================================================
   FLOATING SERVICE CARDS
   ========================================================= */

.service-float {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 112px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 35px rgba(17, 24, 39, 0.18),
    0 4px 10px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.service-float-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--lendro-indigo);
  background: var(--lendro-indigo-light);
  font-size: 15px;
}

.service-float small {
  display: block;
  margin-bottom: 2px;
  color: #9ca3af;
  font-size: 7px;
}

.service-float strong {
  display: block;
  color: #111827;
  font-size: 10px;
  font-weight: 800;
}

/* =========================================================
   FLOATING SERVICE POSITIONS
   ========================================================= */

.service-airtime {
  top: 45px;
  left: -30px;
  animation: floatAirtime 4.2s ease-in-out infinite;
}

.service-data {
  top: 160px;
  right: -45px;
  animation: floatData 4.8s ease-in-out infinite;
}

.service-electricity {
  top: 290px;
  left: -65px;
  animation: floatElectricity 5.2s ease-in-out infinite;
}

.service-cable {
  top: 420px;
  right: -55px;
  animation: floatCable 4.5s ease-in-out infinite;
}

.service-education {
  bottom: 50px;
  left: -25px;
  animation: floatEducation 5.5s ease-in-out infinite;
}

.service-empowerment {
  bottom: 5px;
  right: 15px;
  animation: floatEmpowerment 4.7s ease-in-out infinite;
}

.service-rewards {
  top: 75px;
  right: 70px;
  animation: floatRewards 5.8s ease-in-out infinite;
}

/* =========================================================
   FLOATING ANIMATIONS
   ========================================================= */

@keyframes floatAirtime {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }

  50% {
    transform: translate(5px, -15px) rotate(-1deg);
  }
}

@keyframes floatData {
  0%,
  100% {
    transform: translate(0, 0) rotate(4deg);
  }

  50% {
    transform: translate(-8px, 13px) rotate(1deg);
  }
}

@keyframes floatElectricity {
  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }

  50% {
    transform: translate(8px, -12px) rotate(0deg);
  }
}

@keyframes floatCable {
  0%,
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }

  50% {
    transform: translate(-7px, 15px) rotate(1deg);
  }
}

@keyframes floatEducation {
  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }

  50% {
    transform: translate(8px, -13px) rotate(-1deg);
  }
}

@keyframes floatEmpowerment {
  0%,
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }

  50% {
    transform: translate(-5px, 12px) rotate(1deg);
  }
}

@keyframes floatRewards {
  0%,
  100% {
    transform: translate(0, 0) rotate(4deg);
  }

  50% {
    transform: translate(-10px, -14px) rotate(-1deg);
  }
}

/* =========================================================
   HERO DECORATIVE RINGS
   ========================================================= */

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring-one {
  width: 480px;
  height: 480px;
}

.hero-ring-two {
  width: 630px;
  height: 630px;
}

.hero-bottom-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  z-index: 10;
}

.hero-bottom-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-bottom-curve path {
  fill: #fff;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-feature-card {
  padding: 42px;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    #f8faff,
    #eef2ff
  );
  border: 1px solid #e0e7ff;
}

.about-feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  border-radius: 15px;
  color: #fff;
  background: var(--lendro-indigo);
  font-size: 23px;
}

.about-feature-card h4 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-feature-card p {
  color: var(--lendro-muted);
  line-height: 1.8;
}

.about-feature-list {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid #dbe3ff;
}

.about-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--lendro-text);
  font-size: 13px;
}

.about-feature-list i {
  color: var(--lendro-indigo);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section,
.reseller-section {
  background: #f8fafc;
}

.service-card {
  height: 100%;
  padding: 32px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--lendro-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #c7d2fe;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.07);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 13px;
  color: var(--lendro-indigo);
  background: var(--lendro-indigo-light);
  font-size: 22px;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 11px;
}

.service-card p {
  color: var(--lendro-muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 14px;
}

/* =========================================================
   MISSION
   ========================================================= */

.mission-section {
  position: relative;  
  overflow: hidden;
}
.round-box {
  padding: 50px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(
    135deg,
    #3730a3,
    #4f46e5
  );
}
.round-box-pattern {
  position: absolute;
  width: 550px;
  height: 550px;
  right: -130px;
  top: -200px;
  border-radius: 50%;
  border: 100px solid rgba(255, 255, 255, 0.05);
}


.mission-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.mission-content .section-eyebrow {
  color: #c7d2fe;
}

.mission-content h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 800;
}

.mission-content h2 span {
  color: #c7d2fe;
}

.mission-content p {
  max-width: 760px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefit-card {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--lendro-border);
  border-radius: 17px;
  background: #fff;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #c7d2fe;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.benefit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  margin-bottom: 20px;
  border-radius: 10px;
  color: var(--lendro-indigo);
  background: var(--lendro-indigo-light);
  font-size: 11px;
  font-weight: 800;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.benefit-card p {
  margin: 0;
  color: var(--lendro-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  color: #fff;
  background: var(--lendro-indigo);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.primary-btn:hover {
  color: #fff;
  background: var(--lendro-indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.25);
}

/* =========================================================
   RESELLER
   ========================================================= */

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reseller-box {
  padding: 27px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--lendro-border);
}

.reseller-box i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 11px;
  color: var(--lendro-indigo);
  background: var(--lendro-indigo-light);
  font-size: 21px;
}

.reseller-box h4 {
  font-size: 16px;
  font-weight: 700;
}

.reseller-box p {
  margin: 0;
  color: var(--lendro-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
   NOT SECTION
   ========================================================= */

.not-section {
  padding: 60px 0;
  color: #fff;
  background: #111827;
}

.not-section .section-eyebrow {
  color: #a5b4fc;
}

.not-section h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.not-section h2 span {
  color: #a5b4fc;
}

.not-section p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.not-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.not-item:last-child {
  border-bottom: 0;
}

.not-item i {
  color: #a5b4fc;
  font-size: 19px;
}

.not-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* =========================================================
   ACCORDION
   ========================================================= */

.lendro-accordion .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--lendro-border);
  border-radius: 11px;
}

.lendro-accordion .accordion-button {
  padding: 21px 23px;
  color: var(--lendro-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.lendro-accordion .accordion-button:not(.collapsed) {
  color: var(--lendro-indigo);
  background: var(--lendro-indigo-light);
}

.lendro-accordion .accordion-button:focus {
  box-shadow: none;
}

.lendro-accordion .accordion-button::after {
  background-size: 15px;
}

.lendro-accordion .accordion-body {
  padding: 0 23px 23px;
  color: var(--lendro-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta-section {
  padding: 50px 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(
    135deg,
    #3730a3,
    #4f46e5
  );
}

.final-cta-decoration {
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -250px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.05);
}

.final-cta .section-eyebrow {
  color: #c7d2fe;
}

.final-cta h2 {
  max-width: 700px;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.final-cta h2 span {
  color: #c7d2fe;
}

.final-cta p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.final-primary-btn,
.final-secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.final-primary-btn {
  color: var(--lendro-indigo-dark);
  background: #fff;
}

.final-primary-btn:hover {
  color: var(--lendro-indigo-dark);
}

.final-secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.final-secondary-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  
  color: #fff;
  /*padding: 75px 0 0 0; background: rgba(11, 16, 32, 0.125);*/
}
.site-footer-box {
  max-width: 1200px;background: #0b1020; padding: 50px 50px 25px 50px; border-radius: 25px 25px 0 0;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
}

.footer-logo span {
  color: #818cf8;
}

.site-footer p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer h5 {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 11px;
}

.site-footer li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: var(--transition);
}

.site-footer li a:hover {
  color: #fff;
}

.footer-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  color: #fff;
  background: var(--lendro-indigo);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.footer-download-btn:hover {
  color: #fff;
  background: var(--lendro-indigo-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
}

/* =========================================================
   RESPONSIVE CONTAINERS
   ========================================================= */

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

/* =========================================================
   LARGE TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1199px) {
  .site-header .nav-link {
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 12px;
  }

  .site-header .nav-link::after {
    left: 9px;
    right: 9px;
  }

  .header-download-btn {
    padding: 0 14px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 5.5vw, 64px);
  }

  /* Image width only.
     Height remains automatic and proportional. */
  .hero-phone-image {
    width: 295px;
  }

  .service-float {
    transform: scale(0.9);
  }

  .service-airtime {
    left: -15px;
  }

  .service-data {
    right: -25px;
  }

  .service-electricity {
    left: -35px;
  }

  .service-cable {
    right: -35px;
  }

  .service-education {
    left: -10px;
  }

  .service-empowerment {
    right: 0;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 991px) {
  .site-header {
    top: 12px;
  }

  .site-header .container {
    padding: 0 12px;
  }

  .site-header .navbar {
    min-height: 68px;
    padding: 0 16px 0 20px;
    border-radius: 14px;
  }

  .lendro-logo {
    font-size: 27px;
  }

  .site-header .navbar-collapse {
    margin: 8px -16px 0;
    padding: 10px 20px 20px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.08);
  }

  .site-header .nav-link {
    padding: 12px 0 !important;
    color: var(--lendro-text);
  }

  .site-header .nav-link::after {
    display: none;
  }

  .header-download-btn {
    width: 100%;
    margin: 10px 0 4px;
  }

  .navbar-toggler {
    border: 0;
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }

  .site-header.header-scrolled {
    top: 10px;
  }

  .site-header.header-scrolled .navbar {
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
    margin-left: 0;
  }

  .hero-phone-image {
    width: 310px;
  }

  .service-airtime {
    left: 5%;
  }

  .service-data {
    right: 5%;
  }

  .service-electricity {
    left: 0;
  }

  .service-cable {
    right: 0;
  }

  .service-education {
    left: 8%;
  }

  .service-empowerment {
    right: 8%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .site-header .container {
    padding: 0 10px;
  }

  .site-header .navbar {
    padding: 0 14px 0 18px;
    border-radius: 13px;
  }

  .lendro-logo {
    font-size: 25px;
  }

  .site-header .navbar-collapse {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
    margin-bottom: 0;
    transform: none;
  }

  /* Width changes only.
     The browser automatically preserves
     the original image aspect ratio. */
  .hero-phone-image {
    width: 290px;
    height: auto;
    max-width: none;
  }

  .service-float {
    min-width: 100px;
    padding: 8px 9px;
  }

  .service-float-icon {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  .service-float strong {
    font-size: 9px;
  }

  .service-float small {
    font-size: 6px;
  }

  .service-airtime {
    top: 50px;
    left: 0;
  }

  .service-data {
    top: 145px;
    right: 0;
  }

  .service-electricity {
    top: 280px;
    left: -5px;
  }

  .service-cable {
    top: 395px;
    right: -5px;
  }

  .service-education {
    bottom: 45px;
    left: 10px;
  }

  .service-empowerment {
    bottom: 0;
    right: 5px;
  }

  .service-rewards {
    top: 70px;
    right: 50px;
  }

  .reseller-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 650px;
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: 0;
    transform: none;
  }

  /* Only width changes.
     No height reduction and no scale transform. */
  .hero-phone-image {
    width: 275px;
    height: auto;
    max-width: none;
  }
}