:root {
  --primary: #0b555a;
  --primary-dark: #083e42;
  --primary-light: #0d6b71;
  --secondary: #a0c928;
  --secondary-dark: #8ab320;
  --secondary-light: #b5de3d;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --gray-dark: #333;

  /* ── Typography System ── */
  --font-headline: "Inter", sans-serif;
  /* Headlines / H1–H4 */
  --font-body: "Outfit", sans-serif;
  /* Body / paragraphs */
  --font-subline: "Poppins", sans-serif;
  /* Sublines / labels / UI */
}

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

html {
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────
        BASE — body uses Outfit (body font)
        ───────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--dark);
  overflow-x: hidden;
  background: var(--light);
  font-weight: 400;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
        GLOBAL HEADING RULES — Inter (headline)
        ───────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.15;
}

/* ─────────────────────────────────────────
        GLOBAL PARAGRAPH / BODY COPY — Outfit
        ───────────────────────────────────────── */
p,
li,
td,
th,
span:not(.logo span):not(.hero-ussd-code):not(.counter-value) {
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────
    SUBLINE ELEMENTS — Poppins
    (tags, labels, badges, nav, buttons,
    captions, form labels, small UI text)
───────────────────────────────────────── */
.section-tag,
.hero-badge,
.hero-stat-label,
.hero-ussd-label,
.scroll-indicator span,
.event-card-category,
.event-type span,
.live-indicator,
.marquee-item,
.ticker-item,
.counter-label,
.testimonial-role,
.pricing-badge,
.download-badge span,
.contact-item-text span,
.footer-bottom p,
.footer-bottom-links a,
.store-btn-text span,
.ussd-box-text span,
label,
.nav-links a,
.footer-links a,
.footer h4,
.footer-newsletter p,
.footer-brand p {
  font-family: var(--font-subline);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

/* Preloader logo — Inter (headline) */
.preloader-logo {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 30px;
  animation: pulse 1.5s ease-in-out infinite;
  letter-spacing: -1px;
}

.preloader-logo span {
  color: var(--secondary);
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--secondary);
  border-radius: 2px;
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(300%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.2s ease;
  display: none;
}

@media (min-width: 1024px) {
  .cursor {
    display: block;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

/* ─────────────────────────────────────────
        NAVIGATION
        ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(11, 85, 90, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — Inter bold headline */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -0.6px;
}

.logo-domain {
  font-family: var(--font-subline);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--secondary-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-flex;
}

@media (max-width: 768px) {
  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text-main {
    font-size: 1.05rem;
  }

  .logo-domain {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }
}

/* Nav links — Poppins subline */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-subline);
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ─────────────────────────────────────────
        BUTTONS — Poppins (subline / UI)
        ───────────────────────────────────────── */
.btn {
  font-family: var(--font-subline);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(160, 201, 40, 0.4);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ─────────────────────────────────────────
        HERO SECTION
        ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?w=1920&q=80");
}

.hero-slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1459749411175-04bf5292ceea?w=1920&q=80");
}

.hero-slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920&q=80");
}

.hero-slide:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?w=1920&q=80");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 85, 90, 0.92) 0%,
    rgba(8, 62, 66, 0.85) 50%,
    rgba(11, 85, 90, 0.7) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* Hero badge — Poppins subline */
.hero-badge {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 201, 40, 0.15);
  border: 1px solid rgba(160, 201, 40, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge i {
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* H1 — Inter headline */
.hero h1 {
  font-family: var(--font-headline);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--light);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero h1 .typed-text {
  color: var(--secondary);
  border-right: 3px solid var(--secondary);
  padding-right: 5px;
  animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
  50% {
    border-color: transparent;
  }
}

/* Hero description — Outfit body */
.hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  line-height: 1.85;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease 0.9s both;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  animation: fadeInUp 1s ease 1.3s both;
}

.hero-stat {
  text-align: left;
}

/* Stat number — Inter headline */
.hero-stat-number {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -1px;
}

/* Stat label — Poppins subline */
.hero-stat-label {
  font-family: var(--font-subline);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-ussd {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  background: rgba(160, 201, 40, 0.15);
  border: 1px solid rgba(160, 201, 40, 0.3);
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  animation: fadeInUp 1s ease 1.5s both;
  backdrop-filter: blur(10px);
}

/* USSD label — Poppins subline */
.hero-ussd-label {
  font-family: var(--font-subline);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* USSD code — Inter headline */
.hero-ussd-code {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 3px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s ease 1.7s both;
}

/* Scroll label — Poppins subline */
.scroll-indicator span {
  font-family: var(--font-subline);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 2px solid rgba(160, 201, 40, 0.15);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation: rotate 20s linear infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 15%;
  animation: rotate 15s linear infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 25%;
  border-radius: 30%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────────────────
        MARQUEE — Poppins subline
        ───────────────────────────────────────── */
.marquee-section {
  background: var(--secondary);
  padding: 15px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-item i {
  font-size: 0.7rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────
        SECTION DEFAULTS
        ───────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

/* Section tag — Poppins subline */
.section-tag {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 85, 90, 0.08);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Section title — Inter headline */
.section-title {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.section-title span {
  color: var(--secondary-dark);
}

/* Section subtitle — Outfit body */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ─────────────────────────────────────────
        ABOUT SECTION
        ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.about-play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary);
  animation: ripple 2s ease-out infinite;
}

.about-play-btn i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-left: 5px;
  position: relative;
  z-index: 1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.about-content .section-tag {
  margin-bottom: 15px;
}

/* About h2 — Inter headline */
.about-content h2 {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.about-content h2 span {
  color: var(--secondary-dark);
}

/* About body copy — Outfit */
.about-content p {
  font-family: var(--font-body);
  color: #555;
  line-height: 1.85;
  margin-bottom: 25px;
  font-size: 1.05rem;
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  background: rgba(160, 201, 40, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-dark);
  flex-shrink: 0;
}

/* Feature label — Poppins subline */
.about-feature span {
  font-family: var(--font-subline);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-dark);
}

/* ─────────────────────────────────────────
        SERVICES
        ───────────────────────────────────────── */
.services-section {
  background: var(--gray);
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(11, 85, 90, 0.12);
}

.service-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Service card h3 — Inter headline */
.service-card h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Service card body — Outfit */
.service-card p {
  font-family: var(--font-body);
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Service number watermark — Inter */
.service-number {
  font-family: var(--font-headline);
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(11, 85, 90, 0.04);
}

/* ─────────────────────────────────────────
        EVENTS SECTION
        ───────────────────────────────────────── */
.events-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.events-section .section-title {
  color: white;
}

.events-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.events-section .section-tag {
  background: rgba(160, 201, 40, 0.15);
  color: var(--secondary);
}

.events-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.event-card:hover {
  transform: scale(1.03);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  transition: all 0.5s ease;
}

.event-card:hover .event-card-overlay {
  padding-bottom: 40px;
}

/* Category badge — Poppins subline */
.event-card-category {
  font-family: var(--font-subline);
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Event card h3 — Inter headline */
.event-card h3 {
  font-family: var(--font-headline);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Event card caption — Outfit body */
.event-card p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-top: 5px;
}

/* ─────────────────────────────────────────
        HOW IT WORKS
        ───────────────────────────────────────── */
.how-it-works {
  position: relative;
}

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

.steps-container::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Step number — Inter headline */
.step-number {
  font-family: var(--font-headline);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(11, 85, 90, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  transform: scale(1.1);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 85, 90, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Step h3 — Inter headline */
.step-card h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

/* Step body — Outfit */
.step-card p {
  font-family: var(--font-body);
  color: #777;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
        PARTNER SECTION
        ───────────────────────────────────────── */
.partner-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.partner-section .section-title {
  color: white;
}

.partner-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.partner-section .section-tag {
  background: rgba(160, 201, 40, 0.15);
  color: var(--secondary);
}

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

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.7s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.partner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-dark);
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-icon {
  transform: rotateY(180deg) scale(1.1);
}

/* Partner h3 — Inter headline */
.partner-card h3 {
  font-family: var(--font-headline);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Partner body — Outfit */
.partner-card p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.partner-card .btn {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────
        FEATURES — WHY CHOOSE US
        ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(11, 85, 90, 0.03), transparent);
  transition: height 0.5s ease;
}

.feature-card:hover::after {
  height: 100%;
}

.feature-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(160, 201, 40, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: white;
}

/* Feature h3 — Inter headline */
.feature-card h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

/* Feature body — Outfit */
.feature-card p {
  font-family: var(--font-body);
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
        PRICING
        ───────────────────────────────────────── */
.pricing-section {
  background: var(--gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: scale(1.05);
}

.pricing-card:not(.featured):hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Pricing badge — Poppins subline */
.pricing-badge {
  font-family: var(--font-subline);
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 5px 40px;
  font-size: 0.72rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing h3 — Inter headline */
.pricing-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pricing-card.featured h3 {
  color: white;
}

/* Pricing price — Inter headline */
.pricing-price {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin: 20px 0;
  letter-spacing: -2px;
}

.pricing-card.featured .pricing-price {
  color: var(--secondary);
}

/* Pricing price span — Outfit body */
.pricing-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0;
}

.pricing-card.featured .pricing-price span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

/* Pricing list — Outfit body */
.pricing-features li {
  font-family: var(--font-body);
  padding: 10px 0;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* ─────────────────────────────────────────
        TESTIMONIALS
        ───────────────────────────────────────── */
.testimonials-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .section-tag {
  background: rgba(160, 201, 40, 0.15);
  color: var(--secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Testimonial quote — Outfit body italic */
.testimonial-text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}

/* Testimonial name — Inter headline */
.testimonial-name {
  font-family: var(--font-headline);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Testimonial role — Poppins subline */
.testimonial-role {
  font-family: var(--font-subline);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ─────────────────────────────────────────
        DOWNLOAD APP
        ───────────────────────────────────────── */
.download-section {
  background: linear-gradient(135deg, #f8fdf0, #f0f9ff);
  overflow: hidden;
}

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

/* Download h2 — Inter headline */
.download-content h2 {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.download-content h2 span {
  color: var(--secondary-dark);
}

/* Download body — Outfit */
.download-content p {
  font-family: var(--font-body);
  color: #666;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 30px;
  font-weight: 400;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 25px;
  background: var(--primary-dark);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-btn i {
  font-size: 1.8rem;
}

/* Store btn small text — Poppins subline */
.store-btn-text span {
  font-family: var(--font-subline);
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Store btn name — Inter headline */
.store-btn-text strong {
  font-family: var(--font-headline);
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.ussd-box {
  background: white;
  border-radius: 15px;
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ussd-box-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

/* USSD label — Poppins subline */
.ussd-box-text span {
  font-family: var(--font-subline);
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* USSD code — Inter headline */
.ussd-box-text strong {
  font-family: var(--font-headline);
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 2px;
}

.download-image {
  position: relative;
  text-align: center;
}

.phone-mockup {
  max-width: 350px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
  animation: float 4s ease-in-out infinite;
}

.download-badge {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-badge-1 {
  top: 20%;
  left: -20px;
  animation: float 3s ease-in-out infinite;
}

.download-badge-2 {
  bottom: 25%;
  right: -20px;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.download-badge i {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

/* Badge label — Poppins subline */
.download-badge span {
  font-family: var(--font-subline);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.83rem;
}

/* ─────────────────────────────────────────
        CTA SECTION
        ───────────────────────────────────────── */
.cta-section {
  background: var(--secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* CTA h2 — Inter headline */
.cta-content h2 {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

/* CTA body — Outfit */
.cta-content p {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* CTA watermark — Inter */
.cta-bg-text {
  font-family: var(--font-headline);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(11, 85, 90, 0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -5px;
}

/* ─────────────────────────────────────────
        SIGN UP / CONTACT
───────────────────────────────────────── */
.signup-section {
  background: white;
  overflow: hidden;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Signup h2 — Inter headline */
.signup-info h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.signup-info h2 span {
  color: var(--secondary-dark);
}

/* Signup body — Outfit */
.signup-info p {
  font-family: var(--font-body);
  color: #666;
  line-height: 1.85;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 85, 90, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Contact label — Poppins subline */
.contact-item-text span {
  font-family: var(--font-subline);
  display: block;
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact value — Inter headline */
.contact-item-text strong {
  font-family: var(--font-headline);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.signup-form {
  background: var(--gray);
  padding: 40px;
  border-radius: 25px;
}

/* Form title — Inter headline */
.signup-form h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.form-group {
  margin-bottom: 20px;
}

/* Form labels — Poppins subline */
.form-group label {
  font-family: var(--font-subline);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form inputs — Outfit body */
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(160, 201, 40, 0.1);
}

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

.signup-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.signup-section,
.signup-section * {
  box-sizing: border-box;
}

.signup-grid,
.signup-info,
.signup-form,
.signup-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Stop long emails / numbers from pushing content outside screen */
.contact-item {
  min-width: 0;
}

.contact-item-text {
  min-width: 0;
  max-width: 100%;
}

.contact-item-text strong,
.contact-item-text span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Social icons should wrap instead of overflowing */
.signup-section .social-links {
  flex-wrap: wrap;
}

/* Fix form fields on very small screens */
.signup-form input,
.signup-form select,
.signup-form textarea {
  max-width: 100%;
  min-width: 0;
}

/* ─────────────────────────────────────────
        FOOTER
 ───────────────────────────────────────── */
.footer {
  background: #061f21;
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer brand body — Outfit */
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Footer headings — Inter headline */
.footer h4 {
  font-family: var(--font-headline);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: -0.3px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

/* Footer links — Poppins subline */
.footer-links a {
  font-family: var(--font-subline);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

/* Newsletter body — Outfit */
.footer-newsletter p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

/* Newsletter input — Outfit */
.newsletter-form input {
  font-family: var(--font-body);
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Newsletter button — Poppins subline */
.newsletter-form button {
  font-family: var(--font-subline);
  padding: 12px 20px;
  background: var(--secondary);
  border: none;
  border-radius: 10px;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-light);
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Footer bottom text — Poppins subline */
.footer-bottom p {
  font-family: var(--font-subline);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Footer bottom links — Poppins subline */
.footer-bottom-links a {
  font-family: var(--font-subline);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ─────────────────────────────────────────
        BACK TO TOP
        ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(11, 85, 90, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────
        REVEAL ANIMATIONS
        ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────
        LIVE INDICATOR — Poppins subline
        ───────────────────────────────────────── */
.live-indicator {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff0000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

/* ─────────────────────────────────────────
        COUNTER SECTION
        ───────────────────────────────────────── */
.counter-section {
  background: var(--primary);
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:last-child {
  border-right: none;
}

/* Counter value — Inter headline */
.counter-value {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -2px;
}

/* Counter label — Poppins subline */
.counter-label {
  font-family: var(--font-subline);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────
        EVENTS EXTENDED GRID
        ───────────────────────────────────────── */
.events-extended {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.event-type {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.event-type:hover {
  background: rgba(160, 201, 40, 0.1);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.event-type i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

/* Event type label — Poppins subline */
.event-type span {
  font-family: var(--font-subline);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─────────────────────────────────────────
        MOBILE MENU
        ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 85, 90, 0.98);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: 20px;
}

/* Mobile nav links — Inter headline */
.mobile-menu-links a {
  font-family: var(--font-headline);
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
  letter-spacing: -0.5px;
}

.mobile-menu-links a:hover {
  color: var(--secondary);
}

/* ─────────────────────────────────────────
        MODAL
        ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 25px;
  padding: 50px;
  max-width: 550px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #666;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #ff4444;
  color: white;
}

/* Modal h2 — Inter headline */
.modal h2 {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

/* Modal body — Outfit */
.modal p {
  font-family: var(--font-body);
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
        TICKER — Poppins subline
        ───────────────────────────────────────── */
.ticker-section {
  background: var(--primary-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(160, 201, 40, 0.1);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
}

.ticker-item .live-indicator {
  font-size: 0.6rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────
        GLOWING / GRADIENT UTILITIES
        ───────────────────────────────────────── */
.glow {
  box-shadow: 0 0 20px rgba(160, 201, 40, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
        VIDEO MODAL
        ───────────────────────────────────────── */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

/* ─────────────────────────────────────────
        SIGNUP MODAL — Role Selector
        ───────────────────────────────────────── */
.signup-modal {
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}

.signup-modal::-webkit-scrollbar {
  width: 5px;
}

.signup-modal::-webkit-scrollbar-track {
  background: transparent;
}

.signup-modal::-webkit-scrollbar-thumb {
  background: rgba(11, 85, 90, 0.15);
  border-radius: 3px;
}

.signup-modal h2 {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

/* Role Grid */
.role-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  background: white;
}

.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 201, 40, 0.04),
    transparent
  );
  transition: left 0.5s ease;
}

.role-card:hover::before {
  left: 100%;
}

.role-card:hover {
  border-color: var(--secondary);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(11, 85, 90, 0.08);
}

.role-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.role-card:hover .role-card-icon {
  transform: scale(1.1);
}

.role-card-content {
  flex: 1;
}

.role-card-content h4 {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.role-card-content p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #999;
  line-height: 1.4;
  margin: 0;
}

.role-card-arrow {
  color: #ddd;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.role-card:hover .role-card-arrow {
  color: var(--secondary);
  transform: translateX(4px);
}

/* Back Button */
.signup-back-btn {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.signup-back-btn:hover {
  background: rgba(11, 85, 90, 0.06);
  color: var(--primary-dark);
}

/* Partner Contact Grid */
.partner-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.partner-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s ease;
  background: white;
}

.partner-contact-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.partner-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.partner-contact-card:hover .partner-contact-icon {
  transform: scale(1.1);
}

.phone-icon {
  background: rgba(11, 85, 90, 0.08);
  color: var(--primary);
}

.email-icon {
  background: rgba(160, 201, 40, 0.1);
  color: var(--secondary-dark);
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.03);
}

.partner-contact-info {
  flex: 1;
  min-width: 0;
}

.partner-contact-info span {
  font-family: var(--font-subline);
  display: block;
  font-size: 0.68rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.partner-contact-info strong {
  font-family: var(--font-headline);
  display: block;
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Signup Modal Form Groups inherit from main form styles */
.signup-modal .form-group {
  margin-bottom: 16px;
}

.signup-modal .form-group label {
  font-size: 0.78rem;
}

.signup-modal .form-group input,
.signup-modal .form-group select {
  padding: 12px 16px;
  font-size: 0.9rem;
}

/* ─────────────────────────────────────────
        LEGAL MODAL — Full Screen
        ───────────────────────────────────────── */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fafbfc;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  overflow: hidden;
}

.legal-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.legal-modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Legal Header / Topbar */
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: white;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.legal-modal-header-left .logo-text-main {
  color: var(--primary-dark);
}

.legal-modal-header-left .logo-img {
  width: 36px;
  height: 36px;
}

.legal-modal-header-left .logo-text-main {
  font-size: 1.1rem;
}

.legal-modal-header-left .logo-domain {
  font-size: 0.6rem;
  color: var(--secondary-dark);
}

/* Tabs */
.legal-modal-tabs {
  display: flex;
  gap: 4px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 12px;
}

.legal-tab {
  font-family: var(--font-subline);
  padding: 10px 22px;
  border: none;
  background: transparent;
  color: #888;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.legal-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(11, 85, 90, 0.2);
}

.legal-tab:not(.active):hover {
  background: rgba(11, 85, 90, 0.06);
  color: var(--primary);
}

/* Close Button */
.legal-modal-close {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #eee;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #888;
  font-family: var(--font-subline);
  font-size: 0.82rem;
  font-weight: 600;
}

.legal-modal-close i {
  font-size: 1rem;
}

.legal-modal-close span {
  font-size: 0.7rem;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 5px;
  color: #aaa;
}

.legal-modal-close:hover {
  background: #ff4444;
  color: white;
  border-color: #ff4444;
}

.legal-modal-close:hover span {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Body / Scroll Area */
.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scroll-behavior: smooth;
}

.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(11, 85, 90, 0.12);
  border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(11, 85, 90, 0.25);
}

/* Legal Hero */
.legal-hero {
  text-align: center;
  padding: 60px 40px 40px;
  background: linear-gradient(
    180deg,
    rgba(11, 85, 90, 0.03) 0%,
    transparent 100%
  );
}

.legal-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--secondary);
  box-shadow: 0 15px 40px rgba(11, 85, 90, 0.2);
  animation: float 4s ease-in-out infinite;
}

.legal-hero h1 {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}

.legal-last-updated {
  font-family: var(--font-subline);
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 20px;
}

.legal-hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-hero-tag {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 85, 90, 0.06);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}

/* Table of Contents */
.legal-toc {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.legal-toc-title {
  font-family: var(--font-subline);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bbb;
  margin-bottom: 15px;
  padding-left: 5px;
}

.legal-toc-list {
  background: white;
  border-radius: 16px;
  padding: 8px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.legal-toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.legal-toc-item:hover {
  background: rgba(11, 85, 90, 0.04);
}

.legal-toc-number {
  font-family: var(--font-headline);
  width: 30px;
  height: 30px;
  background: rgba(160, 201, 40, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary-dark);
  flex-shrink: 0;
}

.legal-toc-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.legal-toc-item:hover .legal-toc-number {
  background: var(--secondary);
  color: white;
}

/* Legal Content Sections */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.legal-section-number {
  font-family: var(--font-headline);
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
}

.legal-section-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.legal-section-body {
  font-family: var(--font-body);
  color: #555;
  font-size: 0.95rem;
  line-height: 1.9;
}

.legal-section-body p {
  margin-bottom: 15px;
}

.legal-section-body ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section-body ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.legal-section-body strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.legal-highlight-box {
  background: rgba(160, 201, 40, 0.06);
  border-left: 4px solid var(--secondary);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--primary-dark);
}

.legal-highlight-box i {
  color: var(--secondary-dark);
  margin-right: 8px;
}

/* Contact Box */
.legal-contact-box {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.legal-contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(11, 85, 90, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.legal-contact-text {
  flex: 1;
}

.legal-contact-text h4 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.legal-contact-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #999;
  margin: 0;
  line-height: 1.5;
}

.legal-contact-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Legal Footer */
.legal-footer {
  text-align: center;
  padding: 30px 40px;
  border-top: 1px solid #eee;
  max-width: 800px;
  margin: 0 auto;
}

.legal-footer p {
  font-family: var(--font-subline);
  font-size: 0.78rem;
  color: #ccc;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────
   PROFESSIONAL SERVICES — Auto-Scroll
───────────────────────────────────────── */
.pro-services-section {
  background: linear-gradient(180deg, var(--gray) 0%, #ffffff 100%);
  padding-bottom: 80px;
  overflow: hidden;
}

.pro-services-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.pro-services-track {
  display: flex;
  gap: 25px;
  animation: proScroll 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.pro-services-track:hover {
  animation-play-state: paused;
}

@keyframes proScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual Card */
.pro-card {
  width: 310px;
  min-width: 310px;
  background: var(--primary);
  border-radius: 18px;
  padding: 30px 25px 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(160, 201, 40, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex-shrink: 0;
}

/* Glow effect on hover */
.pro-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(160, 201, 40, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pro-card:hover .pro-card-glow {
  opacity: 1;
}

.pro-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  background: var(--primary-dark);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(160, 201, 40, 0.2);
}

/* Card Number — watermark */
.pro-card-number {
  font-family: var(--font-headline);
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: color 0.5s ease;
  pointer-events: none;
}

.pro-card:hover .pro-card-number {
  color: rgba(160, 201, 40, 0.1);
}

/* Card Icon */
.pro-card-icon {
  width: 55px;
  height: 55px;
  background: rgba(160, 201, 40, 0.12);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: var(--secondary);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.pro-card:hover .pro-card-icon {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(160, 201, 40, 0.3);
}

/* Card Title */
.pro-card h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.pro-card:hover h3 {
  color: var(--secondary);
}

/* Card Body */
.pro-card p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Tags */
.pro-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pro-card-tags span {
  font-family: var(--font-subline);
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(160, 201, 40, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(160, 201, 40, 0.12);
  transition: all 0.3s ease;
}

.pro-card:hover .pro-card-tags span {
  background: rgba(160, 201, 40, 0.15);
  border-color: rgba(160, 201, 40, 0.25);
  color: var(--secondary-light);
}

/* Top accent line */
.pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pro-card:hover::before {
  transform: scaleX(1);
}

/* Bottom shine line */
.pro-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  );
  transition: left 0.8s ease;
}

.pro-card:hover::after {
  left: 100%;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .pro-card {
    width: 265px;
    min-width: 265px;
    padding: 24px 20px 20px;
  }

  .pro-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-radius: 14px;
  }

  .pro-card h3 {
    font-size: 1rem;
  }

  .pro-card p {
    font-size: 0.82rem;
  }

  .pro-card-number {
    font-size: 2.8rem;
  }

  .pro-services-track {
    gap: 18px;
    animation-duration: 45s;
  }
  .download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .download-section {
    padding: 50px 0;
    overflow: hidden;
  }

  .download-section .section-container {
    padding: 0 16px;
    overflow: hidden;
  }

  .download-grid {
    gap: 30px;
  }

  .download-content h2 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }

  .download-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .store-btn {
    padding: 12px 20px;
    gap: 10px;
    width: 100%;
  }

  .store-btn i {
    font-size: 1.5rem;
  }

  .store-btn-text span {
    font-size: 0.62rem;
  }

  .store-btn-text strong {
    font-size: 0.9rem;
  }

  .ussd-box {
    width: 100%;
    padding: 15px 20px;
    gap: 15px;
  }

  .ussd-box-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .ussd-box-text span {
    font-size: 0.7rem;
  }

  .ussd-box-text strong {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }

  .download-image {
    order: -1;
    padding: 0 10px;
    overflow: hidden;
  }

  .phone-mockup {
    max-width: 220px;
    border-radius: 20px !important;
  }

  .download-badge {
    padding: 10px 14px;
    border-radius: 10px;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .download-badge-1 {
    top: 10%;
    left: 0px;
  }

  .download-badge-2 {
    bottom: 15%;
    right: 0px;
  }

  .download-badge i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.85rem;
  }

  .download-badge span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .pro-card {
    width: 245px;
    min-width: 245px;
    padding: 22px 16px 18px;
  }

  .pro-services-track {
    gap: 14px;
    animation-duration: 40s;
  }
}

/* Responsive  =================================================================================================*/
@media (max-width: 992px) {
  .legal-modal-header {
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .legal-modal-tabs {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .legal-tab {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 40px 20px 30px;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .legal-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .legal-toc,
  .legal-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-contact-box {
    flex-direction: column;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .legal-contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .legal-contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .legal-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-modal-close span {
    display: none;
  }

  .legal-footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .legal-modal-tabs {
    overflow-x: auto;
  }

  .legal-tab {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .legal-hero h1 {
    font-size: 1.6rem;
  }

  .legal-section-title {
    font-size: 1.1rem;
  }
  .download-content h2 {
    font-size: 1.55rem;
  }

  .download-content p {
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .store-btn {
    padding: 11px 16px;
  }

  .store-btn i {
    font-size: 1.3rem;
  }

  .store-btn-text strong {
    font-size: 0.85rem;
  }

  .ussd-box {
    padding: 12px 16px;
    gap: 12px;
  }

  .ussd-box-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .ussd-box-text strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .phone-mockup {
    max-width: 180px;
    border-radius: 16px !important;
  }

  .download-badge {
    padding: 8px 10px;
    border-radius: 8px;
    gap: 6px;
  }

  .download-badge-1 {
    top: 5%;
    left: -5px;
  }

  .download-badge-2 {
    bottom: 10%;
    right: -5px;
  }

  .download-badge i {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .download-badge span {
    font-size: 0.62rem;
  }

  .download-section .section-tag {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
}

@media (max-width: 360px) {
  .download-content h2 {
    font-size: 1.35rem;
  }

  .download-content p {
    font-size: 0.78rem;
  }

  .store-btn {
    padding: 10px 14px;
  }

  .store-btn i {
    font-size: 1.2rem;
  }

  .store-btn-text strong {
    font-size: 0.8rem;
  }

  .phone-mockup {
    max-width: 160px;
  }

  .ussd-box-text strong {
    font-size: 1rem;
  }

  .download-badge span {
    font-size: 0.58rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .signup-modal {
    padding: 25px;
    max-width: 95%;
    max-height: 92vh;
  }

  .signup-modal h2 {
    font-size: 1.4rem;
  }

  .partner-contact-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    padding: 14px 16px;
  }

  .role-card-content h4 {
    font-size: 0.88rem;
  }

  .role-card-icon {
    width: 42px;
    height: 42px;
  }

  .signup-modal .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .signup-modal {
    padding: 20px;
  }

  .role-card-content p {
    display: none;
  }
}

/* ─────────────────────────────────────────
    RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-extended {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  .hero-content {
    padding: 0 25px;
  }
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container::before {
    display: none;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .download-image {
    order: -1;
  }
  .phone-mockup {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  /* ── HERO MOBILE FIX ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    padding-top: 0;
  }

  .hero-content {
    padding: 0 20px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-badge {
    display: none !important;
  }

  .hero h1,
  .hero h1.cj-text {
    font-size: 2rem;
    letter-spacing: -0.8px;
    line-height: 1.12;
    margin-bottom: 15px;
    padding-top: 0 !important;
  }

  .hero-description {
    display: block !important;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 25px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.75);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 30px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.92rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    margin-bottom: 20px;
  }

  .hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 10px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .hero-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.3px;
    margin-top: 3px;
  }

  .hero-ussd {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    width: 100%;
  }

  .hero-ussd-label {
    font-size: 0.65rem;
    margin-bottom: 0;
  }

  .hero-ussd-code {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .scroll-indicator {
    display: none;
  }

  .floating-shapes {
    display: none;
  }

  /* ── OTHER SECTIONS ── */
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .events-carousel {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .counter-item {
    border-right: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .download-buttons {
    flex-direction: column;
  }
  .events-extended {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 90px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-ussd {
    display: none;
  }
  .counter-value {
    font-size: 1.8rem;
  }

  .hero h1,
  .hero h1.cj-text {
    font-size: 1.65rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 25px;
  }

  .hero-actions .btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 10px 12px;
  }

  .hero-stat {
    padding: 12px 8px;
    border-radius: 10px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
  }

  .hero-ussd {
    padding: 10px 16px;
    gap: 10px;
  }

  .hero-ussd-label {
    font-size: 0.6rem;
  }

  .hero-ussd-code {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
  }

  .events-extended {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .hero h1.cj-text {
    font-size: 1.45rem;
  }

  .hero-description {
    font-size: 0.78rem;
  }

  .hero-stat-number {
    font-size: 1.35rem;
  }

  .hero-stat-label {
    font-size: 0.58rem;
  }

  .hero-actions .btn {
    padding: 11px 14px;
    font-size: 0.82rem;
  }
}

@media (max-height: 700px) and (max-width: 768px) {
  .hero-content {
    padding-top: 80px;
  }

  .hero h1,
  .hero h1.cj-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .signup-section .reveal-left,
  .signup-section .reveal-right {
    transform: translateY(40px);
  }

  .signup-section .reveal-left.active,
  .signup-section .reveal-right.active {
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .signup-form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .signup-section {
    padding: 60px 0;
  }

  .signup-section .section-container {
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .signup-info h2 {
    font-size: 1.9rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .signup-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .contact-item-text span {
    font-size: 0.68rem;
    letter-spacing: 0.4px;
  }

  .contact-item-text strong {
    font-size: 0.88rem;
    line-height: 1.35;
    display: block;
  }

  /* Override the inline office grid to become 1 column on mobile */
  .signup-info > div[style*="display: grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .signup-info
    > div[style*="display: grid"][style*="grid-template-columns"]
    > div {
    max-width: 100% !important;
    padding: 13px 14px !important;
  }

  /* Social icons */
  .signup-section .social-links {
    gap: 10px;
    margin-top: 25px;
  }

  .signup-section .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  /* Form card */
  .signup-form {
    padding: 25px;
    border-radius: 20px;
  }

  .signup-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 0.72rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .signup-form .btn {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  /* Quick Contact Box inside form */
  .signup-form > div[style*="linear-gradient"] {
    padding: 18px !important;
    border-radius: 14px !important;
    overflow: hidden;
  }

  .signup-form > div[style*="linear-gradient"] p {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
  }

  .signup-form > div[style*="linear-gradient"] > div {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .signup-form > div[style*="linear-gradient"] a {
    width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    padding: 9px 12px !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .signup-section .section-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .signup-info h2 {
    font-size: 1.6rem;
  }

  .signup-info p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .contact-item {
    gap: 10px;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .contact-item-text span {
    font-size: 0.62rem;
  }

  .contact-item-text strong {
    font-size: 0.8rem;
  }

  .signup-info
    > div[style*="display: grid"][style*="grid-template-columns"]
    > div {
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .signup-info
    > div[style*="display: grid"][style*="grid-template-columns"]
    strong {
    font-size: 0.8rem !important;
  }

  .signup-info > div[style*="display: grid"][style*="grid-template-columns"] p {
    font-size: 0.72rem !important;
  }

  .signup-info
    > div[style*="display: grid"][style*="grid-template-columns"]
    span {
    font-size: 0.62rem !important;
  }

  .signup-section .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .signup-form {
    padding: 20px;
    border-radius: 18px;
  }

  .signup-form h3 {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.82rem;
    padding: 11px 13px;
  }

  .signup-form .btn {
    padding: 13px 15px;
    font-size: 0.85rem;
  }
}

/* Extra small phones like iPhone 5 / small Android */
@media (max-width: 360px) {
  .signup-section .section-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-info h2 {
    font-size: 1.4rem;
  }

  .signup-info p {
    font-size: 0.78rem;
  }

  .contact-item-icon {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    font-size: 0.82rem;
  }

  .contact-item-text strong {
    font-size: 0.75rem;
  }

  .contact-item-text span {
    font-size: 0.58rem;
  }

  .signup-form {
    padding: 16px;
  }

  .form-group label {
    font-size: 0.65rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .signup-form > div[style*="linear-gradient"] a {
    font-size: 0.72rem !important;
  }
}
