:root {
  --fka-red: #e11d48;
  --fka-ink: #0f172a;
  --fka-grad-1: #111827;
  --fka-grad-2: #334155;
  --fka-grad-3: #0ea5e9;
  --topheader-bg: linear-gradient(90deg, #0f172a, #0ea5e9, #e11d48);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: "Poppins", sans-serif; background: #fff; }

/* ========================== TOP HEADER ========================== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 12px clamp(20px, 6vw, 80px);
  font-size: 19px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-header .top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-header .top-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3f4f6;
  font-weight: 300;
  font-size: 14px;
}
.top-header .top-left .fa-whatsapp { color: #25d366; }
.top-header .top-left .fa-phone { color: #22c55e; }
.top-header .top-left .fa-envelope { color: #eab308; }

.fa-phone {
  font-size: 22px;
  width: 22px;
  height: 22px;
  line-height: 22px;
}

.fa-whatsapp {
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

.top-header .top-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-header .top-right a {
  color: #fff;
  font-size: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /*background: #2d2d2d;*/
  background: var(--fka-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.top-header .top-right a:hover {
  background: var(--fka-red);
  transform: translateY(-2px);
}

/* ========================== LOGO HEADER ========================== */
.Logo_BG-Page {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(12px, 3vw, 40px);
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo styles */
.fka-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  position: relative;
  padding-bottom: 6px;
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--fka-ink);
  text-shadow: 0 2px 0 rgba(255,255,255,0.35), 0 12px 20px rgba(2,6,23,0.10);
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.logo-text {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.logo-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--fka-red),var(--fka-grad-3),var(--fka-red));
  opacity: .9;
}
.fka-logo .word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.fka-logo .cap {
  color: var(--fka-red);
  text-shadow: 0 0 18px rgba(225,29,72,.35);
  transform: translateY(-.5px);
  font-size: 1.08em;
}
.fka-logo .rest {
  display: inline-block;
  background: linear-gradient(100deg,var(--fka-grad-1),var(--fka-grad-2),var(--fka-grad-1));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fkaShine 5s linear infinite;
  text-decoration: none;
}
.fka-logo,
.fka-logo .cap,
.fka-logo .rest {
  text-decoration: none !important;
}
@keyframes fkaShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========================== BUTTONS ========================== */
.loginBtn {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  height: 42px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.loginBtn-primary {
  background: #e11d48;
  color: #fff;
}
.loginBtn-primary:hover {
  background: #be123c;
}




/* ========================== ACHIEVEMENTS SECTION ========================== */
.achievements-section {
  width: 100%;
  background: linear-gradient(180deg, rgba(14,165,233,0.06), rgba(59,130,246,0.03));
  padding: clamp(28px, 4vw, 56px) clamp(16px, 6vw, 80px);
  box-shadow: inset 0 -1px 0 rgba(15,23,42,0.03);
  display: flex;
  justify-content: center;
  align-items: center;
}
.achievements-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  padding: 6px 12px;
}

/* Trusted badge */
.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.10);
  color: #047857;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  border: 1px solid rgba(6,95,70,0.06);
}
.trusted-badge i { font-size: 14px; }
.trusted-badge .worldwide {
  color: #1d4ed8;
  font-weight: 700;
}

/* Headline block */
.headline-wrap { display: flex; justify-content:center; width:100%; }
.headline-block {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
  box-shadow: 0 8px 24px rgba(79,70,229,0.25);
  text-align: center;
  letter-spacing: 0.5px;
}

/* Big gradient claim */
.big-claim {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
.big-claim h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
  font-size: clamp(2.4rem, 6.8vw, 5.2rem);
  color: var(--fka-ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -1px;
  font-family: "Poppins", system-ui, -apple-system, "Inter", sans-serif;
}
.big-claim .grad {
  background: linear-gradient(90deg, #5b21b6, #4f46e5, #06b6d4, #10b981);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: headlineShift 5s linear infinite;
}
@keyframes headlineShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 2px;
}
.stat {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--fka-ink);
}
.stat-value {
  font-weight: 800;
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
  line-height: 1;
  color: #0f172a;
}
.stat-value .num {
  color: #0f5132;
  font-weight: 900;
}
.stat-label {
  font-size: 0.85rem;
  color: #475569;
}

/* Chips row */
.chips-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  font-weight: 600;
  cursor: default;
  font-size: 0.9rem;
}
.chip i { font-size: 14px; color: #0f172a; }

/* Slogan block */
.slogan-block {
  margin-top: 16px;
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  font-style: italic;
  color: #334155;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}
.slogan-block .highlight {
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.slogan-block .signature {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: #0f172a;
}
.slogan-block .quote {
  font-size: 1.2em;
  color: #64748b;
  vertical-align: middle;
}


/* ========================== MOBILE ========================== */

@media (max-width: 900px) {
  .top-header {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
    text-align: center;
  }
  .top-header .top-left {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 16px;
  }
  .contact-phone, .contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    overflow: visible;
    white-space: nowrap;
  }
  .top-header .top-right {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }
  .top-header .top-left i,
  .top-header .top-right i {
    font-size: 15px;
  }

  .top-header .top-left .fa-whatsapp {  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px; }
.top-header .top-left .fa-phone {   font-size: 22px;
  width: 22px;
  height: 22px;
  line-height: 22px; }
}

@media (max-width: 320px) {

  .Logo_BG-Page { padding: 8px 10px; gap: 6px; }
  .fka-logo { font-size: clamp(0.8rem, 2.8vw, 1rem); }
  .loginBtn {
    /* font-size: 0.82rem; */
        font-size: 1.2rem;

    padding: 5px 10px;
    height: 33px;
  }

 .top-header .top-left .fa-whatsapp {  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px; }
.top-header .top-left .fa-phone {   font-size: 22px;
  width: 22px;
  height: 22px;
  line-height: 22px; }

}

@media (max-width: 360px) {


  .Logo_BG-Page { padding: 8px 10px; gap: 6px; }
  .fka-logo { font-size: clamp(0.8rem, 2.8vw, 1rem); }
  .loginBtn {
    /* font-size: 0.82rem; */
        font-size: 1.2rem;

    padding: 5px 10px;
    height: 33px;
  }

.top-header .top-left .fa-whatsapp {  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px; }
.top-header .top-left .fa-phone {   font-size: 22px;
  width: 22px;
  height: 22px;
  line-height: 22px; }

}

@media (max-width: 420px) {
  .Logo_BG-Page { padding: 8px 10px; gap: 6px; }
  .fka-logo { font-size: clamp(0.8rem, 2.8vw, 1rem); }
  .loginBtn {
    /* font-size: 0.82rem; */
        font-size: 1.2rem;

    padding: 5px 10px;
    height: 33px;
  }
 

.top-header .top-left .fa-whatsapp {  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px; }
.top-header .top-left .fa-phone {   font-size: 22px;
  width: 22px;
  height: 22px;
  line-height: 22px; }

}

