:root {
  --primary-color: #4c5154;
  --accent-color: #8b9467;
  --bg-color: #f7f7f7;
  --text-color: #222222;
  --dark-bg: #333333;
  --electric-blue: #4567b7;
  --cyan: #87ceeb;
}

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

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-bg);
  background: #ffffff;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 29px;
}

.navbar {
  background: var(--dark-bg);
  padding: 24px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s;
}

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

.site-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

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

.dropdown-menu {
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-item {
  color: #e2e8f0;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: rgba(236,72,153,0.1);
  color: var(--primary-color);
}

.btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #ffffff;
  padding: 13px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #db2777;
  border-color: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236,72,153,0.3);
}

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

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

.btn-light {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: var(--dark-bg);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 11px 33px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  padding: 120px 0 78px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -102px;
  right: -101px;
}

.hero-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: -48px;
  left: -49px;
}

.hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--electric-blue);
  top: 50%;
  left: 10%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(236,72,153,0.2);
  color: var(--primary-color);
  padding: 8px 13px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 27px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #e2e8f0;
}

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

.hero-stats {
  display: flex;
  gap: 33px;
  flex-wrap: wrap;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.transformation-demo {
  background: rgba(255,255,255,0.05);
  padding: 33px;
  border-radius: 11px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.demo-header {
  text-align: center;
}

.demo-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.demo-subtitle {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.transformation-container {
  position: relative;
}

.transformation-slider {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background: #1e293b;
  height: 400px;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.image-label {
  position: absolute;
  top: 19px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  padding: 8px 17px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.label-after {
  right: 14px;
  left: auto;
}

.slider-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slider-control input[type="range"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: auto;
}

.slider-handle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 49px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 11px rgba(0,0,0,0.3);
  pointer-events: none;
}

.transformation-options {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.transform-btn {
  flex: 1;
  min-width: 97px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
  padding: 13px 19px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.transform-btn:hover {
  background: rgba(236,72,153,0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.transform-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.transform-btn i {
  font-size: 1.5rem;
}

.transform-btn span {
  font-size: 0.85rem;
  font-weight: 600;
}

.section-header {
  margin-bottom: 46px;
}

.section-badge {
  display: inline-block;
  background: var(--bg-color);
  color: var(--primary-color);
  padding: 8px 19px;
  border-radius: 26px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 19px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

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

.bg-light {
  background: #f8fafc !important;
}

.features {
  background: #ffffff;
}

.feature-card {
  background: #ffffff;
  padding: 31px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 23px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 62px;
  height: 61px;
  background: linear-gradient(135deg, var(--primary-color), #db2777);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 27px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.feature-text {
  color: #64748b;
  margin-bottom: 16px;
}

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

.feature-list li {
  display: flex;
  align-items: start;
  gap: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.feature-list i {
  color: var(--accent-color);
  margin-top: 4px;
}

.service-card {
  background: #ffffff;
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 13px 22px rgba(0,0,0,0.15);
}

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

.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;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(236,72,153,0.8), rgba(219,39,119,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-overlay::before,
.service-overlay::after {
  pointer-events: none;
}

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

.service-overlay i {
  font-size: 3rem;
  color: #ffffff;
}

.service-content {
  padding: 21px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.service-text {
  color: #64748b;
  margin-bottom: 17px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 19px;
}

.service-features li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: #475569;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.service-features i {
  color: var(--accent-color);
  margin-top: 4px;
}

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

.service-link:hover {
  gap: 8px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 13px 26px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-quote {
  color: #475569;
  font-style: italic;
  margin-bottom: 23px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

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

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.testimonial-company {
  color: #64748b;
  font-size: 0.9rem;
}

.team-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 21px rgba(0,0,0,0.1);
}

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

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

.team-social {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.team-social a:hover {
  background: #db2777;
  transform: scale(1.1);
}

.team-content {
  padding: 22px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: #64748b;
}

.stats {
  background: linear-gradient(135deg, var(--primary-color), #db2777);
  color: #ffffff;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255,255,255,0.1);
  padding: 31px;
  border-radius: 13px;
  backdrop-filter: blur(13px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.stat-icon {
  width: 63px;
  height: 63px;
  background: rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  margin-bottom: 17px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: #ffffff;
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 17px 24px;
  border: none;
  box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
  filter: invert(0.4) sepia(1) saturate(5) hue-rotate(290deg);
}

.faq-accordion .accordion-body {
  padding: 0 23px 20px;
  color: #475569;
  line-height: 1.8;
}

.cta {
  background: linear-gradient(135deg, var(--dark-bg), #1e293b);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 21px;
}

.cta-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e2e8f0;
}

.cta-features i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.cta-shapes .shape::before,
.cta-shapes .shape::after {
  pointer-events: none;
}

.cta-shapes .shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -51px;
  right: -49px;
}

.cta-shapes .shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: -49px;
  left: -51px;
}

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

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 27px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  transition: all 0.3s;
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 17px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.integration-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.integration-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-bg);
  text-align: center;
}

.pricing-section {
  background: #ffffff;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 9px;
  padding: 29px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.pricing-featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(236,72,153,0.05), rgba(219,39,119,0.05));
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #ffffff;
  padding: 6px 17px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.pricing-description {
  color: #64748b;
  margin-bottom: 27px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 34px;
}

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

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-bg);
}

.period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 8px;
}

.amount-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 33px;
}

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 15px;
  color: #475569;
  margin-bottom: 11px;
}

.pricing-features i {
  color: var(--accent-color);
  margin-top: 4px;
}

.pricing-table {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
}

.pricing-table thead {
  background: var(--dark-bg);
  color: #ffffff;
}

.pricing-table th {
  padding: 22px;
  font-weight: 600;
}

.pricing-table td {
  padding: 15px 17px;
  border-bottom: 1px solid #e2e8f0;
}

.footer {
  background: var(--dark-bg);
  color: #cbd5e1;
  padding: 79px 0 29px;
}

.footer-brand {
  margin-bottom: 19px;
}

.footer-text {
  color: #94a3b8;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-4px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.footer-contact li {
  color: #94a3b8;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 48px 0 26px;
}

.footer-copyright {
  color: #94a3b8;
}

.page-hero {
  background: linear-gradient(135deg, var(--dark-bg), #1e293b);
  padding: 120px 0 82px;
  color: #ffffff;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.value-item {
  display: flex;
  gap: 14px;
}

.value-icon {
  width: 55px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary-color), #db2777);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info {
  background: #f8fafc;
  padding: 34px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 27px;
}

.contact-icon {
  width: 47px;
  height: 47px;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.contact-content p {
  color: #475569;
  margin-bottom: 4px;
}

.contact-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-content a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.contact-form .form-control {
  padding: 13px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.1);
}

.blog-card {
  background: #ffffff;
  border-radius: 13px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 9px 22px rgba(0,0,0,0.1);
}

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

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

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 18px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 6px 17px;
  border-radius: 21px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 13px;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 9px;
}

.blog-title a {
  color: var(--dark-bg);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

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

.blog-excerpt {
  color: #64748b;
  margin-bottom: 13px;
}

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

.blog-link:hover {
  gap: 8px;
}

.article-page {
  background: #ffffff;
}

.article-hero {
  background: linear-gradient(135deg, var(--dark-bg), #1e293b);
  padding: 120px 0 79px;
}

.article-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.article-category {
  background: var(--primary-color);
  color: #ffffff;
  padding: 6px 17px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
}

.article-meta span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.article-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 19px;
}

.article-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.article-content {
  background: #ffffff;
}

.article-body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 47px 0 26px;
}

.article-body p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 23px;
}

.article-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}

.article-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: #475569;
  line-height: 1.8;
}

.article-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.2;
  pointer-events: none;
}

.code-block {
  background: var(--dark-bg);
  border-radius: 13px;
  padding: 23px;
  margin: 29px 0;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  color: #e2e8f0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-cta {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 33px;
  margin: 50px 0;
  text-align: center;
}

.article-cta h3 {
  color: var(--dark-bg);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 13px;
}

.article-cta p {
  color: #475569;
  margin-bottom: 21px;
}

.case-study-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 38px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.case-study-card:hover {
  box-shadow: 0 10px 27px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.case-study-badge {
  display: inline-block;
  background: var(--bg-color);
  color: var(--primary-color);
  padding: 8px 13px;
  border-radius: 26px;
  font-size: 0.9rem;
  font-weight: 600;
}

.case-study-stats {
  display: flex;
  gap: 29px;
  flex-wrap: wrap;
}

.case-study-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: 27px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-hero {
  background: linear-gradient(135deg, var(--dark-bg), #1e293b);
  padding: 120px 0 82px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(236,72,153,0.2);
  color: var(--primary-color);
  padding: 8px 17px;
  border-radius: 26px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 27px;
}

.service-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.feature-box {
  background: #ffffff;
  padding: 31px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  height: 100%;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 13px 22px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.feature-box .feature-icon {
  margin: 0 auto 27px;
}

.process-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
  text-align: center;
}

.step-number {
  width: 59px;
  height: 57px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 24px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.format-item {
  background: #ffffff;
  padding: 19px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-weight: 600;
  color: var(--dark-bg);
  transition: all 0.3s;
}

.format-item:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.code-example {
  background: var(--dark-bg);
  border-radius: 14px;
  overflow: hidden;
}

.code-header {
  background: #1e293b;
  padding: 9px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.code-language {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.code-example pre {
  padding: 23px;
  margin: 0;
  overflow-x: auto;
}

.code-example code {
  color: #e2e8f0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-top: 37px;
  margin-bottom: 18px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

.legal-content ul {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 21px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-contact {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.legal-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 60px;
  }

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

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

  .transformation-slider {
    height: 300px;
  }
}

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

  .hero-title,
  .page-title,
  .article-title {
    font-size: 1.8rem;
  }

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

  .transformation-slider {
    height: 250px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }
}
