.elementor-58 .elementor-element.elementor-element-9e7e965{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-58 .elementor-element.elementor-element-4999db5{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-4999db5.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-f85e86e{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-f85e86e.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-77000a8{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-77000a8.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-2b91b23{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-2b91b23.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-393735f{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-393735f.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-c1b705b{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-c1b705b.elementor-element{--order:99999 /* order end hack */;}.elementor-58 .elementor-element.elementor-element-e2f74b6{--display:flex;--min-height:123px;}body.elementor-page-58:not(.elementor-motion-effects-element-type-background), body.elementor-page-58 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #04080F 0%, #f2295b 100%);}body.elementor-page-58{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-58 .elementor-element.elementor-element-9e7e965{--content-width:100%;}.elementor-58 .elementor-element.elementor-element-e2f74b6{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-4999db5 *//* ═══════════════════════════════════════
   SECTION: FEATURES
   ═══════════════════════════════════════ */

/* ── Base Section ── */
.s-features {
  position: relative;
  padding: 100px 0;
  background: #0b1120;
  overflow: hidden;
}

/* ── Section Wrap ── */
.s-features .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* ── Badge ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #60a5fa;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.section-badge-dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}

/* ── Section Title ── */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title b {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Desc ── */
.section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Feature Card ── */
.feature-card {
  background: rgba(17, 26, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
  animation: cardReveal 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card Hover ── */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(17, 26, 46, 0.9);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(59, 130, 246, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

/* ── Card Glow on Hover ── */
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

/* ── Feature Icon ── */
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* ── Feature Title ── */
.feature-title {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

/* ── Feature Desc ── */
.feature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0;
}

.feature-card:hover .feature-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .s-features {
    padding: 70px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .feature-card {
    padding: 30px 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f85e86e *//* ═══════════════════════════════════════
   SECTION: HOW IT WORKS
   ═══════════════════════════════════════ */

/* ── Base Section ── */
.s-howitworks {
  position: relative;
  padding: 100px 0;
  background: #0a0f1e;
  overflow: hidden;
}

/* ── Subtle BG Pattern ── */
.s-howitworks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Section Wrap ── */
.s-howitworks .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

/* ── Connecting Line Between Steps ── */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(34, 197, 94, 0.3), transparent);
  z-index: 0;
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Step Card ── */
.step-card {
  position: relative;
  z-index: 1;
  background: rgba(17, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 48px 32px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px);
  animation: stepReveal 0.7s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.15s; }
.step-card:nth-child(2) { animation-delay: 0.35s; }
.step-card:nth-child(3) { animation-delay: 0.55s; }

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Step Card Hover ── */
.step-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(17, 26, 46, 0.85);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
              0 0 50px rgba(59, 130, 246, 0.05);
}

/* ── Step Number ── */
.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  letter-spacing: -0.5px;
}

/* ── Number Ring Animation ── */
.step-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.08);
  animation: ringPulse 3s ease-in-out infinite;
}

.step-card:nth-child(2) .step-number::before {
  animation-delay: 0.5s;
}

.step-card:nth-child(3) .step-number::before {
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
    border-color: rgba(59, 130, 246, 0.08);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.2);
  }
}

/* ── Number Hover ── */
.step-card:hover .step-number {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

/* ── Step 2 Green Accent ── */
.step-card:nth-child(2) .step-number {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.15);
}

.step-card:nth-child(2):hover .step-number {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.step-card:nth-child(2) .step-number::before {
  border-color: rgba(34, 197, 94, 0.08);
}

/* ── Step 3 Cyan-Blue Accent ── */
.step-card:nth-child(3) .step-number {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.15);
}

.step-card:nth-child(3):hover .step-number {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.step-card:nth-child(3) .step-number::before {
  border-color: rgba(56, 189, 248, 0.08);
}

/* ── Step Line (decorative) ── */
.step-line {
  width: 40px;
  height: 3px;
  margin: 0 auto 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3b82f6, #22c55e);
  opacity: 0.4;
  transition: all 0.4s ease;
}

.step-card:hover .step-line {
  width: 60px;
  opacity: 1;
}

.step-card:nth-child(2) .step-line {
  background: linear-gradient(90deg, #22c55e, #3b82f6);
}

.step-card:nth-child(3) .step-line {
  background: linear-gradient(90deg, #38bdf8, #3b82f6);
}

/* ── Step Title ── */
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #f0f6ff;
}

/* ── Step Desc ── */
.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin: 0;
  transition: color 0.3s ease;
}

.step-card:hover .step-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Card Bottom Glow ── */
.step-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0 0 20px 20px;
}

.step-card:hover::after {
  opacity: 1;
  left: 10%;
  right: 10%;
}

.step-card:nth-child(2)::after {
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.step-card:nth-child(3)::after {
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step-card {
    padding: 40px 24px 32px;
  }
}

@media (max-width: 768px) {
  .s-howitworks {
    padding: 70px 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 40px auto 0;
  }
  .steps-grid::before {
    display: none;
  }
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
  .step-title {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77000a8 *//* ═══════════════════════════════════════
   SECTION: CHECKLIST PREVIEW
   ═══════════════════════════════════════ */

/* ── Base Section ── */
.s-preview {
  position: relative;
  padding: 100px 0;
  background: #0b1120;
  overflow: hidden;
}

/* ── BG Accent ── */
.s-preview::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  animation: previewGlowFloat 8s ease-in-out infinite;
}

.s-preview::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.04), transparent 70%);
  pointer-events: none;
  animation: previewGlowFloat 8s ease-in-out infinite reverse;
}

@keyframes previewGlowFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-45%) scale(1.15); }
}

/* ── Section Wrap ── */
.s-preview .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Preview Container ── */
.preview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
  text-align: left;
}

/* ═══════════════════════════════════════
   MOCKUP CARD (Left Side)
   ═══════════════════════════════════════ */

.preview-mockup {
  background: rgba(13, 20, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  animation: mockupSlideIn 0.8s ease forwards 0.2s;
}

@keyframes mockupSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Mockup Top Glow ── */
.preview-mockup::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #22c55e, transparent);
  border-radius: 10px;
}

/* ── Mockup Shimmer ── */
.preview-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.03), transparent);
  animation: mockupShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mockupShimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* ── PM Header ── */
.pm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pm-pair {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.pm-session {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.pm-price {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

.pm-change {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  margin-top: 4px;
}

.pm-change.positive {
  color: #22c55e;
}

.pm-change.negative {
  color: #ef4444;
}

/* ── PM Divider ── */
.pm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 24px;
}

/* ── PM Section Label ── */
.pm-section-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 20px 0 12px;
}

.pm-section-label:first-of-type {
  margin-top: 0;
}

/* ── PM Check Row ── */
.pm-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pm-check:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ── Checkbox ── */
.pm-cb {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pm-cb.checked {
  background: rgba(34, 197, 94, 0.15);
  border: 1.5px solid rgba(34, 197, 94, 0.4);
}

.pm-cb.checked::after {
  content: '✓';
  color: #22c55e;
  font-size: 12px;
  font-weight: 700;
}

.pm-cb.unchecked {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* ── TF Tag ── */
.pm-tf-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.08);
  color: rgba(59, 130, 246, 0.7);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ── Score Bar ── */
.pm-score-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  margin-top: 24px;
  overflow: hidden;
}

.pm-score-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #3b82f6, #22c55e);
  width: 0%;
  animation: scoreFill 1.5s ease forwards 1s;
}

@keyframes scoreFill {
  to { width: 71%; }
}

/* ── Score Text ── */
.pm-score-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.pm-score-value {
  font-weight: 700;
  font-size: 18px;
  color: #22c55e;
}

/* ── Verdict ── */
.pm-verdict {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
}

.pm-verdict.caution {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.pm-verdict.go {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.pm-verdict.notrade {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ═══════════════════════════════════════
   FEATURES LIST (Right Side)
   ═══════════════════════════════════════ */

.preview-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(40px);
  animation: featListSlide 0.8s ease forwards 0.5s;
}

@keyframes featListSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── PF Item ── */
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(17, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pf-item:hover {
  border-color: rgba(59, 130, 246, 0.15);
  background: rgba(17, 26, 46, 0.8);
  transform: translateX(6px);
  box-shadow: -4px 0 30px rgba(59, 130, 246, 0.05);
}

/* ── Left Border Glow ── */
.pf-item::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -1px;
  bottom: 20%;
  width: 2px;
  background: #3b82f6;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.4s ease;
}

.pf-item:hover::before {
  opacity: 1;
  top: 10%;
  bottom: 10%;
}

/* ── PF Icon ── */
.pf-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.pf-item:hover .pf-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  transform: scale(1.08);
}

/* ── PF Title ── */
.pf-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

/* ── PF Desc ── */
.pf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin: 0;
}

.pf-item:hover .pf-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .preview-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 50px auto 0;
  }
  .preview-mockup {
    transform: translateX(0);
    transform: translateY(30px);
  }
  @keyframes mockupSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .preview-features {
    transform: translateX(0);
    transform: translateY(30px);
  }
  @keyframes featListSlide {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 640px) {
  .s-preview {
    padding: 70px 0;
  }
  .preview-mockup {
    padding: 22px;
  }
  .pm-pair {
    font-size: 18px;
  }
  .pm-price {
    font-size: 17px;
  }
  .pm-check {
    padding: 8px 10px;
    font-size: 12px;
  }
  .pm-tf-tag {
    font-size: 9px;
    padding: 2px 8px;
  }
  .pf-item {
    padding: 18px;
  }
  .pf-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2b91b23 *//* ═══════════════════════════════════════
   SECTION: TESTIMONIALS
   ═══════════════════════════════════════ */

.s-testimonials {
  position: relative;
  padding: 100px 0;
  background: #0a0f1e;
  overflow: hidden;
}

/* ── BG Glow ── */
.s-testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s-testimonials .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Badge ── */
.s-testimonials .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #60a5fa;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.s-testimonials .section-badge-dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

/* ── Title ── */
.s-testimonials .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.s-testimonials .section-title b {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Desc ── */
.s-testimonials .section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS GRID
   ═══════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: stretch;
}

/* ═══════════════════════════════════════
   TESTIMONIAL CARD
   ═══════════════════════════════════════ */

.testimonial-card {
  background: rgba(17, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* ── Quote Mark BG ── */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.04);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  transition: color 0.4s ease;
}

/* ── Card Hover ── */
.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  background: rgba(17, 26, 46, 0.8);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
  color: rgba(59, 130, 246, 0.08);
}

/* ── Bottom Glow ── */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
  left: 10%;
  right: 10%;
}

/* ═══════════════════════════════════════
   FEATURED CARD (Middle)
   ═══════════════════════════════════════ */

.tc-featured {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.12);
  transform: scale(1.03);
}

.tc-featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
              0 0 40px rgba(59, 130, 246, 0.06);
}

/* ── Featured Top Border ── */
.tc-featured .tc-stars {
  color: #f59e0b;
}

/* ═══════════════════════════════════════
   STARS
   ═══════════════════════════════════════ */

.tc-stars {
  font-size: 16px;
  color: rgba(245, 158, 11, 0.7);
  letter-spacing: 3px;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .tc-stars {
  color: #f59e0b;
}

.tc-featured .tc-stars {
  color: #f59e0b;
}

/* ═══════════════════════════════════════
   TEXT
   ═══════════════════════════════════════ */

.tc-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 0 0 28px;
  flex-grow: 1;
  font-style: italic;
  transition: color 0.3s ease;
}

.testimonial-card:hover .tc-text {
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════════
   AUTHOR
   ═══════════════════════════════════════ */

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Avatar ── */
.tc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 197, 94, 0.15));
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover .tc-avatar {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.12);
  transform: scale(1.06);
}

/* ── 2nd card avatar green ── */
.tc-featured .tc-avatar {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(59, 130, 246, 0.15));
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.tc-featured:hover .tc-avatar {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.12);
}

/* ── Name ── */
.tc-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

/* ── Role ── */
.tc-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

.testimonial-card:hover .tc-role {
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .tc-featured {
    transform: scale(1);
  }
  .tc-featured:hover {
    transform: translateY(-6px);
  }
  .s-testimonials .section-title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .s-testimonials {
    padding: 70px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 440px;
    margin: 40px auto 0;
  }
  .s-testimonials .section-title {
    font-size: 28px;
  }
  .s-testimonials .section-desc {
    font-size: 15px;
  }
  .testimonial-card {
    padding: 28px 22px;
  }
  .tc-text {
    font-size: 14px;
  }
  .tc-avatar {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-393735f *//* ═══════════════════════════════════════
   SECTION: PRICING
   ═══════════════════════════════════════ */

.s-pricing {
  position: relative;
  padding: 100px 0;
  background: #0b1120;
  overflow: hidden;
}

/* ── BG Glow ── */
.s-pricing::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s-pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.03), transparent 70%);
  pointer-events: none;
}

.s-pricing .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Badge ── */
.s-pricing .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #60a5fa;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.s-pricing .section-badge-dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pricingDotPulse 2s ease-in-out infinite;
}

@keyframes pricingDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ── Title ── */
.s-pricing .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.s-pricing .section-title b {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Desc ── */
.s-pricing .section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PRICING GRID
   ═══════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: stretch;
}

/* ═══════════════════════════════════════
   PRICING CARD — BASE
   ═══════════════════════════════════════ */

.pricing-card {
  position: relative;
  background: rgba(17, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* ── Card Hover ── */
.pricing-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  background: rgba(17, 26, 46, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* ── Bottom Glow Line ── */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 30%;
  right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.pricing-card:hover::after {
  opacity: 1;
  left: 10%;
  right: 10%;
}

/* ═══════════════════════════════════════
   FEATURED CARD (Pro)
   ═══════════════════════════════════════ */

.pc-featured {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.15);
  transform: scale(1.04);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
              0 0 40px rgba(59, 130, 246, 0.04);
}

.pc-featured:hover {
  transform: scale(1.04) translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35),
              0 0 60px rgba(59, 130, 246, 0.06);
}

/* ── Featured Top Glow ── */
.pc-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #22c55e, transparent);
  opacity: 1;
}

.pc-featured::after {
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

/* ═══════════════════════════════════════
   POPULAR BADGE
   ═══════════════════════════════════════ */

.pc-popular-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ═══════════════════════════════════════
   CARD HEADER
   ═══════════════════════════════════════ */

.pc-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Plan Name ── */
.pc-plan {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pc-featured .pc-plan {
  color: #60a5fa;
}

/* ── Price ── */
.pc-price {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.pc-price span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 2px;
}

.pc-featured .pc-price {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-featured .pc-price span {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.35);
}

.pricing-card:hover .pc-price {
  transform: scale(1.05);
}

/* ── Tagline ── */
.pc-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ═══════════════════════════════════════
   FEATURES LIST
   ═══════════════════════════════════════ */

.pc-features {
  flex-grow: 1;
  margin-bottom: 32px;
  text-align: left;
}

.pc-feat {
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-feat:last-child {
  border-bottom: none;
}

.pricing-card:hover .pc-feat {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Dimmed (Unavailable) ── */
.pc-feat.dim {
  color: rgba(255, 255, 255, 0.2);
}

.pricing-card:hover .pc-feat.dim {
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

/* ── Secondary Button ── */
.pc-btn-secondary {
  display: block;
  padding: 16px 28px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pc-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.06), transparent);
  transition: left 0.5s ease;
}

.pc-btn-secondary:hover::before {
  left: 100%;
}

.pc-btn-secondary:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* ── Primary Button ── */
.pc-btn-primary {
  display: block;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.pc-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(59, 130, 246, 0.4);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pc-featured {
    transform: scale(1);
  }
  .pc-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .s-pricing {
    padding: 70px 0;
  }
  .s-pricing .section-title {
    font-size: 32px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }
  .pc-price {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .s-pricing {
    padding: 50px 0;
  }
  .s-pricing .section-title {
    font-size: 26px;
  }
  .pricing-card {
    padding: 32px 24px 28px;
    border-radius: 18px;
  }
  .pc-price {
    font-size: 38px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c1b705b *//* ═══════════════════════════════════════
   SECTION: FINAL CTA
   ═══════════════════════════════════════ */

.s-cta {
  position: relative;
  padding: 120px 0;
  background: #0b1120;
  overflow: hidden;
  text-align: center;
}

/* ── Background Glows ── */
.cta-glow1 {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: ctaGlow1 6s ease-in-out infinite;
}

.cta-glow2 {
  position: absolute;
  bottom: 10%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: ctaGlow2 8s ease-in-out infinite;
}

@keyframes ctaGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
}

@keyframes ctaGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-20px, 15px) scale(1.15); opacity: 0.9; }
}

/* ── Section Wrap ── */
.s-cta .section-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Title ── */
.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.cta-title b {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   CTA BUTTONS
   ═══════════════════════════════════════ */

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ── Primary Button ── */
.cta-btn-primary {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.45);
}

/* ── Secondary Button ── */
.cta-btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.06), transparent);
  transition: left 0.5s ease;
}

.cta-btn-secondary:hover::before {
  left: 100%;
}

.cta-btn-secondary:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* ═══════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════ */

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-trust span:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .s-cta {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 34px;
  }
  .cta-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .cta-btns {
    flex-direction: column;
    gap: 12px;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .s-cta {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-desc {
    font-size: 15px;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
  }
}/* End custom CSS */