
:root {
  --red: #ff4655;
  --red-dark: #d63447;
  --red-glow: rgba(255, 70, 85, 0.3);
  --dark: #0a0a0b;
  --dark-2: #111113;
  --dark-3: #1a1a1e;
  --dark-4: #252529;
  --gray: #8b8b8e;
  --gray-light: #b4b4b7;
  --white: #ece8e1;
  --white-pure: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--red);
  color: var(--white-pure);
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}

.cursor.cursor-hover {
  width: 40px;
  height: 40px;
  background: var(--white);
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 70, 85, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
}

.cursor-follower.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
}

@media (pointer: coarse) {
  .cursor, .cursor-follower {
    display: none;
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.preloader-v {
  color: var(--red);
  display: inline-block;
}

.preloader-text {
  color: var(--white);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-3);
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.preloader-percent {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.2em;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.nav-scrolled {
  padding: 0.8rem 0;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-v {
  color: var(--red);
}

.nav-logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}

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

.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--red);
  color: var(--white-pure);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 70, 85, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

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

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

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
  transform: translateY(40px);
  opacity: 0;
}

.mobile-menu.active .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
  color: var(--red);
}

.mobile-menu-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--red);
  color: var(--white-pure);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-top: 1rem;
  transform: translateY(40px);
  opacity: 0;
}

.mobile-menu.active .mobile-menu-cta {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s var(--ease-out) 0.35s, opacity 0.6s var(--ease-out) 0.35s;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 70, 85, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 0.9rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.3) brightness(0.6);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.5) 40%, rgba(10, 10, 11, 0.8) 100%),
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(255, 70, 85, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(255, 70, 85, 0.1) 0%, transparent 50%);
  mix-blend-mode: normal;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 70, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 70, 85, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content-centered {
  text-align: center;
  margin: 0 auto;
}

.hero-content-centered .hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.hero-content-centered .hero-actions {
  justify-content: center;
}

.hero-content-centered .hero-stats {
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  overflow: hidden;
  display: block;
}

.hero-title-line span {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title-accent {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-stat-value {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}


/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  writing-mode: vertical-rl;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: var(--dark-2);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px !important;
  height: 6px;
  background: var(--red) !important;
  border-radius: 50%;
  display: inline-block;
  font-size: 0 !important;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.section-title-line {
  overflow: hidden;
  display: block;
}

.section-title-line span {
  display: inline-block;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 500px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}

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

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--dark-2);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 70, 85, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-bg {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(255, 70, 85, 0.2);
  transform: translateY(-5px);
}

.service-card-featured {
  border-color: rgba(255, 70, 85, 0.2);
  background: linear-gradient(180deg, rgba(255, 70, 85, 0.05) 0%, var(--dark-2) 100%);
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--red);
  color: var(--white-pure);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.service-card-icon {
  color: var(--red);
  margin-bottom: 1.5rem;
  transition: transform 0.4s var(--ease-out);
}

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

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card-features li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  transition: gap 0.3s var(--ease-out);
}

.service-card-link:hover {
  gap: 0.8rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 8rem 0;
  background: var(--dark-2);
}

.steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.steps-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.steps-line-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--red), rgba(255, 70, 85, 0.2));
  transition: height 0.1s linear;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
}

.step-number {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 2px solid rgba(255, 70, 85, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.step-number span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
}

.step-pulse {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 70, 85, 0.2);
  border-radius: 50%;
  animation: step-pulse 2s ease infinite;
}

@keyframes step-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 400px;
}

/* ============================================
   AGENTS SHOWCASE
   ============================================ */
.agents-showcase {
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}

.agents-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.agent-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.agent-card-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 70, 85, 0.08) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.5s var(--ease-out);
}

.agent-card-img-wrapper img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 0 20px rgba(255, 70, 85, 0.15));
}

.agent-card:hover .agent-card-img-wrapper {
  border-color: rgba(255, 70, 85, 0.3);
  transform: translateY(-5px);
}

.agent-card:hover .agent-card-img-wrapper img {
  transform: scale(1.05);
}

.agent-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.9), transparent);
  display: flex;
  align-items: flex-end;
}

.agent-role {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255, 70, 85, 0.3);
  border-radius: 3px;
}

.agent-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
  color: var(--gray-light);
  transition: color 0.3s;
}

.agent-card:hover .agent-card-name {
  color: var(--white);
}

/* ============================================
   RANKS
   ============================================ */
.ranks {
  padding: 8rem 0;
  background: var(--dark-2);
}

.ranks-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.rank-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.4s var(--ease-out);
  cursor: default;
}

.rank-item:hover {
  transform: translateY(-8px);
}

.rank-icon {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 15px rgba(255, 70, 85, 0.2));
  transition: filter 0.3s, transform 0.3s var(--ease-elastic);
}

.rank-item:hover .rank-icon {
  filter: drop-shadow(0 0 25px rgba(255, 70, 85, 0.4));
  transform: scale(1.15);
}

.rank-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s;
}

.rank-item:hover .rank-name {
  color: var(--white);
}

/* Rank Selector */
.rank-selector {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.rank-selector-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rank-selector-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.rank-select {
  padding: 0.8rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 200px;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238b8b8e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.rank-select option {
  background: var(--dark-3);
  color: var(--white);
}

.rank-select:focus {
  outline: none;
  border-color: var(--red);
}

.rank-selector-arrow {
  color: var(--red);
  padding-bottom: 0.6rem;
}

.rank-cta {
  margin-left: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 8rem 0;
  background: var(--dark);
}

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

.testimonial-card {
  padding: 2rem;
  border-radius: 8px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card:hover {
  border-color: rgba(255, 70, 85, 0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #ffd700;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white-pure);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-rank {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 8rem 0;
  background: var(--dark-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-contact-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon span {
  position: absolute;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.faq-icon span:first-child {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon span:last-child {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-question {
  color: var(--red);
}

.faq-item.active .faq-icon span {
  background: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 70, 85, 0.15) 0%, transparent 60%),
    var(--dark);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

.cta-actions {
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ============================================
   WHATSAPP FLOAT (simple - for service pages)
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.wa-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out);
  position: relative;
  animation: wa-pulse 2s ease infinite;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-fab-close {
  display: none;
}

.wa-widget.open .wa-fab-icon {
  display: none;
}

.wa-widget.open .wa-fab-close {
  display: block;
}

.wa-widget.open .wa-fab {
  background: var(--dark-3);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.wa-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-bounce 1s ease infinite;
}

.wa-widget.open .wa-fab-badge,
.wa-fab-badge.hidden {
  display: none;
}

@keyframes badge-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.wa-chat {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--white-pure);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.wa-widget.open .wa-chat {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-chat-header {
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
}

.wa-chat-header-icon {
  flex-shrink: 0;
}

.wa-chat-header-info {
  flex: 1;
}

.wa-chat-header-info strong {
  display: block;
  font-size: 0.9rem;
}

.wa-chat-header-info span {
  font-size: 0.65rem;
  opacity: 0.8;
}

.wa-chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.wa-chat-close:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 1.2rem;
  background: #e5ddd5;
  min-height: 100px;
}

.wa-chat-bubble {
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 0 10px 10px 10px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wa-chat-bubble p {
  font-size: 0.82rem;
  color: #303030;
  line-height: 1.5;
  margin: 0;
}

.wa-chat-time {
  font-size: 0.6rem;
  color: #999;
  display: block;
  text-align: right;
  margin-top: 0.3rem;
}

.wa-chat-footer {
  padding: 0.8rem;
  background: #f0f0f0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.wa-chat-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 20px;
  background: white;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: #303030;
  outline: none;
}

.wa-chat-input::placeholder {
  color: #999;
}

.wa-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.wa-chat-send:hover {
  background: #128C7E;
}

.wa-chat-disclaimer {
  text-align: center;
  font-size: 0.6rem;
  color: #999;
  padding: 0.4rem;
  background: #f0f0f0;
  margin: 0;
}

@media (max-width: 480px) {
  .wa-chat {
    width: calc(100vw - 2rem);
    right: -0.5rem;
  }
}

/* ============================================
   MAGNETIC BUTTON EFFECT
   ============================================ */
.magnetic-btn {
  position: relative;
  display: inline-flex;
}

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

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

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left .section-header-left {
    text-align: center;
  }

  .faq-contact-text {
    text-align: center;
  }

  .faq-left .btn {
    margin: 0 auto;
  }
}

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

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }

  .hero-stat-divider {
    width: 1px;
    height: 30px;
  }

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

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

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

  .rank-selector {
    flex-direction: column;
    align-items: center;
  }

  .rank-selector-arrow {
    transform: rotate(90deg);
  }

  .ranks-grid {
    gap: 1.5rem;
  }

  .rank-icon {
    width: 44px;
    height: 44px;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .agents-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   ANIMATIONS (initial states handled by GSAP)
   ============================================ */
[data-animate] {
  will-change: transform, opacity;
}

.revealed .section-title-line span,
.revealed .hero-title-line span {
  transform: translateY(0);
  transition: transform 0.8s var(--ease-out);
}

/* ============================================
   SERVICE PAGES
   ============================================ */
.service-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  background: var(--dark);
}

.service-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255, 70, 85, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.service-hero .hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-hero-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 70, 85, 0.08);
  border: 1px solid rgba(255, 70, 85, 0.15);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.service-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 520px;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.service-back:hover {
  color: var(--red);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-section {
  padding: 4rem 0 5rem;
  background: var(--dark);
}

.calculator {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  position: relative;
}

.calculator-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-align: center;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.calculator-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calculator-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.calculator-field select,
.calculator-field input[type="range"] {
  width: 100%;
}

.calc-select {
  padding: 0.8rem 1.2rem;
  background: var(--dark-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238b8b8e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.calc-select option {
  background: var(--dark-4);
  color: var(--white);
}

.calc-select:focus {
  outline: none;
  border-color: var(--red);
}

.calculator-arrow {
  color: var(--red);
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
}

.calc-rank-preview {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.calc-rank-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.2));
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: scale(0.8);
}

.calc-rank-icon.active {
  opacity: 1;
  transform: scale(1);
}

.calc-rank-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
}

.calculator-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.calculator-extras-title {
  width: 100%;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.calc-extra-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.3s;
}

.calc-extra-label:hover {
  color: var(--white);
}

.calc-extra-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}

.calc-extra-label input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}

.calc-extra-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-extra-pct {
  font-size: 0.7rem;
  color: var(--red);
  opacity: 0.7;
}

.calculator-result {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calculator-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.calculator-result-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  text-shadow: 0 0 30px rgba(255, 70, 85, 0.3);
}

.calculator-result-cta {
  margin-top: 1.5rem;
}

.calculator-result-cta .btn {
  width: 100%;
  justify-content: center;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.apply-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--white-60);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.apply-input {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.apply-input::placeholder {
  color: var(--white-40);
}

.apply-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.1);
}

.apply-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.apply-select option {
  background: var(--dark);
  color: var(--white);
}

/* Range slider */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--dark-4);
  border-radius: 3px;
  outline: none;
  margin-top: 0.5rem;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 2px solid var(--white);
}

.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 2px solid var(--white);
}

.calc-range-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
  margin-top: 0.5rem;
  text-align: center;
}

/* Service Features */
.service-features {
  padding: 5rem 0;
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.feature-item:hover {
  border-color: rgba(255, 70, 85, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  color: var(--red);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .calculator {
    padding: 1.5rem;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calculator-grid-2 {
    grid-template-columns: 1fr;
  }

  .calculator-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .calculator-extras {
    flex-direction: column;
  }

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

  .service-hero {
    padding: 7rem 1.5rem 2rem;
    min-height: 35vh;
  }

  .rank-picker-grid {
    gap: 0.4rem;
  }

  .rank-pick {
    width: 40px;
    height: 40px;
    padding: 4px;
  }

  .rank-pick span {
    font-size: 0.5rem;
  }

  .trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .duration-cards,
  .type-cards,
  .md-type-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RANK PICKER
   ============================================ */
.rank-picker {
  margin-bottom: 1.5rem;
}

.rank-picker > label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.rank-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.rank-pick {
  width: 52px;
  height: 52px;
  padding: 6px;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all 0.25s var(--ease-out);
  position: relative;
  opacity: 0.6;
}

.rank-pick img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

.rank-pick span {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
  line-height: 1;
}

.rank-pick:hover:not(.disabled) {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.rank-pick.active {
  opacity: 1;
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.1);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.2);
  transform: scale(1.1);
}

.rank-pick.active span {
  color: var(--white);
}

.rank-pick.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.rank-picked-name {
  text-align: center;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--red);
  min-height: 1.4rem;
}

.calculator-arrow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  color: var(--red);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

.trust-badge svg {
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================
   DURATION / TYPE CARDS
   ============================================ */
.duration-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.duration-card {
  padding: 1rem 0.5rem;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.duration-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.duration-card.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.1);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.15);
}

.duration-card-hours {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.duration-card-price {
  font-size: 0.7rem;
  color: var(--red);
  margin-top: 0.3rem;
  font-weight: 600;
}

.duration-card-discount {
  font-size: 0.6rem;
  color: var(--gray);
  margin-top: 0.2rem;
}

.type-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.type-card {
  padding: 1.2rem 0.8rem;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
}

.type-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.type-card.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.1);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.15);
}

.type-card svg {
  display: block;
  margin: 0 auto 0.5rem;
  color: var(--red);
}

.md-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.md-type-card {
  padding: 1.5rem;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.md-type-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.md-type-card.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.1);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.15);
}

.md-type-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}

.md-type-card-desc {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* Price animation */
.calculator-result-price.animating {
  transform: scale(1.05);
  color: var(--red);
}

/* ============================================
   RANK STEP PICKER (2-step: rank then div)
   ============================================ */
.calc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.rank-step-picker {
  text-align: center;
}

.rank-step-picker > label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.rank-step-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.rank-step-icon {
  width: 56px;
  height: 56px;
  padding: 6px;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out);
  opacity: 0.5;
}

.rank-step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  pointer-events: none;
}

.rank-step-icon:hover:not(.disabled) {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.rank-step-icon.active {
  opacity: 1;
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.1);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.2);
  transform: scale(1.08);
}

.rank-step-icon.disabled {
  opacity: 0.15;
  cursor: not-allowed;
  pointer-events: none;
}

.rank-step-divs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  min-height: 50px;
}

.rank-step-divs-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.rank-step-divs-row {
  display: flex;
  gap: 0.5rem;
}

.rank-step-div {
  width: 44px;
  height: 32px;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--gray-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-step-div:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.rank-step-div.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.15);
  color: var(--white);
}

.rank-step-div.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.rank-step-selected {
  text-align: center;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--red);
  min-height: 1.5rem;
}

/* ============================================
   EXTRAS GRID (Turbine seu pedido)
   ============================================ */
.extras-section {
  margin-bottom: 2rem;
}

.extras-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.extra-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--dark-4);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.extra-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.extra-card.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.08);
}

.extra-card svg {
  color: var(--gray);
  flex-shrink: 0;
  transition: color 0.2s;
}

.extra-card.active svg {
  color: var(--red);
}

.extra-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  flex: 1;
}

.extra-card.active .extra-card-title {
  color: var(--white);
}

.extra-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 70, 85, 0.1);
  white-space: nowrap;
}

.extra-card-tag.free {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.booster-picker-panel {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  animation: boosterPanelIn 0.3s ease;
}

@keyframes boosterPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booster-pick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--white-10);
  background: var(--dark-2);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.booster-pick:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--dark-3);
  transform: translateY(-1px);
}

.booster-pick.active {
  border-color: var(--red);
  background: rgba(255, 70, 85, 0.06);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.12), inset 0 0 0 1px rgba(255, 70, 85, 0.1);
}

.bp-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.bp-avatar-wrap img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white-10);
  transition: border-color 0.3s;
}

.booster-pick.active .bp-avatar-wrap img {
  border-color: var(--red);
}

.bp-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--dark-2);
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.5);
}

.bp-status.offline {
  background: #666;
  box-shadow: none;
}

.bp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.bp-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bp-rank {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--white-60);
  font-weight: 500;
}

.bp-rank img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bp-winrate {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: #25D366;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.bp-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.bp-check svg {
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--white);
}

.booster-pick.active .bp-check {
  background: var(--red);
  border-color: var(--red);
}

.booster-pick.active .bp-check svg {
  opacity: 1;
}

@media (max-width: 768px) {
  .calc-two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rank-step-icon {
    width: 44px;
    height: 44px;
  }

  .rank-step-icon img {
    width: 28px;
    height: 28px;
  }

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

  .promo-banner {
    font-size: 0.65rem;
  }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white-pure);
  letter-spacing: 0.02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.promo-banner p {
  margin: 0;
  line-height: 1.4;
}

.promo-banner + .nav {
  top: 28px;
}

@media (max-width: 600px) {
  .promo-banner {
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
  }

  .promo-banner + .nav {
    top: 24px;
  }

  .promo-highlight {
    font-size: 0.55rem;
    padding: 0.05rem 0.35rem;
  }
}

.promo-highlight {
  background: var(--white-pure);
  color: var(--red);
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.7rem;
  margin: 0 0.2rem;
}

/* Hero stat icon */
.hero-stat-icon {
  color: var(--red);
  margin-bottom: 0.3rem;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Boosters home section */
.boosters-home {
  padding: 6rem 0;
  background: var(--dark-2);
}

/* Payment section */
.payment-section {
  padding: 2.5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.payment-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.payment-methods {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  padding: 0.5rem 1rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.payment-method svg {
  color: var(--red);
}

/* ============================================
   BOOSTERS LIST
   ============================================ */
.boosters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.booster-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.booster-card:hover {
  border-color: rgba(255, 70, 85, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.booster-online-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

.booster-online-dot.offline {
  background: var(--gray);
  box-shadow: none;
}

.booster-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255, 70, 85, 0.3);
  object-fit: contain;
  background: var(--dark-3);
  padding: 8px;
  margin: 0 auto 1rem;
  display: block;
}

.booster-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.booster-badges {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.badge {
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-rank {
  background: rgba(255, 70, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 70, 85, 0.3);
}

.badge-verified {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.booster-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.booster-quick-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.booster-quick-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.booster-quick-stat-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}

.booster-quick-stat-lbl {
  font-size: 0.6rem;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
  .boosters-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BOOSTER PROFILE
   ============================================ */
.profile-hero {
  padding: 8rem 2rem 3rem;
  background: var(--dark);
  position: relative;
}

.profile-hero-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 900px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255, 70, 85, 0.3);
  object-fit: contain;
  background: var(--dark-3);
  padding: 10px;
  flex-shrink: 0;
  position: relative;
}

.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-online-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 0.15rem 0.5rem;
  background: #25D366;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.profile-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.profile-meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin-top: 0.8rem;
  max-width: 500px;
}

.profile-inline-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.profile-inline-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.profile-inline-stat svg {
  color: var(--red);
}

.profile-inline-stat strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
}

.profile-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Stats row */
.profile-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}

.profile-stat-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
}

.profile-stat-card-icon {
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.profile-stat-card-icon svg {
  color: var(--red);
}

.profile-stat-card-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

/* Info grid */
.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.profile-info-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.5rem;
}

.profile-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-info-card h3 svg {
  color: var(--red);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile-tag {
  padding: 0.3rem 0.7rem;
  background: var(--dark-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--gray-light);
}

.profile-tag.agent {
  background: rgba(255, 70, 85, 0.1);
  border-color: rgba(255, 70, 85, 0.2);
  color: var(--red);
}

/* Two col: History + Reviews */
.profile-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem 0 3rem;
}

.profile-col {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.5rem;
}

.profile-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.profile-col-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-col-header h3 svg {
  color: var(--red);
}

.profile-col-header span {
  font-size: 0.7rem;
  color: var(--gray);
}

.history-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.history-item:last-child {
  border-bottom: none;
}

.history-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.history-info {
  flex: 1;
}

.history-route {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.history-detail {
  font-size: 0.65rem;
  color: var(--gray);
  margin-top: 0.15rem;
}

.history-time {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.history-date {
  font-size: 0.6rem;
  color: var(--gray);
}

.review-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-stars {
  color: #ffd700;
  display: flex;
  gap: 2px;
}

.review-score {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.review-count {
  font-size: 0.7rem;
  color: var(--gray);
}

.review-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.review-item:last-child {
  border-bottom: none;
}

.review-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.review-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.review-item-date {
  font-size: 0.65rem;
  color: var(--gray);
}

.review-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.review-item-type {
  font-size: 0.6rem;
  color: var(--gray);
}

.review-item-text {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .profile-hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-inline-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .profile-actions {
    justify-content: center;
  }

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

  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-two-col {
    grid-template-columns: 1fr;
  }

  .profile-info h1 {
    justify-content: center;
  }
}
