/* ==========================================================================
   Photon Console - Custom Light Theme & Component Modernization Stylesheet
   Ensures 100% Light Theme compliance, premium micro-interactions, 
   interactive code switchers, calculators, and responsive UI.
   ========================================================================== */

:root {
  --pc-primary: #2563eb;
  --pc-primary-hover: #1d4ed8;
  --pc-primary-light: #eff6ff;
  --pc-accent: #6366f1;
  --pc-success: #10b981;
  --pc-dark: #0f172a;
  --pc-slate: #334155;
  --pc-muted: #64748b;
  --pc-light-bg: #f8fafc;
  --pc-card-bg: #ffffff;
  --pc-border: #e2e8f0;
  --pc-border-subtle: #f1f5f9;
  --pc-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --pc-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --pc-shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   Global Light Theme Overrides
   ========================================================================== */
body {
  background-color: #ffffff !important;
  color: var(--pc-slate);
}

/* Navbar Fixes for Light Theme & Button Alignment */
.navbar.sticky_nav {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow-sm);
  padding: 10px 0 !important;
}

.navbar .navbar-brand {
  margin-right: 28px !important;
  display: flex !important;
  align-items: center !important;
}

.navbar .navbar-brand img.main_logo {
  max-height: 38px !important;
  width: auto !important;
}

.menu > .nav-item {
  margin-left: 20px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.navbar-nav .nav-link {
  color: #1e293b !important;
  font-size: 14.5px !important;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active > .nav-link {
  color: var(--pc-primary) !important;
}

/* Dropdown Arrow & Menu Alignment */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

.menu > .nav-item.dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.menu > .nav-item.dropdown > .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  padding-right: 0 !important;
}

.menu > .nav-item .mobile_dropdown_icon {
  position: static !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-left: 6px !important;
  font-size: 11px !important;
  color: #64748b !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
  pointer-events: none !important;
  top: auto !important;
  right: auto !important;
}

.menu > .nav-item:hover .mobile_dropdown_icon,
.menu > .nav-item.active .mobile_dropdown_icon {
  color: var(--pc-primary) !important;
  transform: rotate(180deg) !important;
}

@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu {
    left: 0 !important;
    top: 100% !important;
    z-index: 1000 !important;
  }
}

@media (max-width: 991px) {
  .menu > .nav-item.dropdown {
    display: block !important;
  }
  .menu > .nav-item .mobile_dropdown_icon {
    position: absolute !important;
    right: 15px !important;
    top: 15px !important;
    font-size: 16px !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .menu > .nav-item:hover .mobile_dropdown_icon {
    transform: none !important;
  }
}

/* Navbar Right Buttons & Container */
.nav_right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  margin-left: 12px !important;
  padding: 0 !important;
}

.nav_btn_login,
.nav_right .login_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  padding: 0 16px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.nav_btn_login:hover,
.nav_right .login_btn:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
  transform: translateY(-1px);
}

.nav_btn_signup,
.nav_right .signup_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 38px !important;
  padding: 0 18px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border: 1px solid #2563eb !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.nav_btn_signup:hover,
.nav_right .signup_btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  border-color: #1d4ed8 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Neutralize legacy .btn_text translateY inside navbar if present */
.nav_right .btn_text {
  overflow: visible !important;
  width: auto !important;
  display: inline !important;
}

.nav_right .btn_text span {
  position: static !important;
  display: inline !important;
  transform: none !important;
}

.nav_right .btn_text span + span {
  display: none !important;
}

/* ==========================================================================
   Hero Section Modernization (Light Theme)
   ========================================================================== */
.saas_banner_area_two.light_hero {
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.06) 0%, rgba(248, 250, 252, 0.5) 50%, #ffffff 100%) !important;
  padding: 150px 0 80px !important;
  position: relative;
  overflow: hidden;
}

.saas_banner_area_two.light_hero::before {
  display: none !important;
}

.hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero_badge .pulse_dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  display: inline-block;
}

.light_hero .saas_banner_content_two h1,
.light_hero .saas_banner_content_two h2 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--pc-dark) !important;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.light_hero .saas_banner_content_two h1 .highlight-text,
.light_hero .saas_banner_content_two h2 .highlight-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light_hero .saas_banner_content_two p {
  color: #475569 !important;
  font-size: 18px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 32px;
}

.hero_cta_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn_primary_modern {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn_primary_modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -5px rgba(37, 99, 235, 0.45);
  color: #ffffff !important;
}

.btn_secondary_modern {
  background: #ffffff;
  color: #1e293b !important;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow-sm);
  transition: all 0.25s ease;
}

.btn_secondary_modern:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--pc-primary) !important;
  transform: translateY(-2px);
}

/* Metric Pill Strip */
.hero_metrics_strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  max-width: 900px;
  margin: 0 auto 50px;
  box-shadow: var(--pc-shadow-sm);
}

.metric_item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.metric_item .metric_icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.metric_item.latency .metric_icon { background: #dbeafe; color: #1d4ed8; }
.metric_item.placement .metric_icon { background: #dcfce7; color: #15803d; }
.metric_item.pricing .metric_icon { background: #fef3c7; color: #b45309; }
.metric_item.security .metric_icon { background: #f3e8ff; color: #7e22ce; }

.metric_item .metric_value {
  font-size: 16px;
  font-weight: 700;
  color: var(--pc-dark);
  line-height: 1.2;
}

.metric_item .metric_label {
  font-size: 12px;
  color: var(--pc-muted);
}

/* ==========================================================================
   Interactive Code Switcher (Hero Terminal)
   ========================================================================== */
.code_terminal_wrapper {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  background: #0f172a;
  border-radius: 14px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  border: 1px solid #1e293b;
  overflow: hidden;
  position: relative;
}

.code_terminal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.terminal_window_dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.terminal_window_dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.terminal_window_dots .dot_red { background: #ef4444; }
.terminal_window_dots .dot_yellow { background: #f59e0b; }
.terminal_window_dots .dot_green { background: #10b981; }

.terminal_lang_tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal_tab_btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terminal_tab_btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.terminal_tab_btn.active {
  color: #ffffff;
  background: #334155;
  font-weight: 600;
}

.btn_copy_code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn_copy_code:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.code_terminal_body {
  padding: 20px 24px;
  font-family: "JetBrains Mono", Consolas, "Fira Code", monospace;
  font-size: 13.5px;
  line-height: 1.65;
  color: #e2e8f0;
  overflow-x: auto;
  margin: 0;
}

.code_tab_pane {
  display: none;
}

.code_tab_pane.active {
  display: block;
}

/* Syntax Coloring */
.code_terminal_body .cm-comment { color: #64748b; }
.code_terminal_body .cm-keyword { color: #f43f5e; }
.code_terminal_body .cm-string { color: #34d399; }
.code_terminal_body .cm-prop { color: #38bdf8; }
.code_terminal_body .cm-number { color: #fbbf24; }

/* ==========================================================================
   Feature Tabs Section Modernization
   ========================================================================== */
.promo_area {
  background: #ffffff;
  padding: 50px 0 !important;
}

.promo_tab_image {
  background: transparent !important;
  padding: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

.promo_card_visual {
  background: #ffffff !important;
  border: 1px solid var(--pc-border) !important;
  border-radius: 14px !important;
  padding: 22px !important;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature_pane_card {
  background: #f8fafc !important;
  border: 1px solid var(--pc-border) !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  margin-bottom: 12px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
}

.feature_pane_card:hover {
  border-color: #cbd5e1 !important;
}

.nav-pills .nav-link {
  background: #ffffff !important;
  border: 1px solid var(--pc-border) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  margin-bottom: 10px !important;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 14px !important;
}

.nav-pills .nav-link:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

.nav-pills .nav-link.active {
  background: #ffffff !important;
  border-color: var(--pc-primary) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12) !important;
}

.nav-pills .nav-link .icon_box {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  flex-shrink: 0;
  background: #eff6ff;
  color: var(--pc-primary);
}

.nav-pills .nav-link.active .icon_box {
  background: var(--pc-primary);
  color: #ffffff;
}

.nav-pills .nav-link h5 {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--pc-dark);
  margin-bottom: 2px !important;
}

.nav-pills .nav-link p {
  font-size: 12.5px !important;
  line-height: 18px !important;
  color: var(--pc-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Pay-Per-Use Interactive Calculator (Light Theme)
   ========================================================================== */
.saas_accordion_area.light_pay_per_use {
  background: #f8fafc !important;
  padding: 100px 0;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
}

.calc_container_card {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--pc-shadow-md);
  margin-bottom: 30px;
}

.calc_slider_wrap {
  margin: 28px 0;
}

.calc_slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  transition: background 0.2s;
}

.calc_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pc-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  border: 3px solid #ffffff;
  transition: transform 0.15s ease;
}

.calc_slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc_volume_display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calc_volume_val {
  font-size: 28px;
  font-weight: 800;
  color: var(--pc-dark);
}

.calc_result_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.calc_result_box {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.calc_result_box.photon_box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.calc_result_box.savings_box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.calc_result_box .calc_res_label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.calc_result_box .calc_res_num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.calc_result_box.photon_box .calc_res_num {
  color: var(--pc-primary);
}

.calc_result_box.savings_box .calc_res_num {
  color: #059669;
}

.calc_result_box .calc_res_sub {
  font-size: 12px;
  color: var(--pc-muted);
  margin-top: 4px;
}

/* Accordion Light Theme */
.light_accordion .accordion-item {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.light_accordion .accordion-button {
  background: #ffffff;
  color: var(--pc-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: none !important;
}

.light_accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: var(--pc-primary);
}

.light_accordion .accordion-body {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.6;
  padding: 16px 20px 20px;
}

/* ==========================================================================
   Footer Light Theme Modernization
   ========================================================================== */
.footer_area_two.light_footer {
  background: #f8fafc !important;
  border-top: 1px solid var(--pc-border);
  color: var(--pc-slate);
  padding: 100px 0 40px !important;
}

.footer_area_two.light_footer .f_title {
  color: var(--pc-dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer_area_two.light_footer .link_widget li a {
  color: #64748b;
  font-size: 14px;
  line-height: 2.1;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer_area_two.light_footer .link_widget li a:hover {
  color: var(--pc-primary);
}

.footer_area_two.light_footer .f_about_widget p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0 20px;
}

.footer_area_two.light_footer .f_social_icon li a {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  color: #475569;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer_area_two.light_footer .f_social_icon li a:hover {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
  color: #ffffff;
}

.footer_area_two.light_footer .footer_bottom {
  border-top: 1px solid var(--pc-border);
  margin-top: 50px;
  padding-top: 25px;
}

.footer_area_two.light_footer .footer_bottom p {
  color: #94a3b8;
  font-size: 13.5px;
}

/* ==========================================================================
   Pricing Page Modernization (Light Theme)
   ========================================================================== */
.pricing_section_wrap {
  padding: 80px 0 100px;
  background: #ffffff;
}

.pricing_tier_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  align-items: stretch;
}

.pricing_tier_card {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--pc-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing_tier_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pc-shadow-lg);
  border-color: #cbd5e1;
}

.pricing_tier_card.popular {
  border: 2px solid var(--pc-primary);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.popular_pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tier_badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.tier_badge.starter { background: #f1f5f9; color: #475569; }
.tier_badge.pay_use { background: #dbeafe; color: #1d4ed8; }
.tier_badge.enterprise { background: #f3e8ff; color: #7e22ce; }

.tier_title {
  font-size: 24px;
  font-weight: 800;
  color: var(--pc-dark);
  margin-bottom: 8px;
}

.tier_desc {
  font-size: 14.5px;
  color: var(--pc-muted);
  line-height: 1.5;
  min-height: 44px;
  margin-bottom: 24px;
}

.tier_price_wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pc-border);
}

.tier_price_num {
  font-size: 44px;
  font-weight: 800;
  color: var(--pc-dark);
  line-height: 1;
}

.tier_price_unit {
  font-size: 14px;
  color: var(--pc-muted);
  font-weight: 500;
}

.tier_features_list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.tier_features_list li {
  font-size: 14.5px;
  color: #334155;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.tier_features_list li .feat_icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier_cta_btn {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.tier_cta_btn.outline {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  color: var(--pc-dark);
}

.tier_cta_btn.outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--pc-primary);
}

.tier_cta_btn.solid {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.tier_cta_btn.solid:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Comparison Table */
.pricing_table_wrap {
  margin-top: 80px;
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pc-shadow-sm);
}

.table_comparison {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}

.table_comparison th,
.table_comparison td {
  padding: 18px 22px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--pc-border);
  vertical-align: middle;
}

.table_comparison th {
  background: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  color: var(--pc-dark);
}

.table_comparison th.col_highlight,
.table_comparison td.col_highlight {
  background: #eff6ff;
  border-left: 2px solid #bfdbfe;
  border-right: 2px solid #bfdbfe;
}

.table_comparison td.col_highlight {
  font-weight: 600;
  color: var(--pc-primary);
}

.table_comparison tbody tr:hover td {
  background-color: #f8fafc;
}

.table_comparison tbody tr:hover td.col_highlight {
  background-color: #e0f2fe;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991px) {
  .pricing_tier_grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .light_hero .saas_banner_content_two h1,
  .light_hero .saas_banner_content_two h2 {
    font-size: 38px;
  }
  .hero_metrics_strip {
    gap: 16px;
  }
  .calc_result_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .light_hero .saas_banner_content_two h1,
  .light_hero .saas_banner_content_two h2 {
    font-size: 30px;
  }
  .terminal_lang_tabs {
    overflow-x: auto;
  }
}

/* ==========================================================================
   ENTERPRISE LAYOUT, TYPOGRAPHY & COMPACT SPACING OVERRIDES
   Disciplined developer design system: eliminates oversized text, removes
   excessive whitespace gaps, and creates a dense, high-credibility UI.
   ========================================================================== */

/* 1. Disciplined Enterprise Typography Scale */
.light_hero .saas_banner_content_two h1,
.light_hero .saas_banner_content_two h2 {
  font-size: 42px !important;
  line-height: 50px !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}

.saas_breadcrumb_text h1 {
  font-size: 34px !important;
  line-height: 42px !important;
  letter-spacing: -0.025em !important;
  font-weight: 700 !important;
  color: var(--pc-dark) !important;
  margin-bottom: 12px !important;
}

.section_title h2 {
  font-size: 28px !important;
  line-height: 36px !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  color: var(--pc-dark) !important;
  margin-bottom: 10px !important;
}

.saas_features_content h2 {
  font-size: 26px !important;
  line-height: 34px !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  color: var(--pc-dark) !important;
  margin-bottom: 14px !important;
}

.section_title h5,
.saas_features_content h6 {
  font-size: 12.5px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  color: var(--pc-primary) !important;
  margin-bottom: 8px !important;
}

.saas_breadcrumb_text p,
.section_title p,
.saas_features_content p {
  font-size: 15px !important;
  line-height: 24px !important;
  color: #475569 !important;
}

.saas_breadcrumb_text p {
  max-width: 680px !important;
  margin: 0 auto 16px !important;
}

/* 2. Compact, Disciplined Spacing Scale */
.saas_breadcrumb_area {
  padding: 110px 0 45px !important; /* down from 210px 0 160px */
}

.sec_padding {
  padding: 60px 0 !important; /* down from 120px */
}

.sec_padding_two {
  padding: 48px 0 !important; /* down from 100px */
}

.section_title {
  margin-bottom: 32px !important; /* down from 70px */
}

.section_title_two {
  margin-bottom: 28px !important; /* down from 50px */
}

.saas_features_item + .saas_features_item {
  margin-top: 48px !important; /* down from 110px */
}

.saas_banner_area_two.light_hero {
  padding: 120px 0 50px !important; /* down from 150px/180px */
}

.saas_banner_content_two .banner_img {
  margin-top: 32px !important; /* down from 90px */
}

/* 3. Horizontal Content Density */
.saas_features_content {
  padding-right: 24px !important; /* down from 72px */
  padding-left: 0 !important;
}

.saas_features_item.two .saas_features_content {
  padding-left: 24px !important; /* down from 70px */
  padding-right: 0 !important;
}

.saas_features_img {
  border-radius: 14px !important;
  padding: 24px !important;
  border: 1px solid var(--pc-border) !important;
  box-shadow: var(--pc-shadow-sm) !important;
  background-color: #f8fafc !important;
}

/* 4. Enterprise Feature Lists & Metric Highlights */
.saas_list li {
  font-size: 14.5px !important;
  margin-bottom: 12px !important;
  color: #334155 !important;
  line-height: 22px !important;
}

.saas_list li .icon {
  width: 22px !important;
  height: 22px !important;
  margin-right: 10px !important;
  flex-shrink: 0;
}

.list-pay li {
  font-size: 13.5px !important;
  line-height: 21px !important;
  margin-bottom: 6px !important;
  color: #475569 !important;
}

.list-pay li .highlight {
  font-weight: 600 !important;
  color: #0f172a !important;
}

/* 5. Enterprise Metrics Banner & Stats (About & Landing) */
.fact_inner {
  margin-top: 36px !important;
  padding: 22px 28px !important;
  background: #f8fafc !important;
  border: 1px solid var(--pc-border) !important;
  border-radius: 14px !important;
  box-shadow: var(--pc-shadow-sm) !important;
}

.skill_fact_item .number {
  font-size: 34px !important;
  line-height: 40px !important;
  font-weight: 800 !important;
  color: var(--pc-dark) !important;
  letter-spacing: -0.02em !important;
}

.skill_fact_item p {
  font-size: 13px !important;
  color: var(--pc-muted) !important;
  margin-bottom: 0 !important;
  font-weight: 600 !important;
}

/* 6. Refined Action Buttons */
.saas_btn {
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 22px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18) !important;
  transition: all 0.2s ease !important;
}

.saas_btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28) !important;
}

/* 7. Technical Endpoint Badge */
.tech_pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: #1d4ed8;
  font-weight: 600;
}

/* ==========================================================================
   COMPACT NEWSLETTER SEGMENT CUSTOMIZATION
   Replaces oversized 85px-padded banner with a sleek, horizontal developer strip.
   ========================================================================== */
.subscribe_inner.compact_newsletter {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  margin-bottom: -50px !important;
  box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  text-align: left !important;
}

.newsletter_badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.newsletter_title {
  font-size: 22px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.02em !important;
}

.newsletter_subtitle {
  font-size: 14px !important;
  line-height: 20px !important;
  color: #e0e7ff !important;
  margin-bottom: 0 !important;
}

.subscribe_form_compact {
  max-width: 460px;
  margin-left: auto;
}

.input_group_custom {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px 5px 4px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.input_group_custom .form-control {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 8px 12px 8px 0 !important;
  font-size: 14px !important;
  color: #0f172a !important;
  height: 38px !important;
  flex: 1;
}

.input_group_custom .form-control::placeholder {
  color: #94a3b8;
}

.input_group_custom .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn_subscribe_custom {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  height: 38px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn_subscribe_custom:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
}

.subs_feedback {
  margin-top: 8px;
  font-size: 13px;
  min-height: 20px;
}

@media (max-width: 991px) {
  .subscribe_inner.compact_newsletter {
    padding: 26px 20px !important;
    text-align: center !important;
    margin-bottom: -40px !important;
  }
  .subscribe_form_compact {
    margin-right: auto;
    margin-top: 16px;
  }
  .footer_area_two.light_footer {
    padding: 75px 0 35px !important;
  }
}

/* ==========================================================================
   COMPACT CONSULTATION BANNER (Screenshot 2 Fix)
   ========================================================================== */
.consultation_banner_compact {
  background-color: #f8fafc !important;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  padding: 44px 0 !important;
}

.consult_badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pc-primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}

.consult_title {
  font-size: 26px !important;
  line-height: 34px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 8px !important;
}

.consult_desc {
  font-size: 14.5px !important;
  line-height: 22px !important;
  color: #475569 !important;
  max-width: 640px !important;
  margin: 0 auto 20px !important;
}

.btn_consult_primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn_consult_primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.32);
  color: #ffffff !important;
}

.btn_consult_secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--pc-border);
  color: #334155 !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn_consult_secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   World-Class Additions: MTA Status Pill, Trust Strip, & Pipeline Architecture
   ========================================================================== */

/* 1. Navbar MTA Status Pill */
.mta_status_pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 4px 11px;
  font-size: 11.5px;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mta_status_pill:hover {
  background: #e2e8f0;
}

.mta_pulse_dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseGreen 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.mta_status_label strong {
  color: #0f172a;
  font-weight: 700;
}

.mta_status_sep {
  color: #cbd5e1;
  font-weight: 300;
}

.mta_uptime_label {
  color: #15803d;
  font-weight: 600;
}

/* 2. Enterprise Trust & Compliance Strip */
.trust_compliance_strip {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 22px 0;
}

.trust_strip_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust_item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust_icon_wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust_item:hover .trust_icon_wrap {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.trust_text {
  display: flex;
  flex-direction: column;
}

.trust_text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.trust_text span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.2;
}

.trust_sep {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
}

@media (max-width: 991px) {
  .trust_strip_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .trust_sep {
    display: none;
  }
}

@media (max-width: 575px) {
  .trust_strip_inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* 3. Delivery Pipeline Flow Architecture */
.delivery_pipeline_area {
  position: relative;
  overflow: hidden;
}

.pipeline_grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 35px;
}

.pipeline_step_card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.pipeline_step_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.pipeline_step_card.step_card_highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border-color: #bbf7d0;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.08);
}

.pipeline_step_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step_num {
  font-size: 13px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.step_badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.step_badge.badge_success {
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}

.pipeline_icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.pipeline_icon.icon_success {
  background: #dcfce7;
  color: #16a34a;
}

.pipeline_step_card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pipeline_step_card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 14px;
  flex-grow: 1;
}

.pipeline_footer_tag {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
}

.pipeline_footer_tag.tag_success {
  background: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

.pipeline_connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 16px;
  flex-shrink: 0;
  padding: 0 2px;
  animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(3px); opacity: 1; color: #2563eb; }
  100% { transform: translateX(0); opacity: 0.6; }
}

@media (max-width: 991px) {
  .pipeline_grid {
    flex-direction: column;
    gap: 14px;
  }
  .pipeline_connector {
    transform: rotate(90deg);
    padding: 6px 0;
  }
  @keyframes pulseArrow {
    0% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
    50% { transform: rotate(90deg) translateX(3px); opacity: 1; color: #2563eb; }
    100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
  }
}

/* 4. Live MTA Telemetry Bar */
.pipeline_live_bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.live_bar_title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f172a;
  white-space: nowrap;
  font-family: monospace;
}

.live_status_dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulseGreen 2s infinite;
}

.live_bar_ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: #475569;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.live_bar_ticker::-webkit-scrollbar {
  display: none;
}

.ticker_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ticker_dot {
  color: #cbd5e1;
}

@media (max-width: 767px) {
  .pipeline_live_bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Contact Page Modernization & Form Styling
   ========================================================================== */

/* Channels Grid */
.contact_channels_section {
  padding: 40px 0 20px;
  background: #ffffff;
}

.contact_channel_card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact_channel_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.contact_channel_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.contact_channel_icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.icon_blue {
  background: #eff6ff;
  color: #2563eb;
}

.icon_green {
  background: #f0fdf4;
  color: #16a34a;
}

.icon_purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.contact_channel_badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.contact_channel_card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact_channel_card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 16px;
  flex-grow: 1;
}

.contact_channel_link {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.contact_channel_link:hover {
  color: #1d4ed8;
}

/* Contact Main Section */
.saas_contact_area {
  padding: 50px 0 70px;
  background: #ffffff;
}

.contact_benefits_col {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .contact_benefits_col {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.contact_benefit_item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact_benefit_icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact_benefit_text h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.contact_benefit_text p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Edge Status Box */
.contact_live_status_card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 30px;
}

.edge_pop_tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.edge_pop_chip {
  font-size: 11.5px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 3px 8px;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Contact Form Card Overrides */
.contact_form_wrapper {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 32px 30px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
}

.contact_form_wrapper h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 6px !important;
}

.contact_form_wrapper p.form_subtitle {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin-bottom: 22px !important;
}

.form_field_group {
  margin-bottom: 16px;
}

.form_field_group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.contact_form_wrapper .form-control,
.contact_form_wrapper .form-select {
  height: 46px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.contact_form_wrapper .form-control:focus,
.contact_form_wrapper .form-select:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
}

.contact_form_wrapper textarea.form-control {
  height: 120px !important;
  resize: vertical;
}

.btn_contact_submit {
  height: 48px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn_contact_submit:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn_contact_submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}





