:root {
  --primary-color: #3498db;
  --accent-color: #8bc34a;
  --bg-color: #12161f;
  --bg-secondary: #161b22;
  --bg-tertiary: #1f2937;
  --text-color: #d9d9d9;
  --text-muted: #8b949e;
  --border-color: #2f343a;
  --code-bg: #0d1117;
  --terminal-green: #8bc34a;
  --terminal-blue: #3498db;
  --terminal-red: #e74c3c;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

code, pre {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

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

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

section {
  padding: 78px 0;
}

.container {
  max-width: 1400px;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-color) !important;
}

.site-name {
  color: #fff;
}

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

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

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

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

.dropdown-menu {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: 0 9px 32px rgba(0, 0, 0, 0.5);
}

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

.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--primary-color);
}

.btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #1f6feb);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f6feb, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 9px 28px rgba(88, 166, 255, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--bg-color);
}

.btn-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
}

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

.hero-background-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 53px 53px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #fff, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

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

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 3rem;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 19px 59px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
}

.terminal-close { background: var(--terminal-red); }
.terminal-minimize { background: #ffa657; }
.terminal-maximize { background: var(--terminal-green); }

.terminal-title {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1.5rem;
  min-height: 300px;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.95rem;
}

.terminal-line {
  margin-bottom: 0.5rem;
}

.terminal-prompt {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.terminal-command {
  color: var(--terminal-blue);
}

.terminal-output {
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

.terminal-success {
  color: var(--terminal-green);
  margin-left: 1.5rem;
}

.typing-animation {
  animation: typing 3s steps(40) infinite;
}

@keyframes typing {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.code-playground-section {
  background: var(--bg-secondary);
  position: relative;
}

.playground-container {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 17px 63px rgba(0, 0, 0, 0.5);
}

.code-editor {
  border-right: 1px solid var(--border-color);
}

.editor-header {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.editor-tabs {
  display: flex;
  gap: 0.5rem;
}

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

.editor-tab.active {
  background: var(--bg-color);
  color: var(--primary-color);
}

.editor-tab:hover {
  color: #fff;
}

.btn-run-code {
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-run-code:hover {
  background: #6fdb7a;
  transform: translateY(-2px);
}

.editor-content {
  display: flex;
  padding: 1.5rem;
  background: var(--bg-color);
  min-height: 400px;
}

.code-lines {
  display: flex;
  flex-direction: column;
  color: var(--text-muted);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.9rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border-color);
  margin-right: 1rem;
  user-select: none;
}

.line-number {
  line-height: 1.6;
}

.code-block {
  margin: 0;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.9rem;
  color: var(--text-color);
  flex: 1;
}

.code-preview-pane {
  background: var(--bg-secondary);
}

.preview-header {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.preview-content {
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 53px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.features-section {
  background: var(--bg-color);
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 31px rgba(88, 166, 255, 0.2);
}

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

.feature-icon {
  width: 58px;
  height: 63px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.code-preview {
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.code-preview code {
  color: var(--accent-color);
  font-size: 0.85rem;
}

.stats-section {
  background: var(--bg-secondary);
}

.stat-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 11px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.stat-icon {
  width: 59px;
  height: 59px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--text-muted);
  margin: 0;
}

.services-section {
  background: var(--bg-color);
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-13px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 43px rgba(88, 166, 255, 0.2);
}

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

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.9), rgba(126, 231, 135, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  pointer-events: none;
}

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

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.service-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 23px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.integrations-section {
  background: var(--bg-secondary);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.integration-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  transition: all 0.3s ease;
}

.integration-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.integration-item i {
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.integration-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.integration-name {
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

.testimonials-section {
  background: var(--bg-color);
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -17px;
  left: 23px;
  font-size: 77px;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.testimonial-rating {
  color: #ffa657;
}

.testimonial-quote {
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 49px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.testimonial-name {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.team-section {
  background: var(--bg-secondary);
}

.team-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-13px);
  border-color: var(--primary-color);
  box-shadow: 0 13px 42px rgba(88, 166, 255, 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;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.95), rgba(126, 231, 135, 0.95));
  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;
  pointer-events: auto;
}

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

.team-social-link {
  width: 37px;
  height: 37px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social-link:hover {
  background: var(--bg-color);
  color: #fff;
  transform: translateY(-3px);
}

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

.team-name {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

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

.team-tech {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-badge-sm {
  padding: 0.25rem 0.5rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--primary-color);
}

.tech-stack-section {
  background: var(--bg-secondary);
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.tech-item i {
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.tech-item:hover i {
  color: var(--accent-color);
  transform: scale(1.2);
}

.tech-item span {
  display: block;
  color: var(--text-color);
  font-weight: 500;
}

.pricing-section {
  background: var(--bg-secondary);
}

.pricing-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 18px 47px rgba(88, 166, 255, 0.3);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-color);
  box-shadow: 0 13px 39px rgba(88, 166, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-plan {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
}

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

.pricing-description {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

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

.pricing-features li.disabled i {
  color: var(--text-muted);
}

.faq-section {
  background: var(--bg-color);
}

.faq-accordion .accordion-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-secondary);
  color: #fff;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-tertiary);
  color: var(--primary-color);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.faq-accordion .accordion-body {
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cta-section {
  background: var(--bg-secondary);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 9px;
  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), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

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

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

.social-link {
  width: 43px;
  height: 43px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

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

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

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

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

.footer-contact {
  list-style: none;
}

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

.footer-contact i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 20px;
}

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

.tech-stack-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.tech-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 19px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.page-hero {
  padding: 150px 0 79px;
  background: var(--bg-secondary);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 51px;
  pointer-events: none;
}

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

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

.story-section {
  background: var(--bg-color);
}

.story-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.story-paragraph {
  margin-bottom: 1.5rem;
}

.mission-vision-section {
  background: var(--bg-secondary);
}

.mission-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 3rem;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.mission-icon {
  width: 79px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.mission-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.mission-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.values-section {
  background: var(--bg-color);
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 83px;
  height: 83px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

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

.process-section {
  background: var(--bg-secondary);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 65px;
  width: 2px;
  height: calc(100% + 3rem);
  background: var(--border-color);
  pointer-events: none;
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 62px;
  height: 66px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

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

.contact-section {
  background: var(--bg-color);
}

.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 52px;
  height: 49px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-label {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--primary-color);
}

.contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 2.5rem;
}

.contact-form-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

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

.form-control, .form-select {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background: var(--bg-color);
  border-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.blog-section {
  background: var(--bg-color);
}

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-13px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 42px rgba(88, 166, 255, 0.2);
}

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

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

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-content {
  padding: 2rem;
}

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

.blog-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-color);
}

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

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

.article-hero {
  padding: 150px 0 51px;
  background: var(--bg-secondary);
}

.article-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 22px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.article-title {
  font-size: 3rem;
  color: #fff;
  margin: 1rem 0;
}

.article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-featured-image {
  padding: 51px 0;
  background: var(--bg-secondary);
}

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

.content-body {
  color: var(--text-color);
  line-height: 1.8;
}

.content-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-body p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

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

.code-block-wrapper {
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem;
  overflow-x: auto;
}

.code-block-wrapper .code-block {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.article-list {
  list-style: none;
  margin: 2rem 0;
}

.article-list li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

.article-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.article-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.article-quote blockquote {
  margin: 0;
}

.article-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.article-quote cite {
  color: var(--text-muted);
  font-style: normal;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 19px;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-label {
  color: var(--text-muted);
}

.share-link {
  width: 38px;
  height: 42px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-link:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.related-articles {
  padding: 77px 0;
  background: var(--bg-secondary);
}

.related-card h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card h4 a:hover {
  color: var(--primary-color);
}

.related-card p {
  color: var(--text-muted);
}

.service-hero {
  padding: 150px 0 79px;
  background: var(--bg-secondary);
  position: relative;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.service-hero-title {
  font-size: 3rem;
  color: #fff;
  margin: 1rem 0;
}

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

.service-features {
  background: var(--bg-color);
}

.service-process {
  background: var(--bg-secondary);
}

.service-pricing {
  background: var(--bg-color);
}

.legal-content {
  background: var(--bg-color);
}

.legal-document {
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-document h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-document p {
  margin-bottom: 1.5rem;
}

.legal-list {
  list-style: none;
  margin: 2rem 0;
}

.legal-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.pricing-comparison {
  background: var(--bg-color);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table thead {
  background: var(--bg-tertiary);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

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

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.case-studies-section {
  background: var(--bg-color);
}

.case-study-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 3rem;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.case-study-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 22px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.case-study-title {
  font-size: 2rem;
  color: #fff;
  margin: 1rem 0;
}

.case-study-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

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

.case-study-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section {
    min-height: auto;
    padding: 97px 0 50px;
  }

  .navbar-collapse {
    background: var(--bg-secondary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

@media (max-width: 767px) {
  section {
    padding: 49px 0;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .tech-stack-badges {
    justify-content: center;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 1rem;
  }
}
