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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0a0a0a;
  background-color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

::selection {
  background: #27aae1;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #27aae1 0%, #5dc4ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark {
  background-color: #0a0a0a;
  color: #ffffff;
}
.section-dark .section-label {
  color: #27aae1;
}
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.section-light {
  background-color: #ffffff;
  color: #0a0a0a;
}
.section-light .section-label {
  color: #27aae1;
}
.section-light .section-subtitle {
  color: #6c757d;
}

.section-accent {
  background: linear-gradient(135deg, #27aae1 0%, #1a8ab8 100%);
  color: #ffffff;
}

section {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  section {
    padding: 7rem 0;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn i {
  transition: transform 0.2s ease;
}
.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background-color: #27aae1;
  color: #ffffff;
  border-color: #27aae1;
}
.btn-primary:hover {
  background-color: #1e8fc0;
  border-color: #1e8fc0;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(39, 170, 225, 0.35);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.btn-outline-dark {
  background-color: transparent;
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.btn-outline-dark:hover {
  background-color: #0a0a0a;
  color: #ffffff;
}

.btn-light {
  background-color: #ffffff;
  color: #27aae1;
  border-color: #ffffff;
}
.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1e8fc0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.navbar {
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.navbar-brand .logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.navbar-brand .logo-subtext {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.navbar-nav {
  gap: 1rem;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #27aae1;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    margin: 1rem -1rem -1rem;
    padding: 1.5rem;
    border-radius: 12px;
  }
  .navbar-nav {
    gap: 0.5rem;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  .navbar .btn {
    margin-top: 1rem;
    width: 100%;
  }
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.8) 100%);
}

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

.hero-row {
  height: 100vh;
  padding-top: 6rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .hero-row {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(39, 170, 225, 0.15);
  border: 1px solid rgba(39, 170, 225, 0.3);
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #27aae1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 575px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-cta .ms-3 {
    margin-left: 0 !important;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-indicator span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #27aae1, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@media (max-width: 575px) {
  .scroll-indicator {
    bottom: 1rem;
    gap: 0.5rem;
  }
  .scroll-indicator .scroll-line {
    height: 35px;
  }
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.intro {
  overflow: hidden;
}

.intro-content .section-title {
  margin-bottom: 2rem;
}

.intro-text {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.intro-feature .feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #27aae1;
  font-size: 1.25rem;
}
.intro-feature .feature-text {
  display: flex;
  flex-direction: column;
}
.intro-feature .feature-text strong {
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}
.intro-feature .feature-text span {
  font-size: 0.875rem;
  color: #6c757d;
}

.intro-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 575px) {
  .visual-stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.stat .stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #27aae1;
}
.stat .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.solutions {
  position: relative;
}

.solution-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39, 170, 225, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.solution-card:hover .solution-icon {
  background: #27aae1;
  color: #ffffff;
}
.solution-card:hover .solution-link i {
  transform: translateX(4px);
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 170, 225, 0.15);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.solution-icon i {
  font-size: 1.5rem;
  color: #27aae1;
  transition: color 0.3s ease;
}
.solution-card:hover .solution-icon i {
  color: #ffffff;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  hyphens: auto;
}

.solution-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.solution-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #27aae1;
  border-radius: 50%;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #27aae1;
}
.solution-link i {
  transition: transform 0.2s ease;
}
.solution-link:hover {
  color: #4abde8;
}

.services-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}
.service-item i {
  color: #27aae1;
}
.service-item:hover {
  background: rgba(39, 170, 225, 0.15);
  color: #ffffff;
}

.showcase {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-item {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.showcase-item:hover .showcase-image {
  transform: scale(1.02);
}

.showcase-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.placeholder-image.automation-flow {
  background: linear-gradient(145deg, #1a1f35 0%, #0d1220 100%);
}
.placeholder-image.shopify-integration {
  background: linear-gradient(145deg, #1e2432 0%, #141921 100%);
}
.placeholder-image.analytics-dashboard {
  background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
}

.placeholder-ui {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.ui-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ui-header.small {
  padding: 0.5rem 1rem;
}

.ui-dots {
  display: flex;
  gap: 6px;
}
.ui-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ui-dots span:nth-child(1) {
  background: #ff5f57;
}
.ui-dots span:nth-child(2) {
  background: #ffbd2e;
}
.ui-dots span:nth-child(3) {
  background: #28ca41;
}

.ui-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.ui-content {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

.ui-sidebar {
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ui-nav-item {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.ui-nav-item.active {
  background: #27aae1;
}

.ui-main {
  flex: 1;
}

.ui-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.ui-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 8px;
  text-align: center;
}
.ui-card .ui-card-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
.ui-card .ui-card-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.ui-chart {
  height: 60px;
}
.ui-chart svg {
  width: 100%;
  height: 100%;
}

.ui-flow-content {
  padding: 1rem;
}

.ui-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  gap: 4px;
  overflow-x: auto;
}

.ui-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ui-flow-node .ui-flow-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}
.ui-flow-node .ui-flow-icon i {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.ui-flow-node span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.ui-flow-node.start .ui-flow-icon {
  border-color: #27aae1;
  background: rgba(39, 170, 225, 0.2);
}
.ui-flow-node.start .ui-flow-icon i {
  color: #27aae1;
}
.ui-flow-node.done .ui-flow-icon {
  border-color: #28ca41;
  background: rgba(40, 202, 65, 0.2);
}
.ui-flow-node.done .ui-flow-icon i {
  color: #28ca41;
}

.ui-flow-arrow {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.ui-flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.2);
}

.ui-flow-stats {
  display: flex;
  gap: 6px;
  padding: 8px 4px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 575px) {
  .ui-flow-stats {
    flex-direction: column;
  }
}

.ui-flow-stat {
  flex: 1;
  text-align: center;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.ui-flow-stat .value {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
.ui-flow-stat .label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.ui-shopify-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.ui-order-badge {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  min-width: 40px;
}

.ui-order-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ui-order-info .ui-order-channel {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}
.ui-order-info .ui-order-channel.shopify {
  background: #96bf48;
}
.ui-order-info .ui-order-channel.amazon {
  background: #ff9900;
}
.ui-order-info .ui-order-channel.b2b {
  background: #27aae1;
}
.ui-order-info .ui-order-details {
  height: 6px;
  width: 60%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.ui-order-status {
  font-size: 0.75rem;
}
.ui-order-status.synced {
  color: #28ca41;
}
.ui-order-status.pending {
  color: #ffbd2e;
}

.ui-sync-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: rgba(40, 202, 65, 0.1);
  border-radius: 4px;
  margin-top: 2px;
}
.ui-sync-bar span {
  font-size: 10px;
  color: #28ca41;
  font-weight: 500;
}

.ui-sync-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.ui-sync-indicator.active {
  background: #28ca41;
  box-shadow: 0 0 6px rgba(40, 202, 65, 0.5);
}

.ui-analytics-content {
  padding: 1rem;
}

.ui-metric-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.ui-metric {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.ui-metric-icon {
  width: 24px;
  height: 24px;
  background: rgba(39, 170, 225, 0.3);
  border-radius: 4px;
}

.ui-metric-data .value {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
.ui-metric-data .change {
  font-size: 10px;
}
.ui-metric-data .change.positive {
  color: #28ca41;
}
.ui-metric-data .change.negative {
  color: #ff5f57;
}

.ui-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.ui-bar-chart .bar {
  flex: 1;
  background: linear-gradient(to top, #27aae1, #5dc4ed);
  border-radius: 2px 2px 0 0;
}

.showcase-content {
  padding: 2rem;
}

.showcase-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: #27aae1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.showcase-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0.5rem 0;
}

.showcase-desc {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.showcase-tags span {
  padding: 0.25rem 0.75rem;
  background: rgba(10, 10, 10, 0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0a0a0a;
}

.showcase-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #27aae1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.showcase-more-btn i {
  transition: transform 0.2s ease;
}
.showcase-more-btn:hover {
  color: #1e8fc0;
}
.showcase-more-btn:hover i {
  transform: translateX(4px);
}

.team-video-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0;
}

.team-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
}

.team-content {
  position: relative;
  z-index: 2;
}
.team-content .section-label {
  color: #27aae1;
}

.team-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.team-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.team-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(39, 170, 225, 0.15);
  border: 1px solid rgba(39, 170, 225, 0.3);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.value-item i {
  font-size: 1.25rem;
  color: #27aae1;
}
.value-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.value-item:hover {
  background: rgba(39, 170, 225, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .team-video-section {
    min-height: 70vh;
    padding: 5rem 0;
  }
  .team-values {
    flex-direction: column;
    align-items: center;
  }
  .value-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
.process-timeline {
  position: relative;
  padding-left: 0;
}
@media (min-width: 768px) {
  .process-timeline {
    padding-left: 100px;
  }
  .process-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #27aae1, transparent);
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .process-step {
    flex-direction: row;
    align-items: flex-start;
  }
}
.process-step:hover {
  border-color: rgba(39, 170, 225, 0.3);
  transform: translateX(8px);
}
.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #27aae1;
  line-height: 1;
}
@media (min-width: 768px) {
  .step-number {
    position: absolute;
    left: -100px;
    top: 2rem;
    width: 80px;
    text-align: center;
  }
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.step-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.step-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.step-deliverables span {
  padding: 0.5rem 1rem;
  background: rgba(39, 170, 225, 0.15);
  border: 1px solid rgba(39, 170, 225, 0.3);
  border-radius: 100px;
  font-size: 0.875rem;
  color: #27aae1;
}

.cta-video-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(39, 170, 225, 0.9) 0%, rgba(26, 138, 184, 0.85) 50%, rgba(39, 170, 225, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.cta-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #27aae1;
  border-color: #ffffff;
}
.cta-buttons .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-text {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item i {
  width: 24px;
  color: #27aae1;
  font-size: 1.25rem;
}
.contact-item span {
  color: #0a0a0a;
  font-weight: 500;
}

.contact-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #27aae1;
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding-top: 5rem;
}

.footer-main {
  padding-bottom: 3rem;
  border-bottom: 1px solid #2a2a2a;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-brand .logo-subtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.footer-links a:hover {
  color: #27aae1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-end;
  }
}
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: all 0.2s ease;
}
.footer-social a:hover {
  background: #27aae1;
  border-color: #27aae1;
  color: #ffffff;
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}
.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal a:hover {
  color: #27aae1;
}

.showcase-modal .modal-content {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: #ffffff;
}
.showcase-modal .modal-header {
  border-bottom: 1px solid #2a2a2a;
  padding: 2rem;
}
.showcase-modal .modal-header .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.showcase-modal .modal-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #27aae1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.showcase-modal .modal-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.showcase-modal .modal-body {
  padding: 2rem;
}
.showcase-modal .modal-section {
  margin-bottom: 2rem;
}
.showcase-modal .modal-section:last-child {
  margin-bottom: 0;
}
.showcase-modal .modal-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #27aae1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.showcase-modal .modal-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}
.showcase-modal .modal-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 575px) {
  .showcase-modal .modal-results {
    grid-template-columns: 1fr;
  }
}
.showcase-modal .modal-result-item {
  text-align: center;
  padding: 1.5rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
}
.showcase-modal .modal-result-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #27aae1;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.showcase-modal .modal-result-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.showcase-modal .modal-quote {
  padding: 2rem;
  background: #1a1a1a;
  border-left: 3px solid #27aae1;
  border-radius: 0 8px 8px 0;
}
.showcase-modal .modal-quote blockquote {
  margin: 0;
}
.showcase-modal .modal-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.showcase-modal .modal-quote cite {
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}
.showcase-modal .modal-footer {
  border-top: 1px solid #2a2a2a;
  padding: 2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .showcase-modal .modal-header,
.showcase-modal .modal-body,
.showcase-modal .modal-footer {
    padding: 1.5rem;
  }
  .showcase-modal .modal-quote {
    padding: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 1.75rem;
  }
  .process-step {
    padding: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .showcase-grid {
    gap: 1.5rem;
  }
  .showcase-content {
    padding: 1.5rem;
  }
  .services-bar {
    padding: 1.5rem;
    gap: 0.5rem;
  }
  .service-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .footer-links,
.footer-legal {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-main .row,
.footer-bottom .row {
    text-align: center;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-banner-text {
  flex: 1;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.cookie-banner-text a {
  color: #27aae1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #54bce7;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #27aae1;
  color: #fff;
}
.cookie-btn-primary:hover {
  background: #1e8fc0;
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/*# sourceMappingURL=style.css.map */
