/* --- PREMIUM LIGHT HIGH-END THEME OVERRIDES --- */
:root {
  --border-color-focus: #6366f1;
}

/* Base Body Style Reset for Light Theme */
html, body {
  background-color: var(--bg-base) !important;
  color: var(--color-text-main) !important;
  font-family: var(--font-body);
}

/* Custom scrollbar track for light mode */
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.08);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(79, 70, 229, 0.4);
}

/* --- MARKETING HERO --- */
.landing-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 8%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.logo-image {
  height: 128px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text-main);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* --- PREMIUM LANGUAGE SELECTOR --- */
.lang-selector-container {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  padding: 2px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--time-fast) var(--ease-smooth);
}

.lang-btn.active {
  background: #ffffff;
  color: var(--color-text-main);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.lang-btn:hover:not(.active) {
  color: var(--color-text-main);
  background: rgba(15, 23, 42, 0.02);
}

/* --- GRID OVERLAY & BACKGROUND GLOWS --- */
.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(circle at 50% 25%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 25%, black 25%, transparent 80%);
}

/* Ambient glows washed soft for light background */
.bg-glow-orb-1 {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(255, 255, 255, 0) 70%) !important;
}

.bg-glow-orb-2 {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, rgba(255, 255, 255, 0) 70%) !important;
}

.bg-glow-orb-3 {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 700px;
  height: 700px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

/* --- HERO SECTION --- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 2rem 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
}

.badge-olympic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-primary-glow);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
}

.text-gradient-olympic {
  background: linear-gradient(135deg, #0f172a 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

/* Hero Container Card Overhaul */
.hero-card-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5%;
  gap: 6.5rem;
  text-align: left;
  position: relative;
  overflow: visible;
  animation: slideUp 0.8s var(--ease-smooth);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  flex: 1;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-border-dark);
  margin: 0;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  max-width: 480px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
  margin-top: 0.5rem;
}

.rating-stars {
  font-weight: 700;
  color: var(--color-border-dark);
}

.rating-desc {
  font-weight: 500;
  font-family: var(--font-body);
}

/* Redesigned Mockup Collaboration Image block */
.hero-image-block {
  position: relative;
  width: 572px;
  height: 572px;
  flex-shrink: 0;
}

.image-offset-outline {
  display: none;
}

.image-container-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-collab-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Badges/Capsules */
.floating-capsule {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid var(--color-border-dark);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-border-dark);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  animation: floatBadge 6s ease-in-out infinite;
}

.capsule-top {
  top: 35px;
  right: -25px;
  animation-delay: 0s;
}

.capsule-middle {
  bottom: 120px;
  left: -35px;
  animation-delay: 1.5s;
}

.capsule-bottom {
  bottom: 40px;
  right: 50px;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Starburst SVG decorations */
.starburst {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.starburst-large {
  width: 52px;
  height: 52px;
  top: -26px;
  left: -20px;
  z-index: 3;
}

.starburst-thin-left {
  width: 24px;
  height: 24px;
  top: 60px;
  left: 20px;
}

.starburst-thin-right {
  width: 32px;
  height: 32px;
  bottom: 60px;
  right: -12px;
}

/* Stats Bar Horizontal */
.stats-bar-horizontal {
  width: 100%;
  border: 1px solid var(--color-border-dark);
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02);
}

.stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  padding: 0 1.5rem;
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-border-dark);
  line-height: 1;
}

.stat-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #475569;
  font-weight: 500;
}

.stat-col-divider {
  width: 1px;
  background-color: #e2e8f0;
  align-self: stretch;
  margin: 0.25rem 0;
}

/* Responsive updates for Hero Container */
@media (max-width: 1080px) {
  .hero-bg-curve {
    display: none;
  }
  .hero-card-container {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 3.5rem;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-image-block {
    width: 416px;
    height: 416px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  .capsule-top {
    right: -10px;
  }
  .capsule-middle {
    left: -15px;
  }
  .capsule-bottom {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .stats-bar-horizontal {
    flex-direction: column;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }
  .stat-col {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .stat-col-divider {
    height: 1px;
    width: 100%;
    margin: 0.5rem 0;
  }
}


.sidebar-item.active svg {
  color: var(--color-primary);
}

.mockup-sidebar-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
}

.mockup-sidebar-footer .user-profile-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.mockup-sidebar-footer .profile-avatar {
  width: 24px;
  height: 24px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.65rem;
}

.mockup-sidebar-footer .profile-details {
  display: flex;
  flex-direction: column;
}

.mockup-sidebar-footer .profile-name {
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--color-text-main);
  line-height: 1.2;
}

.mockup-sidebar-footer .profile-role {
  font-size: 0.58rem;
  color: var(--color-text-dim);
  line-height: 1.2;
}

.mockup-main {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  overflow-y: auto;
}

.mockup-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.mockup-page-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mockup-page-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  line-height: 1.2;
}

.mockup-page-subtitle {
  font-size: 0.62rem;
  color: var(--color-text-dim);
  margin: 0;
  line-height: 1.2;
}

.mockup-btn-primary {
  padding: 0.25rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 500;
  background: var(--color-secondary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-secondary);
  cursor: pointer;
}

.mockup-banner {
  background: var(--color-primary-glow) !important;
  border: 1px solid var(--border-color) !important;
  border-left: 3px solid var(--color-primary) !important;
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
}

.mockup-bids {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mockup-bid-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.bid-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bid-info strong {
  font-size: 0.78rem;
  color: var(--color-text-main);
}

.bid-info span {
  font-size: 0.65rem;
  color: var(--color-text-dim);
}

.mockup-bids .badge-grade {
  padding: 0.15rem 0.35rem;
  font-size: 0.62rem;
  border-radius: 4px;
  font-weight: 700;
}

.mockup-bids .badge-grade.A {
  background: var(--bg-grade-a-glow);
  color: var(--color-grade-a);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.mockup-bids .badge-grade.B {
  background: var(--bg-grade-b-glow);
  color: var(--color-grade-b);
  border: 1px solid rgba(6, 182, 212, 0.15);
}

/* Interactive Suitability Widget Section */
.widget-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* --- GLASSMORPHISM CARD ELEMENTS (SOLID WHITE ALIGNED) --- */
.glass-panel {
  position: relative;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(0, 122, 83, 0.08) !important;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--radius-md);
  transition: all var(--time-normal) var(--ease-smooth);
}

/* High-contrast premium border reflection effect disabled */
.glass-panel::before {
  display: none !important;
}

/* --- INTERACTIVE WIDGET PREVIEW --- */
.hero-widget-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.interactive-preview-card {
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid var(--color-border-dark) !important;
  box-shadow: none !important;
  border-radius: var(--radius-lg) !important;
}

.interactive-preview-card::after {
  display: none !important;
}

.widget-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.widget-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.input-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-dim);
  letter-spacing: 0.08em;
}

.widget-input {
  background: #ffffff;
  border: 1px solid var(--color-border-dark) !important;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-size: 0.95rem;
  transition: all var(--time-fast) var(--ease-smooth);
  box-shadow: none !important;
}

.widget-input:focus {
  background: #ffffff;
  border-color: var(--color-border-dark) !important;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1) !important;
}

.widget-input::placeholder {
  color: var(--color-text-dim);
}

.widget-btn {
  padding: 0.9rem;
  background: var(--color-secondary) !important;
  border: 1px solid var(--color-secondary) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  box-shadow: none !important;
  transition: background-color var(--time-fast) var(--ease-smooth), border-color var(--time-fast) var(--ease-smooth);
}

.widget-btn:hover {
  background: var(--color-secondary-hover) !important;
  border-color: var(--color-secondary-hover) !important;
}

.widget-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.widget-result {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--border-color);
  display: none;
  animation: fadeIn var(--time-normal) var(--ease-smooth);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-grade-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.grade-badge-lg {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

/* Neon grade badge styles */
.grade-a {
  background: var(--bg-grade-a-glow);
  color: var(--color-grade-a);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.grade-b {
  background: var(--bg-grade-b-glow);
  color: var(--color-grade-b);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.grade-c {
  background: var(--bg-grade-c-glow);
  color: var(--color-grade-c);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.grade-f {
  background: var(--bg-grade-f-glow);
  color: var(--color-grade-f);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.result-explanation {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.result-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

.result-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --- STATS SECTION --- */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  padding: 6% 8%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.15);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.stat-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- INTERACTIVE CALCULATOR & PRICING --- */
.pricing-section {
  padding: 6% 8%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 10;
}

.section-header {
  max-width: 680px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.calculator-wrapper {
  width: 100%;
  max-width: 820px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left;
  background: #ffffff !important;
  border: 1px solid var(--color-border-dark) !important;
  box-shadow: none !important;
  border-radius: var(--radius-lg) !important;
}

.calc-slider-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Premium light range slider */
.range-slider {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border: none;
  border-radius: var(--radius-full);
  appearance: none;
  outline: none;
  cursor: pointer;
  accent-color: var(--color-secondary);
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  border: 2px solid var(--color-border-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: grab;
  transition: transform 0.1s var(--ease-smooth), border-color 0.1s var(--ease-smooth);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: var(--color-secondary-hover);
}

.range-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  border: 2px solid var(--color-border-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: grab;
  transition: transform 0.1s var(--ease-smooth), border-color 0.1s var(--ease-smooth);
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  background: var(--color-secondary-hover);
}

.calculator-results {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  background: var(--bg-surface) !important;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-dark);
  box-shadow: none !important;
}

.tier-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.tier-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.tier-pricing-output {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.tier-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1;
}

.term {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Three columns pricing comparison */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  width: 100%;
  max-width: 1200px;
  margin-top: 2rem;
  align-items: stretch;
}

.price-card {
  padding: 3rem 2.25rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.75rem;
  position: relative;
  background: #ffffff !important;
  border: 1px solid var(--color-border-dark) !important;
  box-shadow: none !important;
}

.price-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-dark) !important;
  box-shadow: none !important;
}

.price-card.popular {
  border: 2px solid var(--color-border-dark) !important;
  box-shadow: none !important;
  transform: scale(1.02);
  background: #fffce8 !important;
}

.price-card.popular:hover {
  transform: scale(1.02) translateY(-2px);
  border-color: var(--color-border-dark) !important;
  box-shadow: none !important;
}

.price-card.popular .price-card-btn {
  background: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: #ffffff !important;
}

.price-card.popular .price-card-btn:hover {
  background: var(--color-secondary-hover) !important;
  border-color: var(--color-secondary-hover) !important;
}

.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.2rem 0.65rem;
  background: var(--color-secondary) !important;
  border: 1px solid var(--color-border-dark) !important;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff !important;
}

.card-tier-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.price-header-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.card-tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.card-tier-price .amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
}

.card-tier-price .term {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.price-fine-print {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  margin: 0.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--color-text-main);
}

.feature-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  stroke-width: 2px !important;
}

.price-card-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 0.85rem;
}

.btn-secondary,
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: transparent !important;
  border: 1px solid var(--color-border-dark) !important;
  color: var(--color-border-dark) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color var(--time-fast) var(--ease-smooth), border-color var(--time-fast) var(--ease-smooth);
}

.btn-secondary:hover,
.btn-secondary-outline:hover {
  background: rgba(15, 23, 42, 0.05) !important;
  border-color: var(--color-border-dark) !important;
  color: var(--color-border-dark) !important;
}

/* --- FOOTER --- */
.landing-footer {
  background: #ffffff;
  padding: 5rem 8% 3rem 8%;
  border-top: 1px solid var(--border-color);
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 340px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.footer-links-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-main);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text-dim);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 2rem;
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 12%;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .price-card.popular {
    transform: none !important;
  }
  .stats-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}

/* --- FREE TOOLS SECTION --- */
.tools-wrapper {
  background: #ffffff !important;
  border: 1px solid var(--color-border-dark) !important;
}

.tools-tab-btn {
  font-family: var(--font-body);
  border: 1px solid transparent;
  color: var(--color-text-dim);
  transition: all var(--time-fast) var(--ease-smooth);
}

.tools-tab-btn:hover:not(.active) {
  color: var(--color-text-main);
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.08);
}

.tools-tab-btn.active {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary) !important;
  box-shadow: var(--shadow-sm) !important;
}

.grader-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .grader-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grader-results-col {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--color-border-dark);
    padding-top: 1.5rem;
  }
}

.grader-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.strengths-list li {
  color: #16a34a;
  list-style-type: '✓ ';
}

.gaps-list li {
  color: #dc2626;
  list-style-type: '⚠ ';
}

.finder-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.finder-table th, .finder-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-dark);
}

.finder-table tr:hover {
  background: rgba(15, 23, 42, 0.01);
}

.finder-table tr:last-child td {
  border-bottom: none;
}

.badge-agency, .badge-rampid, .badge-naics {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-dark);
  background: #ffffff;
  color: var(--color-text-main);
}

.badge-naics {
  background: var(--color-yellow-hero);
}

.badge-status-open {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-grade-a);
  background: var(--bg-grade-a-glow);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-sm);
}

.btn-outline-small {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-main);
  background: #ffffff;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--time-fast) var(--ease-smooth);
}

.btn-outline-small:hover {
  background: var(--color-yellow-hero);
}

.naics-badges-container, .naics-opportunities-container {
  display: flex;
  flex-direction: column;
}

/* --- OVERRIDES FOR GSA SCHEDULING AESTHETICS --- */

/* Curved top-right design background */
.hero-bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 750px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 75%, rgba(0, 122, 83, 0) 100%);
  border-bottom-left-radius: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
}

/* Pill buttons override */
.btn-primary {
  border-radius: var(--radius-full) !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  padding: 0.75rem 1.75rem !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-md) !important;
  transition: all var(--time-fast) var(--ease-smooth) !important;
}

.btn-primary:hover {
  background: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg) !important;
}

.btn-secondary,
.btn-secondary-outline {
  border-radius: var(--radius-full) !important;
  background: transparent !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  padding: 0.75rem 1.75rem !important;
  font-weight: 600 !important;
  transition: all var(--time-fast) var(--ease-smooth) !important;
}

.btn-secondary:hover,
.btn-secondary-outline:hover {
  background: var(--color-primary-glow) !important;
  color: var(--color-primary) !important;
  transform: translateY(-2px);
}

/* Three Feature Grid Cards below Hero */
.value-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  width: 100%;
  max-width: 1200px;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.value-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 122, 83, 0.08) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--time-normal) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 122, 83, 0.2) !important;
  box-shadow: var(--shadow-lg);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--color-primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.value-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.value-arrow {
  margin-top: auto;
  align-self: flex-end;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform var(--time-fast) var(--ease-smooth);
}

.value-card:hover .value-arrow {
  transform: translateX(4px);
}

/* Mid green highlight shape card */
.guide-teaser-section {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.guide-teaser-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(52, 211, 153, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 80% -20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.guide-cover-col {
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.guide-book-mockup {
  width: 160px;
  height: 220px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border-left: 8px solid var(--color-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1rem;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-4deg);
  transition: transform 0.3s;
}

.guide-teaser-section:hover .guide-book-mockup {
  transform: rotate(0deg) scale(1.05);
}

.guide-book-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-primary);
}

.guide-book-badge {
  background: var(--color-primary-glow);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.guide-teaser-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.guide-teaser-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.guide-teaser-desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
}

.guide-teaser-btn {
  background: #ffffff !important;
  color: var(--color-primary) !important;
  border-color: #ffffff !important;
}

.guide-teaser-btn:hover {
  background: var(--color-primary-glow) !important;
  color: var(--color-primary) !important;
}

/* Process section illustrations */
.process-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 5rem auto;
  align-items: center;
}

.process-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.process-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 0;
  border: none;
}

.process-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.process-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.process-step-badge {
  background: var(--color-primary);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.process-step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.process-step-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- RADIAL METRICS DIAL STYLES --- */
.radial-stats-section {
  padding: 6% 8%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.radial-dial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 360px;
  height: 360px;
  margin: 4rem auto;
}

.radial-dial {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dial-ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.animated-ring {
  stroke-dasharray: 565.48; /* 2 * PI * 90 */
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.radial-dial-container.visible .animated-ring {
  stroke-dashoffset: 141.37; /* 75% fill */
}

.dial-center {
  position: absolute;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 122, 83, 0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.dome-svg {
  width: 72px;
  height: 72px;
}

.dial-metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 122, 83, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 4;
  transition: all var(--time-normal) var(--ease-smooth);
  min-width: 140px;
  text-align: center;
}

.dial-metric:hover {
  transform: scale(1.05);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.dial-metric .metric-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  font-family: var(--font-display);
}

.dial-metric .metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.dial-metric .metric-sub {
  font-size: 0.65rem;
  color: var(--color-text-dim);
  margin-top: 0.1rem;
}

/* Positioning coordinates around the 180px radius circle */
.item-top {
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.item-top:hover {
  transform: translateX(-50%) translateY(-4px);
}

.item-bottom {
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.item-bottom:hover {
  transform: translateX(-50%) translateY(4px);
}

.item-left {
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.item-left:hover {
  transform: translateY(-50%) translateX(-4px);
}

.item-right {
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.item-right:hover {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 1080px) {
  .guide-teaser-section {
    grid-template-columns: 1fr;
  }
  .guide-cover-col {
    padding: 2rem;
  }
  .guide-teaser-content {
    padding: 2.5rem;
    align-items: center;
    text-align: center;
  }
  .process-row, .process-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .process-info {
    align-items: center;
  }
  .radial-dial-container {
    width: 280px;
    height: 280px;
  }
  .dial-center {
    width: 110px;
    height: 110px;
  }
  .dome-svg {
    width: 55px;
    height: 55px;
  }
  .dial-metric {
    min-width: 120px;
    padding: 0.5rem 0.75rem;
  }
  .dial-metric .metric-num {
    font-size: 1.4rem;
  }
  
  .item-top {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .item-top:hover {
    transform: translateX(-50%) translateY(-4px);
  }
  
  .item-bottom {
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .item-bottom:hover {
    transform: translateX(-50%) translateY(4px);
  }

  .item-left {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
  }
  .item-left:hover {
    transform: translateY(-50%) translateX(-4px);
  }

  .item-right {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
  }
  .item-right:hover {
    transform: translateY(-50%) translateX(4px);
  }
}

@media (max-width: 600px) {
  .radial-dial-container {
    height: auto;
    width: 100%;
    margin: 2rem auto;
  }
  .radial-dial {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    position: static;
  }
  .dial-ring-svg {
    position: relative;
    width: 200px;
    height: 200px;
    top: auto;
    left: auto;
    transform: rotate(-90deg);
  }
  .dial-center {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
  }
  .dome-svg {
    width: 45px;
    height: 45px;
  }
  .dial-metrics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
    position: static;
  }
  .dial-metric.item-top,
  .dial-metric.item-bottom,
  .dial-metric.item-left,
  .dial-metric.item-right {
    position: static !important;
    transform: none !important;
    width: auto;
    min-width: 0;
  }
  .dial-metric.item-top:hover,
  .dial-metric.item-bottom:hover,
  .dial-metric.item-left:hover,
  .dial-metric.item-right:hover {
    transform: scale(1.02) !important;
  }
}

