*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1E293B;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.accent {
  color: #7C3AED;
}

.gradient-text {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 8px;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
            box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
            box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  color: #FFFFFF;
}

.btn--glow {
  -webkit-box-shadow: 0 0 20px rgba(124, 58, 237, 0.4), 0 0 60px rgba(124, 58, 237, 0.15);
          box-shadow: 0 0 20px rgba(124, 58, 237, 0.4), 0 0 60px rgba(124, 58, 237, 0.15);
}

.btn--glow:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 30px rgba(124, 58, 237, 0.6), 0 0 80px rgba(59, 130, 246, 0.25);
          box-shadow: 0 0 30px rgba(124, 58, 237, 0.6), 0 0 80px rgba(59, 130, 246, 0.25);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  border-color: #A78BFA;
  background: rgba(124, 58, 237, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--light {
  background: #F8FAFC;
}

.section--dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#0F172A), to(#030712));
  background: linear-gradient(180deg, #0F172A 0%, #030712 100%);
  color: #FFFFFF;
}

.section--dark .section__subtitle {
  color: #94A3B8;
}

.section--gradient {
  background: linear-gradient(135deg, #030712 0%, #0C0A20 40%, #0A1628 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.section--problems {
  background: #FFFFFF;
  color: #1E293B;
  overflow: hidden;
  position: relative;
}

.section--problems .section__title {
  color: #1E293B;
}

.section--problems .section__subtitle {
  color: #64748B;
}

.section--about {
  background: -webkit-gradient(linear, left top, left bottom, from(#0F172A), to(#030712));
  background: linear-gradient(180deg, #0F172A 0%, #030712 100%);
  color: #FFFFFF;
}

.section--contact {
  background: linear-gradient(135deg, #030712 0%, #0C0A20 40%, #0A1628 100%);
  color: #FFFFFF;
}

.section__title {
  text-align: center;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section__title--light {
  color: #FFFFFF;
}

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748B;
  margin-bottom: 3.5rem;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.6);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(3, 7, 18, 0.92);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}

.nav__logo-icon {
  color: #A78BFA;
}

.nav__logo img {
  height: 30px;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav__link {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
}

.nav__link--cta {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  color: #FFFFFF !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}

.nav__link--cta:hover {
  -webkit-box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
          box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
}

.nav__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle-bar {
  width: 24px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 4px;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #030712 0%, #0C0A20 40%, #0A1628 100%);
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 600px at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%), radial-gradient(ellipse 500px 500px at 80% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 70%), radial-gradient(ellipse 400px 400px at 60% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  -webkit-animation: meshMove 12s ease-in-out infinite alternate;
          animation: meshMove 12s ease-in-out infinite alternate;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(80px);
          filter: blur(80px);
  opacity: 0.3;
  -webkit-animation: orbFloat 8s ease-in-out infinite alternate;
          animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: #7C3AED;
  top: -100px;
  right: -100px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: #06B6D4;
  bottom: -80px;
  left: -80px;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: #EC4899;
  top: 50%;
  left: 40%;
  opacity: 0.15;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7rem 0 4rem;
}

.hero__text {
  max-width: 600px;
}

.hero__badge-top {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title-line2 { display: block; }

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__benefit:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.hero__benefit-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  color: #FFFFFF;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hero__benefit strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.hero__benefit span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero__canvas {
  width: 100%;
  height: 500px;
  max-width: 550px;
}

@-webkit-keyframes meshMove {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  100% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
}

@keyframes meshMove {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  100% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
}

@-webkit-keyframes orbFloat {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(30px, -30px) scale(1.1);
            transform: translate(30px, -30px) scale(1.1);
  }
}

@keyframes orbFloat {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(30px, -30px) scale(1.1);
            transform: translate(30px, -30px) scale(1.1);
  }
}

.problems__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.problems__content {
  position: relative;
  z-index: 1;
}

.problems__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problems__cta {
  text-align: center;
}

.problems__cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

/* Problem card — spinning gradient border on hover (background-as-border technique) */
.problem-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2px; /* acts as border width */
  text-align: center;
  -webkit-transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.45s cubic-bezier(0.25,0.8,0.25,1);
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.45s cubic-bezier(0.25,0.8,0.25,1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Spinning gradient — hidden by default, visible on hover */
.problem-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 150%; aspect-ratio: 1;
  background: conic-gradient(from 0deg, #7C3AED, #3B82F6, #06B6D4, #EC4899, #7C3AED);
  transform: translate(-50%,-50%) rotate(0deg);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: problemBorderSpin 3s linear infinite;
  pointer-events: none;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124,58,237,.15), 0 0 30px rgba(6,182,212,.08);
}
@keyframes problemBorderSpin {
  0%   { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Inner content sits above the gradient */
.problem-card__inner {
  position: relative; z-index: 1;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
}

/* Light-mode overrides for problem cards in white section */
.section--problems .problem-card {
  background: #F1F5F9;
}
.section--problems .problem-card h3 {
  color: #1E293B;
}
.section--problems .problem-card p {
  color: #64748B;
}
.section--problems .problem-card__icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}
.section--problems .problems__cta-text {
  color: #334155;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.15);
  color: #A78BFA;
  font-size: 1.3rem;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.problem-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.benefit-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.25);
}

.benefit-card:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.benefit-card__number {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.benefit-card__number i {
  font-size: 2rem;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

.usecases__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.usecase-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.usecase-card:hover {
  -webkit-box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
          box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

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

.usecase-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.1);
  font-size: 1.5rem;
  color: #7C3AED;
}

.usecase-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.usecase-card__short {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.usecase-card__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #7C3AED;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.usecase-card__toggle i {
  font-size: 0.7rem;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

.usecase-card__toggle:hover {
  color: #5f14e0;
}

.usecase-card__toggle[aria-expanded="true"] i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.usecase-card__toggle[aria-expanded="true"] span {
  /* text changes via JS */
}

.usecase-card__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.35s ease;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.35s ease;
  text-align: left;
  margin-top: 0;
}

.usecase-card__details p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.usecase-card__details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.usecase-card__details ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.6;
}

.usecase-card__details ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
}

.usecase-card__details ul li strong {
  color: #1E293B;
}

.usecase-card.expanded {
  border-color: rgba(124, 58, 237, 0.25);
  -webkit-box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
          box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

.usecase-card.expanded::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.usecase-card.expanded .usecase-card__details {
  opacity: 1;
  margin-top: 1rem;
}

.process__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.process__content {
  position: relative;
  z-index: 1;
}

.process__timeline {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process__line {
  display: none;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__marker {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  -webkit-box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
          box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step__marker span {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.process-step:hover .process-step__marker {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
          box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

.process-step__body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step__body {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.06);
}

.process-step__icon {
  font-size: 1.6rem;
  color: #06B6D4;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.process-step__cta {
  text-align: center;
  margin: 40px 0 0 0;
}

.process-step__cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.tools__marquee {
  overflow: hidden;
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tools__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 45s linear infinite;
          animation: marquee 45s linear infinite;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.tool-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  min-width: 110px;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  -webkit-box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
          box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.tool-item img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tool-item i {
  font-size: 1.75rem;
  color: #7C3AED;
}

.tool-item span {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.testimonials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: rgba(124, 58, 237, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card__author span {
  font-size: 0.82rem;
  color: #94A3B8;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  color: #FFFFFF;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.faq-item__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E293B;
  text-align: left;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__question:hover {
  color: #7C3AED;
}

.faq-item__icon {
  font-size: 0.85rem;
  color: #7C3AED;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.7;
}

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.3);
  -webkit-box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
          box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.faq-item.active .faq-item__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.about__text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.about__text p strong {
  color: #FFFFFF;
}

.about__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.about__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__feature:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.06);
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.about__feature > i {
  font-size: 1.4rem;
  color: #A78BFA;
  margin-top: 0.15rem;
}

.about__feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #FFFFFF;
}

.about__feature p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25fr 1fr;
      grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__group {
  margin-bottom: 1.25rem;
}

.contact-form__group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form__group label small {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__group input, .contact-form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  -webkit-transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form__group input::-webkit-input-placeholder, .contact-form__group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__group input:-ms-input-placeholder, .contact-form__group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__group input::-ms-input-placeholder, .contact-form__group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__group input::placeholder, .contact-form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__group input:focus, .contact-form__group textarea:focus {
  outline: none;
  border-color: #7C3AED;
  -webkit-box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
          box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-form__group textarea {
  resize: vertical;
}

.contact-form__error {
  display: block;
  font-size: 0.8rem;
  color: #F87171;
  margin-top: 0.35rem;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form__error.visible {
  max-height: 2rem;
  opacity: 1;
  margin-top: 0.35rem;
}

.contact-form__rodo {
  margin-bottom: 1.5rem;
}

.contact-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.contact-form__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form__checkmark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 2px;
  position: relative;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form__checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg) scale(0);
          transform: rotate(45deg) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.contact-form__checkbox input:checked ~ .contact-form__checkmark {
  background: #7C3AED;
  border-color: #7C3AED;
}

.contact-form__checkbox input:checked ~ .contact-form__checkmark::after {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}

.contact-form__checkbox input:focus-visible ~ .contact-form__checkmark {
  -webkit-box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
          box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

.contact-form__checkbox-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.contact-form__checkbox-text strong {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form__checkbox-text a {
  color: #A78BFA;
  text-decoration: underline;
}

.contact-form__checkbox-text a:hover {
  color: #FFFFFF;
}

.input--error {
  border-color: #F87171 !important;
  -webkit-box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15) !important;
}

.form-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  min-width: 340px;
  max-width: 460px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15);
  z-index: 9999;
  -webkit-transform: translateY(120%) scale(0.95);
          transform: translateY(120%) scale(0.95);
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.form-toast.visible {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.form-toast__icon {
  font-size: 1.8rem;
  color: #22C55E;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: toastPop 0.5s 0.3s ease both;
          animation: toastPop 0.5s 0.3s ease both;
}

.form-toast--error .form-toast__icon {
  color: #F87171;
}

.form-toast__content strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.form-toast__content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.form-toast__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-toast__close:hover {
  color: #FFFFFF;
}

@-webkit-keyframes toastPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes toastPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.contact-info {
  color: #FFFFFF;
}

.contact-info h3 {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-info__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-info__list li i {
  font-size: 1.15rem;
  color: #06B6D4;
  width: 20px;
  text-align: center;
}

.contact-info__list li a:hover {
  color: #06B6D4;
}

.contact-info__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.contact-info__social a {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.1rem;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info__social a:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  border-color: transparent;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
          box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.footer {
  background: #030712;
  padding: 0;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .nav__logo { outline: none; text-decoration: none; }
.footer__brand .nav__logo img { height: 32px; }
.footer__seo { font-size: 0.82rem; color: #94A3B8; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: #94A3B8;
  font-size: 0.9rem; transition: all 0.3s ease;
}
.footer__social a:hover { background: #7C3AED; color: #fff; transform: translateY(-2px); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.footer__col a { font-size: 0.82rem; color: #94A3B8; transition: color 0.3s; text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__col a i { margin-right: 6px; font-size: 0.75rem; }
.footer__col p { font-size: 0.82rem; color: #94A3B8; display: flex; align-items: center; gap: 8px; }
.footer__col p i { color: #7C3AED; font-size: 0.8rem; flex-shrink: 0; }
.footer__col p a { color: #94A3B8; }
.footer__col p a:hover { color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.78rem; color: rgba(148,163,184,0.6);
}
.footer__bottom p { margin: 0; }
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(148,163,184,0.6); transition: color 0.3s; text-decoration: none; }
.footer__bottom-links a:hover { color: #fff; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: rgba(3, 7, 18, 0.97);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cookie-banner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
}

.cookie-banner__text strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.cookie-banner__text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__icon {
  font-size: 1.5rem;
  color: #F59E0B;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.cookie-banner__btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  color: #FFFFFF;
  -webkit-box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
          box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.cookie-banner__btn--accept:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 25px rgba(124, 58, 237, 0.5);
          box-shadow: 0 0 25px rgba(124, 58, 237, 0.5);
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__btn--settings:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal.visible .cookie-modal__panel {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.cookie-modal__panel {
  position: relative;
  width: 90%;
  max-width: 540px;
  max-height: 85vh;
  background: #0F172A;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  -webkit-box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(124, 58, 237, 0.08);
          box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(124, 58, 237, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(20px) scale(0.97);
          transform: translateY(20px) scale(0.97);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal__header h3 {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}

.cookie-modal__header h3 i {
  color: #A78BFA;
}

.cookie-modal__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal__close:hover {
  color: #FFFFFF;
}

.cookie-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cookie-modal__intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-modal__intro strong {
  color: rgba(255, 255, 255, 0.75);
}

.cookie-modal__intro a {
  color: #A78BFA;
  text-decoration: underline;
}

.cookie-modal__intro a:hover {
  color: #FFFFFF;
}

.cookie-modal__category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-modal__category p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 0.6rem;
}

.cookie-modal__cat-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cookie-modal__cat-header strong {
  display: block;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.cookie-modal__cat-header span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.cookie-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

input:checked + .cookie-toggle__slider {
  background: #7C3AED;
}

input:checked + .cookie-toggle__slider::before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.cookie-toggle--locked {
  opacity: 0.5;
}

.cookie-toggle--locked .cookie-toggle__slider {
  cursor: not-allowed;
  background: rgba(124, 58, 237, 0.5);
}

[data-animate] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

@media (max-width: 1024px) {
  .hero__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__text {
    max-width: 100%;
  }
  .hero__benefit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__visual {
    display: none;
  }
  .benefits__grid,
  .usecases__grid,
  .testimonials__grid,
  .problems__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .process__timeline {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(3, 7, 18, 0.97);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 14px;
    -webkit-transition: right 0.35s ease;
    transition: right 0.35s ease;
    -webkit-box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
            box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y:auto;-webkit-overflow-scrolling:touch;
  }
  .nav__menu--open {
    right: 0;
  }
  .nav__link {
    padding: 0.75rem 1rem;
    font-size: 18px;
    width: 100%;
  }
  .nav__link--cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }
  .nav__toggle--active .nav__toggle-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--active .nav__toggle-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
  .section {
    padding: 4rem 0;
  }
  .section__title {
    font-size: 1.85rem;
  }
  .benefits__grid,
  .usecases__grid,
  .testimonials__grid,
  .problems__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .process__timeline {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .about__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .contact-form__row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 32px 0; }
  .footer__brand { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__col { align-items: center; }
  .footer__col p { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 1.25rem;
    gap: 1rem;
  }
  .cookie-banner__text {
    min-width: 0;
  }
  .cookie-banner__actions {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    width: 100%;
  }
  .cookie-banner__actions .cookie-banner__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    white-space: nowrap;
  }
  .cookie-modal__panel {
    width: 95%;
    max-height: 90vh;
  }
  .cookie-modal__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-modal__footer .cookie-banner__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }


  .container {
    width: 98%;
  }

  .hero 
  {
    padding:0 8px;
  }
}

@media (max-width: 480px) {
  .hero__benefits {
    gap: 0.6rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .form-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-width: auto;
  }
  .cookie-banner__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-banner__actions .cookie-banner__btn {
    width: 100%;
  }
  .cookie-banner__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cookie-banner__text strong {
    font-size: 0.88rem;
    text-align: center;
  }
  .cookie-banner__text p {
    font-size: 0.78rem;
    text-align: center;
  }
  .cookie-banner__icon {
    display: none;
  }
}
/* ============================================================
   DIGIT BANNER — dofinansowanie
   ============================================================ */
.digit-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E1044 0%, #0C0A20 100%);
  border-top: 2px solid rgba(124, 58, 237, .4);
  border-bottom: 2px solid rgba(124, 58, 237, .4);
  padding: 1.5rem 0;
}

/* Subtle animated glow background */
.digit-banner__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 200px at 15% 50%, rgba(124, 58, 237, .25) 0%, transparent 70%),
    radial-gradient(ellipse 400px 200px at 85% 50%, rgba(6, 182, 212, .2) 0%, transparent 70%);
  animation: digitGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes digitGlow {
  0%   { opacity: .6; }
  100% { opacity: 1; }
}

.digit-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.digit-banner__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 24px rgba(124, 58, 237, .5);
  animation: digitPulse 2s ease-in-out infinite;
}

@keyframes digitPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(124, 58, 237, .5); }
  50%      { box-shadow: 0 0 40px rgba(124, 58, 237, .8), 0 0 80px rgba(59, 130, 246, .3); }
}

.digit-banner__text {
  flex: 1;
  color: #E2E8F0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.digit-banner__text strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .2rem;
  letter-spacing: -.01em;
}

.digit-banner__text em {
  font-style: normal;
  font-weight: 700;
  color: #A78BFA;
}

.digit-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  box-shadow: 0 4px 20px rgba(124, 58, 237, .4);
  transition: transform .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}

.digit-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(124, 58, 237, .6);
}

.digit-banner__cta i {
  transition: transform .3s ease;
}

.digit-banner__cta:hover i {
  transform: translateX(4px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .digit-banner {
    padding: 1.25rem 0;
  }

  .digit-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .digit-banner__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .digit-banner__text {
    font-size: .88rem;
  }

  .digit-banner__text strong {
    font-size: 1.05rem;
  }

  .digit-banner__cta {
    width: 100%;
    justify-content: center;
    padding: .8rem 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO V2 — Workflow Dashboard Animation
   ══════════════════════════════════════════════════════════════ */

/* Hide old hero when v2 is active */
.hero--old-ai{display:none!important}

/* Visual column v2 — relative for floating cards */
.hero__visual--v2{
  position:relative;
  display:flex;justify-content:center;align-items:center;
  padding:20px;
}

/* ── Main dashboard card ─────────────────────────────────── */
.wf-dashboard{
  width:100%;max-width:480px;
  background:rgba(15,10,30,.85);
  border:1px solid rgba(124,58,237,.25);
  border-radius:20px;
  backdrop-filter:blur(20px);
  overflow:hidden;
  animation:wfFloat 6s ease-in-out infinite;
  position:relative;
}
.wf-dashboard__glow{
  position:absolute;top:-60px;right:-60px;
  width:200px;height:200px;
  background:radial-gradient(circle,rgba(124,58,237,.25) 0%,transparent 70%);
  pointer-events:none;animation:orbFloat1 10s ease-in-out infinite;
}
@keyframes wfFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* Header */
.wf-dashboard__header{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 20px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.wf-dashboard__status{
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;color:rgba(255,255,255,.6);
}
.wf-dashboard__dot{
  width:8px;height:8px;border-radius:50%;
}
.wf-dashboard__dot--green{
  background:#22C55E;
  box-shadow:0 0 8px rgba(34,197,94,.6);
  animation:pulse 2s infinite;
}
.wf-dashboard__badge{
  font-size:.65rem;font-weight:700;letter-spacing:1.5px;
  color:#22C55E;
  background:rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.25);
  padding:3px 10px;border-radius:20px;
  animation:livePulse 2s infinite;
}
@keyframes livePulse{
  0%,100%{opacity:1}
  50%{opacity:.5}
}

/* ── Workflow nodes ──────────────────────────────────────── */
.wf-flow{
  padding:18px 20px;
  display:flex;flex-direction:column;gap:12px;
}
.wf-flow__row{
  display:flex;align-items:center;gap:0;
}

/* Node */
.wf-node{
  display:flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:10px;
  font-size:.72rem;font-weight:600;
  white-space:nowrap;flex-shrink:0;
  border:1px solid rgba(255,255,255,.08);
  transition:all .3s;
}
.wf-node i{font-size:.85rem}
.wf-node span{color:rgba(255,255,255,.8)}
.wf-node--trigger{
  background:rgba(59,130,246,.1);
  border-color:rgba(59,130,246,.25);
}
.wf-node--trigger i{color:#3B82F6}
.wf-node--ai{
  background:rgba(124,58,237,.12);
  border-color:rgba(124,58,237,.3);
}
.wf-node--ai i{color:#A78BFA}
.wf-node--action{
  background:rgba(6,182,212,.1);
  border-color:rgba(6,182,212,.25);
}
.wf-node--action i{color:#06B6D4}

/* Connector line with pulse */
.wf-connector{
  flex:1;min-width:20px;height:2px;
  background:rgba(255,255,255,.06);
  position:relative;overflow:hidden;
  margin:0 4px;border-radius:1px;
}
.wf-connector__pulse{
  position:absolute;top:0;left:-30%;
  width:30%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(124,58,237,.8),transparent);
  border-radius:1px;
  animation:connectorPulse 2s ease-in-out infinite;
}
.wf-connector__pulse--delay1{animation-delay:.4s}
.wf-connector__pulse--delay2{animation-delay:.8s}
.wf-connector__pulse--delay3{animation-delay:1.2s}
.wf-connector__pulse--delay4{animation-delay:1.6s}
@keyframes connectorPulse{
  0%{left:-30%;opacity:0}
  20%{opacity:1}
  80%{opacity:1}
  100%{left:100%;opacity:0}
}

/* ── Stats bar ──────────────────────────────────────────── */
.wf-stats{
  display:flex;justify-content:space-around;
  padding:14px 20px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.wf-stat{
  text-align:center;display:flex;flex-direction:column;gap:2px;
}
.wf-stat__num{
  font-family:"Inter",sans-serif;font-size:1.1rem;font-weight:800;
  background:linear-gradient(135deg,#A78BFA,#06B6D4);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.wf-stat span{font-size:.65rem;color:rgba(255,255,255,.4)}

/* ── Activity log ───────────────────────────────────────── */
.wf-log{
  padding:14px 20px;
  display:flex;flex-direction:column;gap:8px;
}
.wf-log__item{
  display:flex;align-items:center;gap:8px;
  font-size:.7rem;color:rgba(255,255,255,.5);
  opacity:0;animation:logFadeIn .5s ease forwards;
}
.wf-log__item--1{animation-delay:0s}
.wf-log__item--2{animation-delay:2s}
.wf-log__item--3{animation-delay:4s}
@keyframes logFadeIn{
  0%{opacity:0;transform:translateX(-10px)}
  100%{opacity:1;transform:translateX(0)}
}
.wf-log__dot{
  width:6px;height:6px;border-radius:50%;
  background:#22C55E;flex-shrink:0;
}
.wf-log__text{flex:1;color:rgba(255,255,255,.65)}
.wf-log__time{color:rgba(255,255,255,.3);font-size:.62rem}

/* ── Floating mini-cards ────────────────────────────────── */
.wf-float{
  position:absolute;
  display:flex;align-items:center;gap:10px;
  background:rgba(15,10,30,.8);
  backdrop-filter:blur(14px);
  border:1px solid rgba(124,58,237,.2);
  border-radius:14px;padding:10px 14px;
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  z-index:2;white-space:nowrap;
}
.wf-float i{
  font-size:1rem;width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  border-radius:8px;flex-shrink:0;
}
.wf-float strong{
  display:block;font-size:.95rem;font-weight:700;
  color:#fff;line-height:1.2;
}
.wf-float span{
  display:block;font-size:.65rem;color:rgba(255,255,255,.45);
}
.wf-float--1{
  top:-15px;right:-20px;
  animation:wfFloat1 5s ease-in-out infinite;
}
.wf-float--1 i{background:rgba(34,197,94,.12);color:#22C55E}
.wf-float--2{
  bottom:30px;left:-25px;
  animation:wfFloat2 6.5s ease-in-out infinite;
}
.wf-float--2 i{background:rgba(59,130,246,.12);color:#3B82F6}

@keyframes wfFloat1{
  0%,100%{transform:translate(0,0) rotate(0deg)}
  33%{transform:translate(5px,-8px) rotate(1deg)}
  66%{transform:translate(-3px,-4px) rotate(-.5deg)}
}
@keyframes wfFloat2{
  0%,100%{transform:translate(0,0) rotate(0deg)}
  50%{transform:translate(7px,-6px) rotate(.8deg)}
}

/* ── V2 responsive ──────────────────────────────────────── */
@media(max-width:960px){
  .hero__visual--v2{
    order:-1;margin-bottom:20px;
  }
  .wf-dashboard{max-width:400px;margin:0 auto}
  .wf-float{display:none}
}
@media(max-width:640px){
  .hero__visual--v2{display:none!important}
}

/* ══════════════════════════════════════════════════════════════
   CASE STUDY SECTION
   ══════════════════════════════════════════════════════════════ */
.case-study{
  max-width:820px;margin:40px auto 0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(124,58,237,.15);
  border-radius:20px;overflow:hidden;
}
.case-study__header{
  display:flex;flex-wrap:wrap;gap:10px;
  padding:20px 28px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.case-study__badge{
  font-size:.75rem;font-weight:600;
  padding:5px 14px;border-radius:20px;
  background:rgba(124,58,237,.1);color:#A78BFA;
  border:1px solid rgba(124,58,237,.2);
  display:flex;align-items:center;gap:6px;
}
.case-study__badge--green{
  background:rgba(34,197,94,.1);color:#22C55E;
  border-color:rgba(34,197,94,.2);
}
.case-study__problem,
.case-study__solution{
  padding:22px 28px;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.case-study__problem h3,
.case-study__solution h3,
.case-study__results h3{
  font-size:.9rem;font-weight:700;color:#fff;
  margin-bottom:10px;display:flex;align-items:center;gap:8px;
}
.case-study__problem h3 i{color:#F87171}
.case-study__solution h3 i{color:#A78BFA}
.case-study__results h3 i{color:#22C55E}
.case-study__problem p,
.case-study__solution p{
  font-size:.88rem;color:rgba(255,255,255,.6);line-height:1.7;
}
.case-study__results{padding:22px 28px}
.case-study__metrics{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  margin-top:16px;
}
.case-study__metric{
  text-align:center;padding:18px 10px;
  background:rgba(124,58,237,.06);
  border:1px solid rgba(124,58,237,.12);
  border-radius:14px;
}
.case-study__metric strong{
  display:block;font-size:1.6rem;font-weight:800;
  background:linear-gradient(135deg,#A78BFA,#06B6D4);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;margin-bottom:6px;
}
.case-study__metric span{
  font-size:.72rem;color:rgba(255,255,255,.5);line-height:1.4;
}
.case-study__quote{
  padding:22px 28px;
  border-top:1px solid rgba(255,255,255,.04);
}
.case-study__quote blockquote{
  font-size:.92rem;color:rgba(255,255,255,.7);
  font-style:italic;line-height:1.7;
  border-left:3px solid rgba(124,58,237,.4);
  padding-left:16px;margin:0;
}
.case-study__author{
  font-size:.78rem;color:rgba(255,255,255,.4);
  margin-top:10px;padding-left:19px;
}
.case-study__cta{
  padding:20px 28px;text-align:center;
  border-top:1px solid rgba(255,255,255,.04);
}

@media(max-width:640px){
  .case-study__metrics{grid-template-columns:1fr 1fr;gap:10px}
  .case-study__metric strong{font-size:1.3rem}
  .case-study__problem,
  .case-study__solution,
  .case-study__results,
  .case-study__quote,
  .case-study__cta,
  .case-study__header{padding:16px 18px}
}

/* ══════════════════════════════════════════════════════════════
   DIGIT COUNTDOWN
   ══════════════════════════════════════════════════════════════ */
.digit-countdown{
  display:flex;align-items:center;gap:6px;
  margin-top:12px;
}
.digit-countdown__item{
  display:flex;flex-direction:column;align-items:center;
  background:rgba(0,0,0,.3);
  border:1px solid rgba(255,183,77,.2);
  border-radius:10px;padding:8px 12px;min-width:52px;
}
.digit-countdown__item span{
  font-size:1.3rem;font-weight:800;
  color:#FFB74D;font-family:"Inter",sans-serif;
  line-height:1;
}
.digit-countdown__item small{
  font-size:.6rem;color:rgba(255,255,255,.5);
  text-transform:uppercase;letter-spacing:.5px;
  margin-top:3px;
}
.digit-countdown__sep{
  font-size:1.1rem;font-weight:700;color:rgba(255,183,77,.4);
  margin:0 2px;
}

@media(max-width:640px){
  .digit-countdown__item{padding:6px 8px;min-width:42px}
  .digit-countdown__item span{font-size:1rem}
}

/* ══════════════════════════════════════════════════════════════
   RELATED SERVICES CARDS
   ══════════════════════════════════════════════════════════════ */
.related__grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;margin-top:32px;
}
.related-card{
  display:block;text-decoration:none;color:inherit;
  background:#F8FAFC;border:1px solid #E2E8F0;
  border-radius:16px;padding:2rem 1.5rem;
  text-align:center;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
.related-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(124,58,237,.1);
  border-color:rgba(124,58,237,.3);
}
.related-card__icon{
  width:56px;height:56px;margin:0 auto 1.25rem;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:rgba(124,58,237,.1);color:#7C3AED;
  font-size:1.3rem;
}
.related-card h3{
  font-size:1.05rem;font-weight:700;color:#1E293B;
  margin-bottom:.5rem;
}
.related-card p{
  font-size:.9rem;color:#64748B;line-height:1.6;
}

/* ══════════════════════════════════════════════════════════════
   HERO V3 — Data Flow Pipeline
   ══════════════════════════════════════════════════════════════ */

.hero--v3{
  position:relative;
  min-height:92vh;
  display:-webkit-box;display:-ms-flexbox;display:flex;
  -webkit-box-align:center;-ms-flex-align:center;align-items:center;
  background:linear-gradient(135deg,#030712 0%,#0C0A20 40%,#0A1628 100%);
  overflow:hidden;
  padding:80px 0 50px;
}

/* Background canvas – full bleed */
.hero-v3__bg-canvas{
  position:absolute;top:0;left:0;
  width:100%;height:100%;
  z-index:0;pointer-events:none;
}

/* Decorative orbs */
.hero-v3__orb{
  position:absolute;border-radius:50%;
  -webkit-filter:blur(100px);filter:blur(100px);
  opacity:.2;pointer-events:none;
}
.hero-v3__orb--1{
  width:500px;height:500px;
  background:#7C3AED;
  top:-150px;right:-100px;
  -webkit-animation:orbFloat 10s ease-in-out infinite alternate;
          animation:orbFloat 10s ease-in-out infinite alternate;
}
.hero-v3__orb--2{
  width:350px;height:350px;
  background:#06B6D4;
  bottom:-120px;left:-80px;
  -webkit-animation:orbFloat 8s ease-in-out infinite alternate;
          animation:orbFloat 8s ease-in-out infinite alternate;
  -webkit-animation-delay:-3s;animation-delay:-3s;
}

/* Grid layout */
.hero-v3__inner{
  position:relative;z-index:2;
  display:-ms-grid;display:grid;
  -ms-grid-columns:1fr 1.15fr;
  grid-template-columns:1fr 1.15fr;
  gap:3rem;
  -webkit-box-align:center;-ms-flex-align:center;align-items:center;
}

/* Left content */
.hero-v3__content{
  max-width:540px;
}

.hero-v3__badge{
  display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;
  -webkit-box-align:center;-ms-flex-align:center;align-items:center;
  gap:6px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:50px;
  padding:.35rem .9rem;
  font-size:.82rem;color:rgba(255,255,255,.75);
  margin-bottom:1.2rem;
}

.hero-v3__title{
  font-family:"Space Grotesk","Inter",system-ui,-apple-system,sans-serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:700;color:#fff;
  line-height:1.18;
  margin-bottom:1rem;
}

.hero-v3__subtitle{
  font-size:1.05rem;
  color:rgba(255,255,255,.6);
  line-height:1.7;
  margin-bottom:1.5rem;
}

/* Compact stat pills */
.hero-v3__pills{
  display:-webkit-box;display:-ms-flexbox;display:flex;
  gap:12px;
  margin-bottom:1.75rem;
  -ms-flex-wrap:wrap;flex-wrap:wrap;
}
.hero-v3__pill{
  display:-webkit-box;display:-ms-flexbox;display:flex;
  -webkit-box-orient:vertical;-webkit-box-direction:normal;
  -ms-flex-direction:column;flex-direction:column;
  -webkit-box-align:center;-ms-flex-align:center;align-items:center;
  padding:10px 16px;
  background:rgba(124,58,237,.08);
  border:1px solid rgba(124,58,237,.18);
  border-radius:10px;
  min-width:90px;
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
}
.hero-v3__pill strong{
  font-size:1.15rem;font-weight:800;
  background:linear-gradient(135deg,#A78BFA,#06B6D4);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1.2;
}
.hero-v3__pill span{
  font-size:.68rem;color:rgba(255,255,255,.45);
  text-transform:uppercase;letter-spacing:.3px;
  margin-top:2px;
}

/* CTA buttons */
.hero-v3__actions{
  display:-webkit-box;display:-ms-flexbox;display:flex;
  gap:1rem;
  -ms-flex-wrap:wrap;flex-wrap:wrap;
}

/* Canvas wrapper */
.hero-v3__canvas-wrap{
  position:relative;
  display:-webkit-box;display:-ms-flexbox;display:flex;
  -webkit-box-align:center;-ms-flex-align:center;align-items:center;
  -webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;
}
.hero-v3__canvas{
  width:100%;
  height:480px;
  max-width:580px;
  -webkit-filter:drop-shadow(0 0 50px rgba(124,58,237,.15));
          filter:drop-shadow(0 0 50px rgba(124,58,237,.15));
}

/* ── V3 responsive ──────────────────────────────────────── */
@media(max-width:1280px){
  .hero-v3__inner{gap:2rem}
  .hero-v3__canvas{height:420px}
}
@media(max-width:1024px){
  .hero--v3{min-height:auto;padding:90px 0 50px}
  .hero-v3__inner{
    -ms-grid-columns:1fr;grid-template-columns:1fr;
    text-align:center;
  }
  .hero-v3__content{max-width:100%;margin:0 auto}
  .hero-v3__badge{margin-left:auto;margin-right:auto}
  .hero-v3__pills{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
  .hero-v3__actions{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
  .hero-v3__canvas-wrap{display:none}
}
@media(max-width:768px){
  .hero--v3{padding:90px 0 40px}
  .hero-v3__title{font-size:clamp(1.6rem,5vw,2.2rem)}
  .hero-v3__subtitle{font-size:.95rem}
  .hero-v3__actions{
    -webkit-box-orient:vertical;-webkit-box-direction:normal;
    -ms-flex-direction:column;flex-direction:column;
    -webkit-box-align:center;-ms-flex-align:center;align-items:center;
  }
}
@media(max-width:480px){
  .hero-v3__pill{min-width:80px;padding:8px 12px}
  .hero-v3__pill strong{font-size:1rem}
}

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