:root {
  --bg: #F5F8FF;
  --bg-soft: #EEF4FF;
  --bg-soft-2: #F8FAFF;
  --white: #FFFFFF;

  --dark: #101827;
  --dark-2: #172033;

  --text: #172033;
  --text-main: #344054;
  --text-soft: #5D6B82;

  --accent: #4F6BFF;
  --accent-2: #00BFA6;
  --accent-3: #8B5CF6;
  --accent-4: #38BDF8;

  --border: #DDE6F5;
  --border-strong: #C8D6EF;

  --shadow: 0 18px 50px rgba(23, 32, 51, 0.08);
  --shadow-strong: 0 26px 70px rgba(23, 32, 51, 0.13);
  --shadow-accent: 0 20px 50px rgba(79, 107, 255, 0.22);

  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --container: 1200px;
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-white {
  background: var(--white);
  color: var(--text);
}

.section-soft {
  background: var(--bg-soft);
  color: var(--text);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(79, 107, 255, 0.20), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(0, 191, 166, 0.13), transparent 22%),
    linear-gradient(180deg, #101827 0%, #172033 100%);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-subtitle {
  max-width: 850px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.small-text {
  font-size: 16px;
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.cards-offset {
  margin-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #D9E4FF;
  background: #EEF4FF;
  color: #4663D8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #DCE6FF;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(0, 191, 166, 0.65);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 230, 245, 0.78);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.04);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(79, 107, 255, 0.28);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(79, 107, 255, 0.30);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.62);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
}

/* ===== Hero ===== */
.hero {
  min-height: calc(100vh - 78px);
  padding: 94px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(79, 107, 255, 0.16), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(0, 191, 166, 0.12), transparent 25%),
    radial-gradient(circle at 52% 92%, rgba(139, 92, 246, 0.10), transparent 28%),
    linear-gradient(180deg, #F8FAFF 0%, #EEF4FF 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.24;
  pointer-events: none;
  animation: floatBlob 13s ease-in-out infinite;
}

.hero::before {
  left: -160px;
  top: 120px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
}

.hero::after {
  right: -170px;
  bottom: -120px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 68%);
  animation-delay: -5s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(28px, -34px, 0) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  animation: heroTextIn 0.9s ease both;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-3) 54%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 180% 180%;
  animation: titleGradient 5s ease-in-out infinite;
}

@keyframes titleGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--text-soft);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-point {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(221, 230, 245, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.06);
  overflow: hidden;
}

.hero-point::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(79, 107, 255, 0.08), transparent);
  transform: translateX(-120%);
  animation: cardShine 6s ease-in-out infinite;
}

.hero-point:nth-child(2)::before { animation-delay: 0.8s; }
.hero-point:nth-child(3)::before { animation-delay: 1.6s; }

@keyframes cardShine {
  0%, 60%, 100% { transform: translateX(-120%); }
  78% { transform: translateX(120%); }
}

.hero-point strong {
  position: relative;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
}

.hero-point span {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
}

/* ===== Audit infographic ===== */
.audit-hero__panel-wrap {
  position: relative;
  min-height: 580px;
  max-width: 560px;
  margin-left: auto;
  animation: heroPanelIn 1s 0.15s ease both;
}

@keyframes heroPanelIn {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.audit-panel {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin: 70px auto 0;
  padding: 28px;
  border: 1px solid rgba(200, 214, 239, 0.95);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.88));
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.14);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.audit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 107, 255, 0.08), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(0, 191, 166, 0.06), transparent 22%);
  pointer-events: none;
}

.audit-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-12deg);
  animation: auditPanelSweep 6.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes auditPanelSweep {
  0%, 65%, 100% { left: -70%; }
  82% { left: 125%; }
}

.audit-panel__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.audit-panel__header h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.audit-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.14);
  color: #007F70;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.audit-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.audit-metric {
  padding: 16px 18px;
  border: 1px solid rgba(200, 214, 239, 0.65);
  border-radius: 20px;
  background: rgba(248, 250, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.audit-metric__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.audit-metric__top span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.audit-metric__top strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.audit-progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #DBE4F2;
}

.audit-progress__fill {
  --value: 50%;
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-4) 45%, var(--accent-2));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 6px 16px rgba(79, 107, 255, 0.18);
  transition: width 1.35s ease;
  animation: auditBarPulse 4.8s ease-in-out infinite;
}

.audit-progress__fill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.70) 45%, transparent 100%);
  transform: translateX(-120%);
  animation: auditBarShine 3.8s ease-in-out infinite;
}

.audit-progress__fill::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 3px solid var(--accent-2);
  box-shadow:
    0 0 0 6px rgba(0, 191, 166, 0.12),
    0 0 18px rgba(0, 191, 166, 0.32);
}

@keyframes auditBarShine {
  0%, 60%, 100% { transform: translateX(-120%); }
  80% { transform: translateX(140%); }
}

@keyframes auditBarPulse {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.08) brightness(1.04); }
}

.audit-mini-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.audit-mini-stat {
  padding: 16px 14px;
  border: 1px solid rgba(200, 214, 239, 0.65);
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.92);
  text-align: center;
}

.audit-mini-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.audit-mini-stat span {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.audit-orbit-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.audit-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(79, 107, 255, 0.16);
  background: transparent;
}

.audit-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 28px rgba(79, 107, 255, 0.08) inset;
}

.audit-orbit--1 {
  width: 430px;
  height: 430px;
  animation: auditOrbitSpin 28s linear infinite;
}

.audit-orbit--2 {
  width: 330px;
  height: 330px;
  border-color: rgba(0, 191, 166, 0.18);
  animation: auditOrbitSpinReverse 22s linear infinite;
}

.audit-orbit--3 {
  width: 230px;
  height: 230px;
  border-color: rgba(139, 92, 246, 0.18);
  animation: auditOrbitSpin 18s linear infinite;
}

@keyframes auditOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes auditOrbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.audit-orbit__dot {
  position: absolute;
  border-radius: 50%;
}

.audit-orbit__dot--1 {
  top: 42px;
  right: 54px;
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  box-shadow:
    0 0 0 8px rgba(0, 191, 166, 0.10),
    0 0 24px rgba(0, 191, 166, 0.34);
}

.audit-orbit__dot--2 {
  top: 10px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: var(--accent-4);
  box-shadow:
    0 0 0 8px rgba(56, 189, 248, 0.10),
    0 0 24px rgba(56, 189, 248, 0.30);
}

.audit-orbit__dot--3 {
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: var(--accent-3);
  box-shadow:
    0 0 0 8px rgba(139, 92, 246, 0.10),
    0 0 24px rgba(139, 92, 246, 0.32);
}

.audit-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(200, 214, 239, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.audit-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 14px rgba(0, 191, 166, 0.45);
}

.audit-chip--1 {
  top: 8px;
  left: 0;
  animation: auditChipFloat 5.8s ease-in-out infinite;
}

.audit-chip--2 {
  top: 130px;
  right: -12px;
  animation: auditChipFloat 5.8s ease-in-out infinite -2s;
}

.audit-chip--3 {
  bottom: 10px;
  left: -6px;
  animation: auditChipFloat 5.8s ease-in-out infinite -3.2s;
}

@keyframes auditChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Cards ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-light,
.card-dark {
  position: relative;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.card-light {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.card-light::before,
.card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(79, 107, 255, 0.08), transparent);
  transform: translateX(-125%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.card-light:hover,
.card-dark:hover {
  transform: translateY(-6px);
}

.card-light:hover::before,
.card-dark:hover::before {
  transform: translateX(125%);
}

.card-light:hover {
  border-color: var(--border-strong);
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.12);
}

.card-dark:hover {
  border-color: rgba(110, 231, 249, 0.35);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(110, 231, 249, 0.05);
}

.icon-box,
.industry-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.card-light:hover .icon-box,
.card-dark:hover .icon-box,
.industry-card:hover .industry-icon {
  transform: translateY(-2px) scale(1.03);
}

.card-light .icon-box {
  color: var(--accent);
  border: 1px solid #DCE6FF;
  background: #EEF4FF;
}

.card-dark .icon-box,
.industry-icon {
  color: #9FD7FF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.20), rgba(0, 194, 168, 0.12));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.icon-box svg,
.industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-light h3,
.card-dark h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.card-light p,
.card-dark p {
  margin: 0 0 16px;
  font-size: 15px;
}

.card-light p {
  color: var(--text-soft);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.card-dark .card-link {
  color: #8FD3FF;
}

.problem-card {
  min-height: 190px;
}

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(79, 107, 255, 0.12), transparent 24%),
    var(--bg-soft);
}

/* ===== Process ===== */
.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.scheme-card,
.diagram-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.scheme-card {
  background: var(--white);
}

.diagram-card {
  background: linear-gradient(180deg, #EEF4FF, #FFFFFF);
  border-color: #DCE7FF;
}

.scheme-title,
.diagram-title {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.scheme-list {
  display: grid;
  gap: 14px;
}

.scheme-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid #E8EEF8;
  border-radius: 16px;
  background: #F7F9FD;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.scheme-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

.scheme-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(79, 107, 255, 0.20);
}

.scheme-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.scheme-item span {
  display: block;
  color: var(--text-soft);
  font-size: 14px;
}

.funnel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.funnel-step {
  position: relative;
  padding: 16px 18px;
  border: 1px solid #E2EAF8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(25, 37, 60, 0.04);
  overflow: hidden;
}

.funnel-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.funnel-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.funnel-step span {
  color: var(--text-soft);
  font-size: 14px;
}

.funnel-arrow {
  width: 2px;
  height: 20px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: arrowPulse 1.8s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Industries ===== */
.industries-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 108px;
  background:
    radial-gradient(circle at 12% 15%, rgba(79, 107, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(0, 191, 166, 0.10), transparent 20%),
    var(--bg);
}

.industries-section::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(79, 107, 255, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  animation: auditOrbitSpin 34s linear infinite;
  pointer-events: none;
}

.industries-wrap {
  position: relative;
  z-index: 2;
}

.industries-title {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.industries-subtitle {
  max-width: 980px;
  margin-bottom: 38px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  position: relative;
  min-height: 190px;
  padding: 26px 24px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(79, 107, 255, 0.08), transparent);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.industry-card:hover::before {
  transform: translateX(120%);
}

.industry-icon {
  color: var(--accent);
  border: 1px solid #DCE6FF;
  background: linear-gradient(135deg, #EEF4FF, #F8FAFF);
  box-shadow: 0 10px 28px rgba(79, 107, 255, 0.10);
}

.industry-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.industry-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Prices ===== */
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card.featured {
  border-color: #B9C9FF;
  box-shadow: 0 24px 60px rgba(79, 107, 255, 0.16);
}

.price-card.featured::after {
  content: "оптимальный старт";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #3152C8;
  background: #EEF4FF;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #4A69DF;
  background: #EEF4FF;
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 8px 0 18px;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price small {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-list li {
  color: var(--text-soft);
  font-size: 14px;
}

.price-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent-2);
  font-weight: 950;
}

.price-card .btn {
  margin-top: auto;
}

/* ===== Trust ===== */
.trust-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 34px;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tool {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #DCE6FF;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.22s ease, background 0.22s ease;
}

.tool:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.05);
}

.trust-list b {
  color: var(--white);
}

/* ===== CTA ===== */
.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border: 1px solid #DCE6FF;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.20), transparent 32%),
    radial-gradient(circle at 95% 100%, rgba(139, 92, 246, 0.16), transparent 30%),
    linear-gradient(135deg, #FFFFFF, #EEF4FF);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.18), transparent 68%);
  animation: floatBlob 10s ease-in-out infinite;
  pointer-events: none;
}

.cta-box h2,
.cta-box p,
.cta-box .btn {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-box p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0A101C;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.19s; }
.delay-4 { transition-delay: 0.26s; }
.delay-5 { transition-delay: 0.33s; }
.delay-6 { transition-delay: 0.40s; }
.delay-7 { transition-delay: 0.47s; }
.delay-8 { transition-delay: 0.54s; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .audit-progress__fill {
    width: var(--value);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-layout,
  .trust-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .audit-hero__panel-wrap {
    min-height: auto;
    max-width: 100%;
    margin-left: 0;
  }

  .audit-orbit-scene,
  .audit-chip {
    display: none;
  }

  .audit-panel {
    margin-top: 20px;
    max-width: 680px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-actions {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
  }

  .industries-section {
    padding: 72px 0;
  }

  .industries-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .industries-subtitle {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .grid-4,
  .grid-3,
  .audit-mini-stats,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .audit-panel,
  .scheme-card,
  .diagram-card,
  .cta-box {
    padding: 22px;
  }

  .audit-panel {
    border-radius: 24px;
  }

  .audit-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-card {
    min-height: auto;
  }

  .price-card.featured::after {
    position: static;
    align-self: flex-start;
    margin-bottom: 12px;
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== RAIS Joomla framework v1.3 additions ===== */
.brand-logo{display:block;width:auto;max-width:220px;max-height:46px;object-fit:contain}.top-bar{padding:10px 0;background:var(--dark);color:rgba(255,255,255,.78);font-size:14px}.breadcrumbs-position,.module-top{padding:18px 0;background:var(--white);border-bottom:1px solid var(--border)}.mobile-menu-toggle{display:none;width:46px;height:46px;align-items:center;justify-content:center;flex-direction:column;gap:5px;border:1px solid var(--border);border-radius:14px;background:rgba(255,255,255,.72);cursor:pointer}.mobile-menu-toggle span{width:20px;height:2px;border-radius:999px;background:var(--text);transition:transform .22s ease,opacity .22s ease}body.mobile-menu-open .mobile-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}body.mobile-menu-open .mobile-menu-toggle span:nth-child(2){opacity:0}body.mobile-menu-open .mobile-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.joomla-nav ul,.joomla-nav li{margin:0;padding:0;list-style:none}.joomla-nav ul{display:flex;align-items:center;gap:24px}.joomla-nav a{color:inherit}.footer-modules{padding-bottom:24px}.module-section{position:relative}.content-layout{display:grid;grid-template-columns:minmax(0,1fr);gap:34px}#system-message-container{width:min(100% - 32px,var(--container));margin:20px auto}.alert{padding:14px 18px;border-radius:16px;border:1px solid var(--border);background:var(--white);box-shadow:var(--shadow);color:var(--text)}
.joomla-component-section{background:radial-gradient(circle at 12% 6%,rgba(79,107,255,.08),transparent 22%),var(--white)}.joomla-component-section .container{max-width:1120px}.joomla-component-section .page-header{max-width:900px;margin:0 auto 28px;border:0;padding:0}.joomla-component-section .page-header h1,.joomla-component-section .page-header h2,.joomla-component-section .com-content-article h1,.joomla-component-section .item-page h1{margin:0 0 18px;color:var(--text);font-size:clamp(34px,4.4vw,58px);line-height:1.04;letter-spacing:-.045em}.joomla-component-section p{margin:0 0 18px;color:var(--text-main);font-size:18px;line-height:1.78}.joomla-component-section h2{margin:46px 0 18px;color:var(--text);font-size:clamp(28px,3vw,40px);line-height:1.12;letter-spacing:-.035em}.joomla-component-section h3{margin:34px 0 14px;color:var(--text);font-size:clamp(22px,2.2vw,30px);line-height:1.18;letter-spacing:-.025em}.joomla-component-section ul,.joomla-component-section ol{margin:0 0 24px 0;padding-left:26px;color:var(--text-main);font-size:18px;line-height:1.72}.joomla-component-section li{margin:8px 0}.joomla-component-section li::marker{color:var(--accent);font-weight:900}.joomla-component-section img{max-width:100%;height:auto;border-radius:22px}.joomla-component-section blockquote{margin:32px 0;padding:24px 26px 24px 28px;border:1px solid #DCE6FF;border-left:5px solid var(--accent);border-radius:22px;background:radial-gradient(circle at 0% 0%,rgba(79,107,255,.08),transparent 28%),#F8FAFF;box-shadow:var(--shadow)}.joomla-component-section table{width:100%;margin:30px 0;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--border);border-radius:20px;background:var(--white);box-shadow:var(--shadow)}.joomla-component-section th,.joomla-component-section td{padding:15px 16px;border-bottom:1px solid var(--border);vertical-align:top;text-align:left}.joomla-component-section th{color:var(--text);background:#EEF4FF;font-weight:850}.joomla-component-section tr:last-child td{border-bottom:0}@media(max-width:1080px){.mobile-menu-toggle{display:inline-flex}body.mobile-menu-open .nav{position:fixed;top:86px;left:16px;right:16px;z-index:120;display:flex;flex-direction:column;align-items:flex-start;gap:14px;padding:18px;border:1px solid var(--border);border-radius:22px;background:rgba(255,255,255,.96);box-shadow:var(--shadow-strong);color:var(--text);backdrop-filter:blur(18px)}body.mobile-menu-open .joomla-nav ul{display:flex;flex-direction:column;align-items:flex-start;gap:14px}body.mobile-menu-open .nav a{color:var(--text);font-size:16px}}@media(max-width:680px){.brand-logo{max-width:160px}.joomla-component-section p,.joomla-component-section ul,.joomla-component-section ol{font-size:16px}.joomla-component-section table{display:block;overflow-x:auto;white-space:nowrap}}
