@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Updated Color Palette based on Robozin logo */
  --bg-primary: #080C16;
  /* Deep dark blue/black for max contrast */
  --bg-secondary: #111827;
  /* Dark gray/blue for cards */
  --bg-tertiary: #1F2937;
  /* Lighter gray/blue for hovers */

  --text-primary: #ffffff;
  /* Pure white for high contrast */
  --text-secondary: #9ca3af;
  /* Light gray for secondary text */

  /* Logo Accents */
  --accent-primary: #14B8C8;
  /* Cyan from .ai and bottom arc */
  --accent-secondary: #F7B731;
  /* Yellow/Orange from top arc */
  --accent-neon: #00E5FF;
  /* Brighter cyan for glows/neons */
  --highlight: #22D3EE;
  /* Cyan highlight variation */

  /* Glass effects */
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(20, 184, 200, 0.15);
  --glass-border-hover: rgba(20, 184, 200, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.heading-gradient {
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.logo svg {
  height: 40px;
  width: auto;
  fill: var(--accent-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(20, 184, 200, 0.5);
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-primary), var(--highlight));
  box-shadow: 0 4px 15px rgba(247, 183, 49, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(247, 183, 49, 0.5);
  transform: translateY(-2px);
}

/* Hero Section Layout */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 184, 200, 0.15) 0%, rgba(8, 12, 22, 0) 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-top {
  height: 64px;
  width: auto;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.hero-text-center h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text-center p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.hero-content {
  text-align: left;
}

/* Search Modal Form */
.search-modal {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 0.5rem;
}

.search-field {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.search-field:focus-within {
  border-color: var(--accent-neon);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

.search-field svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.search-field select,
.search-field input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.search-field input {
  cursor: text;
}

.search-field select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.search-field select:disabled {
  color: var(--text-secondary);
  cursor: not-allowed;
}

.btn-search-full {
  background: linear-gradient(135deg, var(--accent-primary), var(--highlight));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-search-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 183, 49, 0.4);
}

.btn-search-full svg {
  width: 20px;
  height: 20px;
}

/* Hero Map Container */
.hero-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.map-container {
  width: 100%;
  max-width: 600px;
  background: var(--glass-bg);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
}

.map-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(20, 184, 200, 0.1));
}

.state {
  fill: var(--bg-tertiary);
  stroke: var(--bg-primary);
  stroke-width: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.state:hover {
  fill: var(--accent-primary);
  filter: drop-shadow(0 0 8px var(--accent-neon));
  transform: translateY(-2px);
}

/* Consumer Section */
.consumer-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(20, 184, 200, 0.2);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(20, 184, 200, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-neon);
}

.category-icon svg {
  width: 32px;
  height: 32px;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.more-categories {
  text-align: center;
  margin-top: 3rem;
}

/* Professional Section */
.professional-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.pro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pro-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pro-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 3rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefits-list li svg {
  color: #10b981;
  width: 24px;
  height: 24px;
}

.pro-image {
  position: relative;
}

.pro-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(247, 183, 49, 0.15) 0%, rgba(8, 12, 22, 0) 70%);
  z-index: -1;
}

.pro-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--accent-primary), var(--highlight));
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(247, 183, 49, 0.4);
}

.badge-1 {
  top: -20px;
  right: -20px;
}

.badge-2 {
  bottom: -20px;
  left: -20px;
}

/* WhatsApp Demo Section */
.whatsapp-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  text-align: center;
}

.whatsapp-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.whatsapp-section>p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.whatsapp-demo-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: #111b21;
  border-radius: 40px;
  border: 8px solid #333;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #333;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.wa-header {
  background: #202c33;
  padding: 2.5rem 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wa-avatar svg {
  width: 24px;
  height: 24px;
}

.wa-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-name {
  font-weight: 600;
  font-size: 1rem;
}

.wa-status {
  font-size: 0.8rem;
  color: #8696a0;
}

.wa-chat {
  flex: 1;
  background-image: url('whatsapp-bg.png');
  background-size: cover;
  background-color: #0b141a;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wa-chat::-webkit-scrollbar {
  display: none;
}

.msg {
  max-width: 85%;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
  text-align: left;
  color: #e9edef;
}

.msg-received {
  background: #202c33;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.msg-sent {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.msg-time {
  font-size: 0.65rem;
  color: #8696a0;
  margin-left: 0.5rem;
  vertical-align: bottom;
  float: right;
  margin-top: 0.25rem;
}

.wa-footer {
  background: #202c33;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wa-input-fake {
  flex: 1;
  background: #2a3942;
  border-radius: 99px;
  padding: 0.5rem 1rem;
  color: #8696a0;
  font-size: 0.95rem;
  text-align: left;
}

.wa-audio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.wa-audio-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.wa-audio-bar {
  width: 3px;
  background: #8696a0;
  border-radius: 3px;
  animation: audioPlay 1.5s infinite ease-in-out;
}

.wa-audio-bar:nth-child(2) {
  animation-delay: 0.1s;
  height: 10px;
}

.wa-audio-bar:nth-child(3) {
  animation-delay: 0.2s;
  height: 16px;
}

.wa-audio-bar:nth-child(4) {
  animation-delay: 0.3s;
  height: 12px;
}

.wa-audio-bar:nth-child(5) {
  animation-delay: 0.4s;
  height: 18px;
}

.wa-audio-bar:nth-child(6) {
  animation-delay: 0.5s;
  height: 8px;
}

@keyframes audioPlay {

  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1);
  }
}

.wa-interactive {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.wa-btn {
  flex: 1;
  background: #2a3942;
  color: #00a884;
  border: 1px solid #3d505c;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.wa-btn:hover {
  background: #3d505c;
}

.wa-contact-card {
  background: #2a3942;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.wa-contact-header {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #3d505c;
}

.wa-contact-btn {
  text-align: center;
  padding: 0.5rem;
  color: #00a884;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* Chat Animations & Utilities */
.d-none {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-indicator {
  display: flex !important;
  gap: 4px;
  padding: 12px 16px !important;
  align-items: center;
  width: fit-content;
}

.typing-indicator .dot {
  width: 6px;
  height: 6px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .pro-container {
    grid-template-columns: 1fr;
  }

  .pro-image {
    margin-top: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    border-radius: 24px;
    padding: 1rem;
  }

  .search-field {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .btn-search {
    width: 100%;
    border-radius: 12px;
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Dashboard & Consumer Area */
.dashboard-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 8rem 0 4rem;
  min-height: 80vh;
}

.sidebar {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  height: fit-content;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.sidebar-menu a.active,
.sidebar-menu a:hover {
  background: rgba(20, 184, 200, 0.1);
  color: var(--accent-primary);
}

.dashboard-content {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
}

.table-responsive {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.dashboard-table th,
.dashboard-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-table th {
  color: var(--text-secondary);
  font-weight: 500;
}

.star-rating {
  color: var(--accent-secondary);
  cursor: pointer;
  letter-spacing: 2px;
}

.star-rating.inactive {
  color: var(--glass-border);
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.badge.quote {
  background: rgba(247, 183, 49, 0.2);
  color: var(--accent-secondary);
}

.badge.direct {
  background: rgba(20, 184, 200, 0.2);
  color: var(--accent-primary);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

/* Propriedades */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.property-card {
  background: var(--bg-tertiary);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  transition: transform 0.2s;
}

.property-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

/* Profissional Profile */
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--accent-primary);
  margin: 0 auto 1rem;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.recommended-section {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.avatar-group {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.avatar-group img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--bg-secondary);
  margin-left: -15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 0.2s;
}

.avatar-group img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.avatar-group img:first-child {
  margin-left: 0;
}
/* Featured Professionals */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pro-card-featured {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}
.pro-card-featured:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.pro-card-featured .avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: bold; color: #fff;
}

/* Pricing Table */
.pricing-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-card {
  background: #151a25;
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.pricing-card.premium {
  border: 1px solid rgba(247, 183, 49, 0.3);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: var(--accent-secondary);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.premium .pricing-price {
  color: var(--accent-secondary);
}
.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #d1d5db;
}
.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.premium .pricing-features svg {
  color: var(--accent-secondary);
}
.feature-limited {
  margin-left: auto;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.pricing-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Featured Professionals */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pro-card-featured {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}
.pro-card-featured:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.pro-card-featured .avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: bold; color: #fff;
}

/* Pricing Table */
.pricing-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-card {
  background: #151a25;
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.pricing-card.premium {
  border: 1px solid rgba(247, 183, 49, 0.3);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: var(--accent-secondary);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.premium .pricing-price {
  color: var(--accent-secondary);
}
.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #d1d5db;
}
.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.premium .pricing-features svg {
  color: var(--accent-secondary);
}
.feature-limited {
  margin-left: auto;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.pricing-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

 / *   B r e a d c r u m b s   * / 
 . b r e a d c r u m b   { 
     m a r g i n - t o p :   6 r e m ; 
     p a d d i n g :   1 r e m   0 ; 
     d i s p l a y :   f l e x ; 
     g a p :   0 . 5 r e m ; 
     a l i g n - i t e m s :   c e n t e r ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
 } 
 
 . b r e a d c r u m b   a   { 
     c o l o r :   v a r ( - - a c c e n t - p r i m a r y ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   c o l o r   0 . 2 s ; 
 } 
 
 . b r e a d c r u m b   a : h o v e r   { 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
     c o l o r :   v a r ( - - h i g h l i g h t ) ; 
 } 
 
 . b r e a d c r u m b   s p a n   { 
     c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
 } 
 
 / *   S e l o   R o b o z i n   * / 
 . s e l o - r o b o z i n   { 
     b a c k g r o u n d :   # 1 0 b 9 8 1 ; 
     c o l o r :   # f f f ; 
     p a d d i n g :   0 . 2 r e m   0 . 6 r e m ; 
     b o r d e r - r a d i u s :   9 9 p x ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     d i s p l a y :   i n l i n e - f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 . 3 r e m ; 
     v e r t i c a l - a l i g n :   m i d d l e ; 
     m a r g i n - l e f t :   0 . 5 r e m ; 
 } 
 
 . s e l o - r o b o z i n   s v g   { 
     w i d t h :   1 4 p x ; 
     h e i g h t :   1 4 p x ; 
 } 
 
 / *   H o r i z o n t a l   R e v i e w   C a r d s   * / 
 . r e v i e w - c a r d   { 
     b a c k g r o u n d :   v a r ( - - b g - t e r t i a r y ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     p a d d i n g :   1 . 5 r e m ; 
     d i s p l a y :   f l e x ; 
     g a p :   1 r e m ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     t e x t - a l i g n :   l e f t ; 
     m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . r e v i e w - c a r d   . r e v i e w e r - a v a t a r   { 
     w i d t h :   5 0 p x ; 
     h e i g h t :   5 0 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     f l e x - s h r i n k :   0 ; 
     b a c k g r o u n d - c o l o r :   # 3 b 8 2 f 6 ;   / *   D e f a u l t   f a l l b a c k   * / 
 } 
 
 . r e v i e w - c a r d - c o n t e n t   { 
     f l e x - g r o w :   1 ; 
 } 
 
 . r e v i e w - c a r d - h e a d e r   { 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     m a r g i n - b o t t o m :   0 . 2 5 r e m ; 
 } 
 
 . r e v i e w - c a r d - n a m e   { 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
 } 
 
 . r e v i e w - c a r d - t e x t   { 
     c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
     l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . r e v i e w s - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
     g a p :   1 . 5 r e m ; 
     m a r g i n - t o p :   1 r e m ; 
 } 
  
 