@charset "utf-8";
@import url('aos.css');
@import url('portfolio.css');

/* =========================================
   BASE / RESETS
   ========================================= */
body { background-color: #fff; }

/* Section spacing */
.sec       { padding: 80px 0; }
.sec-sm    { padding: 28px 0; }
.sec-lg    { padding: 100px 0; }

/* =========================================
   SECTION LABEL — pill chip above headings
   yo-gigs uses small colored pill above H2
   ========================================= */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--siteColor);
  background: rgba(27,101,255,0.08);
  border: 1px solid rgba(27,101,255,0.18);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.section-label--purple {
  color: var(--siteHoverColor);
  background: rgba(95,39,255,0.08);
  border-color: rgba(95,39,255,0.18);
}
.section-label--green {
  color: #059669;
  background: rgba(5,150,105,0.08);
  border-color: rgba(5,150,105,0.18);
}

/* Section heading + sub-text pattern */
.sec-head { margin-bottom: 48px; }
.sec-head .section-label { display: block; margin-bottom: 10px; }
.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.28;
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 580px;
}
.sec-head.centered { text-align: center; }
.sec-head.centered p { margin-left: auto; margin-right: auto; }

/* Standalone sec-title / sec-desc — used outside .sec-head */
.sec-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.28;
  margin-bottom: 16px;
}
.sec-desc {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* =========================================
   HERO BANNER — dark gradient, yo-gigs feel
   ========================================= */
.hero-banner {
  background: linear-gradient(135deg, #04102e 0%, #0d2260 45%, #1a0a4a 100%);
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  color: #fff;
}

/* subtle circle glow */
.hero-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(95,39,255,0.18) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,101,255,0.12) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-content { padding-bottom: 3rem; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,0.1);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px #4ade80;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-ctas .btn-site {
  padding: 13px 28px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(27,101,255,0.35);
  transition: all 0.25s ease;
}
.hero-ctas .btn-site:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,101,255,0.45);
}
.hero-ctas .btn-hero-outline {
  padding: 13px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.95rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  transition: all 0.25s ease;
}
.hero-ctas .btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: #60a5fa; font-size: 0.9rem; }

.hero-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-img {
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}
.stat-item { padding: 10px 16px; text-align: center; }
.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 575.98px) {
  .stat-item:nth-child(2) { border-right: none; }
}

/* =========================================
   CLIENTS STRIP
   ========================================= */
.clients-strip {
  background: #f9fafb;
  border-top: 1px solid #f0f1f5;
  border-bottom: 1px solid #f0f1f5;
  padding: 24px 0 0;
  overflow: hidden;
}
.clients-label {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 20px;
  font-weight: 500;
}
.clients-label strong { color: #111827; }

/* Marquee wrapper — clips overflow, fades edges */
.logo-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f9fafb, transparent);
}
.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f9fafb, transparent);
}

/* Marquee row — infinite scroll animation */
.logo-marquee {
  display: flex;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}
.logo-marquee:hover { animation-play-state: paused; }

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track {
  display: flex;
  align-items: center;
}

.logo-item {
  flex-shrink: 0;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f0f1f5;
}
.logo-item img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}
.logo-item:hover img { filter: grayscale(0%) opacity(1); }

/* =========================================
   ABOUT / VIDEO SECTION
   ========================================= */
.about-bfs { background: #fff; }

/* ---- Click-to-play video thumbnail ---- */
.vidbox { position: relative; }
.vidbox-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(27,101,255,0.15);
  aspect-ratio: 16 / 9;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.vidbox-thumb:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(27,101,255,0.25); }
.vidbox-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.32s ease;
}
.vidbox-thumb:hover img { transform: scale(1.04); filter: brightness(0.85); }

/* Dark gradient overlay */
.vidbox-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* Play button — center, animated */
.vidbox-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 62px;
  border-radius: 18px;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.vidbox-play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.4);
  animation: vidPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes vidPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}
.vidbox-thumb:hover .vidbox-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ff0000;
}
.vidbox-play svg { width: 54px; height: 38px; }
.vidbox-thumb:hover .vidbox-play svg path:first-child { fill: #ff0000; }

/* Duration / label badge */
.vidbox-duration {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.vidbox-duration i { color: #ff5252; font-size: 0.78rem; }

/* Meta below thumbnail */
.vidbox-meta {
  margin-top: 18px;
  text-align: center;
}
.vidbox-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.vidbox-title i { color: #ff0000; margin-right: 6px; }
.vidbox-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vidbox-stats span {
  font-size: 0.78rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vidbox-stats i { color: var(--siteColor); font-size: 0.72rem; }

/* ---- YouTube modal — bulletproof reset ---- */
/* Kill Bootstrap's white modal wrapper but keep iframe black */
.yt-modal {
  padding: 0 !important;
  background: none !important;
  background-color: transparent !important;
  --bs-modal-bg: transparent !important;
  --bs-modal-border-color: transparent !important;
}
.yt-modal .modal-content,
.yt-modal .modal-dialog,
.yt-modal .modal-body,
.yt-modal .modal-header,
.yt-modal .modal-footer {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.yt-modal .modal-dialog,
.yt-modal-dialog {
  max-width: 940px !important;
  width: calc(100% - 32px) !important;
  margin: 1.75rem auto !important;
  padding: 0 !important;
  pointer-events: none;
}
.yt-modal .modal-content {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  pointer-events: auto;
  position: relative;
}
/* The actual video frame */
.yt-modal .yt-frame-wrap,
.yt-frame-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #000 !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6) !important;
}
/* Fallback for browsers without aspect-ratio (older Safari) */
@supports not (aspect-ratio: 16/9) {
  .yt-frame-wrap { padding-bottom: 56.25%; height: 0 !important; }
}
.yt-modal .yt-frame-wrap iframe,
.yt-frame-wrap iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  background: #000 !important;
}
/* Close button — INSIDE the frame's top-right */
.yt-modal .yt-close,
.yt-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.7) !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 100 !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: background 0.22s, transform 0.22s !important;
  backdrop-filter: blur(6px);
}
.yt-modal .yt-close:hover,
.yt-close:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  transform: rotate(90deg) !important;
}
.yt-close svg { width: 22px !important; height: 22px !important; display: block; }

/* Cinematic dark backdrop */
.modal-backdrop.show { opacity: 0.9 !important; background: #000 !important; }
.yt-modal.show { z-index: 1080 !important; }

/* =========================================
   YO-GIGS STYLE CARD HOVER
   Universal lift effect for all cards
   ========================================= */
.yg-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8eaf0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.yg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(27,101,255,0.1);
  border-color: #c7d2fe;
}

/* =========================================
   WHY CHOOSE US — modern split heading
   + gradient-reveal hover cards
   ========================================= */
.why-choose { background: #f4f6fb; }

/* ---- Split two-column header ---- */
.wc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 52px;
}
.wc-header-left .section-label { margin-bottom: 12px; }
.wc-heading {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  letter-spacing: -0.4px;
  margin: 0;
}
.wc-heading-accent {
  background: linear-gradient(90deg, var(--siteColor), var(--siteHoverColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wc-header-right p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 0;
}
.wc-header-right .btn-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}

/* ---- Card base ---- */
.wc-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 36px 28px 32px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}

/* Gradient overlay — hidden until hover */
.wc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gc-start), var(--gc-end));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Glowing bottom shadow on hover — matches card's gradient color */
.wc-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: linear-gradient(135deg, var(--gc-start), var(--gc-end));
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.35s ease, bottom 0.35s ease;
  z-index: 0;
}

/* All children above the overlays */
.wc-card > * { position: relative; z-index: 1; }

/* ---- Hover: lift + gradient in + glow ---- */
.wc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
  border-color: transparent;
}
.wc-card:hover::before { opacity: 1; }
.wc-card:hover::after  { opacity: 0.55; bottom: -30px; }

/* ---- Number badge (top-right corner) ---- */
.wc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
  transition: color 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.wc-card:hover .wc-num { color: rgba(255,255,255,0.12); }

/* ---- Icon box ---- */
.wc-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gc-start), var(--gc-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.32s ease;
}
.wc-card:hover .wc-icon-box {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.5);
}

/* ---- Title & text ---- */
.wc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.wc-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.68;
  margin: 0;
  flex: 1;
  transition: color 0.25s ease;
}
.wc-card:hover h3 { color: #fff; }
.wc-card:hover p  { color: rgba(255,255,255,0.82); }

/* ---- Arrow indicator (bottom-right, appears on hover) ---- */
.wc-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  margin-top: 22px;
  align-self: flex-end;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.wc-card:hover .wc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .wc-header { grid-template-columns: 1fr; gap: 20px; }
  .wc-header-right .btn-site { margin-top: 8px; }
}
@media (max-width: 575.98px) {
  .wc-card { padding: 28px 20px 24px; }
  .wc-heading { font-size: 1.55rem; }
}

/* =========================================
   MOBILE APP SECTION — dark premium layout
   ========================================= */
.mapp-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #04102e 0%, #0d2260 50%, #1a0a4a 100%);
  overflow: hidden;
  color: #fff;
}

/* Background glow circles */
.mapp-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mapp-glow--1 {
  width: 500px; height: 500px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(27,101,255,0.18) 0%, transparent 70%);
}
.mapp-glow--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(95,39,255,0.2) 0%, transparent 70%);
}

/* Section label light variant */
.section-label--light {
  color: #93c5fd;
  background: rgba(147,197,253,0.1);
  border-color: rgba(147,197,253,0.25);
}

/* Content column */
.mapp-content { position: relative; z-index: 2; padding-bottom: 2rem; }

.mapp-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin: 14px 0 18px;
}
.mapp-title em {
  font-style: normal;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mapp-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}

/* Feature pill badges */
.mapp-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.mapp-feat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.mapp-feat:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.mapp-feat i { font-size: 0.75rem; color: #60a5fa; }

/* Store buttons */
.mapp-stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.mapp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(6px);
}
.mapp-store-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  transform: translateY(-2px);
}
.mapp-store-icon {
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}
.mapp-store-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  margin-bottom: 2px;
}
.mapp-store-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Book demo button override for dark section */
.mapp-section .btn-white {
  background: #fff;
  color: var(--siteColor);
  font-weight: 700;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  border: none;
}
.mapp-section .btn-white:hover {
  background: #f0f4ff;
  color: var(--siteColor);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* =========================================
   PHONE COLUMN — 3-phone depth layout
   ========================================= */
.mapp-phone-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

/* Outer trio wrapper — sets the stage */
.mapp-trio-wrap {
  position: relative;
  width: 520px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central glow orb */
.mapp-phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,101,255,0.5) 0%, transparent 68%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

/* ---- Shared phone frame base ---- */
.mapp-frame,
.mapp-side-phone {
  border-radius: 36px;
  background: #0c0c1e;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: absolute;
  overflow: hidden;
}

/* ---- CENTER phone — largest, straight ---- */
.mapp-frame--center {
  width: 240px;
  height: 500px;
  border-radius: 36px;
  padding: 14px;
  z-index: 4;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.65),
    0 0 0 1.5px rgba(255,255,255,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  animation: phoneFloat 4s ease-in-out infinite;
}

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

/* Notch inside center phone */
.mapp-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 18px;
  background: #0c0c1e;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 5;
}
.mapp-camera {
  width: 7px; height: 7px;
  background: #1a1a30;
  border-radius: 50%;
  border: 1.5px solid #252540;
}
.mapp-speaker {
  width: 30px; height: 3px;
  background: #1a1a30;
  border-radius: 2px;
}

.mapp-screen {
  width: 100%; height: 100%;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Carousel inside center phone */
.mapp-img-container {
  width: 100%;
  height: calc(100% - 34px);
  overflow: hidden;
  position: relative;
}
.mapp-img-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  /* width & slide widths set by JS dynamically */
}
.mapp-slide {
  height: 100%;
  flex-shrink: 0;
}
.mapp-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots bar */
.mapp-dots-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.mapp-dots { display: flex; gap: 6px; }
.mapp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.mapp-dot.active {
  background: #fff;
  width: 16px;
  border-radius: 3px;
}

.mapp-chin {
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* ---- SIDE phones — smaller, tilted, blurred ---- */
.mapp-side-phone {
  width: 170px;
  height: 360px;
  border-radius: 28px;
  padding: 10px;
  z-index: 2;
  opacity: 0.72;
  filter: blur(1.5px);
  overflow: hidden;
}
.mapp-side-phone--left {
  left: 0;
  transform: rotate(-10deg) translateY(30px);
  transform-origin: bottom center;
}
.mapp-side-phone--right {
  right: 0;
  transform: rotate(10deg) translateY(30px);
  transform-origin: bottom center;
}
.mapp-side-notch {
  height: 14px;
  background: #111128;
  border-radius: 0 0 10px 10px;
  width: 80px;
  margin: 0 auto 4px;
}
.mapp-side-screen {
  width: 100%;
  height: calc(100% - 18px);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.mapp-side-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mapp-side-chin {
  width: 60px; height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin: 4px auto 0;
}

/* ---- Floating badges ---- */
.mapp-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  animation: floatBadge 3.6s ease-in-out infinite;
}
.mapp-badge i { font-size: 0.95rem; }
.mapp-badge--platforms { top: 8%; left: -10px; animation-delay: 0s; }
.mapp-badge--rating    { bottom: 12%; right: -10px; animation-delay: 1.8s; }

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

/* ---- Carousel controls — below trio ---- */
.mapp-controls {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.mapp-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.22s ease, transform 0.22s ease;
}
.mapp-arrow:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .mapp-section   { padding: 70px 0; }
  .mapp-phone-col { margin-top: 60px; }
  .mapp-badge     { display: none; }
  .mapp-trio-wrap { width: 420px; height: 540px; }
  .mapp-frame--center { width: 210px; height: 440px; }
  .mapp-side-phone { width: 140px; height: 300px; }
}
@media (max-width: 575.98px) {
  .mapp-trio-wrap { width: 320px; height: 460px; }
  .mapp-frame--center { width: 180px; height: 380px; }
  .mapp-side-phone { width: 115px; height: 240px; }
  .mapp-stores    { flex-direction: column; }
  .mapp-title     { font-size: 1.55rem; }
  .mapp-controls  { bottom: -48px; }
}

/* =========================================
   PRIMARY FEATURES — horizontal card layout
   Distinct from Why Choose: no gradient flood,
   no numbered badges, left accent-bar hover
   ========================================= */
.pfeatures-section {
  background: #fff;
  border-top: 1px solid #f0f1f5;
}

/* ---- Divider-rule heading (centered, NOT 2-col split) ---- */
.pf-head {
  margin-bottom: 44px;
}

/* ─── PRIMARY FEATURES ─── rule */
.pf-rule-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.pf-rule-label::before,
.pf-rule-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(27,101,255,0.4));
}
.pf-rule-label::after {
  background: linear-gradient(to left, transparent, rgba(27,101,255,0.4));
}
.pf-rule-label span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--siteColor);
  white-space: nowrap;
}

.pf-heading {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.24;
  letter-spacing: -0.3px;
  margin: 0 auto 14px;
  max-width: 640px;
}

.pf-subtext {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 24px;
}

/* Inline stat/meta chips row */
.pf-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pf-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px 14px;
  transition: background 0.2s, border-color 0.2s;
}
.pf-meta-chip i { color: var(--siteColor); font-size: 0.75rem; }
.pf-meta-chip:hover { background: #eff6ff; border-color: #bfdbfe; }

/* ---- Horizontal feature card ---- */
.pf-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--pf-bg, #eff6ff);  /* always visible, light tint */
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  position: relative;
  transition:
    border-left-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}
.pf-card:hover {
  border-left-color: var(--pf-color, var(--siteColor));  /* full accent on hover */
  background: color-mix(in srgb, var(--pf-bg, #eff6ff) 40%, #fff);
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

/* color-mix fallback */
@supports not (color: color-mix(in srgb, red, blue)) {
  .pf-card:hover { background: #f8faff; }
}

/* Round colored icon circle — works for both <i> FA icons and <img> */
.pf-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pf-bg, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
  color: var(--pf-color, var(--siteColor));
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s ease,
              box-shadow 0.25s ease;
}
.pf-card:hover .pf-icon {
  transform: scale(1.12) rotate(8deg);
  background: var(--pf-color, var(--siteColor));
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Text body */
.pf-body { flex: 1; min-width: 0; }
.pf-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.pf-card:hover .pf-body h3 { color: var(--pf-color, var(--siteColor)); }
.pf-body p {
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* Arrow — slides in from right on hover */
.pf-arrow {
  align-self: center;
  font-size: 0.82rem;
  color: var(--pf-color, var(--siteColor));
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  flex-shrink: 0;
}
.pf-card:hover .pf-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* color-mix fallback for older browsers */
@supports not (color: color-mix(in srgb, red, blue)) {
  .pf-card:hover { background: #f8faff; }
}

/* =========================================
   SALIENT FEATURES — inside pfeatures-section
   Compact 3-col tiles, distinct from pf-cards
   ========================================= */

/* ── divider between primary & salient groups ── */
.sf-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 44px 0 32px;
}
.sf-divider::before,
.sf-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.sf-divider span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
  padding: 4px 12px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
}

/* ── Salient tile card ── */
.sf-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fafbff;
  border: 1px solid #eef0f8;
  border-radius: 12px;
  padding: 18px 16px;
  height: 100%;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.sf-tile:hover {
  background: #fff;
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(27,101,255,0.07);
}

/* Icon box */
.sf-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.sf-tile:hover .sf-tile-icon { background: #dbeafe; }
.sf-tile-icon img { width: 26px; height: 26px; object-fit: contain; }
.sf-tile-icon i  { font-size: 1rem; color: var(--siteColor); }

/* Text */
.sf-tile-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.3;
}
.sf-tile-body p {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pf-header { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 575.98px) {
  .pf-card   { padding: 18px 16px; gap: 14px; }
  .pf-icon   { width: 46px; height: 46px; }
  .pf-heading { font-size: 1.5rem; }
}

/* =========================================
   CORE FEATURES (secondary section)
   ========================================= */
.cfeatures-section { background: #f7f9fc; }

/* Reusable feat-card for core features grid */
.feat-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: 28px 22px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(27,101,255,0.09);
  border-color: #c7d2fe;
}
.feat-card--outline { background: #fafbff; }
.feat-card--outline:hover { background: #fff; }

.feat-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feat-icon-wrap--sm { width: 50px; height: 50px; border-radius: 12px; margin-bottom: 14px; }
.feat-card h3 { font-size: 0.98rem; font-weight: 700; color: #111827; margin-bottom: 8px; line-height: 1.3; }
.feat-card p  { font-size: 0.86rem; color: #6b7280; line-height: 1.65; margin: 0; flex: 1; }

/* Legacy class fallbacks */
.features { background: #f7f9fc; }
.features.angleBG { background: #f7f9fc; }
.sFeatures.features.angleBG { background: #fff; }

/* =========================================
   PRICING — yo-gigs 3-tier pricing
   ========================================= */
.pricing-section { background: #fff; }

.refund-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: left;
  line-height: 1.5;
}
.refund-notice i { color: #22c55e; flex-shrink: 0; margin-top: 2px; }

/* Pricing card wrapper — equal height */
.pricing-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

/* Tier header band — colored top area */
.pricing-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid #f0f1f5;
  background: #f9fafb;
}
.pricing-card--popular .pricing-header {
  background: linear-gradient(135deg, #1b65ff 0%, #5f27ff 100%);
  color: #fff;
  border-bottom-color: transparent;
}
.pricing-card--enterprise .pricing-header {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%);
  color: #fff;
  border-bottom-color: transparent;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--siteColor);
  margin-bottom: 4px;
}
.pricing-card--popular .pricing-tier,
.pricing-card--enterprise .pricing-tier {
  color: rgba(255,255,255,0.75);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
.pricing-card--popular .pricing-name,
.pricing-card--enterprise .pricing-name {
  color: #fff;
}

/* Strikethrough on price strong > del */
.pricing-price strong del {
  text-decoration: line-through;
  text-decoration-color: #f87171;
  text-decoration-thickness: 2.5px;
  opacity: 0.75;
}
.pricing-card--popular .pricing-price strong del,
.pricing-card--enterprise .pricing-price strong del {
  text-decoration-color: rgba(255,120,120,0.9);
  opacity: 0.8;
}

.pricing-price strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-card--popular .pricing-price strong,
.pricing-card--enterprise .pricing-price strong {
  color: #fff;
}
.pricing-price span {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 4px;
  display: block;
}
.pricing-card--popular .pricing-price span,
.pricing-card--enterprise .pricing-price span {
  color: rgba(255,255,255,0.65);
}

/* Popular badge */
.popular-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

/* Pricing body */
.pricing-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
  color: #22c55e;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  font-size: 0.8rem;
  color: #6b7280;
  font-style: italic;
  background: #eff6ff;
  border-left: 3px solid var(--siteColor);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* Pricing CTA button */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-pricing--outline {
  border: 1.5px solid #e5e7eb;
  color: #374151;
  background: transparent;
}
.btn-pricing--outline:hover {
  border-color: var(--siteColor);
  color: var(--siteColor);
  background: rgba(27,101,255,0.04);
}
.btn-pricing--primary {
  background: linear-gradient(135deg, #1b65ff 0%, #5f27ff 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(27,101,255,0.3);
}
.btn-pricing--primary:hover {
  color: #fff;
  box-shadow: 0 10px 28px rgba(27,101,255,0.45);
  transform: translateY(-2px);
}
.btn-pricing--dark {
  background: #111827;
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-pricing--dark:hover {
  background: #1e293b;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* =========================================
   MONETIZATION STREAMS — dark premium section
   ========================================= */
.rev-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2051 0%, #1a3a8f 55%, #1e1060 100%);
  overflow: hidden;
}

/* Background glow orbs */
.rev-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.rev-glow--1 {
  width: 450px; height: 450px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(27,101,255,0.15) 0%, transparent 70%);
}
.rev-glow--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(95,39,255,0.18) 0%, transparent 70%);
}

/* ---- Heading ---- */
.rev-head {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}
.rev-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,0.1);
  border: 1px solid rgba(147,197,253,0.2);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.rev-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.rev-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Revenue card ---- */
.rev-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 36px 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1),
              box-shadow 0.32s ease,
              border-color 0.32s ease,
              background 0.32s ease;
}
.rev-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Colored top accent bar */
.rev-card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rc, #1b65ff);
  border-radius: 18px 18px 0 0;
  opacity: 0.8;
  transition: opacity 0.28s ease, height 0.28s ease;
}
.rev-card:hover .rev-card-top {
  opacity: 1;
  height: 5px;
}

/* Large centered icon circle */
.rev-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
  transition: background 0.28s ease,
              transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease;
}
.rev-card:hover .rev-icon-wrap {
  background: var(--rc, #1b65ff);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: transparent;
}

/* Background watermark number */
.rev-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
  pointer-events: none;
  transition: color 0.28s ease;
}
.rev-card:hover .rev-num { color: rgba(255,255,255,0.07); }

/* Card text */
.rev-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.rev-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Revenue type badge — bottom of card */
.rev-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 6px 14px;
  margin-top: 18px;
  align-self: flex-start;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.rev-card:hover .rev-tag {
  background: var(--rc, #1b65ff);
  border-color: transparent;
}

/* Responsive */
@media (max-width: 991.98px) {
  .rev-section { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .rev-card { padding: 28px 20px 24px; }
  .rev-title { font-size: 1.6rem; }
}

/* =========================================
   TESTIMONIALS — no image, no position
   Clean card: quote icon + message + name only
   ========================================= */
/* =========================================
   TESTIMONIALS — redesigned, no heading
   ========================================= */
.testi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f7f0ff 100%);
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,101,255,0.07), transparent 70%);
  pointer-events: none;
}

/* ---- Testimonial card ---- */
.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27,101,255,0.08);
  box-shadow: 0 4px 24px rgba(27,101,255,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,101,255,0.13);
}

/* 5 stars */
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testi-stars i {
  font-size: 0.85rem;
  color: #fbbf24;
}

/* Quote text */
.testi-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.78;
  font-style: normal;
  margin: 0 0 24px;
  flex: 1;
  border: none;
  padding: 0;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #f0f1f5;
  margin-top: auto;
}

/* Avatar initials circle */
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--siteColor), var(--siteHoverColor));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.testi-info span {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Large background quote icon */
.testi-quote-bg {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 5rem;
  color: rgba(27,101,255,0.05);
  line-height: 1;
  pointer-events: none;
}

/* Carousel equal-height */
.testi-section .carousel-testimonial .owl-stage { display: flex; }
.testi-section .carousel-testimonial .owl-item  { display: flex; height: auto; }
.testi-section .carousel-testimonial .owl-item .item { display: flex; flex: 1; }
.testi-section .carousel-testimonial .owl-item .item .testi-card { flex: 1; }
.testi-section .carousel-testimonial .item { padding: 16px 0; }
.testi-section .owl-dots { display: flex; justify-content: center; margin-top: 8px; }
.testi-section .owl-dots .owl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 4px;
  transition: all 0.25s;
}
.testi-section .owl-dots .owl-dot.active {
  background: var(--siteColor);
  width: 22px;
  border-radius: 4px;
}

/* =========================================
   TRUST BLOCK — badges + review platforms
   ========================================= */
.trust-block {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  position: relative;
  overflow: hidden;
}
.trust-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 70%);
  pointer-events: none;
}
.trust-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 70%);
  pointer-events: none;
}

.trust-block .container { position: relative; z-index: 2; }

/* ---- Top: 4 trust badges row ---- */
.trust-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: end;
  margin-bottom: 36px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s cubic-bezier(0.34,1.4,0.64,1);
}
.trust-badge:hover { transform: translateY(-6px); }
.trust-badge:hover .trust-badge-label { color: #92400e; }

/* Image badge wrapper — keeps all 4 images aligned at the same height */
.tb-img-wrap {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tb-img-wrap img {
  width: 100px;
  height: 100px;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
  transition: filter 0.28s ease;
}
.trust-badge:hover .tb-img-wrap img {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

.trust-badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #78350f;
  text-align: center;
  letter-spacing: 0.2px;
  transition: color 0.22s;
}

/* Old CSS-built badge styles removed — using real images now */

/* ---- Divider ---- */
.trust-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0 28px;
}
.trust-divider::before,
.trust-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(120,53,15,0.25));
}
.trust-divider::after {
  background: linear-gradient(to left, transparent, rgba(120,53,15,0.25));
}
.trust-divider span {
  font-size: 0.78rem;
  font-weight: 800;
  color: #78350f;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ---- Review site cards ---- */
.review-sites-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-site {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid rgba(120,53,15,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.review-site:hover {
  transform: translateY(-4px);
  border-color: rgba(120,53,15,0.35);
  box-shadow: 0 14px 30px rgba(120,53,15,0.12);
}

.rs-logo {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.rs-mark { font-size: 0.78rem; line-height: 1; }
.rs-dot  { font-size: 0.6rem; opacity: 0.85; margin-left: 1px; }

/* Per-platform colors */
.rs-logo--clutch    { background: linear-gradient(135deg, #ef4444, #dc2626); flex-direction: column; }
.rs-logo--clutch .rs-mark { font-size: 0.88rem; }
.rs-logo--clutch .rs-dot  { margin-top: 2px; }

.rs-logo--itrate    { background: linear-gradient(135deg, #2563eb, #1d4ed8); flex-direction: column; }
.rs-logo--itrate .rs-mark { font-size: 0.86rem; }
.rs-logo--itrate .rs-dot  { margin-top: 2px; }

.rs-logo--g2        { background: linear-gradient(135deg, #fb923c, #f97316); }
.rs-logo--g2 .rs-g2-circle {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
}
.rs-logo--g2 .rs-g2-circle sup { font-size: 0.9rem; top: -10px; left: -2px; }

.rs-logo--trustpilot { background: linear-gradient(135deg, #059669, #047857); flex-direction: column; gap: 2px; }
.rs-logo--trustpilot i { color: #fff; font-size: 1rem; }
.rs-logo--trustpilot .rs-mark { font-size: 0.62rem; letter-spacing: 0.3px; }

.rs-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rs-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}
.rs-stars {
  font-size: 0.85rem;
  color: #fbbf24;
  letter-spacing: 1.5px;
  line-height: 1;
}
.review-site:hover .rs-name { color: #78350f; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .trust-badges-row,
  .review-sites-row { grid-template-columns: repeat(2, 1fr); }
  .trust-block      { padding: 50px 0; }
}
@media (max-width: 575.98px) {
  .trust-badges-row { gap: 16px; }
  .tb-shield        { width: 120px; height: 140px; }
  .review-site      { padding: 12px 14px; }
  .rs-logo          { width: 46px; height: 46px; }
}

/* =========================================
   HOW TO GET STARTED — yo-gigs card deck slider
   ========================================= */
.gs-section {
  padding: 80px 0 100px;
  background: #f7f9fc;
  overflow: hidden;
}

/* ---- Heading ---- */
.gs-intro { margin-bottom: 44px; }
.gs-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.gs-title span {
  background: linear-gradient(90deg, var(--siteColor), var(--siteHoverColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gs-intro p { font-size: 1rem; color: #6b7280; }

/* ---- Deck wrapper — holds the stacked cards ---- */
.gs-deck-wrap { position: relative; }
.gs-deck {
  position: relative;
  height: 360px;
  margin-bottom: 36px;
}

/* ---- Base card ---- */
.gs-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gc, #1b65ff) 0%, var(--gc2, #5f27ff) 100%);
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity 0.55s ease,
              filter 0.55s ease;
}

/* ---- Active card — front ---- */
.gs-card--active {
  z-index: 4;
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

/* Behind card 1 */
.gs-card--b1 {
  z-index: 3;
  transform: translateX(3.5%) scale(0.97);
  opacity: 1;
  filter: brightness(0.6);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Behind card 2 */
.gs-card--b2 {
  z-index: 2;
  transform: translateX(7%) scale(0.94);
  opacity: 1;
  filter: brightness(0.4);
  box-shadow: none;
}

/* Hidden cards (off to left, invisible) */
.gs-card--hidden {
  z-index: 1;
  transform: translateX(-120%) scale(0.88);
  opacity: 0;
  filter: brightness(0.3);
}

/* ---- Card interior layout ---- */
.gs-card-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 56px;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.gs-card-left { flex: 1; min-width: 0; }
.gs-card-right {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Big step number — top right watermark */
.gs-card-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
  z-index: 1;
  pointer-events: none;
}

/* Small icon above title */
.gs-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
}

.gs-card-left h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.gs-card-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

/* CTA button inside card */
.gs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.22s ease;
  backdrop-filter: blur(4px);
}
.gs-cta-btn:hover { background: rgba(255,255,255,0.32); color: #fff; }

/* ---- Right side visual ---- */
.gs-visual {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large icon circle */
.gs-visual-icon {
  width: 130px;
  height: 130px;
  border-radius: 34px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Dot grid pattern */
.gs-dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  z-index: 1;
  border-radius: 16px;
  opacity: 0.6;
}

/* Floating chip badge */
.gs-float-chip {
  position: absolute;
  bottom: 10px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  z-index: 3;
  white-space: nowrap;
}
.gs-float-chip i { color: var(--gc, #1b65ff); font-size: 0.85rem; }

/* ---- Controls ---- */
.gs-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gs-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  color: #374151;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gs-btn:hover {
  background: var(--siteColor);
  border-color: var(--siteColor);
  color: #fff;
  box-shadow: 0 6px 18px rgba(27,101,255,0.28);
}

.gs-dots-nav { display: flex; gap: 8px; align-items: center; }
.gs-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.gs-dot-btn.active {
  background: var(--siteColor);
  width: 24px;
  border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .gs-deck       { height: 420px; }
  .gs-card-inner { padding: 0 36px; gap: 24px; }
  .gs-card-right { flex: 0 0 200px; }
  .gs-visual     { width: 180px; height: 180px; }
  .gs-visual-icon { width: 100px; height: 100px; font-size: 2.5rem; }
  .gs-float-chip { display: none; }
}
@media (max-width: 767.98px) {
  .gs-deck       { height: auto; min-height: 300px; }
  .gs-card-inner { flex-direction: column; padding: 32px 28px; gap: 20px; text-align: center; }
  .gs-card-right { display: none; }
  .gs-card-left h3 { font-size: 1.25rem; }
  .gs-step-icon  { margin: 0 auto 16px; }
  .gs-card-num   { font-size: 3rem; top: 16px; right: 20px; }
}
@media (max-width: 575.98px) {
  .gs-section    { padding: 60px 0 80px; }
  .gs-card-left p { font-size: 0.88rem; }
}

/* =========================================
   CUSTOM DEVELOPMENT SECTION
   ========================================= */
.cdev-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #f0f1f5;
  overflow: hidden;
}

/* ---- CSS Visual: browser + code mockup ---- */
.cdev-visual {
  position: relative;
  width: 400px;
}

/* Browser window */
.cdev-browser {
  background: #1e1e2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.06);
}
.cdev-browser-bar {
  background: #2a2a3e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cdev-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cdev-dot--red    { background: #ff5f57; }
.cdev-dot--yellow { background: #ffbd2e; }
.cdev-dot--green  { background: #28c840; }
.cdev-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin-left: 8px;
}

/* Code editor body */
.cdev-editor {
  padding: 24px 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 2;
}
.cdev-line { display: block; }
.cdev-indent { padding-left: 20px; }
.cdev-blank { height: 8px; }

/* Syntax colors */
.cdev-kw   { color: #c792ea; }
.cdev-var  { color: #82aaff; }
.cdev-op   { color: #89ddff; }
.cdev-fn   { color: #82aaff; }
.cdev-prop { color: #f07178; }
.cdev-str  { color: #c3e88d; }
.cdev-punc { color: #89ddff; }
.cdev-comment { color: #546e7a; font-style: italic; }

/* Blinking cursor on last line */
.cdev-cursor .cdev-comment::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 14px;
  background: #c3e88d;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Floating stat chips */
.cdev-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: floatChip 3.5s ease-in-out infinite;
}
.cdev-chip i { color: var(--siteColor); }
.cdev-chip--1 { bottom: -18px; left: -20px; animation-delay: 0s; }
.cdev-chip--2 { top: -18px;    right: -20px; animation-delay: 1.2s; }
.cdev-chip--3 { bottom: 60px;  right: -30px; animation-delay: 0.6s; }
@keyframes floatChip {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-7px); }
}

/* ---- Right: Content ---- */
.cdev-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.cdev-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--siteColor), var(--siteHoverColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdev-desc {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Checklist */
.cdev-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cdev-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cdev-check-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--siteColor), var(--siteHoverColor));
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cdev-check-item > div:last-child strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 2px;
}
.cdev-check-item > div:last-child span {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.cdev-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: #9ca3af;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cdev-section { padding: 60px 0; }
  .cdev-chip    { display: none; }
}

/* Legacy custom-dev-list kept for other pages */
.custom-dev-list { list-style:none; padding:0; margin:16px 0 20px; }
.custom-dev-list li { display:flex; align-items:flex-start; gap:10px; padding:6px 0; font-size:0.93rem; color:#374151; }
.custom-dev-list li i { color:var(--siteColor); font-size:0.95rem; flex-shrink:0; margin-top:3px; }

/* =========================================
   FAQ — 2-column layout, redesigned
   ========================================= */
.faq-new-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* ---- LEFT column ---- */
.faq-left {
  position: relative;
  /* align-self keeps it stretchable so sticky has room */
}
.faq-left-inner {
  position: sticky;
  top: 90px;         /* offset below fixed navbar */
  padding-right: 16px;
  /* do NOT set height — let sticky scroll naturally */
}
.faq-main-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.faq-main-desc {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.72;
  margin-bottom: 32px;
}

/* Contact nudge card */
.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.faq-contact-link:hover {
  border-color: var(--siteColor);
  box-shadow: 0 6px 20px rgba(27,101,255,0.1);
  transform: translateY(-2px);
}
.faq-contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--siteColor), var(--siteHoverColor));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-contact-link > div:nth-child(2) { flex: 1; }
.faq-contact-link strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.faq-contact-link span {
  font-size: 0.78rem;
  color: #9ca3af;
}
.faq-contact-arrow { color: #9ca3af; font-size: 0.85rem; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.faq-contact-link:hover .faq-contact-arrow { color: var(--siteColor); transform: translateX(3px); }

/* Decorative circle */
.faq-deco-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,101,255,0.06), transparent 70%);
  position: absolute;
  bottom: -40px; left: -40px;
  pointer-events: none;
}

/* ---- RIGHT column: accordion rows ---- */
.faq-right { }
.faq-list  { display: flex; flex-direction: column; gap: 10px; }

.faq-row {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-row:has(.faq-q:not(.collapsed)) {
  border-color: var(--siteColor);
  box-shadow: 0 4px 20px rgba(27,101,255,0.09);
}

/* Question button */
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:not(.collapsed) { background: #f8faff; }
.faq-q:focus { outline: none; }

/* Icon circle per question */
.faq-q-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--siteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s;
}
.faq-q:not(.collapsed) .faq-q-icon {
  background: var(--siteColor);
  color: #fff;
}

/* Question text */
.faq-q-text {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:not(.collapsed) .faq-q-text { color: var(--siteColor); }

/* Chevron — rotates when open */
.faq-toggle {
  color: #9ca3af;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.28s ease, color 0.2s;
}
.faq-q:not(.collapsed) .faq-toggle {
  transform: rotate(180deg);
  color: var(--siteColor);
}

/* Answer body */
.faq-a {
  padding: 0 20px 20px 70px; /* aligned with text, not icon */
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 991.98px) {
  .faq-new-section { padding: 60px 0; }
  .faq-left-inner  { position: static; padding-right: 0; margin-bottom: 36px; }
  .faq-deco-circle { display: none; }
  .faq-a           { padding-left: 20px; }
}

/* =========================================
   CTA SECTIONS — dark gradient banner
   ========================================= */
.ctasection {
  background: url(../banner/ctabanner.webp) center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.ctasection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,16,46,0.88), rgba(95,39,255,0.75));
}
.ctasection .container { position: relative; z-index: 1; }
.ctasection h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.ctasection p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.btn-white {
  background: #fff;
  color: var(--siteColor);
  font-weight: 700;
  border-radius: 8px;
  padding: 13px 28px;
  transition: all 0.25s ease;
  border: none;
}
.btn-white:hover {
  background: #f0f4ff;
  color: var(--siteColor);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 28px;
  transition: all 0.25s ease;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* =========================================
   SOLUTION CARDS — existing styles kept
   ========================================= */
.solution .card_list .solutionCard {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.solution .card_list .solutionCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* Navbar home-page overrides handled in header.php inline styles */

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .sec { padding: 60px 0; }
  .hero-banner { padding-top: 80px; }
}
@media (max-width: 767.98px) {
  .sec { padding: 50px 0; }
  .hero-title { font-size: 1.85rem; }
  .stat-item strong { font-size: 1.7rem; }
  .why-card { padding: 28px 20px 22px; }
  .pricing-card { margin-bottom: 0; }
  .revenue-card { flex-direction: column; }
  .revenue-icon { width: 48px; height: 48px; }
}
@media (max-width: 575.98px) {
  .sec { padding: 40px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ===== Pricing - Hero price (Starting at $349 / $699) ===== */
.pricing-price.pricing-price--hero {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; margin-top: 8px;
}
.pricing-card--popular .pricing-price.pricing-price--hero,
.pricing-card--enterprise .pricing-price.pricing-price--hero {
  align-items: flex-start;
}
.pricing-prefix {
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: #64748b;
  display: inline-block;
}
.pricing-card--popular .pricing-prefix,
.pricing-card--enterprise .pricing-prefix {
  color: rgba(255,255,255,0.85);
}
.pricing-amount-row {
  display: flex; align-items: flex-start; line-height: 1;
  gap: 2px; margin: 2px 0;
}
.pricing-currency {
  font-size: 28px; font-weight: 800; color: #0f172a;
  margin-top: 8px; line-height: 1;
}
.pricing-amount {
  font-size: 64px; font-weight: 900; color: #0f172a;
  line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card--popular .pricing-currency,
.pricing-card--popular .pricing-amount {
  color: #fff; -webkit-text-fill-color: #fff; background: none;
}
.pricing-card--enterprise .pricing-currency,
.pricing-card--enterprise .pricing-amount {
  color: #fff; -webkit-text-fill-color: #fff; background: none;
}
.pricing-was {
  font-size: 13px; color: #64748b; font-weight: 500;
  margin-top: 2px;
}
.pricing-was del { opacity: 0.7; margin-right: 6px; }
.pricing-card--popular .pricing-was,
.pricing-card--enterprise .pricing-was { color: rgba(255,255,255,0.78); }
@media (max-width: 575.98px) {
  .pricing-amount { font-size: 52px; }
  .pricing-currency { font-size: 24px; }
}
