@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=Roboto+Condensed:wght@400;500;600;700;800&display=swap");
@font-face {

    font-family: "Lino Stamp";

    src: url("/fonts/lino-stamp.woff2") format("woff2");

    font-display: swap;

}







:root {
  --black: #030303;
  --dark: #070707;
  --panel: #0c0c0c;
  --panel-2: #111111;
  --line: rgba(255, 191, 0, 0.16);
  --gold: #ffbf00;
  --gold-soft: #ffd45a;
  --gold-dim: #9c780e;
  --white: #ffffff;
  --muted: #b8b8b8;
  --muted-2: #7f7f7f;
  --radius: 18px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: 9999;
  background-image: radial-gradient(#fff 0.65px, transparent 0.65px);
  background-size: 3px 3px;
}

.container {
  width: min(92%, 1300px);
  margin: 0 auto;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  padding: 12px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(255, 191, 0, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
}

.logo {
  line-height: 0.9;
}

.logo h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--gold);
}

.logo span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.58);
}

nav ul,
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: rgba(255, 255, 255, 0.76);
  transition: 0.35s var(--ease);
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.35s var(--ease);
}

nav ul li a:hover {
  color: var(--gold-soft);
}

nav ul li a:hover::after {
  width: 100%;
}

.nav-right i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.nav-right i:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Buttons */
.cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn {
  color: #070707;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #ffe08a 0%, var(--gold) 48%, #b98200 100%);
  box-shadow: 0 12px 35px rgba(255, 191, 0, 0.18);
}

.cta {
  color: var(--gold-soft);
  border: 1px solid rgba(255, 191, 0, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.btn:hover,
.cta:hover {
  transform: translateY(-2px);
}

.btn:hover {
  box-shadow: 0 18px 42px rgba(255, 191, 0, 0.28);
}

.cta:hover {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.nav-cta {
  min-height: 38px;
  padding: 10px 17px;
  font-size: 12px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 73px);
  background: url("/assets/hero.jpg") center/cover no-repeat;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(255,191,0,.16), transparent 30%),
    linear-gradient(
      90deg,
      rgba(0,0,0,.58),
      rgba(0,0,0,.28) 46%,
      rgba(0,0,0,.48)
    );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.04),
      rgba(0,0,0,.28)
    ),
    radial-gradient(circle at 50% 110%,
      rgba(255,191,0,.08),
      transparent 34%);
  z-index: 1;
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 73px);
  padding-top: 42px;
  padding-bottom: 34px;
}

.hero-content {
  max-width: 540px;
  margin-top: 50px;
  padding-top: 40px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
}




.hero-content h1 {
  font-family: "Lino Stamp", sans-serif;
  font-size: clamp(62px, 7.8vw, 108px);
  line-height: 0.82;
  letter-spacing: -0.5px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 15px 0 10px;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  max-width: 480px;
  margin: 4px auto 0 !important;
  padding-top: 0 !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.15px;
}

.hero-btns {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}






@media (min-width: 992px){

  .hero-container{
    min-height:calc(100vh - 73px);
    padding-top:120px;
    padding-bottom:40px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
  }

  .hero-content{
    max-width:820px;
    width:100%;
    margin:0 auto;
    padding-top:0;
    text-align:center;
  }

  .hero-kicker{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
  }

  .hero-content h1{
    margin:0 0 18px;
  }

  .hero-content p{
    max-width:600px;
    margin:0 auto 26px !important;
  }

  .hero-btns{
    justify-content:center;
  }

  
}
/* Trust banner */
.trust-banner {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(255, 191, 0, 0.14);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.7), rgba(0, 0, 0, 0.46));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.t-elem {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 191, 0, 0.1);
}

.t-elem:last-child {
  border-right: none;
}

.t-elem span,
.t-elem h3 {
  display: block;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: -0.4px;
  font-weight: 400;
}

.t-elem p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.67);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t-elem i {
  font-size: 31px;
  color: var(--gold);
  opacity: 0.95;
}

/* Second */
.second {
  position: relative;
  width: 100%;
  min-height: 355px;
  background: url("/assets/2.jpg") center/cover no-repeat;
  overflow: hidden;
  color: var(--white);
  padding: 70px 0;
}

.second::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.55), rgba(0,0,0,.78));
  z-index: 1;
}

.second > * {
  position: relative;
  z-index: 2;
}

.second-content {
  max-width: 505px;
}

.second-content h2 {
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -1.3px;
  text-transform: uppercase;
  margin: 10px 0 14px;
}

.second-content p {
  max-width: 460px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

/* Third */
.third,
.cases,
.how-it-works,
.reviews,
.footer {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 191, 0, 0.055), transparent 24%),
    linear-gradient(180deg, #030303, #070707);
  color: var(--white);
}

.third {
  text-align: center;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.third h2,
.cases-title h2,
.how-left h2,
.reviews-heading h2 {
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  margin-top: 9px;
}

.underline,
.title-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

.elems {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 38px;
  border: 1px solid rgba(255, 191, 0, 0.13);
  background: rgba(255, 255, 255, 0.018);
}

.elems .elem {
  position: relative;
  padding: 30px 22px;
  border-right: 1px solid rgba(255, 191, 0, 0.13);
  transition: 0.35s var(--ease);
}

.elems .elem:last-child {
  border-right: none;
}

.elems .elem:hover {
  background: rgba(255, 191, 0, 0.055);
  transform: translateY(-3px);
}

.elem i {
  font-size: 34px;
  color: var(--gold);
}

.elem h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 13px 0 8px;
}

.elem p {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Mobile Menu */
.menu-btn {
  display: none;
  font-size: 34px;
  color: var(--gold);
  cursor: pointer;
  z-index: 1001;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 998;
}

/* Case */
.cases {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 36px;
}

.cases-title {
  flex: 1;
  text-align: center;
}

.case-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: 0.55s var(--ease);
}

.case-card {
  position: relative;
  min-width: 250px;
  height: 385px;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.18);
  background: var(--panel);
  flex-shrink: 0;
  transition: 0.45s var(--ease);
}

.case-card:hover {
  border-color: rgba(255, 191, 0, 0.64);
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 191, 0, 0.06);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.88);
  transition: 0.7s var(--ease);
}

.case-card:hover img {
  transform: scale(1.08);
  filter: saturate(0.98) contrast(1.12) brightness(0.95);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28) 42%, rgba(0,0,0,.92));
  z-index: 1;
}

.case-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 191, 0, 0.95);
  color: #050505;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: 2;
}

.case-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.case-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-info p {
  color: var(--gold);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.case-info a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s var(--ease);
}

.case-card:hover .case-info a {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn,
.review-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 0, 0.34);
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold);
  cursor: pointer;
  transition: 0.35s var(--ease);
  flex-shrink: 0;
}

.slide-btn:hover,
.review-btn:hover {
  background: var(--gold);
  color: #050505;
  transform: scale(1.04);
}

.prev,
.prev-review {
  margin-right: 20px;
}

.next,
.next-review {
  margin-left: 20px;
}

/* How it works */
.how-it-works {
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.how-wrapper {
  display: block;
}

.how-left {
  max-width: 980px;
  margin: 0 auto;
}

.how-left h2 {
  text-align: center;
  margin: 10px auto 42px;
}

.how-left .section-kicker {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,191,0,.45), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  width: 32%;
  text-align: center;
  padding: 0 8px;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFD00D;
  color: #111;

  border: 2px solid #FFD00D;
  border-radius: 50%;

  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;

 
}

.step-number{
    position:relative;
}

.step-number::after{
    content:"";
    position:absolute;
    inset:2px;
    border:2px solid;
    border-radius:50%;
}

.step i {
  display: block;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.step h3{
    display:inline-block;

    padding:6px 12px;

    background:#FFD00D;
    color:#111;

    font-family:"Bebas Neue", sans-serif;
    font-size:30px;
    font-weight:400;
    line-height:.95;
    letter-spacing:-0.3px;
    text-transform:uppercase;

    transform:rotate(-1deg);

    box-shadow:3px 3px 0 rgba(0,0,0,.35);

    margin-bottom:12px;
}
.step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.certificate-card {
  position: relative;
  display: flex;
  gap: 23px;
  align-items: center;
  border: 1px solid rgba(255, 191, 0, 0.16);
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  overflow: hidden;
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 70% 20%, rgba(255,191,0,.13), transparent 30%);
  pointer-events: none;
}

.certificate-card img {
  position: relative;
  width: 160px;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 191, 0, 0.25);
  filter: grayscale(0.22) contrast(1.06);
}

.certificate-content {
  position: relative;
}

.certificate-content span {
  color: var(--gold-soft);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.certificate-content h3 {
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 43px;
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.8px;
  margin: 8px 0 12px;
}

.certificate-content p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.45;
}

/* Reviews */
.reviews {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.reviews-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-slider {
  display: flex;
  align-items: center;
}

.reviews-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 25px;
  transition: 0.5s var(--ease);
}

.review-card {
  min-width: 360px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 191, 0, 0.14);
  padding: 26px;
  transition: 0.35s var(--ease);
}

.review-card:hover {
  border-color: rgba(255, 191, 0, 0.58);
  transform: translateY(-5px);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2.5px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 191, 0, 0.28);
}

.review-user h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Footer */
.footer {
  padding: 66px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr;
  gap: 42px;
}

.footer-about {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 191, 0, 0.13);
}

.footer-about h2 {
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 62px;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 0.8;
}

.footer-about span {
  display: block;
  margin: 10px 0 16px;
  color: rgba(255, 212, 90, 0.7);
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  max-width: 310px;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 191, 0, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: 0.35s var(--ease);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
}

.footer-socials a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
}

.footer-socials i {
  font-size: 21px;
}

.footer-links:nth-child(4) {
  border-right: 1px solid rgba(255, 191, 0, 0.13);
}

.footer-links h3,
.footer-payments h3 {
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.2;
  transition: 0.3s var(--ease);
}

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

.payment-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.payment-icons i {
  font-size: 42px;
  color: rgba(255,255,255,.82);
  transition: 0.3s var(--ease);
}

.payment-icons i:hover {
  color: var(--gold);
  transform: scale(1.08);
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

.reveal {
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  header {
    padding: 12px 28px;
  }

  nav ul,
  .nav-right {
    gap: 18px;
  }

  nav ul li a {
    font-size: 12px;
  }

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

  .elems .elem:nth-child(3),
  .elems .elem:nth-child(6) {
    border-right: none;
  }

  .elems .elem:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 191, 0, 0.13);
  }

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

  .t-elem:nth-child(3) {
    border-right: none;
  }

  .t-elem:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 191, 0, 0.1);
  }
}

@media (max-width: 1100px) {
  .how-wrapper {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    max-width: 650px;
  }

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

  .footer-about {
    grid-column: 1/-1;
    border-right: none;
    border-bottom: 1px solid rgba(255, 191, 0, 0.13);
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .logo h1 {
    font-size: 36px;
  }

  .menu-btn {
    display: block;
  }

  .nav-right {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(9, 9, 9, 0.98);
    transition: 0.45s var(--ease);
    z-index: 999;
    padding: 90px 30px;
    border-left: 1px solid rgba(255, 191, 0, 0.16);
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.38);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    color: #fff;
    font-size: 17px;
  }

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

  body.no-scroll {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 8px;
  }

  .hero-content h1 {
    font-size: 72px;
    line-height: 0.83;
  }

  .hero-content p {
    font-size: 15px;
  }

  .trust-banner {
    margin-top: 46px;
    grid-template-columns: repeat(2, 1fr);
  }

  .t-elem {
    border-right: 1px solid rgba(255, 191, 0, 0.1);
    border-top: 1px solid rgba(255, 191, 0, 0.1);
  }

  .t-elem:nth-child(1),
  .t-elem:nth-child(2) {
    border-top: none;
  }

  .t-elem:nth-child(even) {
    border-right: none;
  }

  .second,
  .third,
  .cases,
  .how-it-works,
  .reviews {
    padding: 58px 0;
  }

  .second-content {
    max-width: 100%;
  }

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

  .elems .elem {
    border-right: 1px solid rgba(255, 191, 0, 0.13);
    border-bottom: 1px solid rgba(255, 191, 0, 0.13);
  }

  .elems .elem:nth-child(even) {
    border-right: none;
  }

  .elems .elem:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .cases-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .case-card {
    min-width: 82%;
    height: 410px;
  }

  .prev,
  .prev-review {
    margin-right: 10px;
  }

  .next,
  .next-review {
    margin-left: 10px;
  }

  .steps {
    flex-direction: column;
    gap: 34px;
  }

  .line {
    display: none;
  }

  .step {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 191, 0, 0.13);
    background: rgba(255, 255, 255, 0.02);
  }

  .certificate-card {
    flex-direction: column;
    text-align: center;
  }

  .certificate-card img {
    width: 180px;
    height: 235px;
  }

  .review-card {
    min-width: 100%;
  }

  .review-btn,
  .slide-btn {
    width: 43px;
    height: 43px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-about,
  .footer-links:nth-child(4) {
    border: none;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .container {
    width: 90%;
  }

  .hero-container {
    padding-top: 32px;
  }

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

  .hero-kicker,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 1.7px;
    justify-content: center;
  }

  .hero-kicker::before,
  .section-kicker::before {
    width: 20px;
  }

  .hero-content h1 {
    font-size: 61px;
    letter-spacing: -1.4px;
    margin-top: 13px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn,
  .hero-btns .cta {
    width: 100%;
  }

  .trust-banner {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 0;
  }

  .t-elem {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
  }

  .t-elem i {
    font-size: 28px;
  }

  .t-elem span,
  .t-elem h3 {
    font-size: 25px;
  }

  .t-elem p {
    font-size: 11px;
  }

  .second {
    text-align: center;
  }

  .third h2,
  .cases-title h2,
  .how-left h2,
  .reviews-heading h2 {
    font-size: 48px;
  }

  .elems .elem {
    padding: 25px 14px;
  }

  .elem h3 {
    font-size: 24px;
  }

  .case-card {
    min-width: 100%;
    height: 405px;
  }

  .case-info h3 {
    font-size: 34px;
  }

  .certificate-content h3 {
    font-size: 38px;
  }

  .reviews-slider,
  .case-slider {
    gap: 8px;
  }

  .footer {
    text-align: center;
  }

  .footer-about p {
    margin: auto;
  }

  .footer-socials,
  .payment-icons {
    justify-content: center;
  }
}

/* HEADER */
.uca-header{
    height:86px;
    display:grid;
    grid-template-columns:48px 1fr 48px;
    align-items:center;
    padding:0 22px;
    background:#111;
    border-bottom:1px solid rgba(255,255,255,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.uca-logo{
    justify-self:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.uca-logo img{
    height:52px;
    width:auto;
    display:block;
}

.uca-cart-icon{
    justify-self:end;
    width:38px;
    height:38px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    position:relative;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.03);
}

.uca-cart-icon svg{
    width:25px;
    height:25px;
}

.cart-count{
    position:absolute;
    top:-7px;
    right:-7px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    background:#e2232a;
    color:#fff;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #111;
}

/* HERO */
.canva-hero-container{
    width:100%;
    line-height:0;
    background:#111;
}

.canva-img{
    width:100%;
    height:auto;
    display:block;
}







.uca-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 42px;
}

.uca-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.uca-logo img {
  width: 150px;
  max-width: 150px;
  height: auto;
  display: block;
}

.uca-cart-icon {
  justify-self: end;
}


@keyframes ping {
    0% {
        transform: scale(.8);
        opacity: .7;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

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



.products-section,
.products-section *{
  font-family: "Roboto Condensed", sans-serif;
}

.products-section{
  background:#050505;
  padding:78px 18px 88px;
  color:#fff;
}

.products-heading{
  max-width:980px;
  margin:0 auto 34px;
  text-align:center;
}

.products-heading h2{
  margin:10px 0 0;
  font-size:46px;
  line-height:.92;
  letter-spacing:-.6px;
  color:#fff;
}

.case-archive{
  max-width:980px;
  margin:0 auto;
}

.case-archive-image{
  display:block;
  width:100%;
  margin-bottom:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.case-archive-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.case-accordion{
  border-top:1px solid rgba(255,255,255,.14);
}

.case-accordion-item{
  border-bottom:1px solid rgba(255,255,255,.14);
}

.case-accordion-title{
  width:100%;
  background:transparent;
  border:0;
  padding:20px 0;
  color:#fff;
  display:flex;
  align-items:center;
  gap:18px;
  cursor:pointer;
  text-align:left;
  font-size:26px;
  font-weight:800;
  line-height:.95;
  letter-spacing:-.45px;
}

.case-accordion-title span{
  color:#FFD00D;
  font-size:13px;
  font-weight:800;
  min-width:28px;
}

.case-accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.case-accordion-content p{
  max-width:680px;
  margin:0 0 20px 46px;
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:1.38;
  letter-spacing:-.15px;
}

.case-accordion-item.active .case-accordion-content{
  max-height:120px;
}

.all-cases-wrap{
  display:flex;
  justify-content:center;
  margin-top:32px;
}

@media(max-width:700px){
  .products-section{
    padding:58px 14px 68px;
  }

  .products-heading h2{
    font-size:34px;
  }

  .case-archive-image img{
    height:220px;
  }

  .case-accordion-title{
    font-size:21px;
    padding:18px 0;
    gap:12px;
  }

  .case-accordion-content p{
    margin-left:40px;
    font-size:14px;
  }
}




.case-accordion-title{
  width:100%;
  background:transparent;
  border:0;
  padding:15px 0;
  color:#fff;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  cursor:pointer;
  text-align:left;
}

.case-badge-small{
  background:#ffbe06;
  color:#111;
  padding:4px 8px;
  font-size:10px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.1px;
  text-transform:uppercase;
  transform:rotate(-1deg);
}

.case-accordion-title strong{
  font-size:21px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.35px;
  color:#fff;
}

.case-plus{
  width:26px;
  height:26px;
  border:1px solid rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#FFD00D;
  font-size:18px;
  line-height:1;
  transition:.2s ease;
}

.case-accordion-content p{
  margin:0 0 14px 0;
  padding-left:118px;
  max-width:720px;
  font-size:14px;
  line-height:1.32;
  letter-spacing:-.15px;
}

.case-accordion-item.active .case-plus{
  transform:rotate(45deg);
  background:#FFD00D;
  color:#111;
  border-color:#FFD00D;
}

@media(max-width:700px){
  .case-accordion-title{
    grid-template-columns:1fr auto;
    gap:10px;
    padding:14px 0;
  }

  .case-badge-small{
    grid-column:1 / -1;
    width:max-content;
  }

  .case-accordion-title strong{
    font-size:20px;
  }

  .case-accordion-content p{
    padding-left:0;
    font-size:13.5px;
  }
}


.case-accordion-title{
    width:100%;
    background:transparent;
    border:0;
    padding:15px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    text-align:left;
}

.case-title-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.case-badge-small{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#FFD00D;
    color:#111 !important;
    padding:5px 9px;
    font-size:10px;
    font-weight:800;
    line-height:1;
    letter-spacing:0;
    text-transform:uppercase;
    white-space:nowrap;
}

.case-accordion-title strong{
    color:#fff;
    font-size:22px;
    font-weight:800;
    line-height:1;
    letter-spacing:-.3px;
}

.case-plus{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:18px;
    transition:.25s ease;
    flex-shrink:0;
}

.case-accordion-item.active .case-plus{
    background:#FFD00D;
    color:#111;
    border-color:#FFD00D;
    transform:rotate(45deg);
}


.case-badge-small{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:5px 10px;

    background:#FFD00D;
    color:#111 !important;

    font-size:10px;
    font-weight:900;
    line-height:1;
    letter-spacing:.2px;
    text-transform:uppercase;

    transform:none;

    border:1px solid rgba(0,0,0,.35);

    overflow:hidden;
}

.case-badge-small::after{
    content:"";
    position:absolute;
    inset:0;

    border:1px dashed rgba(0,0,0,.18);

    mix-blend-mode:multiply;

    opacity:.45;

    pointer-events:none;
}

.products-section{
    padding:2px 18px 88px;
}










.faq-section{
  background:#050505;
  padding:64px 18px 78px;
  color:#fff;
}

.faq-wrap{
  max-width:820px;
  margin:0 auto;
}

.faq-wrap h2{
  margin:0 0 30px;
  text-align:center;
  font-size:46px;
  line-height:.92;
  letter-spacing:-.6px;
  color:#fff;
}

.faq-list{
  border-top:1px solid rgba(255,255,255,.18);
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.18);
}

.faq-question{
  width:100%;
  background:transparent;
  border:0;
  padding:17px 0;
  display:grid;
  grid-template-columns:34px 1fr 24px;
  align-items:center;
  gap:14px;
  color:#fff;
  cursor:pointer;
  text-align:left;
}

.faq-question img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
  filter:none !important;
  opacity:1;
}

.faq-question span{
  font-size:20px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.3px;
}

.faq-question b{
  color:#FFD00D;
  font-size:20px;
  font-weight:500;
  line-height:1;
  text-align:right;
  transition:.22s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}

.faq-answer p{
  margin:0 0 18px 48px;
  max-width:650px;
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.35;
  letter-spacing:-.15px;
}

.faq-item.active .faq-answer{
  max-height:130px;
}

.faq-item.active .faq-question b{
  transform:rotate(45deg);
  color:#fff;
}

@media(max-width:700px){
  .faq-section{
    padding:10px 14px 64px;
  }

  .faq-wrap h2{
    font-size:34px;
  }

  .faq-question{
    grid-template-columns:30px 1fr 20px;
    gap:12px;
    padding:16px 0;
  }

  .faq-question span{
    font-size:17px;
  }

  .faq-answer p{
    margin-left:42px;
    font-size:14px;
  }
}

.faq-section,
.faq-section *{
  font-family: "Roboto Condensed", sans-serif;
}











.certificate-section{
  position:relative;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.82)),
    url("assets/certificate-bg.jpg") center/cover no-repeat;
  padding:78px 18px 88px;
  color:#fff;
  text-align:center;
  overflow:hidden;
}

.certificate-inner{
  max-width:760px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.certificate-png{
  width:min(420px, 92%);
  display:block;
  margin:0 auto 24px;
  filter:drop-shadow(0 22px 40px rgba(0,0,0,.55));
}

.certificate-kicker{
  display:inline-block;
  background:#FFD00D;
  color:#111;
  padding:5px 10px;
  font-size:12px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.1px;
  text-transform:uppercase;
  transform:rotate(-1.5deg);
  margin-bottom:14px;
}

.certificate-section h2{
  margin:0;
  font-size:54px;
  line-height:.9;
  letter-spacing:-.7px;
  color:#fff;
}

.certificate-section p{
  max-width:520px;
  margin:16px auto 0;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.38;
  letter-spacing:-.15px;
}

@media(max-width:700px){
  .certificate-section{
    padding:58px 14px 68px;
  }

  .certificate-png{
    width:min(340px, 95%);
    margin-bottom:20px;
  }

  .certificate-section h2{
    font-size:38px;
  }

  .certificate-section p{
    font-size:14px;
  }
}


.certificate-png{
    width:min(420px,92%);
    display:block;
    margin:0 auto 24px;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.55));

    transform-style:preserve-3d;
    will-change:transform;
    transition:transform .45s cubic-bezier(.22,1,.36,1);
    cursor:grab;

    user-select:none;
    -webkit-user-drag:none;
}

.certificate-png:active{
    cursor:grabbing;
}

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

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

.certificate-png{
  width:min(360px,88%);
  display:block;
  margin:0 auto 22px;
  filter:drop-shadow(0 25px 45px rgba(0,0,0,.55));
  animation:certFlicker 4.8s infinite;
}

@keyframes certFlicker{
  0%, 100%{
    opacity:1;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.55)) brightness(1);
  }

  48%{
    opacity:.96;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.55)) brightness(.92);
  }

  50%{
    opacity:.72;
    filter:drop-shadow(0 25px 45px rgba(255,208,13,.18)) brightness(1.25);
  }

  52%{
    opacity:1;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.55)) brightness(1);
  }

  57%{
    opacity:.88;
    filter:drop-shadow(0 25px 45px rgba(255,208,13,.12)) brightness(1.12);
  }

  60%{
    opacity:1;
  }
}


.certificate-section{
  position:relative;
  width:100%;
  min-height:355px;
  background:url("certbg.jpg") center/cover no-repeat;
  overflow:hidden;
  color:var(--white);
  padding:30px 0;
  text-align:center;
}




.certificate-section{
    position:relative;
    overflow:hidden;
}

.certificate-section::after{
    content:"";
    position:absolute;
    inset:12px;

    border:1px solid #FFD00D;

    pointer-events:none;
    z-index:3;
}




.certificate-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.42),
        rgba(0,0,0,.66)
    );
}

.certificate-section > *{
  position:relative;
  z-index:2;
}

.certificate-inner{
  max-width:720px;
  margin:0 auto;
  padding:0 18px;
}

.certificate-png{
  width:min(360px,88%);
  display:block;
  margin:0 auto 22px;
  filter:drop-shadow(0 25px 45px rgba(0,0,0,.55));
  transform-style:preserve-3d;
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  will-change:transform;
  touch-action:none;
}

.certificate-section h2{
  color:var(--gold);
  font-family:"Bebas Neue", sans-serif;
  font-size:clamp(42px, 4.5vw, 68px);
  font-weight:400;
  line-height:.88;
  letter-spacing:-1.3px;
  text-transform:uppercase;
  margin:10px 0 14px;
}

.certificate-section p{
  max-width:460px;
  margin:0 auto;
  color:rgba(255,255,255,.74);
  font-size:15px;
  line-height:1.45;
}







.uca-header{
    background:#000 !important;
    background-image:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}


.uca-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    background:#000;
    z-index:9999;
}

@media(max-width: 768px){
  .hero-container{
    padding-top: 120px;
  }

  .hero-content{
    margin-top: 18px;
    padding-top: 0;
  }
}







.hero-content h1{
  position:relative;
  display:inline-block;
}


.hero-content h1::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-4px;

  width:150px;
  height:4px;

  background:#FFD00D;
  border-radius:0px;

  box-shadow:0 0 18px rgba(255,208,13,.25);
}




















.products-section{
  background:#050505;
  padding:34px 12px 58px;
}

.products-section *{
  font-family:inherit;
}

.products-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 12px;
}

.product-card{
  background:transparent;
  color:#fff;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.card-img-container{
  width:100%;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}

.card-img-container img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

.card-content{
  padding:9px 2px 0;
  display:flex;
  flex-direction:column;
  flex:1;
}

.card-title{
  color:#fff;
  font-size:12px;
  font-weight:800;
  line-height:1.16;
  letter-spacing:-.1px;
  min-height:40px;
  margin-bottom:7px;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.card-bottom{
  margin-top:auto;
}

.card-price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffbe06;
  color:#111;
  font-size:14px;
  font-weight:900;
  line-height:1;
  padding:5px 8px;
  margin-bottom:7px;
}

.investigate-btn{
  width:100%;
  height:38px;
  background:#fff;
  color:#111;
  font-size:11px;
  font-weight:900;
  line-height:1;
  letter-spacing:.1px;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}

.product-card:hover .card-img-container{
  border-color:rgba(255,208,13,.45);
}

.product-card:hover .investigate-btn{
  background:#FFD00D;
  color:#111;
}

@media(min-width:768px){
  .products-section{
    padding:46px 24px 74px;
  }

  .products-grid{
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }

  .card-title{
    font-size:14px;
    min-height:48px;
  }

  .card-price{
    font-size:15px;
  }

  .investigate-btn{
    height:42px;
    font-size:12px;
  }
}


.card-title{
    color:#fff;
    font-size:15px;      /* ishte 12-14px */
    font-weight:800;
    line-height:1.12;
    letter-spacing:-0.2px;
    min-height:46px;
    margin-bottom:14px;  /* pak më shumë hapësirë poshtë titullit */
}

.card-price{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#FFD00D;
    color:#111;
    font-size:15px;
    font-weight:900;
    line-height:1;
    padding:5px 10px;

    margin-bottom:12px;  /* më afër butonit */
}

.investigate-btn{
    width:100%;
    height:40px;
    background:#fff;
    color:#111;
    font-size:12px;
    font-weight:900;
}


















@media (min-width: 992px){
  .hero-container{
    padding-top:120px;
    align-items:center;
    text-align:center;
  }

  .hero-content{
    max-width:820px;
    width:100%;
    margin:0 auto;
    padding-top:0;
    text-align:center;
  }

  .hero-content > span{
    margin-bottom:18px;
  }

  .hero-content h1{
    margin:0 0 18px;
    text-align:center;
  }

  .hero-content p{
    max-width:600px;
    margin:0 auto 26px !important;
    text-align:center;
  }

  .hero-btns{
    justify-content:center;
  }

  .trust-banner{
    grid-template-columns:repeat(6,1fr);
    margin-top:40px;
  }
}
/* =========================================================
   FINAL UCA FIXES — HERO DESKTOP + 6 TRUST FEATURES
   Place kept at the very end so it overrides previous rules.
   ========================================================= */

/* Header stays fully black and above the hero */
.uca-header{
  background:#000 !important;
  background-image:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  z-index:9999 !important;
}

/* Desktop-only hero correction */
@media (min-width: 992px){
  .hero{
    min-height:calc(100vh - 76px) !important;
  }

  .hero-container{
    min-height:calc(100vh - 76px) !important;
    padding-top:128px !important;
    padding-bottom:34px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    text-align:center !important;
  }

  .hero-content{
    width:100% !important;
    max-width:920px !important;
    margin:0 auto !important;
    padding-top:0 !important;
    text-align:center !important;
  }

  /* This targets the inline ALBANIA'S #1 DETECTIVE GAME badge */
  .hero-content > span:first-child{
    display:inline-block !important;
    margin:0 auto 18px !important;
    position:relative !important;
    z-index:3 !important;
  }

  .hero-content h1{
    display:inline-block !important;
    text-align:center !important;
    margin:0 auto 18px !important;
  }

  .hero-content h1::after{
    left:50% !important;
    transform:translateX(-50%) !important;
  }

  /* Override the inline paragraph width on desktop only */
  .hero-content p{
    width:100% !important;
    max-width:640px !important;
    margin:18px auto 0 !important;
    text-align:center !important;
    line-height:1.35 !important;
    letter-spacing:-0.2px !important;
  }

  /* Override the inline folder image size on desktop only */
  .hero-content img{
    width:100% !important;
    max-width:430px !important;
    height:auto !important;
  }

  .hero-btns{
    justify-content:center !important;
    margin-top:20px !important;
  }

  /* 6 feature items in one row on desktop */
  .trust-banner{
    width:100% !important;
    margin-top:34px !important;
    display:grid !important;
    grid-template-columns:repeat(6, minmax(0, 1fr)) !important;
    gap:0 !important;
  }

  .trust-banner .t-elem{
    min-width:0 !important;
    justify-content:center !important;
    border-top:none !important;
    border-right:1px solid rgba(255,191,0,.10) !important;
  }

  .trust-banner .t-elem:last-child{
    border-right:none !important;
  }

  .trust-banner .t-elem span,
  .trust-banner .t-elem h3{
    font-size:26px !important;
  }

  .trust-banner .t-elem p{
    font-size:11px !important;
  }
}

/* Mobile: keep the current look, only enough top space for fixed header */
@media (max-width: 768px){
  .hero-container{
    padding-top:120px !important;
  }
}


.hero-stamp{
  display:block;
  width:max-content;
  margin:0 auto 18px;
  padding:5px 10px;
  background:#FFD00D;
  color:#111;
  font-size:14px;
  font-weight:800;
  letter-spacing:-0.2px;
  line-height:1;
  text-transform:uppercase;
  transform:rotate(-1.5deg);
  box-shadow:3px 3px 0 rgba(0,0,0,.35);
}




/* Desktop only */
@media (min-width:992px){
  .hero{
    min-height:calc(100vh - 76px) !important;
  }

  .hero-container{
    min-height:calc(100vh - 76px) !important;
    padding-top:112px !important;
    padding-bottom:34px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    align-items:center !important;
    text-align:center !important;
  }

  .hero-content{
    width:100% !important;
    max-width:920px !important;
    margin:0 auto !important;
    padding-top:0 !important;
  }

  .trust-banner{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(6, minmax(0,1fr)) !important;
    gap:0 !important;
    margin-top:34px !important;
  }

  .trust-banner .t-elem{
    min-width:0 !important;
    justify-content:center !important;
    border-top:none !important;
    border-right:1px solid rgba(255,191,0,.10) !important;
    padding:10px 8px !important;
  }

  .trust-banner .t-elem:last-child{
    border-right:none !important;
  }

  .trust-banner .t-elem span,
  .trust-banner .t-elem h3{
    font-size:26px !important;
  }

  .trust-banner .t-elem p{
    font-size:11px !important;
  }
}


.hero-btn-primary,
.hero-btn-secondary{
    height:42px;
    padding:0 18px;
    border-radius:8px;

    font-family:"Bebas Neue",sans-serif;
    font-size:18px;
    letter-spacing:.2px;
}

.hero-btn-primary{
    background:#FFD00D;
    color:#111;
    border:2px solid #FFD00D;
}

.hero-btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid #FFD00D;
}

.hero-btn-primary:hover{
    background:#ffe25d;
}

.hero-btn-secondary:hover{
    background:#FFD00D;
    color:#111;
}