/* ══════════════════════════════════════
   AI VIDEOS PAGE – ai-videos.css
══════════════════════════════════════ */

/* ── Video Gallery ── */
.aiv-gallery {
  padding: 24px 0 100px;
  background: #fff;
}
.aiv-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.aiv-gallery-title {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #0a1f6e;
  text-align: center;
  margin: 0 0 10px;
}
.aiv-gallery-sub {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin: 0 0 48px;
}
.aiv-gallery-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.aiv-row-2 { grid-template-columns: repeat(2, 1fr); }
.aiv-row-3 { grid-template-columns: repeat(3, 1fr); }
.aiv-row-1 { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }

.aiv-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.aiv-video-wrap:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.aiv-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fullscreen: contain so portrait videos don't get cropped/stretched */
.aiv-video-wrap:fullscreen,
.aiv-video-wrap:-webkit-full-screen,
.aiv-video-wrap:-moz-full-screen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aiv-video-wrap:fullscreen video,
.aiv-video-wrap:-webkit-full-screen video,
.aiv-video-wrap:-moz-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aiv-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: opacity 0.25s;
}
.aiv-play-overlay.aiv-hidden {
  opacity: 0;
  pointer-events: none;
}
.aiv-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0057e7;
  padding-right: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.aiv-play-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

/* כפתור מסך מלא – פינה שמאלית עליונה */
.aiv-fs-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  z-index: 5;
}
.aiv-video-wrap:hover .aiv-fs-btn {
  opacity: 1;
}
.aiv-fs-btn:hover {
  background: rgba(0,87,231,0.8);
  transform: scale(1.08);
}

@media (max-width: 700px) {
  .aiv-row-2 { grid-template-columns: 1fr; }
  .aiv-row-3 { grid-template-columns: repeat(2, 1fr); }
  .aiv-row-1 { max-width: 100%; }
}
@media (max-width: 480px) {
  .aiv-row-3 { grid-template-columns: 1fr; }
}

/* ── Hero ── */
.aiv-hero {
  background: #fff;
  padding: 100px 0 32px;
  text-align: center;
}
.aiv-hero-title {
  font-family: 'Assistant', sans-serif;
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 800;
  color: #1F3A4B;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.aiv-hero-sub {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.15rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.aiv-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.aiv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  color: #fff;
  font-family: 'Rubik','Assistant',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,87,231,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.aiv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,231,0.38);
}
.aiv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0057e7;
  font-family: 'Rubik','Assistant',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,87,231,0.35);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.aiv-btn-secondary:hover {
  background: rgba(0,87,231,0.06);
  border-color: #0057e7;
}
@media (max-width: 600px) {
  .aiv-hero { padding: 80px 16px 52px; }
  .aiv-hero-label { font-size: 0.7rem; }
}

/* ── Stats bar ── */
.aiv-stats {
  background: #f8faff;
  border-top: 1px solid rgba(0,87,231,0.1);
  border-bottom: 1px solid rgba(0,87,231,0.1);
  padding: 36px 0;
}
.aiv-stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.aiv-stat-item {
  text-align: center;
}
.aiv-stat-num {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.aiv-stat-label {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* ── What is AI Video section ── */
.aiv-intro {
  padding: 90px 0 70px;
  background: #fff;
}
.aiv-intro-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.aiv-intro-text {
  flex: 1;
}
.aiv-section-badge {
  display: inline-block;
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0057e7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.aiv-intro-title {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0a1f6e;
  line-height: 1.25;
  margin: 0 0 18px;
}
.aiv-intro-desc {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 28px;
}
.aiv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aiv-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}
.aiv-checklist li i {
  color: #0057e7;
  font-size: 1rem;
  flex-shrink: 0;
}
.aiv-intro-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.aiv-intro-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.aiv-intro-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,87,231,0.15);
}
.aiv-intro-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  color: #fff;
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,87,231,0.3);
}

/* ── Services / use cases grid ── */
.aiv-services {
  padding: 90px 0 100px;
  background: #fff;
}
.aiv-services .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.aiv-section-title {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #0a1f6e;
  text-align: center;
  margin: 0 0 12px;
}
.aiv-section-sub {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin: 0 0 52px;
  line-height: 1.6;
}
.aiv-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Each card: horizontal layout — icon left, text right (RTL: visually icon on right) */
.aiv-service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #eef0f8;
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.32s,
              border-color 0.32s;
  /* scroll-reveal start state */
  opacity: 0;
  transform: translateY(28px);
}
.aiv-service-card.aiv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.52s cubic-bezier(0.22,1,0.36,1),
              transform 0.52s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.32s,
              border-color 0.32s;
}
.aiv-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
  border-color: transparent;
}
/* Colored left border accent — uses card's own --c variable */
.aiv-service-card::before {
  content: '';
  position: absolute;
  right: 0; top: 16px; bottom: 16px;
  width: 4px;
  border-radius: 4px;
  background: var(--c, #0057e7);
  opacity: 0.7;
  transition: opacity 0.3s, top 0.3s, bottom 0.3s;
}
.aiv-service-card:hover::before {
  opacity: 1;
  top: 0; bottom: 0;
  border-radius: 0 18px 18px 0;
}

/* Icon circle */
.aiv-service-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--cb, rgba(0,87,231,0.09));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--c, #0057e7);
  transition: transform 0.3s, background 0.3s;
}
.aiv-service-card:hover .aiv-service-icon {
  transform: scale(1.12);
  background: var(--c, #0057e7);
  color: #fff;
}

.aiv-service-body { flex: 1; }
.aiv-service-card h3 {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f6e;
  margin: 0 0 8px;
}
.aiv-service-card p {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Per-card color tokens */
.aiv-service-card:nth-child(1) { --c:#0057e7; --cb:rgba(0,87,231,0.09); }
.aiv-service-card:nth-child(2) { --c:#7c3aed; --cb:rgba(124,58,237,0.09); }
.aiv-service-card:nth-child(3) { --c:#0891b2; --cb:rgba(8,145,178,0.09); }
.aiv-service-card:nth-child(4) { --c:#ea580c; --cb:rgba(234,88,12,0.09); }
.aiv-service-card:nth-child(5) { --c:#16a34a; --cb:rgba(22,163,74,0.09); }
.aiv-service-card:nth-child(6) { --c:#db2777; --cb:rgba(219,39,119,0.09); }

/* ── Process timeline ── */
.aiv-process {
  padding: 90px 0;
  background: #fff;
}
.aiv-process .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.aiv-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.aiv-process-steps::before {
  content: '';
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0057e7, #06b6d4);
  opacity: 0.2;
}
.aiv-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.aiv-step:last-child {
  padding-bottom: 0;
}
.aiv-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  color: #fff;
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,87,231,0.28);
  position: relative;
  z-index: 1;
}
.aiv-step-body h3 {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1f6e;
  margin: 12px 0 8px;
}
.aiv-step-body p {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ── Why AI videos section ── */

/* Rocket flame */
@keyframes aiv-fl1-anim {
  0%,100% { transform: scaleX(1)   scaleY(1);    opacity: 1; }
  50%     { transform: scaleX(1.3) scaleY(0.78); opacity: 0.8; }
}
@keyframes aiv-fl2-anim {
  0%,100% { transform: scaleX(1)   scaleY(1);    opacity: 1; }
  50%     { transform: scaleX(0.7) scaleY(1.25); opacity: 0.7; }
}
/* Coin stack bounce */
@keyframes aiv-coins-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
/* Star pulse ring */
@keyframes aiv-star-ring {
  0%,100% { transform: scale(1);    opacity: 0.1; }
  50%     { transform: scale(0.82); opacity: 0.3; }
}
/* Sparkles fade in/out at different delays */
@keyframes aiv-sparkle {
  0%,100% { opacity: 0; transform: scale(0.4); }
  50%     { opacity: 1; transform: scale(1); }
}
/* Circular arrows spin */
@keyframes aiv-spin-icon {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.aiv-why {
  padding: 80px 0;
  background: #fff;
}
.aiv-why .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.aiv-why-title {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0a1f6e;
  margin: 0 0 14px;
}
.aiv-why-sub {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 52px;
  line-height: 1.6;
}
.aiv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.aiv-why-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 20px 30px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
/* Rotating gradient border */
.aiv-why-card::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 0deg,
    #0057e7 0deg,
    #90c4ff 80deg,
    #ffffff 160deg,
    #90c4ff 240deg,
    #0057e7 360deg
  );
  animation: aiv-spin-grad 4s linear infinite;
  z-index: 0;
}
/* Inner fill */
.aiv-why-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: #f8faff;
  z-index: 1;
}
/* Content above pseudo-elements */
.aiv-why-card > * {
  position: relative;
  z-index: 2;
}
.aiv-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,87,231,0.15);
}
.aiv-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,87,231,0.28);
}
/* SVG icon base */
.aiv-icon-svg {
  width: 36px;
  height: 36px;
  display: block;
}

/* Flame elements — transform-origin must be center bottom */
.aiv-fl1 {
  transform-origin: 28px 50px;
  animation: aiv-fl1-anim 0.7s ease-in-out infinite;
}
.aiv-fl2 {
  transform-origin: 28px 50px;
  animation: aiv-fl2-anim 0.5s ease-in-out infinite;
}

/* Coin stack */
.aiv-coins-g {
  transform-origin: 28px 28px;
  animation: aiv-coins-bounce 1.4s ease-in-out infinite;
}

/* Star ring */
.aiv-star-ring {
  transform-origin: 28px 28px;
  animation: aiv-star-ring 2s ease-in-out infinite;
}
/* Sparkles */
.aiv-sp1 { animation: aiv-sparkle 2s 0s    ease-in-out infinite; transform-origin: 12px 14px; }
.aiv-sp2 { animation: aiv-sparkle 2s 0.5s  ease-in-out infinite; transform-origin: 44px 11px; }
.aiv-sp3 { animation: aiv-sparkle 2s 1s    ease-in-out infinite; transform-origin: 48px 40px; }
.aiv-sp4 { animation: aiv-sparkle 2s 1.5s  ease-in-out infinite; transform-origin: 9px  42px; }

/* Spinning arrows */
.aiv-spin-svg {
  transform-origin: center;
  animation: aiv-spin-icon 2.5s linear infinite;
}
.aiv-why-card h4 {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f6e;
  margin: 0 0 8px;
}
.aiv-why-card p {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA ── */
.aiv-cta {
  padding: 90px 24px;
  background: #fff;
  border-top: 1px solid #eef0f8;
}
.aiv-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.aiv-cta-text {
  flex: 1;
}
.aiv-cta-title {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #0a1f6e;
  margin: 0 0 16px;
  line-height: 1.25;
}
.aiv-cta-sub {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 1.05rem;
  color: #555;
  margin: 0 0 32px;
  line-height: 1.7;
}
.aiv-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* CTA buttons */
/* — Primary: sliding circle button — */
.aiv-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 52px;
  /* RTL: right=start, circle sits on the left (end) */
  padding: 4px 26px 4px 60px;
  border-radius: 100px;
  background: linear-gradient(135deg, #0057e7 0%, #0ea5e9 100%);
  color: #fff;
  font-family: 'Rubik','Assistant',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,87,231,0.38);
  transition: padding 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s;
}
.aiv-btn-label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.aiv-btn-circle {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #0057e7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: left 0.5s cubic-bezier(0.22,1,0.36,1),
              transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.aiv-cta-btn-primary:hover {
  padding: 4px 60px 4px 26px;
  box-shadow: 0 10px 34px rgba(0,87,231,0.5);
}
.aiv-cta-btn-primary:hover .aiv-btn-circle {
  left: calc(100% - 48px);
  transform: translateY(-50%) rotate(45deg);
}

/* WhatsApp – rotating gradient border (same concept as the React GradientButton) */
@keyframes aiv-spin-grad {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.aiv-cta-btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 56px;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s;
}
/* Rotating conic-gradient — fills the whole button, clipped by overflow:hidden */
.aiv-cta-btn-secondary::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 0deg,
    #25d366 0deg,
    #a7f3d0 80deg,
    #ffffff 160deg,
    #a7f3d0 240deg,
    #25d366 360deg
  );
  animation: aiv-spin-grad 3s linear infinite;
  z-index: 0;
}
/* Inner fill — same color as CTA background, creates the "border only" look */
.aiv-cta-btn-secondary::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 46px;
  background: #fff;
  z-index: 1;
  transition: background 0.22s;
}
.aiv-wa-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #128c44;
  font-family: 'Rubik','Assistant',sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.aiv-wa-label i { font-size: 1.2rem; }
.aiv-cta-btn-secondary:hover {
  transform: translateY(-2px);
}
.aiv-cta-btn-secondary:hover::after {
  background: #f0fdf4;
}

/* Perks column */
.aiv-cta-perks {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aiv-cta-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.aiv-cta-perk::before {
  content: ''; position: absolute; width: 300%; height: 300%;
  top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 0deg, #0057e7 0deg, #90c4ff 80deg, #ffffff 160deg, #90c4ff 240deg, #0057e7 360deg);
  animation: aiv-spin-grad 4s linear infinite; z-index: 0;
}
.aiv-cta-perk::after {
  content: ''; position: absolute; inset: 2px;
  border-radius: 14px; background: #fafbff; z-index: 1;
}
.aiv-cta-perk > * { position: relative; z-index: 2; }
.aiv-cta-perk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,87,231,0.1);
}
.aiv-cta-perk-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0057e7, #0284c7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.aiv-cta-perk strong {
  display: block;
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #0a1f6e;
  margin-bottom: 3px;
}
.aiv-cta-perk span {
  font-family: 'Rubik','Assistant',sans-serif;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .aiv-cta-inner {
    flex-direction: column;
    gap: 44px;
  }
  .aiv-cta-perks { flex: none; width: 100%; }
}


/* ── Responsive ── */
@media (max-width: 900px) {
  .aiv-intro-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .aiv-intro-img-wrap {
    max-width: 320px;
  }
  .aiv-services-grid {
    grid-template-columns: 1fr;
  }
  .aiv-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aiv-stats-inner {
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .aiv-hero {
    padding: 80px 16px 50px;
  }
  .aiv-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .aiv-stats-inner {
    gap: 24px;
  }
  .aiv-process-steps::before {
    display: none;
  }
  .aiv-intro-inner {
    padding: 0 16px;
  }
  .aiv-intro-img-badge {
    right: 8px;
    bottom: 8px;
  }
}
