:root {
  --primary: #03a9f4;
  --accent: #8bc34a;
  --bg-dark: #212121;
  --bg-darker: #111111;
  --text-light: #ffffff;
  --text-muted: #777777;
  --border-color: #333333;
  --success: #4caf50;
  --warning: #ffc107;
  --danger: #f44336;
}

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

body {
  font-family: 'Playfair Display', -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: 52px;
  height: auto;
}

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

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

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

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

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

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

.dropdown-menu {
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border: none;
  color: var(--bg-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 23px rgba(45, 212, 191, 0.3);
  background: linear-gradient(135deg, #14b8a6 0%, var(--primary) 100%);
}

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

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

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

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

.hero-section {
  padding: 120px 0 83px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  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(45, 212, 191, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-light);
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.hero-feature i {
  color: var(--primary);
  font-size: 1.25rem;
}

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

.sql-editor-preview {
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 21px 61px rgba(0, 0, 0, 0.3);
}

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

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

.editor-tab {
  padding: 0.5rem 1rem;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.editor-tab:hover {
  background: var(--bg-dark);
}

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

.editor-btn {
  width: 30px;
  height: 33px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-btn:hover {
  background: var(--bg-dark);
  color: var(--primary);
  border-color: var(--primary);
}

.editor-body {
  display: flex;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  min-height: 180px;
}

.editor-line-numbers {
  padding: 0 1rem;
  color: var(--text-muted);
  text-align: right;
  user-select: none;
  border-right: 1px solid var(--border-color);
}

.editor-line-numbers span {
  display: block;
  line-height: 1.6;
}

.editor-code {
  flex: 1;
  padding: 0 1.5rem;
  overflow-x: auto;
}

.editor-code pre {
  margin: 0;
  color: var(--text-light);
}

.editor-code code {
  font-size: 0.875rem;
  line-height: 1.6;
}

.sql-keyword {
  color: #c792ea;
  font-weight: 600;
}

.sql-function {
  color: #82aaff;
}

.sql-string {
  color: #c3e88d;
}

.cost-estimation {
  background: rgba(239, 68, 68, 0.1);
  border-top: 2px solid var(--danger);
  padding: 1.5rem;
}

.cost-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--danger);
  font-weight: 600;
}

.cost-warning i {
  font-size: 1.25rem;
}

.cost-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cost-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.cost-metric i {
  color: var(--primary);
  font-size: 1.5rem;
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.cost-amount {
  color: var(--accent);
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.run-query-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.stats-section {
  padding: 80px 0;
  background: var(--bg-darker);
}

.stat-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.2);
}

.stat-icon {
  width: 59px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bg-dark);
}

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

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

.features-section,
.services-section,
.pricing-section,
.testimonials-section,
.team-section,
.faq-section,
.integrations-section {
  padding: 83px 0;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card,
.service-card,
.testimonial-card,
.team-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.feature-card::before,
.service-card::before,
.testimonial-card::before,
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 9px 11px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before,
.team-card:hover::before {
  opacity: 1;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(45, 212, 191, 0.2);
}

.feature-icon {
  width: 58px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
}

.feature-title,
.service-title,
.testimonial-author h4,
.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

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

.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(45, 212, 191, 0.9) 0%, rgba(20, 184, 166, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-overlay::before {
  position: absolute;
  pointer-events: none;
}

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

.service-overlay i {
  font-size: 3rem;
  color: var(--bg-dark);
}

.service-content {
  padding: 2rem;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 1rem;
}

.pricing-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 21px 51px rgba(45, 212, 191, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -17px;
  right: 17px;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 19px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

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

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

.pricing-features i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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

.testimonial-author img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.team-social {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.team-social::before {
  position: absolute;
  pointer-events: none;
}

.team-card:hover .team-social {
  opacity: 1;
  pointer-events: auto;
}

.team-social a {
  width: 33px;
  height: 35px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--text-light);
  transform: translateY(-3px);
}

.team-role {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.accordion-item {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.accordion-button:not(.collapsed) {
  background: rgba(45, 212, 191, 0.1);
  color: var(--primary);
}

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

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

.cta-section {
  padding: 79px 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 3rem;
}

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

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

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

.integration-item {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 9px;
  transition: all 0.3s;
}

.integration-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 12px 27px rgba(45, 212, 191, 0.2);
}

.integration-logo {
  width: 62px;
  height: 61px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg-dark);
}

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

.page-header {
  padding: 140px 0 57px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  text-align: center;
}

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

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

.about-content,
.contact-section,
.blog-grid,
.case-studies-grid,
.legal-content,
.pricing-comparison,
.service-hero,
.service-features,
.service-process {
  padding: 63px 0;
}

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

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

.about-list li {
  padding: 0.75rem 0;
  color: var(--text-light);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.about-list i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.mission-section {
  padding: 78px 0;
  background: rgba(30, 41, 59, 0.2);
}

.mission-card {
  text-align: center;
  padding: 2.5rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 11px;
  height: 100%;
  transition: all 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 13px 31px rgba(45, 212, 191, 0.2);
}

.mission-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

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

.contact-info-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
}

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

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 53px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--bg-dark);
  flex-shrink: 0;
}

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

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

.contact-form-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 11px;
  padding: 2.5rem;
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

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

.form-control:focus,
.form-select:focus {
  background: rgba(15, 23, 42, 0.7);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.25);
}

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

.blog-card,
.case-study-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}

.blog-card:hover,
.case-study-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 13px 27px rgba(45, 212, 191, 0.2);
}

.blog-image,
.case-study-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.blog-category,
.case-study-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

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

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

.blog-meta span,
.case-study-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-study-result {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-weight: 700;
}

.blog-title,
.case-study-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

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

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

.case-study-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.case-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.case-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

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

.article-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.article-category {
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-date,
.article-read-time {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.article-hero-image {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 2rem;
}

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

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

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

.article-list li {
  padding: 0.75rem 0;
  color: var(--text-light);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.article-list li::before {
  content: '\f00c';
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.article-cta {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 1px solid var(--primary);
  border-radius: 9px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.legal-text {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-text section {
  margin-bottom: 3rem;
}

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

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

.legal-text ul {
  list-style: none;
  padding: 0;
}

.legal-text ul li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.legal-text ul li::before {
  content: '\f00c';
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.comparison-table {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(45, 212, 191, 0.1);
}

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

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

.comparison-table tbody tr:hover {
  background: rgba(45, 212, 191, 0.05);
}

.service-hero {
  padding: 140px 0 79px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 7px 28px rgba(45, 212, 191, 0.2);
}

.step-number {
  width: 58px;
  height: 57px;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0 auto 1.5rem;
}

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

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

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

.footer-brand {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

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

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

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

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

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

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

.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: color 0.3s;
}

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

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

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

.footer-contact i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0;
}

.footer-copyright {
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-link {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

.footer-legal-link:hover {
  color: var(--primary);
}

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

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

  .hero-cta,
  .cta-content .row > div:last-child {
    text-align: center;
  }

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

  .footer-legal-link {
    margin-left: 0;
    margin-right: 1.5rem;
  }
}

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

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

  .stat-number {
    font-size: 1.5rem;
  }

  .editor-body {
    font-size: 0.75rem;
  }

  .cost-details {
    grid-template-columns: 1fr;
  }
}
