/* HubPro HTML - Main Styles */
/* Based on the React app's Tailwind + custom styles */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --hubpro-navy: #1A3A5C;
  --hubpro-navy-light: #21476E;
  --hubpro-navy-dark: #122B4A;
  --hubpro-orange: #FF6A00;
  --hubpro-orange-dark: #E05E00;
  --hubpro-orange-light: #FF8533;
  --hubpro-steel: #A0B3C8;
  --hubpro-green: #22C55E;
  --hubpro-blue: #3b82f6;
  --hubpro-slate: #2A4F7A;

  /* Theme colors */
  --primary: oklch(0.65 0.2 45);
  --primary-foreground: oklch(1 0 0);
  --background: oklch(0.18 0.025 250);
  --foreground: oklch(0.96 0.005 250);
  --card: oklch(0.21 0.025 250);
  --card-foreground: oklch(0.96 0.005 250);
  --popover: oklch(0.21 0.025 250);
  --popover-foreground: oklch(0.95 0.005 250);
  --secondary: oklch(0.25 0.025 250);
  --secondary-foreground: oklch(0.88 0.005 250);
  --muted: oklch(0.27 0.025 250);
  --muted-foreground: oklch(0.70 0.02 250);
  --accent: oklch(0.27 0.025 250);
  --accent-foreground: oklch(0.95 0.005 250);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.985 0 0);
  --border: oklch(0.30 0.02 250);
  --input: oklch(0.30 0.02 250);
  --ring: oklch(0.65 0.2 45);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Radius */
  --radius: 0.5rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

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

img {
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Background Colors */
.bg-hubpro-navy { background-color: var(--hubpro-navy); }
.bg-hubpro-navy-light { background-color: var(--hubpro-navy-light); }
.bg-hubpro-navy-dark { background-color: var(--hubpro-navy-dark); }
.bg-hubpro-orange { background-color: var(--hubpro-orange); }
.bg-hubpro-steel { background-color: var(--hubpro-steel); }
.bg-hubpro-green { background-color: var(--hubpro-green); }

/* Text Colors */
.text-hubpro-navy { color: var(--hubpro-navy); }
.text-hubpro-orange { color: var(--hubpro-orange); }
.text-hubpro-steel { color: var(--hubpro-steel); }
.text-hubpro-green { color: var(--hubpro-green); }
.text-white { color: white; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(18, 43, 74, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .navbar-inner { height: 72px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--hubpro-orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 14px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--hubpro-steel);
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: white;
}

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

.nav-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  white-space: nowrap;
}

.nav-badge.free {
  background-color: var(--hubpro-orange);
  color: white;
}

.nav-badge.member {
  background-color: var(--hubpro-green);
  color: white;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .navbar-cta { display: flex; }
}

.login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hubpro-steel);
}

.login-link:hover {
  color: white;
}

.cta-button {
  padding: 10px 20px;
  background-color: var(--hubpro-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.025em;
  border-radius: 4px;
  transition: all 0.2s;
}

.cta-button:hover {
  background-color: var(--hubpro-orange-dark);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--hubpro-steel);
  border-radius: 4px;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.active {
  color: var(--hubpro-orange);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 43, 74, 0.88) 0%, rgba(18, 43, 74, 0.68) 50%, rgba(18, 43, 74, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0 4rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background-color: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  background-color: var(--hubpro-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-label-text {
  color: var(--hubpro-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin: 0 0 16px;
    display: inline-block;
}

.hero-title {
  font-size: 72px;
  color: white;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--hubpro-orange);
}

.hero-description {
  font-size: 18px;
  color: #d1d5db;
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--hubpro-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.025em;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--hubpro-orange-dark);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.025em;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(255, 106, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Section Divider */
.section-divider {
  position: relative;
  height: 80px;
  background-color: var(--hubpro-navy);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--hubpro-navy-light);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  margin-top: -80px;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background-color: var(--hubpro-navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--hubpro-orange);
}

.stat-label {
  font-size: 14px;
  color: var(--hubpro-steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Title */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-overline {
  color: var(--hubpro-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-top: 0.75rem;
}

.section-title span {
  color: var(--hubpro-orange);
}

.section-description {
  color: var(--hubpro-steel);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

/* Pricing Cards */
.pricing-section {
  padding: 4.5rem 0;
  background-color: var(--hubpro-navy-light);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
  background-color: #1a3a5c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid #ff6a0066;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 15%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-badge.free-forever {
  background-color: var(--hubpro-green);
  color: white;
}

.pricing-badge.premium {
  background-color: var(--hubpro-orange);
  color: white;
}

.pricing-badge.trial {
  background-color: var(--hubpro-blue);
  color: white;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  color: var(--hubpro-steel);
  font-size: 12px;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.pricing-amount.free {
  color: var(--hubpro-green);
}

.pricing-period {
  color: var(--hubpro-steel);
  font-size: 14px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: oklch(0.872 0.01 258.338);
  padding: 0.5rem 0;
}

.pricing-features li svg {
  color: var(--hubpro-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-button {
  display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0px;
    background-color: #ff6a00;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.025em;
    border-radius: 4px;
    transition: all 0.2s;
}

.pricing-button:hover {
  background-color: var(--hubpro-orange);
  color: white;
}

.pricing-button.green {
  background-color: var(--hubpro-green);
  color: white;
}

.pricing-button.green:hover {
  background-color: rgba(34, 197, 94, 0.8);
}

/* Advertise FAQ */
.advertise-faq-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #173b61 0%, #1a3a5c 100%);
}

.advertise-faq-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.advertise-faq-overline {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--hubpro-orange);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}

.advertise-faq-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.advertise-faq-title span {
  color: var(--hubpro-orange);
}

.advertise-faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

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

.advertise-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.35rem 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.advertise-faq-question span {
  flex: 1;
}

.advertise-faq-icon {
  flex: 0 0 auto;
  color: var(--hubpro-orange);
  transition: transform 0.25s ease;
}

.advertise-faq-item.is-open .advertise-faq-icon {
  transform: rotate(180deg);
}

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

.advertise-faq-answer p {
  margin: 0 0 1.25rem;
  color: var(--hubpro-steel);
  line-height: 1.7;
  max-width: 48rem;
}

/* Feature Cards */
.features-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background-color: #21476e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.05);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 106, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  color: var(--hubpro-orange);
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--hubpro-steel);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .advertise-faq-section {
    padding: 4rem 0 5rem;
  }

  .advertise-faq-question {
    font-size: 0.95rem;
  }
}

/* How It Works */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy-light);
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  position: relative;
  padding-top: 4rem;
}

.step-number {
  position: absolute;
  top: 0;
  left: -8px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 106, 0, 0.1);
  line-height: 1;
  user-select: none;
}

.step-content {
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.step-icon {
  width: 56px;
  height: 56px;
  background-color: var(--hubpro-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg {
  color: white;
  width: 28px;
  height: 28px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--hubpro-steel);
  font-size: 14px;
  line-height: 1.7;
}

/* Lead Cards */
.leads-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy);
}

.leads-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .leads-grid { grid-template-columns: repeat(2, 1fr); }
}

.lead-card {
  background-color: rgba(33, 71, 110, 0.8);
  border-left: 4px solid var(--hubpro-orange);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  transition: background-color 0.2s;
}

.lead-card:hover {
  background-color: rgba(33, 71, 110, 1);
}

.lead-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.lead-type {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.lead-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--hubpro-orange);
}

.lead-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.lead-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  color: var(--hubpro-steel);
  margin-bottom: 0.25rem;
}

.lead-details {
  font-size: 14px;
  color: var(--hubpro-steel);
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy-light);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 106, 0, 0.2);
}

.testimonial-text {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
}

.testimonial-title {
  color: var(--hubpro-orange);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-company {
  color: var(--hubpro-steel);
  font-size: 12px;
  margin-top: 0.25rem;
}

/* Dashboard Layout */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
  width: 260px;
  background-color: var(--hubpro-navy-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}

@media (max-width: 1023px) {
  .dashboard-sidebar {
    display: none;
  }
}

.sidebar-profile {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--hubpro-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.profile-info {
  overflow: hidden;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-role {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.profile-status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--hubpro-green);
  border-radius: 50%;
}

.status-text {
  font-size: 12px;
  color: var(--hubpro-green);
}

/* Sidebar Nav */
.sidebar-nav {
  padding: 1rem 0.75rem;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hubpro-steel);
  transition: all 0.2s;
  margin-bottom: 0.25rem;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
}

.sidebar-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
}

.sidebar-link svg {
  flex-shrink: 0;
}

.sidebar-link span {
  flex: 1;
}

.sidebar-link .active-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--hubpro-orange);
  border-radius: 50%;
  margin-left: auto;
}

.sidebar-link.logout:hover {
  color: #f87171;
  background-color: rgba(248, 113, 113, 0.1);
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard Main */
.dashboard-main {
  flex: 1;
  margin-left: 260px;
  min-width: 0;
  background-color: var(--hubpro-navy);
}

@media (max-width: 1023px) {
  .dashboard-main {
    margin-left: 0;
  }
}

/* Dashboard Topbar */
.dashboard-topbar {
  position: sticky;
  top: 72px;
  z-index: 30;
  background-color: rgba(26, 58, 92, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.topbar-subtitle {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-notification {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hubpro-steel);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.topbar-notification:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--hubpro-orange);
  border-radius: 50%;
}

.topbar-upgrade {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--hubpro-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.topbar-upgrade:hover {
  background-color: var(--hubpro-orange-dark);
}

@media (max-width: 640px) {
  .topbar-upgrade {
    display: none;
  }
}

/* Dashboard Content */
.dashboard-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Stats Cards Grid */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon.blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.stat-card-icon.orange {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
}

.stat-card-icon.green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.stat-card-icon.amber {
  background-color: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
}

.stat-card-icon.purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #c084fc;
}

.stat-card-change {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stat-card-change.positive {
  color: var(--hubpro-green);
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.stat-card-label {
  font-size: 12px;
  color: var(--hubpro-steel);
  margin-top: 0.25rem;
}

/* Quick Actions */
.quick-actions-section {
  margin-top: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .quick-actions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-action-card {
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}

.quick-action-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.quick-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.quick-action-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: color 0.2s;
}

.quick-action-card:hover .quick-action-title {
  color: var(--hubpro-orange);
}

.quick-action-desc {
  font-size: 12px;
  color: var(--hubpro-steel);
  margin-top: 0.25rem;
}

/* Main Grid */
.dashboard-main-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .dashboard-main-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* CTA Section */
.advertise-cta-section {
  position: relative;
  background: linear-gradient(180deg, #21476E 0%, var(--hubpro-navy) 100%);
  padding: 5rem 0 4.25rem;
  overflow: hidden;
}



.advertise-cta-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.advertise-cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.advertise-cta-title span {
  color: var(--hubpro-orange);
}

.advertise-cta-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #d7e3f1;
  font-size: 18px;
  line-height: 1.65;
}

.advertise-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.advertise-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 170px;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.advertise-cta-button:hover {
  transform: translateY(-2px);
}

.advertise-cta-primary {
  background-color: var(--hubpro-orange);
  color: #ffffff;
}

.advertise-cta-primary:hover {
  background-color: var(--hubpro-orange-dark);
}

.advertise-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background-color: transparent;
}

.advertise-cta-secondary:hover {
  border-color: rgba(255, 106, 0, 0.55);
  background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .advertise-cta-section {
    padding: 4rem 0 3.5rem;
  }

  .advertise-cta-copy {
    font-size: 16px;
  }

  .advertise-cta-button {
    width: 100%;
    min-width: 0;
  }
}

/* Recent Leads Section */
.recent-leads-section {
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header-row .section-subtitle {
  margin-bottom: 0;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--hubpro-orange);
  transition: color 0.2s;
}

.view-all-link:hover {
  color: var(--hubpro-orange-light);
}

.leads-list {
  display: flex;
  flex-direction: column;
}

.lead-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

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

.lead-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.lead-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lead-dot.blue { background-color: #60a5fa; }
.lead-dot.green { background-color: #4ade80; }
.lead-dot.purple { background-color: #c084fc; }
.lead-dot.amber { background-color: #fbbf24; }

.lead-info {
  flex: 1;
  min-width: 0;
}

.lead-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.125rem;
}

.lead-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
  color: var(--hubpro-steel);
}

.lead-type-badge {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.lead-value-date {
  text-align: right;
  flex-shrink: 0;
}

.lead-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--hubpro-orange);
}

.lead-date {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.lead-status {
  padding: 0.125rem 0.5rem;
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
  flex-shrink: 0;
}

.lead-status.new {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--hubpro-green);
}

.lead-status.saved {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
}

.lead-status.viewed {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--hubpro-steel);
}

/* Right Column */
.dashboard-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Dashboard Card */
.dashboard-card {
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

/* Account Details */
.account-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-label {
  font-size: 14px;
  color: var(--hubpro-steel);
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.detail-value.status-active {
  color: var(--hubpro-green);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.card-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.625rem;
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 1rem;
  transition: all 0.2s;
}

.card-button:hover {
  background-color: var(--hubpro-orange);
  color: white;
}

/* Listing Menu */
.listing-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.listing-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(26, 58, 92, 0.4);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hubpro-steel);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.listing-menu-item:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
}

.listing-menu-item svg:last-child {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s;
}

.listing-menu-item:hover svg:last-child {
  opacity: 1;
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.activity-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.activity-icon svg {
  color: var(--hubpro-steel);
}

.activity-content {
  flex: 1;
}

.activity-text {
  font-size: 14px;
  color: white;
}

.activity-time {
  font-size: 12px;
  color: var(--hubpro-steel);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

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

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--hubpro-steel);
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 14px;
  color: var(--hubpro-steel);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--hubpro-orange);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 12px;
  color: var(--hubpro-steel);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--hubpro-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Services Grid - 6 columns on lg */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
}

.service-card {
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 106, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  color: var(--hubpro-orange);
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--hubpro-steel);
  font-size: 12px;
  line-height: 1.5;
}

/* Trust Bar */
.trust-section {
  padding: 4rem 0;
  background-color: var(--hubpro-navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  color: var(--hubpro-orange);
  width: 24px;
  height: 24px;
}

.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* Ad Carousel */
.ad-carousel-section {
  padding: 3.5rem 0 5rem;
  text-align: center;
}

.ad-carousel-section .section-overline {
  margin-bottom: 1.5rem;
}

.ad-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-carousel-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.ad-carousel-slide {
  min-width: 100%;
  width: 100%;
}

.ad-carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/1;
}

.ad-carousel-placeholder {
  width: 100%;
  aspect-ratio: 3/1;
  background: linear-gradient(135deg, var(--hubpro-navy-light), var(--hubpro-navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(255, 106, 0, 0.4);
}

.ad-carousel-placeholder-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 106, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-carousel-placeholder-icon svg {
  color: var(--hubpro-orange);
  width: 32px;
  height: 32px;
}

.ad-carousel-placeholder h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.ad-carousel-placeholder p {
  color: var(--hubpro-steel);
  font-size: 14px;
}

.ad-carousel-placeholder-btn {
  padding: 12px 24px;
  background-color: var(--hubpro-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.ad-carousel-placeholder-btn:hover {
  background-color: var(--hubpro-orange-dark);
}

.ad-carousel-nav {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  opacity: 0;
  transition: opacity 0.2s, background-color 0.2s;
}

.ad-carousel:hover .ad-carousel-nav {
  opacity: 1;
}

.ad-carousel-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.ad-carousel-nav.next {
  left: auto;
  right: 12px;
}

.ad-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.ad-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.ad-carousel-dot.active {
  background-color: var(--hubpro-orange);
  transform: scale(1.1);
}

.ad-carousel-dot:hover {
  background-color: rgba(255, 255, 0.6);
}

/* Projects Teaser */
.projects-teaser-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy);
}

.projects-teaser-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .projects-teaser-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.projects-teaser-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.projects-teaser-content h2 span {
  color: var(--hubpro-orange);
}

.projects-teaser-content > span {
  color: var(--hubpro-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}

.projects-teaser-content p {
  color: var(--hubpro-steel);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.projects-teaser-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.projects-teaser-stat {
  text-align: center;
}

.projects-teaser-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hubpro-orange);
}

.projects-teaser-stat-label {
  color: var(--hubpro-steel);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.projects-teaser-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-preview-card {
  background-color: var(--hubpro-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.project-preview-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.project-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.project-preview-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.project-preview-location {
  color: var(--hubpro-steel);
  font-size: 14px;
}

.project-preview-type {
  padding: 4px 12px;
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}

.project-preview-details {
  display: flex;
  gap: 1rem;
  font-size: 12px;
  color: var(--hubpro-steel);
  margin-top: 0.75rem;
}

.project-preview-details span span {
  color: white;
  font-weight: 600;
}

.project-preview-progress {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-preview-progress-bar {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  overflow: hidden;
}

.project-preview-progress-fill {
  height: 100%;
  background-color: rgba(255, 106, 0, 0.4);
  border-radius: 9999px;
}

.project-preview-progress-label {
  font-size: 10px;
  color: var(--hubpro-steel);
}

.projects-teaser-footer {
  text-align: center;
  margin-top: 1rem;
}

.projects-teaser-footer a {
  color: var(--hubpro-orange);
  font-weight: 600;
  font-size: 14px;
}

.projects-teaser-footer a:hover {
  text-decoration: underline;
}

/* Section Divider Top */
.section-divider-top {
  position: relative;
  margin-top: 0;
  padding-top: 5rem;
}

.section-divider-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--hubpro-navy-light);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

/* Accent Bar Left */
.accent-bar-left {
  border-left: 3px solid var(--hubpro-orange);
  border-top: none;
  border-right: none;
  border-bottom: none;
}

/* Forms */
.form-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy);
}

.form-container {
  max-width: 32rem;
  margin: 0 auto;
}

.form-card {
  background-color: rgba(33, 71, 110, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--hubpro-steel);
  font-size: 14px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--hubpro-steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(26, 58, 92, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: rgba(160, 179, 200, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(26, 58, 92, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(26, 58, 92, 0.8);
  border-radius: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--hubpro-steel);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--hubpro-orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.025em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background-color: var(--hubpro-orange-dark);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.form-footer p {
  font-size: 14px;
  color: var(--hubpro-steel);
}

.form-footer a {
  color: var(--hubpro-orange);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Login Page */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--hubpro-navy);
}

.login-topbar {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.login-grid {
  width: 100%;
  max-width: 60rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .login-grid { grid-template-columns: repeat(2, 1fr); }
}

.login-value {
  display: none;
}

@media (min-width: 1024px) {
  .login-value { display: block; }
}

.login-value-label {
  color: var(--hubpro-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.login-value-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.login-value-title span {
  color: var(--hubpro-orange);
}

.login-value-desc {
  color: var(--hubpro-steel);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.login-value-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.login-value-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-value-icon svg {
  color: var(--hubpro-orange);
  width: 20px;
  height: 20px;
}

.login-value-item h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.login-value-item p {
  font-size: 14px;
  color: var(--hubpro-steel);
}

.login-form-container {
  background-color: var(--hubpro-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .login-form-container { padding: 2.5rem; }
}

.login-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-form-icon {
  width: 56px;
  height: 56px;
  background-color: var(--hubpro-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.login-form-icon span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.login-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.login-form-subtitle {
  color: var(--hubpro-steel);
  font-size: 14px;
  margin-top: 0.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--hubpro-steel);
  cursor: pointer;
  padding: 0;
}

.login-password-toggle:hover {
  color: white;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  width: 100%;
  padding-left: 2.5rem;
}

.input-with-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hubpro-steel);
}

.forgot-password {
  font-size: 12px;
  color: var(--hubpro-orange);
  transition: color 0.2s;
}

.forgot-password:hover {
  color: var(--hubpro-orange-dark);
}

.login-form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.login-form-footer p {
  font-size: 14px;
  color: var(--hubpro-steel);
}

.login-form-footer a {
  color: var(--hubpro-orange);
  font-weight: 600;
}

.login-form-footer a:hover {
  color: var(--hubpro-orange-dark);
}

.login-security {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.login-security-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 12px;
  color: var(--hubpro-steel);
}

.login-security-item svg {
  color: var(--hubpro-green);
}

.login-bottom {
  padding: 1rem;
  text-align: center;
  font-size: 12px;
  color: rgba(160, 179, 200, 0.6);
}

/* Projects Page */
.projects-page {
  padding-top: 112px;
  padding-bottom: 5rem;
  background-color: var(--hubpro-navy);
}

.projects-header {
  text-align: center;
  margin-bottom: 2rem;
}

.projects-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.projects-title span {
  color: var(--hubpro-orange);
}

.projects-subtitle {
  color: #d1d5db;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

.projects-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 14px;
  color: var(--hubpro-steel);
}

.projects-stats span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.projects-stats strong {
  color: white;
}

/* Tabs */
.tabs-container {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.tabs {
  display: flex;
  background-color: var(--hubpro-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4px;
}

.tab-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: var(--hubpro-steel);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button:hover {
  color: white;
}

.tab-button.active {
  background-color: var(--hubpro-orange);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

/* Filters */
.filters-section {
  margin-bottom: 1rem;
}

.filters-card {
  background-color: var(--hubpro-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

@media (min-width: 768px) {
  .filters-card { padding: 1.5rem; }
}

.filters-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .filters-row { flex-direction: row; flex-wrap: wrap; }
}

.filter-group {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.filter-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-size: 14px;
}

.filter-input::placeholder {
  color: rgba(160, 179, 200, 0.5);
}

.filter-input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.5);
}

.filter-select {
  width: 100%;
  padding: 0.75rem 2rem 0.75rem 2.25rem;
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
}

.filter-select:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.5);
}

.filter-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(160, 179, 200, 0.5);
  pointer-events: none;
}

.filter-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(160, 179, 200, 0.5);
  pointer-events: none;
}

.filter-results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 12px;
  color: var(--hubpro-steel);
}

.filter-results-info strong {
  color: white;
}

/* Project Cards */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  background-color: var(--hubpro-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.project-card-header {
  padding: 1.25rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .project-card-header { padding: 1.5rem; }
}

.project-card-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .project-card-main { flex-direction: row; align-items: flex-start; }
}

.project-card-info {
  flex: 1;
  min-width: 0;
}

.project-card-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.project-type-badge {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--hubpro-blue);
}

.project-budget-badge {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
  background-color: rgba(34, 197, 94, 0.15);
  color: var(--hubpro-green);
}

.project-posted-date {
  font-size: 12px;
  color: var(--hubpro-steel);
}

.project-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: var(--hubpro-steel);
  flex-wrap: wrap;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .project-card-actions { flex-direction: row; }
}

.project-card-meta {
  display: none;
  text-align: right;
}

@media (min-width: 768px) {
  .project-card-meta { display: block; }
}

.project-card-meta p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.project-card-meta span {
  color: var(--hubpro-steel);
  font-size: 12px;
}

.project-save-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid transparent;
  color: var(--hubpro-steel);
  cursor: pointer;
  transition: all 0.2s;
}

.project-save-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.project-save-btn.saved {
  background-color: rgba(255, 106, 0, 0.2);
  color: var(--hubpro-orange);
  border-color: rgba(255, 106, 0, 0.3);
}

.project-expand-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 58, 92, 0.6);
  transition: transform 0.3s;
}

.project-expand-btn svg {
  color: var(--hubpro-steel);
}

.project-expanded {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
}

@media (min-width: 768px) {
  .project-expanded { padding: 1rem 1.5rem; }
}

.project-expanded-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .project-expanded-grid { grid-template-columns: 2fr 1fr; }
}

.project-description h4 {
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.project-description p {
  color: var(--hubpro-steel);
  font-size: 14px;
  line-height: 1.7;
}

.project-trades h4 {
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.project-trades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.project-trade-tag {
  padding: 4px 10px;
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--hubpro-orange);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.project-contact {
  background-color: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.project-contact h4 {
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.project-contact-locked {
  position: relative;
}

.project-contact-locked .blur {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.project-contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 58, 92, 0.4);
  border-radius: 8px;
}

.project-contact-overlay svg {
  color: var(--hubpro-orange);
  margin-bottom: 0.5rem;
}

.project-contact-overlay p {
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-contact-overlay a {
  color: var(--hubpro-orange);
  font-size: 12px;
  font-weight: 500;
}

.project-contact-overlay a:hover {
  text-decoration: underline;
}

.project-details-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.project-detail-row span:first-child {
  color: var(--hubpro-steel);
}

.project-detail-row span:last-child {
  color: white;
  font-weight: 500;
}

.project-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .project-actions { flex-direction: row; }
}

.project-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  transition: all 0.2s;
}

.project-action-btn.primary {
  background-color: var(--hubpro-orange);
  color: white;
}

.project-action-btn.primary:hover {
  background-color: var(--hubpro-orange-dark);
}

.project-action-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.project-action-btn.secondary:hover {
  border-color: rgba(255, 106, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.cta-section {
  margin-top: 3rem;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section { padding: 2.5rem 3rem; }
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 30px; }
}

.cta-section p {
  color: #d1d5db;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  padding-top: 112px;
  padding-bottom: 4rem;
  background-color: var(--hubpro-navy);
}

.page-hero-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

/* Comparison Table */
.comparison-section {
  padding: 5rem 0;
}

.comparison-table {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  background-color: var(--hubpro-navy-dark);
}

.comparison-header-cell {
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.comparison-header-cell:first-child {
  text-align: left;
}

.comparison-header-cell.hubpro {
  color: var(--hubpro-orange);
}

.comparison-header-cell.others {
  color: var(--hubpro-steel);
}

.comparison-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:nth-child(even) {
  background-color: rgba(18, 43, 74, 0.3);
}

.comparison-feature {
  padding: 1rem 1.25rem;
  font-size: 14px;
  color: #d1d5db;
  text-align: left;
}

.comparison-check {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-check.hubpro {
  background-color: rgba(255, 106, 0, 0.05);
}

.comparison-check.others {
  background-color: transparent;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--hubpro-navy);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  background-color: rgba(33, 71, 110, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .faq-container { padding: 2rem; }
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  padding-right: 1rem;
  transition: color 0.2s;
}

.faq-question:hover .faq-question-text {
  color: var(--hubpro-orange);
}

.faq-question-icon {
  color: var(--hubpro-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-answer p {
  color: var(--hubpro-steel);
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.w-full { width: 100%; }
.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

/* Demo Mode Banner */
.demo-banner {
  background-color: rgba(34, 197, 94, 0.2);
  border-bottom: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 0;
}

.demo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.demo-banner-dot {
  width: 8px;
  height: 8px;
  background-color: var(--hubpro-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.demo-banner-text {
  color: var(--hubpro-green);
  font-size: 12px;
  font-weight: 600;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--hubpro-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--hubpro-steel);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hubpro-orange);
}
/* Advertise page specific overrides/behaviors */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

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

.faq-question-icon {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-question-icon {
  transform: rotate(180deg);
}

}

