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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: #060b1a;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  font-family: inherit
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: linear-gradient(90deg, #0c1535 0%, #0f1e47 50%, #0c1535 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 0, 0, 0.08), transparent);
}

.announce-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.announce-text strong {
  color: #fff
}

.announce-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.announce-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 4px
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  flex-shrink: 0;
  max-width: 180px;
  overflow: hidden;
}

.nav-logo img {
  height: 28px;
  width: auto;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

/* Reset WP-generated nested lists */
.nav-menu ul,
.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-mobile-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06)
}

.nav-link svg {
  width: 12px;
  height: 12px;
  opacity: .6
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-affiliate {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all .15s;
}

.nav-affiliate:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff
}

.affiliate-badge {
  background: #e80000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-nav {
  background: #e80000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .1s;
  border: none;
  white-space: nowrap;
  display: inline-block;
}

.btn-nav:hover {
  background: #7e3947;
  transform: translateY(-1px)
}

/* ─── DROPDOWN ─── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #0d1630;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.dd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 8px 12px 4px;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .15s;
}

.dd-item:hover {
  background: rgba(255, 255, 255, 0.06)
}

.dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px
}

.dd-icon-img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0
}

.dd-text {}

.dd-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff
}

.dd-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px
}

.dd-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 4px 0 0;
  padding: 8px 0 0;
}

.dd-contact-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 12px 6px;
  font-weight: 500
}

.dd-contact-btns {
  display: flex;
  gap: 6px;
  padding: 0 12px 4px
}

.dd-chat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: background .15s;
  flex: 1;
  justify-content: center;
}

.dd-chat-btn:hover {
  background: rgba(255, 255, 255, 0.1)
}

.dd-chat-btn img {
  width: 14px;
  height: 14px
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #060b1a;
  margin-left: -10px;
  object-fit: cover;
}

.hero-trust-avatars img:first-child {
  margin-left: 0
}

.hero-trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.btn-blue {
  background: #e80000;
  color: #fff;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, transform .1s, box-shadow .15s;
  border: none;
  display: inline-block;
}

.btn-blue:hover {
  background: #7e3947;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 0, 0, 0.4)
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all .15s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff
}

/* ─── PARTNER LOGOS MARQUEE ─── */
.partners-strip {
  background: #060b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.partners-strip::before,
.partners-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.partners-strip::before {
  left: 0;
  background: linear-gradient(to right, #060b1a, transparent)
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(to left, #060b1a, transparent)
}

.marquee-inner {
  display: flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
  align-items: center;
}

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

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

.marquee-inner img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity .2s;
  flex-shrink: 0;
}

.marquee-inner img:hover {
  opacity: 0.7
}

/* ─── SECTION COMMONS ─── */
.section {
  padding: 80px 0
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e80000;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  background: #060b1a
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.services-header-left {
  max-width: 600px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card {
  background: #0a1122;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
  cursor: pointer;
}

.service-card:hover {
  background: #0d1630
}

.service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  flex: 1
}

.service-card .card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e80000;
  margin-top: 4px;
}

.service-card .card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform .15s
}

.service-card:hover .card-cta svg {
  transform: translateX(3px)
}

/* ─── BENEFITS ─── */
.benefits-section {
  background: #060b1a;
  padding-top: 0;
  padding-bottom: 80px
}

.benefits-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.benefits-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 560px;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-card {
  background: #0a1122;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
}

.benefit-card:hover {
  background: #0d1630
}

.benefit-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  background: #0d1630;
}

.benefit-thumb-svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6
}

/* ─── VIDEO TESTIMONIALS ─── */
.video-section {
  background: #060b1a;
  padding: 80px 0
}

.video-section .section-title {
  max-width: 560px
}

.video-testi-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 48px;
}

.rating-badge {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.rating-badge img {
  width: 100%;
  max-width: 180px;
  height: auto
}

.video-card {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background .2s;
}

.video-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.1)
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.play-btn img {
  width: 18px;
  height: 18px;
  margin-left: 3px
}

.video-info {
  padding: 16px 20px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.video-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.video-meta {}

.video-rating {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px
}

.video-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.video-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  line-height: 1.4
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: #060b1a;
  padding: 80px 0
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
}

.step-item:first-child {
  padding-top: 0
}

.step-item:last-child {
  border-bottom: none
}

.step-num-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 0, 0, 0.15);
  border: 1px solid rgba(232, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #e80000;
  flex-shrink: 0;
}

.step-item.active .step-num-wrap {
  background: #e80000;
  border-color: #e80000;
  color: #fff
}

.step-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.step-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6
}

.steps-images {
  position: sticky;
  top: 90px;
  display: grid;
  grid-template-columns: 1fr;
}

.step-img-card {
  grid-column: 1;
  grid-row: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.step-img-card.active {
  opacity: 1;
  pointer-events: auto;
}

.step-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.step-img-label {
  background: #0a1122;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── COMPARISON ─── */
.comparison-section {
  background: linear-gradient(180deg, #060b1a 0%, #07102a 100%);
  padding: 80px 0;
}

.comparison-table {
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #0a1122;
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 0 32px;
  background: #0d1630;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-h-cell {
  padding: 16px 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.comp-h-cell:first-child {
  text-align: left
}

.comp-h-uproas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.uproas-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #7e3947, #e80000);
  padding: 8px 18px;
  border-radius: 8px;
}

.uproas-col-label img {
  height: 16px;
  filter: brightness(0) invert(1)
}

.comp-h-trad {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: background .15s;
}

.comp-row:last-child {
  border-bottom: none
}

.comp-row:hover {
  background: rgba(255, 255, 255, 0.02)
}

.comp-cell {
  padding: 17px 0;
  font-size: 14px;
  text-align: center
}

.comp-cell:first-child {
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8)
}

.comp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #5a1a2a;
}

.comp-check img {
  width: 14px;
  height: 14px
}

.comp-yes {
  color: #22c55e;
  font-weight: 700
}

.comp-uproas-val {
  color: #60a5fa;
  font-weight: 700;
  font-size: 15px
}

.comp-trad-val {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px
}

.comp-x {
  color: #ef4444;
  font-weight: 700;
  font-size: 16px
}

/* ─── PRICING ─── */
.pricing-section {
  background: #060b1a;
  padding: 80px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.spots-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 16px;
}

.spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.pricing-header .section-title {
  max-width: 100%
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 32px
}

.trust-avatars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.trust-avatars-row img {
  height: 32px;
  width: auto
}

.trust-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500
}

/* Platform tabs */
.platform-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 6px;
  display: inline-flex;
  margin: 0 auto 40px;
}

.p-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  background: none;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

.p-tab img {
  width: 18px;
  height: 18px;
  filter: grayscale(1);
  transition: filter .15s
}

.p-tab:hover {
  color: rgba(255, 255, 255, 0.8)
}

.p-tab.active {
  background: #e80000;
  color: #fff;
  box-shadow: 0 2px 12px rgba(232, 0, 0, 0.35);
}

.p-tab.active img {
  filter: none
}

.tab-inner-wrap {
  display: flex;
  gap: 6px
}

.tab-label-pair {
  display: flex;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.tab-inner-wrap .p-tab {
  border-radius: 6px
}

/* Pricing cards */
.pricing-panel {
  display: none
}

.pricing-panel.active {
  display: block
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

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

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

/* ══════════════════════════════════════════
   PRICING CARDS — vivid per-tier colours
   matching uproas.io exactly
══════════════════════════════════════════ */
.price-card {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.price-card:hover {
  transform: translateY(-6px);
}

/* shared inner glow layer */
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.price-card:hover::after {
  opacity: 1;
}

/* ── GOLD ──────────────────────────── */
.price-card.card-gold {
  background:
    radial-gradient(ellipse 110% 60% at 50% -10%, rgba(251, 191, 36, 0.28) 0%, transparent 65%),
    linear-gradient(180deg, #1c1400 0%, #110d00 60%, #0a0800 100%);
  border: 1px solid rgba(251, 191, 36, 0.45);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.price-card.card-gold:hover {
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.25), 0 16px 48px rgba(0, 0, 0, 0.7);
}

.price-card.card-gold::after {
  background: radial-gradient(ellipse 120% 50% at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
}

.price-card.card-gold .price-tier-name {
  color: #fbbf24;
  letter-spacing: .14em;
  font-size: 12px;
}

.price-card.card-gold .price-amount {
  color: #fff;
}

.price-card.card-gold .price-period {
  color: rgba(251, 191, 36, 0.55);
}

.price-card.card-gold .price-highlight-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.price-card.card-gold .price-highlight-item::before {
  background: radial-gradient(circle, #f59e0b, #b45309);
  min-width: 7px;
  min-height: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.price-card.card-gold .price-pay-opts {
  opacity: 0.55;
}

.price-card.card-gold .btn-check.outline {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fbbf24;
  font-weight: 700;
}

.price-card.card-gold .btn-check.outline:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: #fbbf24;
}

.price-card.card-gold .price-divider {
  background: rgba(251, 191, 36, 0.15);
}

.price-card.card-gold .price-section-label {
  color: rgba(251, 191, 36, 0.5);
}

.price-card.card-gold .price-features li {
  color: rgba(255, 255, 255, 0.65);
}

.price-card.card-gold .pf-check {
  background: rgba(251, 191, 36, 0.12);
  border-radius: 50%;
}

.price-card.card-gold .pf-check::after {
  content: '✓';
  color: #fbbf24;
  font-size: 10px;
  font-weight: 800;
}

.price-card.card-gold .pf-check-green {
  background: rgba(74, 222, 128, 0.12);
}

.price-card.card-gold .pf-check-green::after {
  color: #4ade80;
}

.price-card.card-gold .price-note {
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: rgba(255, 255, 255, 0.5);
}

.price-card.card-gold .price-note strong {
  color: #fbbf24;
}

/* ── DIAMOND ───────────────────────── */
.price-card.card-diamond {
  background:
    radial-gradient(ellipse 110% 60% at 50% -10%, rgba(56, 189, 248, 0.26) 0%, transparent 65%),
    linear-gradient(180deg, #001520 0%, #000e18 60%, #000810 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.price-card.card-diamond:hover {
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.22), 0 16px 48px rgba(0, 0, 0, 0.7);
}

.price-card.card-diamond::after {
  background: radial-gradient(ellipse 120% 50% at 50% 0%, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
}

.price-card.card-diamond .price-tier-name {
  color: #38bdf8;
  letter-spacing: .14em;
  font-size: 12px;
}

.price-card.card-diamond .price-amount {
  color: #fff;
}

.price-card.card-diamond .price-period {
  color: rgba(56, 189, 248, 0.55);
}

.price-card.card-diamond .price-highlight-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.price-card.card-diamond .price-highlight-item::before {
  background: radial-gradient(circle, #0ea5e9, #0369a1);
  min-width: 7px;
  min-height: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.price-card.card-diamond .price-pay-opts {
  opacity: 0.55;
}

.price-card.card-diamond .btn-check.outline {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #38bdf8;
  font-weight: 700;
}

.price-card.card-diamond .btn-check.outline:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: #38bdf8;
}

.price-card.card-diamond .price-divider {
  background: rgba(56, 189, 248, 0.15);
}

.price-card.card-diamond .price-section-label {
  color: rgba(56, 189, 248, 0.5);
}

.price-card.card-diamond .price-features li {
  color: rgba(255, 255, 255, 0.65);
}

.price-card.card-diamond .pf-check {
  background: rgba(56, 189, 248, 0.12);
  border-radius: 50%;
}

.price-card.card-diamond .pf-check::after {
  content: '✓';
  color: #38bdf8;
  font-size: 10px;
  font-weight: 800;
}

.price-card.card-diamond .pf-check-green {
  background: rgba(74, 222, 128, 0.12);
}

.price-card.card-diamond .pf-check-green::after {
  color: #4ade80;
}

/* ── PLATINUM ──────────────────────── */
.price-card.card-platinum {
  background:
    radial-gradient(ellipse 120% 65% at 50% -10%, rgba(167, 139, 250, 0.32) 0%, transparent 60%),
    linear-gradient(180deg, #100820 0%, #0a0516 60%, #060310 100%);
  border: 1px solid rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.price-card.card-platinum:hover {
  box-shadow: 0 0 50px rgba(167, 139, 250, 0.3), 0 16px 48px rgba(0, 0, 0, 0.7);
}

.price-card.card-platinum::after {
  background: radial-gradient(ellipse 120% 50% at 50% 0%, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
}

.price-card.card-platinum .price-tier-name {
  color: #a78bfa;
  letter-spacing: .14em;
  font-size: 12px;
}

.price-card.card-platinum .price-amount {
  color: #fff;
}

.price-card.card-platinum .price-period {
  color: rgba(167, 139, 250, 0.6);
}

.price-card.card-platinum .price-highlight-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.price-card.card-platinum .price-highlight-item::before {
  background: radial-gradient(circle, #8b5cf6, #6d28d9);
  min-width: 7px;
  min-height: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.price-card.card-platinum .price-pay-opts {
  opacity: 0.55;
}

.price-card.card-platinum .btn-check.filled {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.price-card.card-platinum .btn-check.filled:hover {
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.55);
}

.price-card.card-platinum .price-divider {
  background: rgba(167, 139, 250, 0.2);
}

.price-card.card-platinum .price-section-label {
  color: rgba(167, 139, 250, 0.55);
}

.price-card.card-platinum .price-features li {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.card-platinum .pf-check {
  background: rgba(167, 139, 250, 0.14);
  border-radius: 50%;
}

.price-card.card-platinum .pf-check::after {
  content: '✓';
  color: #a78bfa;
  font-size: 10px;
  font-weight: 800;
}

.price-card.card-platinum .pf-check-green {
  background: rgba(74, 222, 128, 0.12);
}

.price-card.card-platinum .pf-check-green::after {
  color: #4ade80;
}

.price-card.card-platinum .price-note {
  background: rgba(167, 139, 250, 0.07);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: rgba(255, 255, 255, 0.5);
}

.price-card.card-platinum .price-note strong {
  color: #a78bfa;
}

/* ── TITANIUM ──────────────────────── */
.price-card.card-titanium {
  background:
    radial-gradient(ellipse 120% 65% at 50% -10%, rgba(52, 211, 153, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, #001810 0%, #000f0a 60%, #000806 100%);
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.price-card.card-titanium:hover {
  box-shadow: 0 0 45px rgba(52, 211, 153, 0.25), 0 16px 48px rgba(0, 0, 0, 0.7);
}

.price-card.card-titanium::after {
  background: radial-gradient(ellipse 120% 50% at 50% 0%, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
}

.price-card.card-titanium .price-tier-name {
  color: #34d399;
  letter-spacing: .14em;
  font-size: 12px;
}

.price-card.card-titanium .price-amount {
  color: #fff;
}

.price-card.card-titanium .price-period {
  color: rgba(52, 211, 153, 0.6);
}

.price-card.card-titanium .price-highlight-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.price-card.card-titanium .price-highlight-item::before {
  background: radial-gradient(circle, #10b981, #047857);
  min-width: 7px;
  min-height: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.price-card.card-titanium .price-pay-opts {
  opacity: 0.55;
}

.price-card.card-titanium .btn-check.filled {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

.price-card.card-titanium .btn-check.filled:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  box-shadow: 0 6px 24px rgba(5, 150, 105, 0.55);
}

.price-card.card-titanium .price-divider {
  background: rgba(52, 211, 153, 0.18);
}

.price-card.card-titanium .price-section-label {
  color: rgba(52, 211, 153, 0.55);
}

.price-card.card-titanium .price-features li {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.card-titanium .pf-check {
  background: rgba(52, 211, 153, 0.12);
  border-radius: 50%;
}

.price-card.card-titanium .pf-check::after {
  content: '✓';
  color: #34d399;
  font-size: 10px;
  font-weight: 800;
}

.price-card.card-titanium .pf-check-green {
  background: rgba(52, 211, 153, 0.12);
}

.price-card.card-titanium .pf-check-green::after {
  color: #34d399;
}

.price-card.card-titanium .price-note {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

.price-card.card-titanium .price-note strong {
  color: #34d399;
}

/* Best badge */
.price-best-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
}

/* Shared text styles (overridden per card above) */
.price-tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.price-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.price-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.price-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.price-highlight-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e80000;
  flex-shrink: 0;
  min-width: 7px;
  min-height: 7px;
}

.price-pay-opts {
  width: 100%;
  height: 20px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.6;
}

.btn-check {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: all .15s;
  margin-bottom: 20px;
}

.btn-check.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.btn-check.outline:hover {
  border-color: rgba(232, 0, 0, 0.5);
  color: #fff
}

.btn-check.filled {
  background: #e80000;
  color: #fff;
}

.btn-check.filled:hover {
  background: #7e3947
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 16px 0;
}

.price-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.pf-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5a1a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-check::after {
  content: '✓';
  color: #60a5fa;
  font-size: 10px;
  font-weight: 800;
}

.pf-check-green {
  background: rgba(34, 197, 94, 0.15)
}

.pf-check-green::after {
  color: #22c55e
}

.price-note {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(232, 0, 0, 0.08);
  border: 1px solid rgba(232, 0, 0, 0.15);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.price-note strong {
  color: #60a5fa
}

/* Bonuses section */
.price-bonuses {
  margin-top: 4px
}

.bonus-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  padding: 3px 0;
}

.bonus-item strong {
  color: rgba(255, 255, 255, 0.6)
}

/* Pricing CTA row */
.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-cta-row span {
  display: flex;
  align-items: center;
  gap: 6px
}

.pricing-cta-row span::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}

.contact-experts-row {
  text-align: center;
  margin-bottom: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-experts-row a {
  color: #e80000;
  font-weight: 600;
}

/* ─── GUARANTEES ─── */
.guarantees-section {
  background: #060b1a;
  padding: 60px 0
}

.guarantees-img {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  display: block
}

/* ─── CONTACT ─── */
.contact-section {
  background: linear-gradient(180deg, #060b1a 0%, #07102a 100%);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.contact-left h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff
}

.contact-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px
}

.contact-feats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px
}

.contact-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 0, 0, 0.12);
  border: 1px solid rgba(232, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.feat-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px
}

.feat-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4)
}

.contact-chat-btns {
  display: flex;
  gap: 10px
}

.chat-btn-wa,
.chat-btn-tg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}

.chat-btn-wa {
  background: #25d366;
  color: #fff
}

.chat-btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px)
}

.chat-btn-tg {
  background: #229ed9;
  color: #fff
}

.chat-btn-tg:hover {
  background: #1a8ec2;
  transform: translateY(-1px)
}

.chat-btn-wa img,
.chat-btn-tg img {
  width: 18px;
  height: 18px
}

/* Contact form */
.contact-form-wrap {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
}

.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-form-wrap .sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.form-chat-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 24px
}

.form-chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: all .15s;
  flex: 1;
  justify-content: center;
}

.form-chat-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff
}

.form-chat-btn img {
  width: 16px;
  height: 16px
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #070e22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.2)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e80000;
  background: #08112b;
}

.form-group select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6)
}

.form-group select option {
  background: #0d1630;
  color: #fff
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5
}

.contact-feats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.feat-mini {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #070e22;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
}

.feat-mini-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px
}

.feat-mini h5 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px
}

.feat-mini p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #e80000;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s, transform .1s;
}

.btn-submit:hover {
  background: #7e3947;
  transform: translateY(-1px)
}

/* ─── MILESTONE ─── */
.milestone-section {
  background: #060b1a;
  padding: 80px 0
}

.milestone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.milestone-left .section-sub {
  margin-bottom: 28px
}

.milestone-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.milestone-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── TESTIMONIALS ─── */
.testi-section {
  background: #060b1a;
  padding: 80px 0
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.testi-header .section-title {
  margin-bottom: 0
}

.testi-header img {
  height: 32px;
  width: auto;
  opacity: .4
}

.testi-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px
}

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

.testi-card {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s;
}

.testi-card:hover {
  border-color: rgba(232, 0, 0, 0.3);
  transform: translateY(-2px)
}

.testi-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px
}

.testi-title-q {
  font-size: 14px;
  font-weight: 700;
  color: #fff
}

.testi-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  flex: 1
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px
}

/* ─── TEAM ─── */
.team-section {
  background: #060b1a;
  padding: 80px 0
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.team-content .section-sub {
  margin-bottom: 28px
}

.team-img-wrap {
  position: relative
}

.team-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover
}

.team-bg-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80%;
  opacity: .3;
  z-index: -1;
}

/* ─── OTHER SERVICES (Slider) ─── */
.other-services-section {
  background: #060b1a;
  padding: 80px 0
}

.other-slider-wrap {
  overflow: hidden;
  margin-top: 48px;
}

.other-slider {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
}

.other-card {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  width: calc(25% - 12px) !important;
  min-width: calc(25% - 12px) !important;
  max-width: calc(25% - 12px);
  flex-shrink: 0;
  flex-grow: 0;
  text-decoration: none;
  color: inherit;
}

.other-card:hover {
  border-color: rgba(232, 0, 0, 0.3);
  transform: translateY(-3px)
}

.other-card-img {
  width: 100%;
  height: 160px;
  max-height: 160px;
  object-fit: cover;
  display: block;
}

.other-card-body {
  padding: 20px 20px 24px
}

.other-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.other-card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6
}

/* Slider navigation */
.other-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  position: relative;
}

.other-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.other-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background .2s;
}

.other-dot.active {
  background: #e80000;
}

.other-slider-arrows {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
}

.other-arrow {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}

.other-arrow:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ─── GLOBAL / OFFICES ─── */
.offices-section {
  background: #060b1a;
  padding: 80px 0
}

.offices-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
}

/* ─── BLOG ─── */
.blog-section {
  background: #060b1a;
  padding: 80px 0
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px
}

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

.blog-card {
  background: #0a1122;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(232, 0, 0, 0.3);
  transform: translateY(-2px)
}

.blog-img {
  width: 100%;
  height: 140px;
  object-fit: cover
}

.blog-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.blog-tag {
  display: inline-block;
  background: rgba(232, 0, 0, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(232, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex: 1
}

.blog-cta {
  font-size: 13px;
  color: #e80000;
  font-weight: 600;
  margin-top: 4px
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: linear-gradient(135deg, #5a1a2a 0%, #7e3947 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.final-cta-inner {
  position: relative;
  z-index: 1
}

.final-cta h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto
}

.final-cta p {
  font-size: 17px;
  opacity: .75;
  margin-bottom: 36px
}

.final-cta .btn-white {
  background: #fff;
  color: #7e3947;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  transition: all .15s;
  display: inline-block;
}

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

.final-cta .fine {
  margin-top: 16px;
  font-size: 13px;
  opacity: .5
}

/* ─── FOOTER ─── */
footer {
  background: #060b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-partner-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-partner-logo {
  height: 28px;
  width: auto;
  opacity: .6
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.footer-badge {
  height: 32px;
  width: auto;
  opacity: .7
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  max-width: 140px;
  overflow: hidden;
}

img.footer-logo {
  height: 24px !important;
  max-height: 24px !important;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-logo img {
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color .15s;
}

.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.8)
}

.footer-renaar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.footer-renaar img {
  height: 24px;
  width: auto;
  opacity: .5;
  border-radius: 4px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color .15s
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6)
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25)
}

.footer-pay {
  height: 20px;
  width: auto;
  opacity: .4
}

/* ─── FLOATING CHAT ─── */
.float-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-chat-label {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 4px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform .2s;
  border: none;
}

.float-btn:hover {
  transform: scale(1.1)
}

.float-btn img {
  width: 24px;
  height: 24px
}

.float-btn-tg {
  background: #229ed9
}

.float-btn-wa {
  background: #25d366
}

/* Newsletter */
.newsletter-section {
  background: #0a1122;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5)
}

.newsletter-inner strong {
  color: #fff
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 420px
}

.newsletter-input {
  flex: 1;
  background: #060b1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s;
}

.newsletter-input:focus {
  border-color: #e80000
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25)
}

.newsletter-btn {
  background: #e80000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: background .15s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #7e3947
}

/* Footer graph */
.footer-graph {
  width: 100%;
  height: auto;
  opacity: .15;
  margin-bottom: 0;
  display: block;
}

/* ══════════════════════════════════════════════════════
   MOBILE HAMBURGER — Hidden on desktop
   ══════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 1010;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤991px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 991px) {

  /* ── Navbar ── */
  .nav-hamburger {
    display: flex;
  }

  nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
    padding: 12px 20px;
  }

  .nav-logo {
    max-width: 120px;
    overflow: hidden;
    flex-shrink: 1;
  }

  .nav-logo img {
    height: 22px !important;
    max-height: 22px !important;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .nav-mobile-wrap {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 12px;
  }

  .nav-mobile-wrap.nav-mobile-open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    display: none;
    min-width: 100% !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(13, 22, 48, 0.6);
    padding: 4px 0 8px 12px;
  }

  .nav-item.mobile-dd-open .nav-dropdown {
    display: block;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 0;
    pointer-events: none;
    display: none;
  }

  .nav-item.mobile-dd-open:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    display: block;
  }

  .nav-right {
    width: 100%;
    padding: 16px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 8px;
    margin-left: 0;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-nav,
  .nav-affiliate {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* ── Announce bar ── */
  .announce-badge {
    display: none;
  }

  .announce-bar {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* ── Hero ── */
  .hero {
    min-height: 70vh;
    padding: 40px 20px 60px;
  }

  /* ── Services ── */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ── Benefits ── */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-intro {
    grid-template-columns: 1fr;
  }

  /* ── Video Testimonials ── */
  .video-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── How It Works ── */
  .steps-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-images {
    position: static;
  }

  /* ── Comparison ── */
  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 120px 120px;
    padding: 0 16px;
  }

  .comp-h-cell,
  .comp-cell {
    font-size: 12px;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ── Milestones ── */
  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Team ── */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── Blog ── */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-badges {
    margin-left: 0;
  }

  /* ── Other Services ── */
  .other-card {
    min-width: calc(50% - 8px);
  }

  /* ── Section commons ── */
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  /* ── Pricing CTA row ── */
  .pricing-cta-row {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: 32px 16px 48px;
  }

  .hero-h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero-sub {
    font-size: 15px;
  }

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

  .hero-btns .btn-blue,
  .hero-btns .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* ── Services ── */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ── Benefits ── */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* ── Video Testimonials ── */
  .video-testi-grid {
    grid-template-columns: 1fr;
  }

  /* ── Comparison ── */
  .comp-header,
  .comp-row {
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 0 12px;
    font-size: 11px;
  }

  .comp-cell {
    padding: 12px 0;
    font-size: 11px;
  }

  .uproas-col-label {
    padding: 5px 10px;
    font-size: 11px;
  }

  .uproas-col-label img {
    height: 12px;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 36px;
  }

  .platform-tabs {
    flex-wrap: wrap;
    border-radius: 10px;
  }

  .p-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* ── Blog ── */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* ── Other Services ── */
  .other-card {
    min-width: calc(100% - 0px);
  }

  /* ── Contact ── */
  .contact-left h2 {
    font-size: 28px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

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

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

  .contact-chat-btns {
    flex-direction: column;
  }

  .form-chat-btns {
    flex-direction: column;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    justify-content: center;
  }

  /* ── Section commons ── */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: clamp(24px, 5vw, 32px);
  }

  /* ── Final CTA ── */
  .final-cta {
    padding: 48px 0;
  }

  /* ── Newsletter ── */
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }

  /* ── Milestones ── */
  .milestone-btns {
    flex-direction: column;
  }

  .milestone-btns .btn-blue,
  .milestone-btns .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* ── Pricing CTA ── */
  .pricing-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  /* ── Partners strip ── */
  .marquee-inner {
    gap: 32px;
  }

  .marquee-inner img {
    height: 18px;
  }
}