/* ============================================
   CAPTRAQ.AI - POWER PAGES STYLESHEET
   Matches Landing-v2.html design exactly
   ============================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --blue-light: #3B82F6;
  --navy: #1E3A5F;
  --gold: #D4A853;
  --slate: #475569;
  --ice: #F0F4F8;
  --white: #FFFFFF;
  --charcoal: #1F2937;
  --devtraq-green: #0D5C2E;
  --proptraq-purple: #7C3AED;
}

/* ==================== BASE RESET ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; 
  color: var(--charcoal); 
  line-height: 1.6; 
  background: var(--white); 
  overflow-x: hidden;
  padding-top: 74px;
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Outfit', sans-serif; 
  font-weight: 700; 
  line-height: 1.2; 
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ==================== NAVIGATION ==================== */
.captraq-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 58, 95, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0 !important;
}
.captraq-header .custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}
.captraq-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.captraq-header .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.captraq-header .logo-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.captraq-header .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}
.captraq-header .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: color 0.3s;
}
.captraq-header .navbar-nav .nav-link:hover {
  color: var(--blue-light) !important;
}
.captraq-header .nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s;
}
.captraq-header .nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-2px);
}
.captraq-header .navbar-toggler {
  background: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  border-radius: 8px;
  padding: 8px 12px;
}
.captraq-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px;
  height: 24px;
}
.captraq-header .back-link { font-size: 0.85rem !important; opacity: 0.7; }
.captraq-header .back-link:hover { opacity: 1; }
.captraq-header .divider-vertical { border-left: 1px solid rgba(255,255,255,0.2) !important; height: 24px; margin: auto 8px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--white) !important;
  color: var(--blue) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25) !important;
}
.btn-blue {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.btn-blue:hover {
  background: var(--blue-light) !important;
  transform: translateY(-2px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--navy) 0%, var(--blue-dark) 50%, var(--blue) 100%) !important;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 80% 40%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse 60% 40% at 20% 60%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero-content {
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge span {
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge .badge-icon,
.badge-icon {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem) !important;
  color: var(--white) !important;
  margin-bottom: 24px !important;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero p,
.hero-subtitle {
  font-size: 1.2rem !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 40px !important;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-buttons,
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat h4 {
  font-size: 2rem !important;
  color: var(--white) !important;
  margin-bottom: 4px;
}
.hero-stat p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem;
}

/* Floating elements */
.float-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  animation: float 8s ease-in-out infinite;
}
.float-1 { width: 300px; height: 300px; top: 10%; right: 10%; animation-delay: 0s; }
.float-2 { width: 200px; height: 200px; bottom: 20%; left: 5%; animation-delay: 2s; }
.float-3 { width: 150px; height: 150px; top: 40%; right: 35%; animation-delay: 4s; }

/* ==================== SECTION STYLING ==================== */
section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  color: var(--blue) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--charcoal) !important;
  margin-bottom: 16px !important;
}
.section-header p {
  color: var(--slate) !important;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Background Variants */
.bg-white { background: var(--white) !important; }
.bg-ice { background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%) !important; }
.bg-navy { background: var(--navy) !important; }

/* ==================== DIFFERENTIATORS SECTION ==================== */
.differentiators {
  padding: 120px 0;
  background: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.diff-card {
  background: var(--ice) !important;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}
.diff-card:hover::before {
  transform: scaleX(1);
}
.diff-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: var(--white) !important;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.diff-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.diff-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diff-card h3 {
  font-size: 1.25rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 12px !important;
}
.diff-card p {
  color: var(--slate) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== FEATURES SECTION ==================== */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white) !important;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 {
  font-size: 1.15rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 10px !important;
}
.feature-card p {
  color: var(--slate) !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== WORKFLOW SECTION (NAVY) ==================== */
.workflow {
  padding: 120px 0;
  background: var(--navy) !important;
}
.workflow .section-label {
  color: rgba(255,255,255,0.6) !important;
}
.workflow .section-header h2 {
  color: var(--white) !important;
}
.workflow .section-header p {
  color: rgba(255,255,255,0.7) !important;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.workflow-step {
  text-align: center;
  position: relative;
}
.workflow-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 40px;
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
}
.workflow-step:last-child::after {
  display: none;
}
.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem !important;
  font-weight: 800;
  color: var(--white) !important;
}
.workflow-step h3 {
  color: var(--white) !important;
  font-size: 1.1rem !important;
  margin-bottom: 8px !important;
}
.workflow-step p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem;
}

/* ==================== PORTAL PREVIEW SECTION ==================== */
.portal-preview {
  padding: 120px 0;
  background: var(--white);
}
.portal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.portal-text h2 {
  font-size: 2.5rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 20px !important;
}
.portal-text > p {
  color: var(--slate) !important;
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.portal-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.portal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--charcoal) !important;
  font-size: 1rem;
}
.portal-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 3;
  flex-shrink: 0;
  fill: none;
}

/* Dark mockup style matching v2 */
.portal-mockup {
  background: var(--charcoal) !important;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.mockup-header {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mockup-dot:first-child { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.mockup-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px;
}
.mockup-stat-label {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.mockup-stat-value {
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
.mockup-chart {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px;
}
.mockup-chart-label {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.mockup-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 100px;
}
.mockup-bar {
  flex: 1;
  background: linear-gradient(to top, var(--blue), var(--blue-light));
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}

/* ==================== SUITE INTEGRATION SECTION ==================== */
.suite {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ice) 0%, var(--white) 100%) !important;
}
.suite-content {
  text-align: center;
}
.suite-content h2 {
  font-size: 2rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 16px !important;
}
.suite-content > p {
  color: var(--slate) !important;
  font-size: 1.1rem;
  margin-bottom: 48px;
}
.suite-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.suite-product {
  padding: 20px 32px;
  border-radius: 12px;
  border: 2px solid;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  min-width: 140px;
}
.suite-product.devtraq {
  border-color: var(--devtraq-green) !important;
  color: var(--devtraq-green) !important;
  background: transparent;
}
.suite-product.captraq {
  border-color: var(--blue) !important;
  background: var(--blue) !important;
  color: var(--white) !important;
}
.suite-product.proptraq {
  border-color: var(--proptraq-purple) !important;
  color: var(--proptraq-purple) !important;
  background: transparent;
}
.suite-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.suite-product small {
  display: block;
  margin-top: 4px;
  opacity: 0.8;
  font-size: 0.85rem;
}
.suite-arrow {
  color: var(--slate);
  font-size: 1.5rem;
}

/* ==================== CTA SECTION ==================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%) !important;
  text-align: center;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  color: var(--white) !important;
  margin-bottom: 16px !important;
}
.cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== FOOTER ==================== */
footer,
.captraq-footer {
  background: var(--charcoal) !important;
  padding: 80px 0 0 !important;
  margin: 0 !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .logo-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}
.footer-brand .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}
.footer-brand p {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-column h4 {
  color: var(--blue-light) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-column li {
  margin-bottom: 12px;
}
.footer-column a {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column a:hover {
  color: var(--blue-light) !important;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--charcoal) !important;
}
.footer-bottom span {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: rgba(255,255,255,0.5) !important;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--blue-light) !important;
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==================== POWER PAGES OVERRIDES ==================== */
.navbar { padding: 0 !important; }
.navbar-brand { padding: 0 !important; margin: 0 !important; }
.page-heading { display: none !important; }
.content-wrapper { padding: 0 !important; }
.content { padding: 0 !important; }
.page-content { padding: 0 !important; }
main { padding: 0 !important; }

/* Hide Power Pages default header */
header.header,
.header-navbar,
nav.navbar:not(.captraq-header),
.navbar-default,
.portal-header,
#portal-header,
.navbar-static-top,
header:not(.captraq-header) {
  display: none !important;
}

/* Hide Power Pages default footer */
footer.footer:not(.captraq-footer),
.portal-footer,
#portal-footer,
.footer-default {
  display: none !important;
}

/* Remove any extra space after footer */
body > *:last-child {
  margin-bottom: 0 !important;
}
.captraq-footer {
  margin-bottom: 0 !important;
}

/* Hide Power Pages sectionBlockLayout divs */
.sectionBlockLayout,
.row.sectionBlockLayout {
  display: none !important;
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
  .diff-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .workflow-step::after {
    display: none;
  }
  .portal-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .suite-flow {
    flex-direction: column;
    gap: 16px;
  }
  .suite-arrow {
    transform: rotate(90deg);
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
  body { padding-top: 70px; }
  section { padding: 80px 0; }
  
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero h1 { font-size: 2rem !important; }
  .hero-stats { flex-direction: column; gap: 24px; }
  
  .diff-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .workflow-grid {
    grid-template-columns: 1fr !important;
  }
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .logo {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  
  .mockup-stats {
    grid-template-columns: 1fr;
  }
}

/* ==================== MOBILE NAV ==================== */
@media (max-width: 1199px) {
  .captraq-header #navbar {
    background: var(--navy);
    border-radius: 8px;
    margin-top: 16px;
    padding: 16px;
  }
  .captraq-header .divider-vertical {
    display: none !important;
  }
  .captraq-header .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .captraq-header .navbar-toggler {
    display: flex !important;
  }
}

/* ====================================================
   Hide the duplicate workforce-tenant Microsoft button on the OOB
   /Account/Login/ExternalLogin page. We have TWO Microsoft providers
   configured at the OIDC level: the common-endpoint one (multi-tenant,
   what we want) and the auto-created Portals-CapTraq-DEV one (locked to
   the fitprotech.ai workforce tenant, fails for any LP not in that
   tenant). The OOB form renders both as Microsoft buttons by default,
   causing user confusion. Hide the workforce-tenant one so only the
   working common-endpoint button remains.
   ==================================================== */
button[id^="https://login.windows.net/"][id*="1c53ce45-04e6-4519-9e38-c71380c10baa"],
button[value^="https://login.windows.net/"][value*="1c53ce45-04e6-4519-9e38-c71380c10baa"] {
  display: none !important;
}
