:root {
  --primary: #34c759;
  --accent: #8bc34a;
  --bg-light: #f7f7f7;
  --bg-dark: #212529;
  --bg-dark-secondary: #2f343a;
  --text-light: #ffffff;
  --text-dark: #212529;
  --text-muted: #666666;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, #1e293b 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  background: 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;
}

.container {
  max-width: 1200px;
}

.min-vh-60 {
  min-height: 60vh;
}

.min-vh-70 {
  min-height: 70vh;
}

.min-vh-80 {
  min-height: 80vh;
}

.text-accent {
  color: var(--accent) !important;
}

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

.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(13px);
  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: var(--text-light) !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.site-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.dropdown-menu {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 33px rgba(139, 92, 246, 0.3);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--text-light);
}

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

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 2rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.page-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 52px;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 2rem;
  color: var(--primary);
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

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

.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-code-window {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.code-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.code-window-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 9px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #22c55e;
}

.code-window-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.code-window-content {
  padding: 0;
}

.floating-element {
  position: absolute;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--primary);
  backdrop-filter: blur(9px);
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.floating-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 1s;
}

.floating-3 {
  top: 50%;
  right: 15%;
  animation-delay: 2s;
}

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

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

.service-hero {
  padding: 150px 0 82px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.feature-card,
.service-card,
.pricing-card,
.testimonial-card,
.team-card,
.blog-card,
.case-study-card {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.team-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 21px 60px rgba(139, 92, 246, 0.2);
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 58px;
  height: 63px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  opacity: 0.3;
  filter: blur(13px);
  z-index: -1;
  pointer-events: none;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.feature-tech,
.tech-badge {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 92, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text-light);
  pointer-events: none;
}

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

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.tech-badge-card {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.tech-badge-card i {
  color: var(--primary);
}

.tech-badge-card h4 {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.process-step {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.process-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-light);
  pointer-events: none;
}

.process-icon {
  color: var(--primary);
}

.process-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.testimonial-card {
  text-align: center;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

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

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

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

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-light);
}

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

.testimonial-company {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.team-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 92, 246, 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: 41px;
  height: 42px;
  background: var(--text-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.team-social-link:hover {
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

.skill-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--primary);
}

.stat-card {
  padding: 2rem;
}

.stat-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

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

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

.accordion-button {
  background: var(--bg-dark-secondary);
  color: var(--text-light);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

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

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

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

.accordion-body {
  background: var(--bg-dark-secondary);
  color: var(--text-muted);
  padding: 1.5rem;
}

.cta-section {
  position: relative;
  padding: 97px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 49px 48px;
  pointer-events: none;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-icon {
  color: var(--primary);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
}

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

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.cta-note {
  color: var(--text-muted);
}

.footer {
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-color);
  padding: 77px 0 40px;
}

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

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

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

.social-link {
  width: 40px;
  height: 37px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

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

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

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

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

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

.footer-divider {
  border-color: var(--border-color);
  opacity: 1;
}

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

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

.contact-info-card {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

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

.contact-info-text {
  color: var(--text-muted);
}

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

.contact-info-text a:hover {
  opacity: 0.8;
}

.social-links-large {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link-large {
  width: 49px;
  height: 52px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-large:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
}

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

.form-control:focus,
.form-select:focus {
  background: var(--bg-dark);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.office-hours {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-light);
}

.hours-time {
  color: var(--text-muted);
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 18px 60px rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--gradient-accent);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-icon {
  color: var(--primary);
}

.pricing-plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

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

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

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

.pricing-features {
  padding: 2rem 0;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
}

.pricing-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.pricing-comparison-table {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-comparison-table thead {
  background: rgba(139, 92, 246, 0.1);
}

.pricing-comparison-table th {
  color: var(--text-light);
  font-weight: 700;
  padding: 1.5rem;
  border-color: var(--border-color);
}

.pricing-comparison-table td {
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  border-color: var(--border-color);
}

.case-study-card-large {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card-large:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 19px 57px rgba(139, 92, 246, 0.2);
}

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

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

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

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

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

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

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

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

.case-study-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  display: block;
}

.stat-label-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.blog-card {
  padding: 0;
  overflow: hidden;
}

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

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

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  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.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 41px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.875rem;
}

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

.article-hero {
  padding: 150px 0 47px;
}

.article-header {
  margin-bottom: 3rem;
}

.article-category {
  margin-bottom: 1rem;
}

.article-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-subtitle {
  color: var(--text-muted);
}

.article-meta {
  color: var(--text-muted);
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-featured-image {
  border-radius: 1rem;
  overflow: hidden;
}

.article-body {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 3rem 0 1.5rem;
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 2rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
}

.article-code-block {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  overflow: hidden;
}

.code-block-header {
  background: rgba(30, 41, 59, 0.8);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.code-language {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-code-block pre {
  padding: 1.5rem;
  margin: 0;
  overflow-x: auto;
}

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

.article-list {
  list-style: none;
  padding: 0;
}

.article-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.article-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.article-quote {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  pointer-events: none;
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.quote-author {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  margin-bottom: 0;
}

.article-image-grid {
  margin: 2rem 0;
}

.article-tags {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tag-label {
  font-weight: 700;
  color: var(--text-light);
}

.article-share {
  padding: 1.5rem 0;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-author-bio {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
}

.author-bio-avatar {
  width: 79px;
  height: 81px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.related-article-card {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-article-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.related-article-card img {
  width: 100%;
  height: 100%;
}

.related-article-card h3 a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.legal-document {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
}

.legal-document h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.legal-document h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--text-light);
}

.legal-document p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-document ul,
.legal-document ol {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-document li {
  margin-bottom: 0.75rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 22px;
  background: var(--primary);
  border: 4px solid var(--bg-dark);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.timeline-content {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

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

.mission-icon {
  color: var(--primary);
}

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

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

.object-cover {
  object-fit: cover;
}

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

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

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

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

  .timeline::before {
    left: 17px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 61px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
  }

  .timeline-marker {
    left: 18px;
    top: 17px;
    transform: translate(-50%, 0);
  }

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

@media (max-width: 767px) {
  .hero {
    padding: 102px 0 62px;
  }

  .page-hero {
    padding: 120px 0 61px;
  }

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

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

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

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