/* Intelligent Softs - Modern Presentation & Landing Page CSS */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --p-primary: #3b82f6;
  --p-primary-glow: rgba(59, 130, 246, 0.15);
  --p-accent: #8b5cf6;
  --p-accent-glow: rgba(139, 92, 246, 0.15);
  --p-cyan: #06b6d4;
  --p-bg-dark: #07070a;
  --p-bg-darker: #030305;
  --p-bg-card: rgba(15, 15, 24, 0.7);
  --p-bg-nav: rgba(7, 7, 10, 0.75);
  
  --p-border: rgba(255, 255, 255, 0.08);
  --p-border-hover: rgba(59, 130, 246, 0.3);
  
  --p-text-main: #e8e8f0;
  --p-text-muted: #94a3b8;
  --p-text-dark: #475569;
}

/* Base resets & behavior for landing page only */
html:not(.app-active) {
  scroll-behavior: smooth;
}

body:not(.app-active) {
  overflow-x: hidden;
  height: auto !important;
  background: var(--p-bg-dark) !important;
  color: var(--p-text-main) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  width: 100%;
}

body:not(.app-active) html {
  scroll-behavior: smooth;
}

/* Hide landing wrapper when ERP is active */
body.app-active #landing-page, 
body.app-active header.landing-nav, 
body.app-active footer.landing-footer {
  display: none !important;
}

#landing-page {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* Background elements */
.landing-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  z-index: -2;
  pointer-events: none;
}

.landing-glow-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 0px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px; left: 10%;
  z-index: -1;
  pointer-events: none;
  animation: pulse-slow 15s infinite alternate;
}

.landing-glow-blob-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 0px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 40%; right: 5%;
  z-index: -1;
  pointer-events: none;
  animation: pulse-slow 20s infinite alternate-reverse;
}

@keyframes pulse-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.15); }
}

/* Header / Navigation */
header.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--p-bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--p-border);
  z-index: 999;
  transition: all 0.3s ease;
}

header.landing-nav.scrolled {
  height: 70px;
  background: rgba(3, 3, 5, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #fff;
  background: linear-gradient(135deg, #fff 60%, var(--p-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--p-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--p-primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button styles - NO BORDER RADIUS */
.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--p-border);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0px !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glow {
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  border: none;
  color: #fff;
  padding: 11px 24px;
  border-radius: 0px !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-glow:hover {
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 180px 24px 100px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--p-primary);
  padding: 6px 14px;
  border-radius: 0px !important;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge span.pulse-dot {
  width: 8px; height: 8px;
  background-color: var(--p-primary);
  border-radius: 0px !important;
  display: inline-block;
  box-shadow: 0 0 10px var(--p-primary);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title span.grad-text {
  background: linear-gradient(135deg, var(--p-primary), var(--p-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--p-text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Glassmorphic visual card mockups - NO BORDER RADIUS */
.hero-mockup-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.1;
}

.hero-card-1 {
  position: absolute;
  top: 0; left: 0;
  width: 85%;
  height: 85%;
  background: rgba(15, 15, 24, 0.4);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: all 0.5s ease;
}

.hero-card-1:hover {
  transform: translate(-10px, -5px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-card-header {
  height: 48px;
  border-bottom: 1px solid var(--p-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.dot-btn {
  width: 10px; height: 10px;
  border-radius: 0px !important;
  background: rgba(255,255,255,0.15);
}
.dot-btn.red { background: #ef4444; }
.dot-btn.yellow { background: #fbbf24; }
.dot-btn.green { background: #10b981; }

.hero-card-body {
  padding: 20px;
}

.hero-card-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  background: linear-gradient(135deg, rgba(20, 20, 35, 0.8), rgba(10, 10, 15, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0px !important;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.5s ease;
}

.hero-card-2:hover {
  transform: translate(5px, 5px) scale(1.03);
  border-color: rgba(139, 92, 246, 0.4);
}

/* Feature grid items on card 1 */
.fake-chart-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 0px !important;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.fake-chart-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: linear-gradient(90deg, var(--p-primary), var(--p-cyan));
  width: 75%;
  border-radius: 0px !important;
}
.fake-chart-bar.two::after {
  background: linear-gradient(90deg, var(--p-accent), #f43f5e);
  width: 45%;
}

/* Standard Section layout */
.section-wrapper {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle-small {
  color: var(--p-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--p-text-muted);
  line-height: 1.5;
}

/* Services 3-column Grid - NO BORDER RADIUS */
.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 0px !important;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent, rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--p-border-hover);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

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

.service-card-image {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--p-bg-dark) 100%);
}

.service-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-text-muted);
  margin-bottom: 24px;
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px;
}

.service-card-price {
  font-size: 14px;
  color: var(--p-text-muted);
}

.service-card-price span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--p-primary);
  font-family: var(--font-display);
}

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

.service-card-link:hover {
  color: var(--p-primary);
}

.service-card-link svg {
  transition: transform 0.2s ease;
}
.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Dynamic Service Explorer - NO BORDER RADIUS */
.explorer-container {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.explorer-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.explorer-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.explorer-tab-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--p-border);
  color: var(--p-text-muted);
  padding: 10px 18px;
  border-radius: 0px !important;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explorer-tab-btn:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.explorer-tab-btn.active {
  background: var(--p-primary);
  border-color: var(--p-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.explorer-search-wrapper {
  position: relative;
  min-width: 280px;
}

.explorer-search-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--p-border);
  color: #fff;
  padding: 10px 16px 10px 42px;
  border-radius: 0px !important;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.explorer-search-input:focus {
  border-color: var(--p-primary);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.explorer-search-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--p-text-muted);
  pointer-events: none;
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-height: 200px;
}

.explorer-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.explorer-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--p-border-hover);
  transform: translateY(-3px);
}

.explorer-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.explorer-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.explorer-item-category {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 0px !important;
  color: var(--p-text-muted);
}

.explorer-item-desc {
  font-size: 14px;
  color: var(--p-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.explorer-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 14px;
}

.explorer-item-price {
  font-size: 13px;
  color: var(--p-text-muted);
}
.explorer-item-price strong {
  color: var(--p-primary);
  font-size: 15px;
}

.explorer-item-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.explorer-item-btn:hover {
  color: var(--p-primary);
}

.explorer-empty {
  grid-column: span 2;
  text-align: center;
  padding: 60px 0;
  color: var(--p-text-muted);
  font-size: 15px;
}

/* Appointment / Booking Section - NO BORDER RADIUS */
.booking-section-wrapper {
  background: linear-gradient(180deg, transparent, var(--p-bg-darker) 100%);
  padding: 100px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.booking-info-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.booking-info-text {
  color: var(--p-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.booking-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-feature-item {
  display: flex;
  gap: 16px;
}

.booking-feature-icon {
  width: 40px; height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-primary);
  flex-shrink: 0;
}

.booking-feature-content h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.booking-feature-content p {
  color: var(--p-text-muted);
  font-size: 14px;
}

.booking-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-col-span-2 {
  grid-column: span 2;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--p-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-input, .booking-select, .booking-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--p-border);
  color: #fff;
  padding: 12px 16px;
  border-radius: 0px !important;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.booking-input:focus, .booking-select:focus, .booking-textarea:focus {
  border-color: var(--p-primary);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.booking-textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-select option {
  background: var(--p-bg-dark);
  color: #fff;
}

.booking-submit-btn {
  grid-column: span 2;
  margin-top: 10px;
}

/* Contact splitting section - NO BORDER RADIUS */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
}

.contact-detail-icon {
  width: 50px; height: 50px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-accent);
  flex-shrink: 0;
}

.contact-detail-info h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-detail-info p {
  color: var(--p-text-muted);
  line-height: 1.5;
  font-size: 15px;
}
.contact-detail-info a {
  color: var(--p-primary);
  text-decoration: none;
  font-weight: 500;
}
.contact-detail-info a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Modals & Login Overlay Overrides - NO BORDER RADIUS */
#login-screen {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(7, 7, 10, 0.85) !important;
  transition: opacity 0.3s ease;
}

.login-card {
  border-radius: 0px !important;
  background: rgba(15, 15, 24, 0.8) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}

.login-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--p-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.login-close-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: rotate(90deg);
}

/* Floating Live Chat Widget - NO BORDER RADIUS */
.chat-widget-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 0px !important;
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget-bubble:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.chat-widget-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--p-bg-dark);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.chat-widget-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 520px;
  border-radius: 0px !important;
  background: rgba(12, 12, 20, 0.95);
  border: 1px solid var(--p-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-widget-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-bottom: 1px solid var(--p-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-widget-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-widget-avatar {
  width: 36px; height: 36px;
  border-radius: 0px !important;
  background: var(--p-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  position: relative;
}

.chat-widget-avatar-status {
  width: 10px; height: 10px;
  border-radius: 0px !important;
  background: #10b981;
  border: 2px solid var(--p-bg-dark);
  position: absolute;
  bottom: 0; right: 0;
}

.chat-widget-header-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.chat-widget-header-text p {
  font-size: 11px;
  color: #10b981;
  margin: 2px 0 0;
  font-weight: 500;
}

.chat-widget-close {
  background: none;
  border: none;
  color: var(--p-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.chat-widget-close:hover {
  color: white;
}

/* Chat Setup Form (before starting) */
.chat-setup-container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.chat-setup-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.chat-setup-subtitle {
  font-size: 14px;
  color: var(--p-text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.chat-setup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Chat Message Area - NO BORDER RADIUS */
.chat-messages-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 0px !important;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.chat-bubble.visitor {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--p-border);
  color: #fff;
  align-self: flex-end;
}

.chat-bubble.agent {
  background: linear-gradient(135deg, var(--p-primary), rgba(59, 130, 246, 0.8));
  color: #fff;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.chat-bubble-agent-name {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.chat-input-container {
  padding: 16px;
  border-top: 1px solid var(--p-border);
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
}

.chat-input-field {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--p-border);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0px !important;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  resize: none;
  height: 40px;
  line-height: 20px;
}

.chat-input-field:focus {
  border-color: var(--p-primary);
  background: rgba(255,255,255,0.05);
}

.chat-send-btn {
  width: 40px; height: 40px;
  border-radius: 0px !important;
  background: var(--p-primary);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.chat-send-btn:hover {
  transform: scale(1.05);
  background: var(--p-primary-hover);
}

.chat-send-btn:disabled {
  background: var(--p-text-dark);
  cursor: not-allowed;
  box-shadow: none;
}

/* Footer Section */
footer.landing-footer {
  background: var(--p-bg-darker);
  border-top: 1px solid var(--p-border);
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-logo img {
  height: 32px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: white;
}

.footer-desc {
  color: var(--p-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link a {
  color: var(--p-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  color: var(--p-text-dark);
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badges img {
  height: 32px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-badges img:hover {
  opacity: 1;
}

/* Toast override for landing */
.toast-container {
  z-index: 10000 !important;
}

/* ===== HOSTING PLANS PRICING SECTION ===== */
.hosting-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.hosting-plan-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.hosting-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--p-border-hover);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.hosting-plan-featured {
  border-color: var(--p-primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.hosting-plan-featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent), var(--p-cyan));
  z-index: -1;
  opacity: 0.3;
}

.hosting-plan-badge {
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting-plan-featured .hosting-plan-badge {
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  color: #fff;
}

.hosting-plan-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hosting-plan-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hosting-plan-tagline {
  font-size: 13px;
  color: var(--p-text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.hosting-plan-promo {
  margin-bottom: 8px;
}

.hosting-plan-discount {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.hosting-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.hosting-plan-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hosting-plan-period {
  font-size: 14px;
  color: var(--p-text-muted);
  font-weight: 500;
}

.hosting-plan-renewal {
  font-size: 12px;
  color: var(--p-text-muted);
  margin-bottom: 20px;
}

.hosting-plan-btn {
  display: block;
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--p-border);
  color: #fff;
  margin-bottom: 24px;
}

.hosting-plan-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hosting-plan-btn-primary {
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.hosting-plan-btn-primary:hover {
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
  filter: brightness(1.1);
}

.hosting-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--p-border);
  padding-top: 20px;
}

.hosting-plan-features li {
  font-size: 13px;
  color: var(--p-text-muted);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hosting-plan-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

.hosting-plan-includes {
  border-top: 1px solid var(--p-border);
  padding-top: 16px;
  margin-top: auto;
}

.hosting-plan-includes-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--p-text-muted);
  margin-bottom: 10px;
}

.hosting-plan-includes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hosting-plan-includes-tags span {
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--p-text-muted);
  font-weight: 500;
}

.hosting-tag-new {
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  color: var(--p-primary) !important;
  font-weight: 700 !important;
}

/* Responsive styles */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: flex;
    margin-left: auto;
  }
  .menu-toggle-btn {
    display: block;
    margin-left: 16px;
  }
  .nav-actions .btn-glow {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero-section {
    flex-direction: column;
    padding-top: 120px;
    gap: 40px;
    text-align: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
  }
  .hero-mockup-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .hero-card-1 {
    width: 100%;
    position: relative;
    height: auto;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .hero-card-2 {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-top: -30px;
    align-self: center;
  }
  .hero-badge, .hero-buttons {
    justify-content: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .core-services-grid {
    grid-template-columns: 1fr;
  }
  .explorer-grid {
    grid-template-columns: 1fr;
  }
  .explorer-empty {
    grid-column: span 1;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .form-col-span-2 {
    grid-column: span 1;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .configurator-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .hosting-plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .chat-widget-window {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 95px;
    height: 480px;
  }
}

/* Background Matrix Canvas & Layers */
#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
}

.hero-content, 
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Hosting Plan Configurator styles */
.configurator-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 40px;
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.configurator-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.config-slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.config-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.config-slider-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

.config-slider-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--p-cyan);
}

.config-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  border: none;
  margin: 10px 0;
  position: relative;
}

.config-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  border: none;
  border-radius: 0 !important;
  transition: transform 0.1s ease;
}

.config-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.config-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--p-primary), var(--p-accent));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  border: none;
  border-radius: 0 !important;
  transition: transform 0.1s ease;
}

.config-range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--p-text-muted);
}

.configurator-price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--p-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.price-header {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--p-text-muted);
  margin-bottom: 8px;
}

.price-value-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 24px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}

.price-amount {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

.price-period {
  font-size: 14px;
  color: var(--p-text-muted);
  margin-left: 4px;
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--p-border);
  padding-top: 20px;
}

.price-features-list li {
  font-size: 13.5px;
  color: var(--p-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

.config-order-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Auth Screen Grid Layout */
.auth-card {
  display: flex;
  width: 900px;
  max-width: 95vw;
  height: 600px;
  max-height: 90vh;
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: 0px !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.auth-visual-pane {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: white;
  border-right: 1px solid var(--p-border);
}

.auth-visual-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.auth-visual-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.9), rgba(59, 130, 246, 0.4));
  z-index: 2;
}

.auth-visual-content {
  position: relative;
  z-index: 3;
}

.auth-pane-logo {
  height: 40px;
  margin-bottom: 24px;
}

.auth-visual-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.auth-visual-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.auth-form-pane {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--p-bg-darker);
}

.auth-form-header {
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .auth-card {
    flex-direction: column;
    height: auto;
    max-height: 95vh;
    overflow-y: auto;
  }
  .auth-visual-pane {
    display: none;
  }
  .auth-form-pane {
    padding: 30px 20px;
  }
}

/* Custom Language Dropdown */
.lang-switcher-wrapper {
  position: relative;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-family: inherit;
  display: flex;
  align-items: center;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.lang-current:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}
.lang-current svg {
  color: #10b981;
  transition: transform 0.3s ease;
}
.lang-switcher-wrapper:hover .lang-current svg {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: max-content;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(16, 185, 129, 0.1);
  z-index: 100;
}
.lang-switcher-wrapper:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #a0aec0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.lang-dropdown a:hover, .lang-dropdown a.active {
  background: rgba(16, 185, 129, 0.1);
  color: #fff;
}
.lang-dropdown a.active {
  position: relative;
}
.lang-dropdown a.active::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
