:root {
  --primary-color: #03a9f4;
  --accent-color: #00bcd4;
  --bg-dark: #1a1d23;
  --bg-darker: #0a0d14;
  --text-light: #f7f7f7;
  --text-muted: #6c757d;
  --border-color: #2f343a;
  --gradient-primary: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.logo-img {
  max-width: 47px;
  height: auto;
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
}

.site-name {
  font-size: 1.25rem;
  color: var(--text-light);
}

.navbar {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateX(5px);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  pointer-events: none;
}

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

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

.navbar .btn-primary {
  padding: 0.5rem 1.5rem;
}

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 81px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-features {
  list-style: none;
  padding: 0;
}

.hero-features li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.hero-features i {
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.error-dashboard {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 18px 63px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-tabs {
  display: flex;
  gap: 1rem;
}

.tab {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  background: rgba(239, 68, 68, 0.1);
  color: var(--primary-color);
}

.dashboard-content {
  padding: 1.5rem;
}

.error-trend-chart {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
}

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

.trend-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 48px;
  font-size: 0.75rem;
  font-weight: 600;
}

.trend-down {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
}

.chart-area {
  height: 120px;
}

.trend-line {
  width: 100%;
  height: 100%;
}

.error-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.error-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-left: 4px solid;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.error-item:hover {
  transform: translateX(5px);
  border-left-width: 6px;
}

.severity-critical {
  border-left-color: var(--primary-color);
}

.severity-warning {
  border-left-color: #f59e0b;
}

.severity-info {
  border-left-color: #3b82f6;
}

.error-icon {
  flex-shrink: 0;
  width: 43px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.25rem;
}

.severity-critical .error-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--primary-color);
}

.severity-warning .error-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.severity-info .error-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.error-details {
  flex: 1;
}

.error-title {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.error-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.error-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
}

.badge-critical {
  background: rgba(239, 68, 68, 0.2);
  color: var(--primary-color);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.badge-info {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.stack-trace-preview {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.stack-trace-preview code {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 49px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

section {
  padding: 79px 0;
}

.stats-section {
  padding: 58px 0;
  background: rgba(30, 41, 59, 0.3);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 13px 28px rgba(239, 68, 68, 0.2);
}

.stat-icon {
  width: 57px;
  height: 62px;
  margin: 0 auto 1rem;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.stat-content .stat-number {
  font-size: 2.5rem;
}

.features-section {
  background: rgba(30, 41, 59, 0.2);
}

.feature-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-11px);
  border-color: var(--primary-color);
  box-shadow: 0 23px 39px rgba(239, 68, 68, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-link:hover {
  gap: 0.5rem;
  color: var(--primary-color);
}

.service-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 17px 41px rgba(239, 68, 68, 0.2);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-color);
  box-shadow: 0 22px 39px rgba(239, 68, 68, 0.15);
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 47px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.author-name {
  font-weight: 600;
  color: var(--text-light);
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.team-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 43px rgba(239, 68, 68, 0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 41px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.team-social a:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
}

.integrations-section {
  background: rgba(30, 41, 59, 0.2);
}

.integration-logo {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.integration-logo:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 32px rgba(239, 68, 68, 0.15);
}

.integration-logo i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.integration-logo:hover i {
  transform: scale(1.2);
}

.integration-name {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.faq-section {
  background: rgba(30, 41, 59, 0.2);
}

.accordion {
  --bs-accordion-bg: rgba(15, 23, 42, 0.5);
  --bs-accordion-border-color: var(--border-color);
  --bs-accordion-active-bg: rgba(15, 23, 42, 0.8);
  --bs-accordion-btn-focus-border-color: var(--primary-color);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.25);
}

.accordion-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(15, 23, 42, 0.5);
  color: var(--text-light);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(239, 68, 68, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.25);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(15, 23, 42, 0.3);
  color: var(--text-muted);
  padding: 1.5rem;
}

.cta-section {
  padding: 83px 0;
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 27px rgba(239, 68, 68, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 13px 22px rgba(239, 68, 68, 0.4);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-description {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 43px;
  height: 42px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.page-hero {
  padding: 150px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
}

.pricing-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-9px);
  border-color: var(--primary-color);
  box-shadow: 0 17px 43px rgba(239, 68, 68, 0.2);
}

.pricing-featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-featured .pricing-badge {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 47px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 59px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0.5rem;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-custom {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features i {
  color: var(--accent-color);
}

.contact-info-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 21px 38px rgba(239, 68, 68, 0.15);
}

.contact-icon {
  width: 58px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-detail {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-form-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 3rem;
}

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

.form-label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.25);
  color: var(--text-light);
}

.blog-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 17px 41px rgba(239, 68, 68, 0.2);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 53px;
  font-size: 0.75rem;
  font-weight: 600;
  pointer-events: none;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 0.5rem;
}

.case-study-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 17px 43px rgba(239, 68, 68, 0.2);
}

.case-study-image {
  height: 300px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: 2rem;
}

.case-study-meta {
  margin-bottom: 1rem;
}

.case-study-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-excerpt {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.case-study-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.case-study-stats .stat-item {
  text-align: left;
}

.legal-document {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.legal-document h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.legal-document p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-document ul {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-page {
  background: var(--bg-dark);
}

.article-hero {
  padding: 150px 0 59px;
  text-align: center;
}

.article-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.article-image {
  padding: 38px 0;
}

.article-content {
  padding: 62px 0;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-list {
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.article-list li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.code-block {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
}

.code-block code {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.article-footer {
  padding: 57px 0 79px;
}

.article-cta {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
}

.service-hero {
  padding: 150px 0 78px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 48px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
}

.service-page-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-page-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.feature-detail-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-detail-card:hover {
  transform: translateY(-13px);
  border-color: var(--primary-color);
  box-shadow: 0 19px 39px rgba(239, 68, 68, 0.15);
}

.feature-detail-icon {
  width: 59px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.feature-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-detail-description {
  color: var(--text-muted);
}

.service-process {
  background: rgba(30, 41, 59, 0.2);
}

.process-step {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 22px 43px rgba(239, 68, 68, 0.15);
}

.process-number {
  width: 57px;
  height: 63px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.mission-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-13px);
  border-color: var(--primary-color);
  box-shadow: 0 21px 37px rgba(239, 68, 68, 0.15);
}

.mission-icon {
  width: 59px;
  height: 57px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-description {
  color: var(--text-muted);
}

.story-content h3 {
  color: var(--text-light);
}

.story-content p {
  color: var(--text-muted);
}

.dropdown-menu-dark {
  background-color: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-color);
}

.dropdown-item {
  color: var(--text-muted) !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--primary-color) !important;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .service-page-title {
    font-size: 2.25rem;
  }

  .article-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .service-page-title {
    font-size: 1.75rem;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 98px 0 59px;
  }

  .error-dashboard {
    margin-top: 3rem;
  }
}