/* ===================================================
   СКУД — Системы контроля доступа
   Accent: #22c55e (green-500)
   =================================================== */

/* ── Hero ── */
.skud-hero {
  background: #060d10;
  padding: var(--space-20) 0 var(--space-24);
  position: relative;
  overflow: hidden;
}

/* Video background */
.skud-hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.45;
}

/* Dark overlay + green tint on top of video */
.skud-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,13,16,0.72) 0%, rgba(7,24,18,0.55) 50%, rgba(10,40,32,0.45) 100%),
    radial-gradient(ellipse 55% 70% at 80% 40%, rgba(34,197,94,0.10) 0%, transparent 60%);
  z-index: 1;
}
.skud-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  gap: var(--space-14);
  align-items: center;
  position: relative; z-index: 2;
}
.skud-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35);
  color: #86efac; font-size: var(--font-size-sm); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.skud-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white); line-height: 1.15;
  margin-bottom: var(--space-5);
}
.skud-hero__title span { color: #4ade80; }
.skud-hero__desc {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.skud-hero__actions {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.skud-hero__actions .btn--primary {
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.skud-hero__actions .btn--primary:hover {
  background: #15803d;
  border-color: #15803d;
  box-shadow: 0 12px 32px rgba(34,197,94,0.4);
}
@media (max-width: 600px) {
}

/* ── Hero right: access control panel CSS art ── */
.skud-panel {
  background: #071510;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 16px;
  padding: 20px;
  font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,197,94,0.08);
}

.skud-panel__header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34,197,94,0.15);
  margin-bottom: 16px;
  color: #4ade80;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.skud-panel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: skudBlink 2s ease-in-out infinite;
}

/* Card reader + door row */
.skud-reader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.skud-reader__card {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}

.skud-reader__icon {
  font-size: 22px;
  margin-bottom: 6px;
  line-height: 1;
  position: relative;
  display: inline-block;
}
/* wave rings around RFID icon */
.skud-reader__icon::before {
  width: 36px; height: 36px;
  animation-delay: 0s;
}
.skud-reader__icon::after {
  width: 52px; height: 52px;
  animation-delay: 0.6s;
}

.skud-reader__label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skud-door {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.skud-door__label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.skud-door__status {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.skud-door__bar {
  height: 4px;
  background: rgba(34,197,94,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.skud-door__fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #16a34a, #4ade80);
  border-radius: 2px;
  transform-origin: left;
  animation: skudFill 3s ease-in-out infinite;
}

/* Methods list */
.skud-methods {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.skud-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
}
.skud-method__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.skud-method__ico {
  width: 18px; height: 18px; flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}
.skud-method__name {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.skud-method__ok {
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.skud-method__ok svg {
  color: #22c55e;
}

/* Event log */
.skud-event {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
  line-height: 1.6;
}
.skud-event__time {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  margin-bottom: 2px;
}
.skud-event__name { color: #4ade80; font-weight: 600; }
.skud-event__status { color: #86efac; }

/* Animations */
@keyframes skudBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
  50%       { opacity: 0.4; box-shadow: 0 0 3px #22c55e; }
}
@keyframes skudFill {
  0%   { transform: scaleX(0); }
  40%  { transform: scaleX(1); }
  60%  { transform: scaleX(1); }
  80%  { transform: scaleX(0.15); }
  100% { transform: scaleX(0); }
}
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.6); }
}

/* ── Features section ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-xl);
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #16a34a;
}
.feature-card__title { font-size: var(--font-size-lg); font-weight: var(--font-weight-semibold); color: var(--color-gray-900); }
.feature-card__desc  { font-size: var(--font-size-sm); color: var(--color-gray-500); line-height: 1.65; }

/* ── Identification methods section ── */
.skud-methods-section {
  background: var(--color-gray-900);
  padding: var(--space-20) 0;
}
.skud-methods-section .section-header__eyebrow {
  color: #4ade80;
}
.skud-methods-section .section-header__eyebrow::before {
  background: #4ade80;
}
.skud-methods-section .section-header__title { color: var(--color-white); }
.skud-methods-section .section-header__desc  { color: rgba(255,255,255,0.5); }

.skud-id-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .skud-id-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .skud-id-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
}

.skud-id-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.skud-id-card:hover {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06);
  transform: translateY(-3px);
}
.skud-id-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-xl);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}
.skud-id-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
}
.skud-id-card__desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── Pricing: green accent overrides for popular card ── */
.skud-pricing-section .pricing-card--popular {
  border-color: rgba(34,197,94,0.4);
}
.skud-pricing-section .pricing-card--popular .pricing-card__badge {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.skud-pricing-section .pricing-card--popular .btn--primary {
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.skud-pricing-section .pricing-card--popular .btn--primary:hover {
  background: #15803d;
  border-color: #15803d;
}

/* ── CTA dark green tint ── */
.skud-cta {
  background: linear-gradient(135deg, #061210 0%, #071a12 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-14) var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .skud-cta { flex-direction: column; text-align: center; padding: var(--space-10) var(--space-6); }
}
.skud-cta__content { position: relative; z-index: 1; }
.skud-cta__eyebrow {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #86efac;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.skud-cta__title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}
.skud-cta__desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
}
.skud-cta__actions {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  position: relative; z-index: 1; flex-shrink: 0;
}

/* ── White-section eyebrow overrides ── */
#features .section-header__eyebrow {
  color: #16a34a;
}
#features .section-header__eyebrow::before {
  background: #16a34a;
}
.skud-pricing-section .section-header__eyebrow {
  color: #16a34a;
}
.skud-pricing-section .section-header__eyebrow::before {
  background: #16a34a;
}

/* ── Pricing: non-popular card green accents ── */
.skud-pricing-section .pricing-card:not(.pricing-card--popular):not(.pricing-card--enterprise) .pricing-card__tier-icon {
  background: rgba(34,197,94,0.08);
  color: #16a34a;
}
.skud-pricing-section .pricing-card:not(.pricing-card--popular):not(.pricing-card--enterprise) .pricing-card__highlight-pill {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.25);
  color: #16a34a;
}
.skud-pricing-section .pricing-card:not(.pricing-card--popular):not(.pricing-card--enterprise) .pricing-card__features svg {
  color: #22c55e;
}

/* ── Pricing: popular card full green override ── */
.skud-pricing-section .pricing-card--popular {
  background: linear-gradient(160deg, #071510 0%, #0d2018 100%);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.25), 0 20px 60px rgba(34,197,94,0.12);
}
.skud-pricing-section .pricing-card--popular .pricing-card__top {
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  border-bottom-color: rgba(255,255,255,0.1);
}
.skud-pricing-section .pricing-card--popular .pricing-card__tier-icon {
  background: rgba(255,255,255,0.15);
  color: white;
}
.skud-pricing-section .pricing-card--popular .pricing-card__name,
.skud-pricing-section .pricing-card--popular .pricing-card__price { color: var(--color-white); }
.skud-pricing-section .pricing-card--popular .pricing-card__desc,
.skud-pricing-section .pricing-card--popular .pricing-card__period { color: rgba(255,255,255,0.65); }
.skud-pricing-section .pricing-card--popular .pricing-card__currency { color: #4ade80; }
.skud-pricing-section .pricing-card--popular .pricing-card__features li { color: rgba(255,255,255,0.8); }
.skud-pricing-section .pricing-card--popular .pricing-card__features svg { color: #4ade80; }
.skud-pricing-section .pricing-card--popular .pricing-card__highlight-pill {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.4);
  color: #86efac;
}

/* ── FAQ CTA card green override ── */
.skud-faq .faq-cta-card {
  background: linear-gradient(135deg, #14532d, #16a34a);
}

/* ── FAQ legacy eyebrow classes (used in FAQ block header) ── */
.section-eyebrow {
  display: inline-block;
  font-size: var(--font-size-sm); font-weight: var(--font-weight-semibold);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #16a34a; margin-bottom: var(--space-3);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gray-900); letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: var(--font-size-base); color: var(--color-gray-500);
  line-height: var(--line-height-relaxed);
}

/* фирменный акцент страницы в стеклянных статах */
.skud-hero .glass-stat__val { color: #4ade80; }
