/* AINNO modern layer: overrides legacy template styles.
   Keep minimal, bootstrap-friendly, violet-accented. */

:root {
  --ainno-violet: #7b10ff;
  --ainno-violet-2: #974fff;
  --ainno-bg: #0b1020;
  --ainno-surface: #0f1630;
  --ainno-text: #0f172a;
  --ainno-muted: #475569;
  --ainno-border: rgba(15, 23, 42, 0.12);
}

html, body {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Layout */
.ainno-container {
  max-width: 1120px;
}

/* Navbar */
.ainno-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.ainno-navbar.ainno-navbar--scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.ainno-navbar .nav-link {
  color: #0f172a !important;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ainno-navbar .nav-link:hover {
  color: var(--ainno-violet) !important;
}

.ainno-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ainno-logo img {
  height: 34px;
  width: auto;
}

/* Buttons */
.ainno-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.ainno-btn-lg {
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 16px;
}

.ainno-navbar .ainno-btn {
  padding: 12px 20px;
  font-size: 14px;
}

.ainno-btn-primary {
  border: 0;
  color: #fff !important;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 10px 30px rgba(123, 16, 255, 0.22);
}

.ainno-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(123, 16, 255, 0.26);
}

.ainno-btn-ghost {
  color: #0f172a !important;
  background: rgba(255,255,255,0.75);
}

.ainno-btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 16, 255, 0.35);
}

/* Hero */
.ainno-hero {
  position: relative;
  padding: 92px 0 72px 0;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 8% 0%, rgba(123, 16, 255, 0.2), transparent 55%),
    radial-gradient(780px 480px at 92% 15%, rgba(151, 79, 255, 0.16), transparent 58%),
    radial-gradient(600px 400px at 70% 85%, rgba(123, 16, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #fefefe 0%, #f5f3ff 38%, #fafbff 72%, #ffffff 100%);
}

.ainno-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

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

.ainno-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  color: #0b1020;
}

.ainno-hero-h1-accent {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ainno-violet);
  line-height: 1.2;
}

.ainno-hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ainno-muted);
  max-width: 58ch;
}

.ainno-hero-bullets {
  margin: 0;
  padding: 0;
  max-width: 56ch;
}

.ainno-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
}

.ainno-hero-bullets li:last-child {
  margin-bottom: 0;
}

.ainno-hero-bullets .fa-check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  border-radius: 7px;
}

.ainno-hero-trust-below-cta {
  margin: 12px 0 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  max-width: 48ch;
}

.ainno-hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ainno-violet);
  margin-bottom: 12px;
}

.ainno-hero-hook {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 22px;
  max-width: 56ch;
}

.ainno-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #64748b;
}

.ainno-hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(123, 16, 255, 0.45);
  flex-shrink: 0;
}

.ainno-hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px 28px;
}

.ainno-hero-glow {
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123, 16, 255, 0.38) 0%, rgba(151, 79, 255, 0.14) 42%, transparent 68%);
  pointer-events: none;
  animation: ainno-hero-glow-pulse 5s ease-in-out infinite;
}

.ainno-hero-orbit {
  position: absolute;
  width: min(320px, 78vw);
  height: min(320px, 78vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(123, 16, 255, 0.22);
  pointer-events: none;
  animation: ainno-hero-spin 42s linear infinite;
}

@keyframes ainno-hero-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.88; }
}

@keyframes ainno-hero-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ainno-hero-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
}

.ainno-hero-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(123, 16, 255, 0.16);
  box-shadow:
    0 22px 55px rgba(2, 6, 23, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  animation: ainno-hero-panel-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ainno-hero-panel--1 { animation-delay: 0.06s; }
.ainno-hero-panel--2 { animation-delay: 0.18s; margin-left: 28px; }
.ainno-hero-panel--3 { animation-delay: 0.3s; margin-left: 14px; }

@keyframes ainno-hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.ainno-hero-panel-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff !important;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 10px 26px rgba(123, 16, 255, 0.28);
}

.ainno-hero-panel-icon .fa {
  line-height: 1;
}

.ainno-hero-panel-body {
  flex: 1;
  min-width: 0;
}

.ainno-hero-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 6px;
}

.ainno-hero-panel-k {
  font-weight: 900;
  font-size: 14px;
  color: #0b1020;
  letter-spacing: -0.02em;
  line-height: 1.25;
  flex: 1 1 12rem;
  min-width: 0;
}

.ainno-hero-panel-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ainno-violet);
  background: rgba(123, 16, 255, 0.1);
  border: 1px solid rgba(123, 16, 255, 0.22);
}

.ainno-hero-panel-v {
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

.ainno-hero-panel-v strong {
  color: #334155;
  font-weight: 800;
}

.ainno-hero-flow-note {
  position: relative;
  z-index: 2;
  margin: 18px auto 0;
  max-width: 420px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: #64748b;
  padding: 0 8px;
}

.ainno-hero-connector {
  display: flex;
  justify-content: center;
  padding: 3px 0;
}

.ainno-hero-connector-line {
  display: block;
  width: 3px;
  height: 26px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ainno-violet), var(--ainno-violet-2));
  animation: ainno-hero-line-pulse 2.4s ease-in-out infinite;
}

@keyframes ainno-hero-line-pulse {
  0%, 100% { opacity: 0.45; transform: scaleY(0.92); }
  50% { opacity: 1; transform: scaleY(1); }
}

.ainno-hero-btn-pulse {
  animation: ainno-hero-btn-glow 2.8s ease-in-out infinite;
}

@keyframes ainno-hero-btn-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(123, 16, 255, 0.22);
  }
  50% {
    box-shadow: 0 16px 48px rgba(123, 16, 255, 0.38);
  }
}

.ainno-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ainno-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 16, 255, 0.08);
  border: 1px solid rgba(123, 16, 255, 0.18);
  color: #2b1659;
  font-weight: 700;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .ainno-hero-glow,
  .ainno-hero-orbit,
  .ainno-hero-panel,
  .ainno-hero-connector-line,
  .ainno-hero-btn-pulse {
    animation: none !important;
  }

  .ainno-hero-panel {
    opacity: 1;
    transform: none;
  }

  .ainno-hero-btn-pulse {
    box-shadow: 0 10px 30px rgba(123, 16, 255, 0.22);
  }
}

/* Section */
.ainno-section {
  padding: 88px 0;
}

.ainno-section h2 {
  font-weight: 800;
  letter-spacing: -0.4px;
  font-size: 34px;
  margin-bottom: 10px;
  color: #0b1020;
}

.ainno-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.ainno-section-heading-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 10px 28px rgba(123, 16, 255, 0.22);
}

.ainno-section-heading h2 {
  margin-bottom: 0;
}

.ainno-section p.section-lead {
  color: var(--ainno-muted);
  max-width: 70ch;
}

/* Cards */
.ainno-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.ainno-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ainno-step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 10px 26px rgba(123, 16, 255, 0.18);
  flex: 0 0 auto;
}

.ainno-step h3 {
  font-size: 16px;
  margin: 2px 0 6px 0;
  font-weight: 800;
  color: #0b1020;
}

.ainno-step p {
  margin: 0;
  color: var(--ainno-muted);
}

/* Contact */
.ainno-contact {
  background: linear-gradient(180deg, #ffffff, #fbfbff);
}

.ainno-form label {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0b1020;
}

.ainno-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 12px 14px;
}

.ainno-form .form-control:focus {
  border-color: rgba(123, 16, 255, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(123, 16, 255, 0.14);
}

.ainno-contact-sidebar-note {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: #475569;
}

.ainno-form .ainno-form-submit {
  margin-top: 1.5rem;
}

/* Footer */
.ainno-footer {
  background: #0b1020;
  color: rgba(255,255,255,0.86);
  padding: 56px 0;
}

.ainno-footer a {
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
}

.ainno-footer-brand {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}

.ainno-footer-meta {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.86);
}

.ainno-footer-meta-line {
  margin-bottom: 2px;
}

.ainno-footer-meta-line:last-child {
  margin-bottom: 0;
}

.ainno-footer-about {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
  margin-bottom: 12px;
}

.ainno-section--alt {
  background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 45%, #fafbff 100%);
}

.ainno-value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 8px 22px rgba(123, 16, 255, 0.2);
}

.ainno-value-card-icon .fa {
  color: #fff;
  line-height: 1;
  font-size: 18px;
}

.ainno-section-heading-icon .fa {
  color: #fff;
  line-height: 1;
  font-size: 18px;
}

.ainno-results-disclaimer {
  font-size: 13px;
  color: #64748b;
  max-width: 70ch;
  line-height: 1.45;
}

.ainno-results-metrics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}

.ainno-results-metrics li:last-child {
  margin-bottom: 0;
}

.ainno-results-metrics .fa {
  margin-top: 4px;
  color: var(--ainno-violet);
  font-size: 12px;
}

.ainno-results-stat-card {
  padding: 22px 18px;
}

.ainno-results-stat-value {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.ainno-results-stat-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #64748b;
}

.ainno-results-trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ainno-results-trust-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
}

.ainno-results-trust-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 8px 22px rgba(123, 16, 255, 0.2);
}

.ainno-results-trust-point-icon .fa {
  font-size: 17px;
  line-height: 1;
  color: #fff !important;
}

.ainno-results-trust-point-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  padding-top: 2px;
}

.ainno-tech-heading {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.ainno-tech-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}

.ainno-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.05);
}

.ainno-tech-brand-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.ainno-tech-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #64748b;
}

.ainno-tech-pill-icon .fab,
.ainno-tech-pill-icon .fa {
  line-height: 1;
}

.ainno-pricing-teaser {
  padding: 28px 28px 32px;
}

/* Kainodara: stulpelis + sąrašas be inline-block (inline-block + inline mygtukas = persidengimas) */
.ainno-pricing-teaser--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ainno-pricing-teaser--centered .ainno-section-heading {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ainno-pricing-teaser--centered p.section-lead {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ainno-pricing-teaser--centered .ainno-pricing-teaser-sub {
  color: #0b1020;
  font-weight: 700;
  text-align: center;
}

.ainno-pricing-teaser--centered .ainno-pricing-teaser-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  margin: 20px 0 0;
  text-align: left;
}

.ainno-pricing-teaser--centered .ainno-pricing-teaser-list li:last-child {
  margin-bottom: 0;
}

.ainno-pricing-teaser-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
  flex-shrink: 0;
}

.ainno-pricing-teaser-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.ainno-pricing-teaser-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.ainno-pricing-teaser-list .fa-check {
  margin-top: 4px;
  color: var(--ainno-violet);
}

/* Industry cards: own flex row — nepriklausome nuo Bootstrap .d-flex / gap (podėlis, senesnės naršyklės) */
.ainno-industry-card__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.ainno-industry-body {
  flex: 1 1 0;
  min-width: 0;
}

.ainno-industry-title {
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 8px;
  color: #0b1020;
}

.ainno-industry-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.ainno-industry-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  margin-right: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(110deg, var(--ainno-violet), var(--ainno-violet-2));
  box-shadow: 0 10px 26px rgba(123, 16, 255, 0.22);
  overflow: hidden;
}

.ainno-industry-icon i {
  line-height: 1;
}

.ainno-form-trust {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.ainno-form select.form-control {
  height: auto;
  padding: 12px 14px;
  border-radius: 14px;
  appearance: auto;
}

.ainno-section h1 {
  font-weight: 800;
  letter-spacing: -0.4px;
  font-size: 34px;
  margin-bottom: 12px;
  color: #0b1020;
}

@media (max-width: 991px) {
  .ainno-hero {
    padding-top: 72px;
  }

  .ainno-hero-stack {
    margin-left: auto;
    margin-right: auto;
  }

  .ainno-hero-panel--2,
  .ainno-hero-panel--3 {
    margin-left: 0;
  }

  .ainno-hero-visual {
    min-height: 360px;
  }
}

