/* =========================
   SERVICES PAGE (updated)
   + Packages/Pricing + FAQ accordion
========================== */

*{ box-sizing:border-box; }
img{ max-width:100%; }

.svc-no-scroll{ overflow:hidden !important; }

/* Layout */
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:28px 16px 90px;
}

/* HERO */
.hero{
  border-radius:26px;
  padding:34px 22px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(1100px 460px at 55% -30%, rgba(99,102,241,.22), transparent 60%),
    radial-gradient(900px 420px at 15% 10%, rgba(236,72,153,.12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
  box-shadow:0 30px 70px rgba(2,6,23,.08);
  position:relative;
  overflow:hidden;
}

.crumbs{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  color:#64748b;
  font-size:13px;
  margin-bottom:10px;
}
.crumbs a{ text-decoration:none; opacity:.9; color:#64748b; }
.crumbs a:hover{ text-decoration:underline; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(99,102,241,.08);
  border:1px solid rgba(99,102,241,.18);
  color:#3730a3;
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(135deg,#6366F1 0%, #4F46F5 100%);
}

.hero h1{
  margin:12px 0 10px;
  font-size:40px;
  line-height:1.1;
  letter-spacing:-0.6px;
}
.hero .grad{
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero .sub{
  margin:0;
  max-width:82ch;
  color:#475569;
  line-height:1.75;
  font-size:15px;
}
.hero-cta{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  transition:.18s ease;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(99,102,241,.18);
}
.btn-primary:hover{ transform:translateY(-1px); filter:brightness(1.03); }
.btn-ghost{
  background:#ffffff;
  border:1px solid rgba(148,163,184,.8);
  color:#111827;
}
.btn-ghost:hover{ transform:translateY(-1px); background:#ffffff; }

/* SECTIONS */
.section{ margin-top:24px; }

.headrow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin:4px 0 12px;
  flex-wrap:wrap;
}
.headrow h2{ margin:0; font-size:22px; letter-spacing:-.2px; }
.muted{
  margin:0;
  color:#64748b;
  font-size:13px;
  line-height:1.6;
  max-width:72ch;
}

/* SERVICE CARDS GRID */
.svc-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.svc{
  border-radius:28px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
  overflow:hidden;
  position:relative;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc:hover{
  transform:translateY(-4px);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
  border-color:rgba(99,102,241,.22);
}

/* IMAGE AREA */
.svc-media{
  position:relative;
  height:190px;
  overflow:hidden;
  background:#e5e7eb;
}
.svc-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
  transform:scale(1.01);
}
.svc-media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,.55) 100%);
  pointer-events:none;
}

/* PLATFORM CHIP */
.svc-chip{
  position:absolute;
  left:14px;
  top:14px;
  z-index:2;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.40);
  backdrop-filter:blur(10px);
  font-weight:900;
  font-size:12px;
  color:#0f172a;
  box-shadow:0 14px 40px rgba(2,6,23,.18);
}

/* BODY */
.svc-body{ padding:14px 16px 16px; }
.svc-top{ display:flex; gap:12px; align-items:flex-start; margin-bottom:8px; }

/* ICON BUBBLE */
.app{
  width:54px;
  height:54px;
  border-radius:18px;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow:0 16px 40px rgba(99,102,241,.14);
}
.app svg{ width:28px; height:28px; display:block; }

.svc-title{ margin:2px 0 4px; font-size:16px; letter-spacing:-.2px; }
.svc-desc{ margin:0; color:#475569; font-size:13px; line-height:1.7; }

/* BULLETS */
.svc-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.svc-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#334155;
  font-size:13px;
  line-height:1.55;
}
.tick{
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  display:grid;
  place-items:center;
  font-weight:950;
  flex:0 0 auto;
  margin-top:2px;
}

/* CARD ACTION STRIP */
.actions{
  margin-top:16px;
  padding:6px;
  border-radius:999px;
  background:#f5f3ff;
  display:flex;
  align-items:center;
  gap:8px;
}
.svc-btn{
  height:40px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  padding-inline:18px;
}
.svc-btn.btn-primary{ flex:1 1 auto; justify-content:center; }
.svc-btn.btn-ghost{
  flex:0 0 auto;
  background:#ffffff;
  border:1px solid rgba(148,163,184,.7);
  color:#111827;
}
.svc-btn.btn-ghost:hover{ background:#ffffff; transform:translateY(-1px); }

/* =========================
   PACKAGES / PRICING
========================== */
.pkg-toggle{
  display:flex;
  gap:8px;
  align-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.18);
  padding:6px;
  border-radius:999px;
}
.pkg-pill{
  height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  transition:.18s ease;
}
.pkg-pill.is-active{
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  color:#fff;
  border-color:transparent;
  box-shadow:0 14px 30px rgba(99,102,241,.18);
}

.pkg-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:10px;
}
.pkg{
  border-radius:28px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
  overflow:hidden;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
}
.pkg-featured{
  border-color:rgba(99,102,241,.22);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
}
.pkg-top h3{
  margin:6px 0 6px;
  font-size:18px;
  letter-spacing:-.2px;
}
.pkg-tag{
  display:inline-flex;
  width:fit-content;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.08);
  font-weight:900;
  font-size:12px;
}
.pkg-tag-hot{
  background:linear-gradient(135deg, rgba(85,80,244,.14), rgba(232,73,151,.14));
  border:1px solid rgba(99,102,241,.20);
}
.pkg-price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:6px 0 0;
}
.pkg-price strong{
  font-size:30px;
  letter-spacing:-.6px;
}
.pkg-price span{
  color:#64748b;
  font-weight:800;
  font-size:13px;
}
.pkg-price.is-hidden{ display:none; }

.pkg-sub{
  margin:8px 0 0;
  color:#475569;
  font-size:13px;
  line-height:1.7;
}
.pkg-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.pkg-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#334155;
  font-size:13px;
  line-height:1.55;
}
.pkg-list li span{
  width:18px;
  height:18px;
  border-radius:8px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  display:grid;
  place-items:center;
  font-weight:950;
  flex:0 0 auto;
  margin-top:2px;
}
.pkg-actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pkg-actions .btn{
  height:42px;
  font-size:13px;
  font-weight:900;
  padding:0 16px;
}
.pkg-note{
  margin-top:14px;
  border-radius:22px;
  padding:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 30px rgba(2,6,23,.05);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.pkg-note strong{ color:#0f172a; }
.pkg-note span{ color:#64748b; font-size:13px; }

/* =========================
   FAQ ACCORDION
========================== */
.faq{
  margin-top:10px;
  display:grid;
  gap:10px;
}
.faq-item{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 30px rgba(2,6,23,.05);
  overflow:hidden;
}
.faq-q{
  width:100%;
  border:0;
  background:transparent;
  padding:14px 14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-align:left;
  font-weight:950;
  color:#0f172a;
  font-size:14px;
}
.faq-q:hover{ background:rgba(99,102,241,.06); }
.faq-ico{
  width:36px;
  height:36px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
}
.faq-a{
  padding:0 14px 14px;
}
.faq-a p{
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.75;
}

/* PROCESS GRID */
.process{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-top:10px;
}
.step{
  border-radius:22px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 30px rgba(2,6,23,.05);
  padding:14px;
  position:relative;
  overflow:hidden;
}
.step:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(560px 160px at 20% 0%, rgba(99,102,241,.10), transparent 55%);
  opacity:.55;
  pointer-events:none;
}
.step strong{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  letter-spacing:-.1px;
}
.num{
  width:34px;
  height:34px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
}
.step p{
  position:relative;
  margin:8px 0 0;
  color:#475569;
  font-size:13px;
  line-height:1.7;
}

/* CTA BAND */
.cta{
  margin-top:24px;
  border-radius:24px;
  padding:22px;
  color:#ffffff;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(99,102,241,.28), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(236,72,153,.22), transparent 55%),
    linear-gradient(135deg, #0f172a, #020617);
  box-shadow:0 40px 90px rgba(2,6,23,.35);
  border:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta h2{ margin:0 0 6px; font-size:22px; letter-spacing:-.2px; }
.cta p{ margin:0; color:rgba(229,231,235,.92); line-height:1.7; font-size:14px; max-width:70ch; }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* FOOTER NOTE */
.fine{ margin-top:12px; color:#64748b; font-size:13px; line-height:1.7; }

/* =========================
   BIG MODAL (popup)
========================== */
.svc-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.svc-modal-backdrop.active{ display:flex; }

.svc-modal{
  width:100%;
  max-width:980px;
  background:#ffffff;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.55);
  box-shadow:0 28px 80px rgba(2,6,23,.55);
  overflow:hidden;
  transform:translateY(6px);
  animation: svcPop .18s ease forwards;
}
@keyframes svcPop{ to { transform:translateY(0); } }

.svc-modal-hero{
  position:relative;
  height:220px;
  overflow:hidden;
  background:#0b1220;
}
.svc-modal-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
}
.svc-modal-heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,6,23,.15), rgba(2,6,23,.78));
}
.svc-modal-heroContent{
  position:absolute;
  left:18px;
  right:64px;
  bottom:16px;
  color:#fff;
}
.svc-modal-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-weight:900;
  font-size:12px;
  width:fit-content;
}
.svc-modal-heroContent h3{
  margin:10px 0 4px;
  font-size:22px;
  letter-spacing:-.2px;
}
.svc-modal-tagline{
  margin:0;
  font-size:14px;
  color:rgba(229,231,235,.92);
  line-height:1.55;
}
.svc-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(2,6,23,.35);
  color:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}
.svc-modal-close:hover{ filter:brightness(1.06); }

.svc-modal-scroll{
  max-height: calc(90vh - 220px);
  overflow:auto;
}
.svc-modal-body{
  padding:16px 18px 18px;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,.95fr);
  gap:16px;
}
.svc-modal-body-lg{ padding:18px 18px 18px; }

.svc-block{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.96);
  border-radius:18px;
  padding:14px;
  box-shadow:0 14px 30px rgba(2,6,23,.05);
}
.svc-block + .svc-block{ margin-top:12px; }

.svc-block h4{
  margin:0 0 10px;
  font-size:14px;
  color:#0f172a;
  letter-spacing:.2px;
}
.svc-mutedP{
  margin:8px 0 0;
  color:#64748b;
  font-size:13px;
  line-height:1.75;
}

.svc-grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.svc-cardMini{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:12px;
}
.svc-cardMini strong{ display:block; color:#0f172a; font-size:13px; }
.svc-cardMini span{ display:block; margin-top:4px; color:#64748b; font-size:12.5px; line-height:1.6; }

.svc-steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.svc-steps li{ display:flex; gap:10px; align-items:flex-start; }
.svc-steps .n{
  width:28px;height:28px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(99,102,241,.10);
  border:1px solid rgba(99,102,241,.22);
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
}
.svc-steps strong{ display:block; font-size:13px; color:#0f172a; }
.svc-steps span{ display:block; font-size:12.5px; color:#64748b; margin-top:2px; line-height:1.55; }

.svc-timeline{ display:grid; gap:10px; }
.svc-timeline .t{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:12px;
}
.svc-timeline strong{ display:block; font-size:13px; color:#0f172a; }
.svc-timeline span{ display:block; margin-top:4px; color:#64748b; font-size:12.5px; line-height:1.6; }

.svc-sideCard{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.96);
  border-radius:18px;
  padding:14px;
  box-shadow:0 14px 30px rgba(2,6,23,.05);
}
.svc-sideCard + .svc-sideCard{ margin-top:12px; }

.svc-checkList{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:9px;
}
.svc-checkList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#334155;
  font-size:13px;
  line-height:1.55;
}
.svc-checkList li span{
  width:18px;height:18px;
  border-radius:8px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  display:grid;
  place-items:center;
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
  margin-top:2px;
}

.svc-sideNote{
  margin-top:12px;
  border-radius:18px;
  padding:14px;
  color:#fff;
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  box-shadow:0 18px 45px rgba(99,102,241,.22);
}
.svc-sideNote strong{ display:block; font-size:14px; }
.svc-sideNote span{ display:block; margin-top:4px; opacity:.92; font-size:13px; }

.svc-bulletsBig{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.svc-bulletsBig li{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:16px;
  padding:12px;
}
.svc-bulletsBig strong{ display:block; font-size:13px; color:#0f172a; }
.svc-bulletsBig span{ display:block; margin-top:4px; color:#64748b; font-size:12.5px; line-height:1.6; }

.svc-block-media{ overflow:hidden; }
.svc-mediaRow{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:12px;
  align-items:center;
}
.svc-inline-img{
  width:160px;
  height:120px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
}
.svc-pillList{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:8px;
  color:#334155;
  font-size:13px;
}

.svc-modal-footer{
  padding:12px 18px 16px;
  border-top:1px solid rgba(226,232,240,1);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  background:#fff;
}
.svc-modal-price{ font-size:13px; color:#64748b; }
.svc-modal-price strong{ color:#111827; }
.svc-modal-actions{ display:flex; gap:8px; flex-wrap:wrap; }
.svc-modal-actions .btn{ height:40px; font-size:13px; font-weight:800; }

/* RESPONSIVE */
@media (max-width: 980px){
  .hero h1{ font-size:32px; }
  .svc-grid{ grid-template-columns:1fr; }
  .pkg-grid{ grid-template-columns:1fr; }
  .process{ grid-template-columns:1fr 1fr; }
  .svc-grid2{ grid-template-columns:1fr; }
}

@media (max-width: 760px){
  .svc-modal-body{ grid-template-columns:1fr; }
  .svc-mediaRow{ grid-template-columns:1fr; }
  .svc-inline-img{ width:100%; height:180px; }
}

@media (max-width: 520px){
  .hero{ padding:28px 16px; }
  .process{ grid-template-columns:1fr; }
}