@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@200;300;400;500;600;700;800;900&display=swap');

/* ============================================================
   OJI AGENCY – NEW DESIGN SYSTEM
   Complete Redesign – Same Brand Colors
   ============================================================ */

:root {
  /* Brand – New Gradient Identity */
  --brand-dark:   #3B0D4F;
  --brand:        #6A1B9A;
  --brand-light:  #A64AC9;
  --brand-glow:   rgba(166, 74, 201, 0.4);
  --brand-gradient: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);

  /* Background (transparent surfaces over animated gradient) */
  --bg:           #0a0414;
  --bg-2:         #14082a;
  --surface:      rgba(255,255,255,0.05);
  --surface-2:    rgba(255,255,255,0.08);

  /* Text */
  --text:         #ffffff;
  --text-muted:   #b4a0c8;
  --text-subtle:  #7a6490;

  /* Border */
  --border:       rgba(166,74,201,0.22);
  --border-mid:   rgba(166,74,201,0.42);
  --border-hi:    rgba(166,74,201,0.7);

  /* Utility */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-full:100px;
  --font:  'Alexandria', sans-serif;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --glow:  0 0 50px rgba(168,85,212,0.25);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
  position: relative;
}

/* Animated gradient backdrop – new brand identity */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #3B0D4F 0%, #6A1B9A 50%, #A64AC9 100%);
  background-size: 220% 220%;
  animation: brand-gradient-shift 18s ease-in-out infinite;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(166,74,201,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(59,13,79,0.55) 0%, transparent 60%),
    rgba(8,3,20,0.55);
  pointer-events: none;
  animation: brand-aurora-drift 22s ease-in-out infinite alternate;
}
@keyframes brand-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes brand-aurora-drift {
  0%   { transform: scale(1) translate(0,0); opacity: 1; }
  100% { transform: scale(1.08) translate(-2%, 2%); opacity: 0.85; }
}

img { max-width:100%; height:auto; }
a, button { cursor: none; font-family: var(--font); }

/* ── Selection & Scrollbar ── */
::selection { background:var(--brand-light); color:#fff; }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--brand-dark); border-radius:99px; }
::-webkit-scrollbar-thumb:hover { background:var(--brand-light); }

/* ============================================================
   ANIMATED BACKGROUND CANVAS
   ============================================================ */
#oji-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Keep old class as alias for backwards compat */
.bg-gradient-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(168,0,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 90% 110%, rgba(126,60,131,0.2) 0%, transparent 55%);
  animation: aurora 12s ease-in-out infinite alternate;
}

.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(166,74,201,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 90% 110%, rgba(59,13,79,0.28) 0%, transparent 55%);
  animation: aurora 12s ease-in-out infinite alternate;
}

@keyframes aurora {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(3deg); }
}

/* ── Custom Cursor ── */
.cursor-dot {
  width:8px; height:8px;
  background:var(--brand-light);
  border-radius:50%;
  position:fixed; top:0; left:0;
  pointer-events:none; z-index:99999;
  transform:translate(-50%,-50%);
  box-shadow:0 0 12px var(--brand-light);
  transition:width .2s, height .2s, opacity .2s;
  will-change:transform;
}
.cursor-ring {
  width:36px; height:36px;
  border:1.5px solid var(--brand-light);
  border-radius:50%;
  position:fixed; top:0; left:0;
  pointer-events:none; z-index:99998;
  transform:translate(-50%,-50%);
  transition:width .3s, height .3s, border-color .3s, background .3s;
  will-change:transform;
}
body.cursor-hover .cursor-dot { width:0; height:0; opacity:0; }
body.cursor-hover .cursor-ring {
  width:60px; height:60px;
  background:rgba(168,85,212,0.12);
  border-color:var(--brand-light);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-weight:800;
  line-height:1.2;
  letter-spacing:-0.02em;
}
p, li { color:var(--text-muted); }

.grad-text {
  background: linear-gradient(135deg, #fff 0%, #A855D4 45%, #c026d3 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.section-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--brand-light);
  background:rgba(168,85,212,0.1);
  border:1px solid var(--border-mid);
  padding:.4rem 1.2rem;
  border-radius:var(--r-full);
  margin-bottom:1.2rem;
}
.section-eyebrow::before {
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background:var(--brand-light);
  animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;} 50%{opacity:.3;}
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.page-wrapper {
  position:relative;
  z-index:1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  padding:0 5%;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(20,8,42,0.55);
  backdrop-filter:blur(24px) saturate(140%);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  border-bottom:none;
  transition:all .4s ease;
}

.main-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(168,85,212,0.6) 30%, rgba(192,38,211,0.8) 50%, rgba(168,85,212,0.6) 70%, transparent 100%);
}

.main-nav.scrolled {
  background:rgba(15,5,32,0.78);
  box-shadow:0 4px 30px rgba(59,13,79,0.5);
}

.nav-logo img {
  height:38px;
  object-fit:contain;
  transition:transform .3s;
}
.nav-logo:hover img { transform:scale(1.06); }

.nav-menu {
  display:flex;
  align-items:center;
  gap:2rem;
  list-style:none;
}

.nav-menu a {
  text-decoration:none;
  color:var(--text-muted);
  font-weight:500;
  font-size:.9rem;
  transition:color .3s;
  white-space:nowrap;
  position:relative;
}
.nav-menu a::after {
  content:'';
  position:absolute;
  bottom:-4px; right:0;
  width:0; height:2px;
  background:var(--brand-light);
  transition:width .3s;
  border-radius:99px;
}
.nav-menu a:hover,
.nav-menu a.active { color:#fff; }
.nav-menu a:hover::after,
.nav-menu a.active::after { width:100%; }

/* Dropdown */
.nav-menu .dropdown { position:relative; }
.nav-menu .dropdown > a { display:flex; align-items:center; gap:5px; }

.dropdown-panel {
  position:absolute;
  top:calc(100% + 14px);
  right:-10px;
  min-width:240px;
  background:rgba(13,6,32,0.97);
  border:1px solid var(--border-mid);
  border-radius:var(--r-md);
  padding:.6rem;
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  transition:all .3s ease;
  box-shadow:var(--shadow);
  backdrop-filter:blur(20px);
}
.nav-menu .dropdown:hover .dropdown-panel {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown-panel a {
  display:flex; align-items:center; gap:10px;
  padding:.75rem 1rem;
  border-radius:var(--r-sm);
  color:var(--text-muted) !important;
  font-size:.88rem;
  transition:all .25s;
}
.dropdown-panel a::after { display:none !important; }
.dropdown-panel a:hover {
  background:rgba(168,85,212,0.1);
  color:#fff !important;
  padding-right:1.5rem;
}

/* Nav CTA */
.nav-cta {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:.55rem 1.4rem;
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  background-size: 200% 200%;
  animation: nav-cta-grad 5s ease infinite;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.88rem;
  border-radius:var(--r-full);
  border:1px solid var(--brand-light);
  transition:all .3s;
  white-space:nowrap;
  box-shadow: 0 4px 18px rgba(166,74,201,0.35);
}
@keyframes nav-cta-grad {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.nav-cta:hover {
  box-shadow:0 8px 26px rgba(166,74,201,0.55);
  transform:translateY(-2px);
}

/* Hamburger */
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:transparent;
  border:none;
  padding:6px;
  z-index:10;
}
.hamburger span {
  display:block;
  width:24px; height:2px;
  background:#fff;
  border-radius:99px;
  transition:all .3s ease;
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE SIDEBAR
   ============================================================ */
.mobile-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(6px);
  z-index:950;
  opacity:0; visibility:hidden;
  transition:all .4s;
}
.mobile-overlay.open { opacity:1; visibility:visible; }

.mobile-sidebar {
  position:fixed;
  top:0; right:-320px;
  width:300px; height:100vh;
  background:rgba(8,4,20,0.98);
  backdrop-filter:blur(30px);
  border-left:1px solid var(--border-mid);
  z-index:960;
  display:flex; flex-direction:column;
  padding:80px 28px 40px;
  transition:right .4s cubic-bezier(0.77,0,0.175,1);
  overflow-y:auto;
}
.mobile-sidebar.open { right:0; }

.sidebar-close {
  position:absolute; top:22px; left:20px;
  background:transparent; border:none;
  color:#fff; font-size:1.8rem;
  transition:all .3s; line-height:1;
  padding:4px 10px;
}
.sidebar-close:hover { color:var(--brand-light); transform:rotate(90deg); }

.sidebar-logo {
  margin-bottom:2rem;
}
.sidebar-logo img { height:34px; }

.sidebar-links {
  display:flex; flex-direction:column; gap:4px;
  flex:1;
}

.sidebar-links a {
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 1rem;
  color:var(--text-muted);
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  border-radius:var(--r-sm);
  transition:all .25s;
}
.sidebar-links a:hover,
.sidebar-links a.active {
  background:rgba(168,85,212,0.1);
  color:#fff;
  padding-right:1.4rem;
}

.sidebar-sub {
  padding-right:1rem;
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
}
.sidebar-sub.open { max-height:400px; }
.sidebar-sub a {
  font-size:.88rem;
  padding:.6rem .8rem;
  color:var(--text-subtle);
}
.sidebar-sub a:hover { color:var(--brand-light); }

.sidebar-toggle { font-size:.75rem; opacity:.6; }

.sidebar-footer {
  margin-top:2rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}

.sidebar-cta {
  display:block;
  text-align:center;
  padding:1rem;
  background:linear-gradient(135deg, var(--brand), var(--brand-light));
  color:#fff;
  text-decoration:none;
  border-radius:var(--r-full);
  font-weight:700;
  font-size:1rem;
  box-shadow:var(--glow);
  transition:all .3s;
}
.sidebar-cta:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(168,85,212,0.4); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height:100vh;
  display:flex; align-items:center;
  padding:100px 5% 60px;
  position:relative;
  overflow:hidden;
}

.hero-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  max-width:1180px;
  margin:0 auto;
  width:100%;
}

.hero-label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(168,85,212,0.1);
  border:1px solid var(--border-mid);
  border-radius:var(--r-full);
  padding:.4rem 1.2rem;
  font-size:.78rem;
  font-weight:700;
  color:var(--brand-light);
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:1.5rem;
}
.hero-label span.dot {
  width:6px; height:6px;
  background:#4ade80;
  border-radius:50%;
  box-shadow:0 0 8px rgba(74,222,128,0.7);
  animation:pulse-dot 2s infinite;
}

.hero-title {
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:900;
  line-height:1.1;
  margin-bottom:1.4rem;
  letter-spacing:-0.03em;
}

.hero-desc {
  font-size:1.05rem;
  color:var(--text-muted);
  max-width:480px;
  margin-bottom:2.5rem;
  line-height:1.8;
}

.hero-actions {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:3.5rem;
}

.hero-metrics {
  display:flex;
  gap:2rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}
.metric-val {
  font-size:1.8rem;
  font-weight:900;
  color:#fff;
  line-height:1;
  margin-bottom:.2rem;
}
.metric-label { font-size:.78rem; color:var(--text-subtle); font-weight:500; }

/* Hero visual side */
.hero-visual {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
}

.hero-blob {
  position:absolute;
  width:420px; height:420px;
  background:radial-gradient(circle, rgba(126,60,131,0.3) 0%, transparent 70%);
  border-radius:50%;
  filter:blur(60px);
  animation:blob-float 8s ease-in-out infinite alternate;
}
@keyframes blob-float {
  0%   { transform:scale(1) translate(0,0); }
  100% { transform:scale(1.1) translate(-20px,20px); }
}

.hero-card-stack {
  position:relative;
  z-index:2;
}

.hero-main-img {
  width:230px;
  filter:drop-shadow(0 20px 60px rgba(168,85,212,0.5));
  animation:float-img 7s ease-in-out infinite alternate;
}
@keyframes float-img {
  0%   { transform:translateY(0) rotate(-2deg); }
  100% { transform:translateY(-18px) rotate(2deg); }
}

.hero-float-card {
  position:absolute;
  background:rgba(13,6,32,0.9);
  backdrop-filter:blur(20px);
  border:1px solid var(--border-mid);
  border-radius:var(--r-md);
  padding:.9rem 1.2rem;
  display:flex;
  align-items:center;
  gap:.9rem;
  min-width:180px;
  box-shadow:var(--shadow);
  animation:float-sub 5s ease-in-out infinite alternate;
}
.hero-float-card:nth-child(2) { animation-delay:1.5s; }
.hero-float-card .fc-icon {
  width:38px; height:38px;
  background:var(--brand);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.hero-float-card .fc-title {
  font-size:.78rem; font-weight:800; color:#fff; display:block;
}
.hero-float-card .fc-sub {
  font-size:.68rem; color:var(--text-subtle); display:block;
}
.card-top    { top:0;   right:-40px; }
.card-bottom { bottom:20px; left:-40px; animation-direction:alternate-reverse; }

@keyframes float-sub {
  0%   { transform:translateY(0); }
  100% { transform:translateY(-12px); }
}

/* ── Centered Hero Layout ── */
.hero-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title-xl {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}

.hero-glow-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(168,85,212,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding:90px 5%;
  position:relative;
  z-index:1;
}

.section-head {
  text-align:center;
  max-width:640px;
  margin:0 auto 3.5rem;
}

.section-title {
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:900;
  margin-bottom:.8rem;
  color:#fff;
}

.section-desc {
  font-size:1rem;
  color:var(--text-muted);
  line-height:1.8;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background:rgba(126,60,131,0.06);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:50px 5%;
  position:relative;
  z-index:1;
}

.stats-bar-inner {
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  text-align:center;
}

.stat-item {
  padding:1.5rem 1rem;
}
.stat-item .stat-num {
  font-size:2.6rem;
  font-weight:900;
  color:#fff;
  line-height:1;
  margin-bottom:.4rem;
}
.stat-item .stat-label {
  font-size:.85rem;
  color:var(--text-muted);
  font-weight:500;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
  max-width:1180px;
  margin:0 auto;
}

.svc-card {
  background: #0a0614;
  border: none;
  border-radius:var(--r-lg);
  padding:2.2rem 2rem;
  transition:all .4s ease;
  position:relative;
  overflow:visible;
}
.svc-card::before {
  content:'';
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #7E3C83, #A855D4, transparent, transparent);
  z-index: -1;
  opacity: 0.4;
  transition: opacity 0.4s;
}
.svc-card:hover {
  background: #0d0820;
  transform:translateY(-6px);
  box-shadow:var(--glow);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon-wrap {
  width:54px; height:54px;
  background:rgba(168,85,212,0.12);
  border:1px solid var(--border-mid);
  border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  margin-bottom:1.4rem;
  transition:all .3s;
}
.svc-card:hover .svc-icon-wrap {
  background:rgba(168,85,212,0.25);
  transform:scale(1.08);
}

.svc-card h3 {
  font-size:1.1rem;
  font-weight:800;
  color:#fff;
  margin-bottom:.6rem;
}
.svc-card p { font-size:.88rem; margin-bottom:1.2rem; }
.svc-card .svc-link {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.82rem; font-weight:700;
  color:var(--brand-light);
  text-decoration:none;
  transition:gap .3s;
}
.svc-card:hover .svc-link { gap:10px; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-section {
  padding:90px 5%;
  position:relative; z-index:1;
}

.packages-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
  align-items:start;
}

.pkg-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  display:flex; flex-direction:column;
  position:relative;
  transition:all .4s ease;
}

.pkg-card:hover {
  border-color:var(--border-mid);
  transform:translateY(-5px);
}

.pkg-card.featured {
  background:linear-gradient(145deg, rgba(126,60,131,0.25), rgba(93,43,99,0.15));
  border:1px solid var(--brand);
  transform:scale(1.03);
  box-shadow:var(--glow);
}
.pkg-card.featured:hover {
  transform:scale(1.03) translateY(-5px);
}

.pkg-top-bar {
  position:absolute; top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg,var(--brand),var(--brand-light));
  border-radius:var(--r-lg) var(--r-lg) 0 0;
  opacity:0;
  transition:opacity .3s;
}
.pkg-card:hover .pkg-top-bar { opacity:1; }
.pkg-card.featured .pkg-top-bar { opacity:1; }

.pkg-badge {
  display:inline-block;
  padding:.3rem .9rem;
  background:var(--brand);
  color:#fff;
  border-radius:var(--r-full);
  font-size:.72rem;
  font-weight:800;
  margin-bottom:1rem;
  letter-spacing:.04em;
}
.pkg-badge.hot {
  background:linear-gradient(135deg,var(--brand),var(--brand-light));
  animation:badge-pulse 2s infinite;
}
@keyframes badge-pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(168,85,212,.6); }
  50%      { box-shadow:0 0 0 8px rgba(168,85,212,0); }
}

.pkg-name {
  font-size:1.3rem;
  font-weight:900;
  color:#fff;
  margin-bottom:.3rem;
  line-height:1.2;
}

.pkg-sub {
  font-size:.8rem;
  color:var(--brand-light);
  font-weight:600;
  margin-bottom:1rem;
}

.pkg-price-box {
  padding:1.2rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:1.5rem;
}
.pkg-old { text-decoration:line-through; color:var(--text-subtle); font-size:.9rem; }
.pkg-new {
  font-size:2.4rem;
  font-weight:900;
  color:#fff;
  line-height:1.1;
}
.pkg-new small {
  font-size:.85rem;
  color:var(--text-muted);
  font-weight:400;
}

.pkg-features {
  list-style:none;
  flex:1;
  margin-bottom:2rem;
}
.pkg-features li {
  display:flex; align-items:flex-start; gap:.7rem;
  padding:.55rem 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
  font-size:.85rem;
  color:var(--text-muted);
  line-height:1.5;
}
.pkg-features li:last-child { border-bottom:none; }
.pkg-features li::before {
  content:'';
  width:16px; height:16px;
  background:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23A855D4' stroke-opacity='.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23A855D4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink:0;
  margin-top:2px;
}
.pkg-features li.bold-feat {
  font-weight:700; color:#fff;
}
.pkg-features li small {
  display:block;
  font-size:.72rem;
  color:var(--text-subtle);
  margin-top:2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:.85rem 2.2rem;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  border-radius:var(--r-full);
  border:1px solid var(--brand-light);
  transition:all .3s;
}
.btn-primary:hover {
  background:var(--brand-light);
  transform:translateY(-3px);
  box-shadow:0 8px 30px rgba(168,85,212,0.4);
}

.btn-ghost {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:.85rem 2.2rem;
  background:transparent;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:.95rem;
  border-radius:var(--r-full);
  border:1px solid rgba(255,255,255,0.25);
  transition:all .3s;
}
.btn-ghost:hover {
  border-color:var(--brand-light);
  color:var(--brand-light);
  background:rgba(168,85,212,0.08);
}

.btn-outline-pkg {
  display:block;
  width:100%;
  text-align:center;
  padding:.9rem;
  background:transparent;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.9rem;
  border-radius:var(--r-md);
  border:1px solid var(--border-mid);
  transition:all .3s;
}
.btn-outline-pkg:hover {
  background:var(--brand);
  border-color:var(--brand-light);
}

.btn-fill-pkg {
  display:block;
  width:100%;
  text-align:center;
  padding:.9rem;
  background:linear-gradient(135deg,var(--brand),var(--brand-light));
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.9rem;
  border-radius:var(--r-md);
  transition:all .3s;
}
.btn-fill-pkg:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(168,85,212,0.4);
}

/* ============================================================
   WHY CHOOSE US – FEATURE STRIP
   ============================================================ */
.features-strip {
  background:rgba(126,60,131,0.05);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:80px 5%;
  position:relative; z-index:1;
}

.features-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
}

.feature-card {
  background:transparent;
  padding:2rem 1.5rem;
  border-radius:var(--r-lg);
  border:1px solid transparent;
  transition:all .4s;
  text-align:center;
}
.feature-card:hover {
  background:var(--surface);
  border-color:var(--border);
}
.feature-icon {
  width:60px; height:60px;
  background:rgba(168,85,212,0.12);
  border:1px solid var(--border-mid);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  margin:0 auto 1.3rem;
}
.feature-card h3 {
  font-size:1.1rem; font-weight:800; color:#fff;
  margin-bottom:.6rem;
}
.feature-card p { font-size:.87rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
}

.testi-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:2rem;
  transition:all .4s;
  position:relative;
}
.testi-card::before {
  content:'\201C';
  position:absolute;
  top:.8rem; right:1.5rem;
  font-size:5rem;
  color:var(--brand);
  opacity:.15;
  font-family:serif;
  line-height:1;
}
.testi-card:hover {
  border-color:var(--border-mid);
  transform:translateY(-5px);
  box-shadow:var(--glow);
}

.testi-stars {
  color:#fbbf24;
  font-size:1rem;
  letter-spacing:2px;
  margin-bottom:1rem;
}

.testi-text {
  font-size:.92rem;
  color:var(--text-muted);
  line-height:1.9;
  margin-bottom:1.5rem;
}

.testi-author {
  display:flex; align-items:center; gap:.9rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,0.06);
}
.testi-avatar {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--brand);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1rem; color:#fff;
  flex-shrink:0;
}
.testi-name { font-weight:800; color:#fff; font-size:.9rem; display:block; }
.testi-role { font-size:.75rem; color:var(--text-subtle); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding:80px 5%;
  position:relative; z-index:1;
}

.cta-box {
  background:linear-gradient(135deg, rgba(126,60,131,0.2), rgba(93,43,99,0.12));
  border:1px solid var(--brand);
  border-radius:var(--r-xl);
  padding:5rem 2rem;
  text-align:center;
  max-width:900px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
}
.cta-box::before {
  content:'';
  position:absolute;
  top:-60%; left:50%;
  transform:translateX(-50%);
  width:600px; height:400px;
  background:radial-gradient(ellipse, rgba(168,85,212,0.15), transparent 70%);
  pointer-events:none;
}

.cta-box h2 {
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:900; color:#fff;
  margin-bottom:1rem;
}
.cta-box p {
  font-size:1.05rem; margin-bottom:2.5rem;
  max-width:560px; margin-left:auto; margin-right:auto;
}
.cta-box .btn-primary {
  font-size:1.05rem; padding:1rem 3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:var(--bg-2);
  border-top:1px solid var(--border);
  padding:60px 5% 0;
  position:relative; z-index:1;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:3rem;
  max-width:1100px;
  margin:0 auto 3rem;
}

.footer-brand-col img { height:40px; margin-bottom:1rem; }
.footer-brand-col p { font-size:.88rem; max-width:280px; }

.footer-col h4 {
  color:#fff; font-size:.9rem; font-weight:800;
  margin-bottom:1.2rem;
  padding-bottom:.7rem;
  border-bottom:1px solid var(--border);
}

.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.6rem; }
.footer-col ul li a {
  color:var(--text-muted);
  text-decoration:none;
  font-size:.85rem;
  transition:color .3s;
}
.footer-col ul li a:hover { color:var(--brand-light); }

.footer-social {
  display:flex; gap:.8rem; margin-top:1.4rem;
}
.social-btn {
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  text-decoration:none;
  transition:all .3s;
}
.social-btn:hover {
  background:var(--brand);
  border-color:var(--brand-light);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 5px 15px rgba(168,85,212,0.35);
}

.footer-bottom {
  border-top:1px solid var(--border);
  padding:1.2rem 0;
  max-width:1100px;
  margin:0 auto;
  display:flex; justify-content:center; align-items:center;
}
.footer-bottom p { font-size:.8rem; color:var(--text-subtle); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding:140px 5% 70px;
  text-align:center;
  position:relative; z-index:1;
  border-bottom:1px solid var(--border);
  background:rgba(126,60,131,0.04);
}

.page-hero h1 {
  font-size:clamp(2.2rem,4.5vw,3.5rem);
  font-weight:900; color:#fff;
  margin-bottom:1rem;
}
.page-hero p {
  font-size:1.05rem;
  max-width:580px;
  margin:0 auto 1.5rem;
  color:var(--text-muted);
}

.page-hero .breadcrumb {
  display:flex; align-items:center; gap:.6rem; justify-content:center;
  font-size:.8rem; color:var(--text-subtle); margin-bottom:1.5rem;
}
.page-hero .breadcrumb a {
  color:var(--text-subtle); text-decoration:none; transition:color .3s;
}
.page-hero .breadcrumb a:hover { color:var(--brand-light); }
.page-hero .breadcrumb span { color:var(--brand-light); }

/* ============================================================
   GENERAL PAGE CONTENT
   ============================================================ */
.page-body { position:relative; z-index:1; }
.page-body section { padding:70px 5%; max-width:1200px; margin:0 auto; }

/* Section title used on inner pages */
.inner-section-title {
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:900; color:#fff;
  text-align:center;
  margin-bottom:.6rem;
}
.inner-section-sub {
  text-align:center; color:var(--text-muted);
  font-size:.95rem; margin-bottom:3rem;
}

/* Generic grid cards on inner pages */
.cards-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}
/* Balance 4-card rows so we don't get a lonely 4th card */
.cards-grid:has(> *:nth-child(4):last-child) {
  max-width:780px;
  grid-template-columns:repeat(2,1fr);
}

.g-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  text-align:center;
  transition:all .4s;
}
.g-card:hover {
  border-color:var(--border-hi);
  background:var(--surface-2);
  transform:translateY(-6px);
  box-shadow:var(--glow);
}
.g-card .g-icon { font-size:2.5rem; margin-bottom:1rem; display:block; }
.g-card h3 { font-size:1.1rem; font-weight:800; color:#fff; margin-bottom:.6rem; }
.g-card p { font-size:.86rem; margin-bottom:1rem; }
.g-card ul {
  list-style:none; text-align:right;
}
.g-card ul li {
  font-size:.82rem; color:var(--text-muted);
  padding:.45rem 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.g-card ul li:last-child { border:none; }
.g-card ul li::before {
  content:'✓ ';
  color:var(--brand-light); font-weight:700;
}

/* Package cards used on inner pages */
.page-pkg-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  display:flex; flex-direction:column;
  transition:all .4s;
  position:relative;
  overflow:hidden;
}
.page-pkg-card::after {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--brand),var(--brand-light));
  opacity:0; transition:opacity .3s;
}
.page-pkg-card:hover {
  border-color:var(--border-mid);
  transform:translateY(-5px);
}
.page-pkg-card:hover::after { opacity:1; }
.page-pkg-card.popular {
  border-color:var(--brand);
  background:linear-gradient(145deg,rgba(126,60,131,0.15),var(--surface));
  box-shadow:var(--glow);
}
.page-pkg-card.popular::after { opacity:1; }

.pkg-label {
  font-size:.72rem; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--brand-light); margin-bottom:.7rem;
  display:block;
}
.pkg-title { font-size:1.25rem; font-weight:900; color:#fff; margin-bottom:.3rem; }
.pkg-price-num {
  font-size:2rem; font-weight:900; color:#fff;
  margin:.7rem 0 .3rem;
}
.pkg-price-period { font-size:.8rem; color:var(--text-muted); margin-bottom:1rem; }
.pkg-features-list { list-style:none; flex:1; margin-bottom:1.5rem; }
.pkg-features-list li {
  display:flex; align-items:flex-start; gap:.6rem;
  padding:.5rem 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
  font-size:.83rem; color:var(--text-muted);
}
.pkg-features-list li:last-child { border:none; }
.pkg-features-list li::before {
  content:'';
  width:14px; height:14px;
  background:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6.5' stroke='%23A855D4' stroke-opacity='.4'/%3E%3Cpath d='M4.5 7l1.8 1.8 3.5-3.5' stroke='%23A855D4' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink:0; margin-top:2px;
}
.pkg-features-list li.first-feat { font-weight:700; color:#fff; }

/* Contact / Quote Form */
.form-layout {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:2.5rem;
  margin-top:2rem;
}
@media(max-width:900px){ .form-layout { grid-template-columns:1fr; } }

.form-panel {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:2.5rem;
  position:relative;
  overflow:hidden;
}
.form-panel.accent::after {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--brand-light),var(--brand));
}

.form-panel h2 { font-size:1.6rem; font-weight:900; color:#fff; margin-bottom:.5rem; }
.form-panel > p { font-size:.88rem; margin-bottom:2rem; }

.form-group { margin-bottom:1.3rem; }
.form-label { display:block; font-size:.82rem; color:var(--text-muted); margin-bottom:.45rem; font-weight:500; }
.form-input {
  width:100%; padding:.85rem 1.2rem;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  border-radius:var(--r-sm);
  font-family:var(--font); font-size:.92rem;
  transition:all .3s;
}
.form-input:focus {
  outline:none;
  border-color:var(--brand-light);
  background:rgba(255,255,255,0.05);
  box-shadow:0 0 0 3px rgba(168,85,212,0.1);
}
textarea.form-input { min-height:130px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:580px){ .form-row { grid-template-columns:1fr; } }

.submit-btn {
  width:100%; padding:1rem 1.5rem;
  background:linear-gradient(135deg,var(--brand),var(--brand-light));
  color:#fff; border:none;
  border-radius:var(--r-md);
  font-family:var(--font); font-size:1rem; font-weight:700;
  cursor:none;
  transition:all .3s;
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  margin-top:1rem;
}
.submit-btn:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(168,85,212,0.4);
}

.info-item {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.info-item:last-child { border:none; }
.info-icon {
  width:46px; height:46px;
  background:rgba(168,85,212,0.1);
  border:1px solid var(--border-mid);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; flex-shrink:0;
}
.info-text strong { display:block; color:var(--text-muted); font-size:.78rem; font-weight:600; margin-bottom:.2rem; }
.info-text span { color:#fff; font-weight:700; font-size:1rem; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
  max-width:1100px;
  margin:0 auto;
}

.portfolio-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:all .4s;
}
.portfolio-card:hover {
  border-color:var(--border-hi);
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(126,60,131,0.35);
}
.portfolio-img {
  width:100%; height:220px;
  background:rgba(168,85,212,0.1);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.portfolio-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.portfolio-card:hover .portfolio-img img { transform:scale(1.06); }

.portfolio-body { padding:1.5rem; }
.portfolio-tag {
  display:inline-block;
  font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--brand-light); margin-bottom:.6rem;
}
.portfolio-body h3 { font-size:1.2rem; font-weight:900; color:#fff; margin-bottom:.5rem; }
.portfolio-body p { font-size:.83rem; margin-bottom:1rem; }

.portfolio-stats {
  display:flex; gap:1.5rem;
  padding:1rem 0;
  border-top:1px solid rgba(255,255,255,0.06);
}
.p-stat-num { font-size:1.3rem; font-weight:900; color:#fff; line-height:1; display:block; }
.p-stat-label { font-size:.7rem; color:var(--text-subtle); }

/* Portfolio card action buttons */
.portfolio-actions {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.btn-gallery,
.btn-visit {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: .6rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-gallery {
  background: rgba(168,85,212,0.15);
  color: var(--brand-light);
  border: 1px solid var(--border-mid);
}
.btn-gallery:hover {
  background: rgba(168,85,212,0.3);
  border-color: var(--brand-light);
  transform: translateY(-2px);
}

.btn-visit {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
}
.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,85,212,0.4);
}

/* Lightbox Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,3,9,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
}
.gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 .8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.gallery-modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.gallery-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .3s, transform .3s;
  font-family: var(--font);
}
.gallery-modal-close:hover {
  color: var(--brand-light);
  transform: rotate(90deg);
}

.gallery-main-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  min-height: 300px;
  max-height: 55vh;
  position: relative;
}
.gallery-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--r-md);
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.gallery-placeholder .gp-icon { font-size: 3.5rem; }

.gallery-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(126,60,131,0.6);
  border: 1px solid var(--border-mid);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all .3s;
  z-index: 2;
}
.gallery-nav-btn:hover {
  background: var(--brand);
  border-color: var(--brand-light);
}
.gallery-nav-prev { right: 12px; }
.gallery-nav-next { left: 12px; }

.gallery-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .8rem;
  overflow-x: auto;
  padding-bottom: .4rem;
  flex-shrink: 0;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--brand-dark); border-radius: 99px; }

.gallery-thumb {
  width: 70px; height: 55px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .3s;
}
.gallery-thumb.active { border-color: var(--brand-light); }
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-counter {
  text-align: center;
  font-size: .78rem;
  color: var(--text-subtle);
  margin-top: .5rem;
  flex-shrink: 0;
}

/* Alt section bands */
.alt-section {
  background: linear-gradient(180deg, transparent, rgba(126,60,131,0.06), transparent);
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-box {
  background:rgba(168,85,212,0.07);
  border:1px solid var(--border-mid);
  border-radius:var(--r-lg);
  padding:2rem;
  text-align:center;
  max-width:560px;
  margin:3rem auto 0;
}
.countdown-title { font-size:1rem; font-weight:700; color:#fff; margin-bottom:1.2rem; }
.countdown-timer {
  display:flex; justify-content:center; gap:1rem;
  direction:ltr;
}
.time-unit {
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-sm);
  padding:.8rem 1rem;
  min-width:72px;
  text-align:center;
}
.time-number { font-size:1.8rem; font-weight:900; color:var(--brand-light); display:block; line-height:1; }
.time-label { font-size:.7rem; color:var(--text-muted); display:block; margin-top:.3rem; }

/* ============================================================
   HOVER GLOW UTILITY
   ============================================================ */
.hover-glow { transition:box-shadow .4s; }
.hover-glow:hover { box-shadow:var(--glow); }

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] { will-change:transform,opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .packages-grid { grid-template-columns:1fr; max-width:480px; }
  .pkg-card.featured { transform:scale(1); }
  .pkg-card.featured:hover { transform:translateY(-5px); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .testimonials-grid { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > *:first-child { grid-column:1/-1; }
}

@media(max-width:900px){
  .nav-menu, .nav-cta { display:none !important; }
  .hamburger { display:flex !important; }
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-metrics { justify-content:center; }
  .hero-actions { justify-content:center; }
  .stats-bar-inner { grid-template-columns:repeat(2,1fr); }
  .form-layout { grid-template-columns:1fr; }
}

@media(max-width:640px){
  .hero { padding:90px 5% 50px; }
  .section { padding:60px 5%; }
  .features-grid { grid-template-columns:1fr; }
  .stats-bar-inner { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .packages-grid { max-width:100%; }
  .hero-metrics { gap:1rem; flex-wrap:wrap; }
  .cta-box { padding:3rem 1.5rem; }
  .countdown-timer { gap:.6rem; }
  .time-unit { min-width:58px; padding:.6rem .8rem; }
  .time-number { font-size:1.4rem; }
}

/* ============================================================
   FLOATING WHATSAPP CONTACT BUTTON (all pages)
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 950;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  background-size: 200% 200%;
  animation: fab-grad 5s ease infinite, fab-pulse 2.4s ease-in-out infinite;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(166,74,201,0.55), 0 0 0 0 rgba(166,74,201,0.6);
  border: 2px solid rgba(255,255,255,0.18);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.fab-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 40px rgba(166,74,201,0.7);
}
.fab-whatsapp::after {
  content: 'تواصل معنا';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A);
  color: #fff;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  padding: .5rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 6px 18px rgba(59,13,79,0.5);
}
.fab-whatsapp:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@keyframes fab-grad {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 8px 28px rgba(166,74,201,0.55), 0 0 0 0 rgba(166,74,201,0.55); }
  50%     { box-shadow: 0 8px 28px rgba(166,74,201,0.55), 0 0 0 18px rgba(166,74,201,0); }
}

@media (max-width: 640px) {
  .fab-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 18px;
    left: 18px;
  }
  .fab-whatsapp svg { width: 26px; height: 26px; }
  .fab-whatsapp::after { display: none; }
}

/* Make common surfaces transparent so the animated gradient shows through */
.section, .hero, .features-strip, .packages-section, .cta-section,
.stats-bar, .page-hero, .page-body {
  background: transparent !important;
}

/* Card surfaces lightly translucent for glass look over gradient */
.feature-card, .svc-card, .pkg-card, .testi-card, .form-panel,
.portfolio-card, .g-card, .stat-item {
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

/* Footer glass over gradient */
.site-footer {
  background: rgba(15,5,32,0.55) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid var(--border);
}
/* ═══════════════════════════════════════════════════════════════
   IDENTITY REFRESH v2 — Cohesive Gradient System
   (#3B0D4F · #6A1B9A · #A64AC9)
   ═══════════════════════════════════════════════════════════════ */

/* HEADER */
.main-nav {
  background: linear-gradient(135deg, rgba(59,13,79,0.78) 0%, rgba(106,27,154,0.55) 50%, rgba(59,13,79,0.78) 100%) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border-bottom: 1px solid rgba(166,74,201,0.22) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
}
.main-nav::after {
  height: 2px !important;
  background: linear-gradient(90deg, transparent 0%, #3B0D4F 15%, #6A1B9A 50%, #A64AC9 85%, transparent 100%) !important;
  opacity: .9;
}
.main-nav.scrolled {
  background: linear-gradient(135deg, rgba(20,8,42,0.92) 0%, rgba(59,13,79,0.85) 50%, rgba(20,8,42,0.92) 100%) !important;
  box-shadow: 0 6px 30px rgba(59,13,79,0.55);
}

/* Quiz nav-item pill */
.nav-menu .quiz-nav-item { margin-inline-start: 6px; }
.nav-menu .quiz-nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .42rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59,13,79,0.55), rgba(166,74,201,0.35));
  border: 1px solid rgba(166,74,201,0.55);
  color: #fff !important;
  font-weight: 700;
  transition: all .3s;
}
.nav-menu .quiz-nav-item a::after { display: none !important; }
.nav-menu .quiz-nav-item a:hover {
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  box-shadow: 0 6px 20px rgba(166,74,201,0.5);
  transform: translateY(-1px);
}
.nav-menu .quiz-nav-item a.active {
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  background-size: 200% 200%;
  animation: nav-cta-grad 5s ease infinite;
  box-shadow: 0 6px 20px rgba(166,74,201,0.55);
}

/* DIVIDERS — gradient hairlines */
section.section, .features-strip, .packages-section, .cta-section,
#testimonials, #services, .page-body > section, .stats-bar {
  position: relative;
}
section.section + section.section::before,
.features-strip + .section::before,
.section + .features-strip::before,
.packages-section::before,
#testimonials::before,
#services::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(86%, 1100px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(166,74,201,0.5) 30%, rgba(192,80,225,0.7) 50%, rgba(166,74,201,0.5) 70%, transparent 100%);
}

/* Soften harsh borders */
.hero-metrics, .stats-bar, .stats-bar-inner, .pkg-features li,
.testi-card, .feature-card, .svc-card {
  border-color: rgba(166,74,201,0.18) !important;
}

/* CARDS — unified glass */
.feature-card, .svc-card, .pkg-card, .testi-card, .form-panel,
.portfolio-card, .g-card, .stat-item, .quiz-card, .q-pkg-card {
  background: linear-gradient(135deg, rgba(59,13,79,0.35) 0%, rgba(106,27,154,0.18) 50%, rgba(166,74,201,0.10) 100%) !important;
  border: 1px solid rgba(166,74,201,0.22) !important;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 8px 30px rgba(20,5,40,0.35);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.feature-card:hover, .svc-card:hover, .pkg-card:hover,
.testi-card:hover, .portfolio-card:hover, .g-card:hover {
  border-color: rgba(166,74,201,0.55) !important;
  box-shadow: 0 14px 44px rgba(166,74,201,0.28);
  transform: translateY(-4px);
}
.pkg-card.featured, .q-pkg-card.featured {
  background: linear-gradient(135deg, rgba(59,13,79,0.6) 0%, rgba(106,27,154,0.4) 50%, rgba(166,74,201,0.25) 100%) !important;
  border: 1.5px solid rgba(166,74,201,0.6) !important;
  box-shadow: 0 0 50px rgba(166,74,201,0.3), 0 14px 44px rgba(20,5,40,0.5);
}

/* BUTTONS */
.btn-primary, .btn-fill-pkg, .submit-btn, .sidebar-cta, .quiz-next-btn {
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9) !important;
  background-size: 200% 200% !important;
  animation: nav-cta-grad 5s ease infinite;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(166,74,201,0.45) !important;
}
.btn-primary:hover, .btn-fill-pkg:hover, .submit-btn:hover,
.sidebar-cta:hover, .quiz-next-btn:hover {
  box-shadow: 0 12px 32px rgba(166,74,201,0.65) !important;
  transform: translateY(-2px);
}
.btn-ghost, .btn-outline-pkg, .btn-q-outline {
  background: rgba(166,74,201,0.08) !important;
  border: 1px solid rgba(166,74,201,0.4) !important;
  color: #fff !important;
  transition: all .3s;
}
.btn-ghost:hover, .btn-outline-pkg:hover, .btn-q-outline:hover {
  background: rgba(166,74,201,0.18) !important;
  border-color: rgba(166,74,201,0.7) !important;
}

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, #fff 0%, #A64AC9 50%, #6A1B9A 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, rgba(20,8,42,0.55) 0%, rgba(59,13,79,0.75) 100%) !important;
  border-top: none !important;
  position: relative;
  padding-top: 80px !important;
  margin-top: 80px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3B0D4F 15%, #6A1B9A 50%, #A64AC9 85%, transparent 100%);
}
.site-footer h4 {
  color: #fff !important;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, #A64AC9, transparent);
  border-radius: 2px;
}
.site-footer ul li a { transition: color .25s, padding .25s; }
.site-footer ul li a:hover { color: #A64AC9 !important; padding-right: 6px; }
.footer-social .social-btn {
  background: rgba(166,74,201,0.12) !important;
  border: 1px solid rgba(166,74,201,0.3) !important;
  transition: all .3s;
}
.footer-social .social-btn:hover {
  background: linear-gradient(135deg, #6A1B9A, #A64AC9) !important;
  border-color: transparent !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(166,74,201,0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(166,74,201,0.2) !important;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}

/* Quiz page footer */
.quiz-footer {
  background: linear-gradient(180deg, rgba(20,8,42,0.55) 0%, rgba(59,13,79,0.75) 100%) !important;
  border-top: none !important;
  position: relative;
}
.quiz-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B0D4F 15%, #6A1B9A 50%, #A64AC9 85%, transparent);
}

/* PAGE HERO */
.page-hero { padding-top: 140px !important; }
.breadcrumb a { color: var(--brand-light) !important; }
.breadcrumb a:hover { color: #fff !important; }

/* MOBILE SIDEBAR */
.mobile-sidebar {
  background: linear-gradient(180deg, rgba(20,8,42,0.97) 0%, rgba(59,13,79,0.97) 100%) !important;
  border-left: 1px solid rgba(166,74,201,0.35) !important;
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: linear-gradient(135deg, rgba(106,27,154,0.25), rgba(166,74,201,0.15)) !important;
}

/* SECTION SPACING */
.section, .features-strip, .packages-section, .cta-section,
section#testimonials, section#services {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 720px) {
  .section, .features-strip, .packages-section, .cta-section,
  section#testimonials, section#services {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* STATS BAR */
.stats-bar { border-top: none !important; border-bottom: none !important; padding: 32px 5%; }
.stats-bar-inner {
  background: linear-gradient(135deg, rgba(59,13,79,0.5), rgba(106,27,154,0.25), rgba(166,74,201,0.15)) !important;
  border: 1px solid rgba(166,74,201,0.3) !important;
  border-radius: 24px;
  padding: 32px 24px;
  backdrop-filter: blur(14px);
}

/* ═══════════════════════════════════════════════════════════════
   TEXT BREATHING ROOM — line-height & spacing fix only
   (no layout/color changes — just air between lines)
   ═══════════════════════════════════════════════════════════════ */

h1, .hero-title, .hero-title-xl, .section-title,
.page-hero h1 {
  line-height: 1.45 !important;
  letter-spacing: -0.01em !important;
  padding-block: .15em !important;
}

h2, h3, h4, h5, h6, .section-header h2,
.pkg-name, .svc-card h3, .feature-card h3,
.q-pkg-name, .rec-name, .quiz-question {
  line-height: 1.5 !important;
  padding-block: .1em !important;
}

p, li, .hero-desc, .section-desc, .pkg-sub,
.testi-text, .rec-desc, .quiz-sub,
.h-stat-label, .metric-label, .stat-label,
.q-pkg-target, .pkg-price-box small, .footer-brand-col p {
  line-height: 1.9 !important;
}

/* Multi-line gradient titles need extra room (descenders get clipped) */
.hero-title-xl, .hero h1, .section-title,
.section-header h2, .grad-text {
  padding-bottom: .12em !important;
}
.grad-text { display: inline-block; line-height: 1.45 !important; }

/* Quote / quiz hero specifically */
.page-hero h1, .hero h1 { margin-bottom: 1.2rem !important; }
.page-hero p, .hero > p, .hero-desc { margin-top: .4rem !important; }

/* List items inside packages — separate lines clearly */
.pkg-features li, .q-pkg-features li, .rec-feature {
  line-height: 1.85 !important;
  padding-block: 4px !important;
}
.pkg-features li small, .q-pkg-features li small {
  display: block;
  margin-top: 4px;
  line-height: 1.7 !important;
}

/* Form labels & inputs */
.form-panel h2, .form-panel p, .info-item strong, .info-item span {
  line-height: 1.7 !important;
}
.info-item { padding-block: 6px; }
.info-item strong { display: block; margin-bottom: 4px; }

/* Quiz question stack */
.quiz-question { margin-bottom: .6rem !important; }
.quiz-sub { margin-bottom: 2rem !important; }
.quiz-option .opt-label { line-height: 1.6 !important; padding-block: 2px; }
.quiz-option .opt-desc { line-height: 1.7 !important; margin-top: 6px !important; }

/* Recommended card – breathe */
.rec-name { margin-bottom: .6rem !important; }
.rec-desc { margin-bottom: 1.4rem !important; }

/* Hero stats numbers don't get clipped */
.h-stat-num, .metric-val, .stat-num, .q-pkg-price-main, .rec-price-main {
  line-height: 1.25 !important;
  padding-bottom: .08em;
}

/* Footer text spacing */
.site-footer h4 { line-height: 1.5 !important; }
.site-footer ul li { padding-block: 5px; line-height: 1.7 !important; }
.footer-bottom p { line-height: 1.8 !important; }

/* Section eyebrow + title gap */
.section-eyebrow { margin-bottom: 1.4rem !important; }
.section-head .section-title,
.section-header h2 { margin-bottom: .9rem !important; }
.section-head .section-desc,
.section-header p { margin-top: .3rem !important; }

/* ═══════════════════════════════════════════════════════════════
   OJI SYSTEMS PAGES (Oji Brain · Oji Builder)
   Shared components — same identity, fully responsive
   ═══════════════════════════════════════════════════════════════ */

/* Big product badge in the page hero */
.sys-logo-badge {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  border: 1px solid var(--border-mid);
  box-shadow: 0 18px 45px rgba(166, 74, 201, 0.38), var(--glow);
  animation: sys-badge-float 5s ease-in-out infinite;
}
@keyframes sys-badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Capability pills row */
.sys-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  max-width: 720px;
  margin: 1.4rem auto 0;
}
.sys-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(168, 85, 212, 0.1);
  border: 1px solid var(--border);
  padding: .42rem 1rem;
  border-radius: var(--r-full);
  transition: all .3s;
}
.sys-pill:hover {
  color: #fff;
  border-color: var(--border-hi);
  background: rgba(168, 85, 212, 0.2);
  transform: translateY(-2px);
}

/* Numbered step cards (reuses .feature-card) */
.feature-card.sys-step { position: relative; }
.sys-step-num {
  position: absolute;
  top: -14px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  border: 1px solid var(--border-hi);
  box-shadow: 0 8px 22px rgba(166, 74, 201, 0.45);
}

/* Cross-promo banner between the two systems */
.sys-cross {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  text-decoration: none;
  transition: all .4s;
}
.sys-cross:hover {
  border-color: var(--border-hi);
  background: var(--surface-2);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.sys-cross-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: linear-gradient(135deg, #3B0D4F, #6A1B9A, #A64AC9);
  box-shadow: 0 10px 30px rgba(166, 74, 201, 0.35);
}
.sys-cross-body { flex: 1; min-width: 0; }
.sys-cross-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .5rem;
}
.sys-cross-body h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .5rem;
  line-height: 1.5;
}
.sys-cross-body p {
  color: var(--text-muted);
  font-size: .87rem;
  margin: 0;
}
.sys-cross-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--brand-light);
  transition: transform .35s;
}
.sys-cross:hover .sys-cross-arrow { transform: translateX(-8px); }

/* Systems dropdown pill in the desktop navbar */
.nav-menu .systems-nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-menu .systems-nav-item > a.active { color: #fff; }
.systems-nav-item .dropdown-panel { min-width: 280px; }
.systems-nav-item .dropdown-panel a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-weight: 700;
  color: #fff !important;
}
.dropdown-panel .dp-sub {
  display: block;
  font-size: .72rem;
  color: var(--text-subtle);
  font-weight: 400;
  margin-top: 2px;
}
.dropdown-panel a:hover .dp-sub { color: var(--text-muted); }

/* Footer now carries a 4th column */
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

/* ── Desktop navbar: perfectly centred menu ──
   The logo and the CTA have different widths, so plain `space-between`
   pushed the menu off-centre (towards the right in RTL). Taking the menu
   out of flow and centring it on the navbar axis fixes it without
   touching the logo or the CTA. */
@media (min-width: 1161px) {
  .main-nav > .nav-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

/* Keep the wider desktop nav from crowding on smaller laptops */
@media (max-width: 1300px) {
  .nav-menu { gap: 1rem; }
  .nav-menu a { font-size: .8rem; }
  .nav-menu .quiz-nav-item a { padding: .36rem .78rem; }
  .nav-cta { padding: .55rem 1rem; font-size: .8rem; }
}

/* With «أنظمتنا» added, the desktop menu needs more room — hand over to
   the sidebar a bit earlier so nothing is ever cramped. */
@media (max-width: 1160px) {
  .nav-menu, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .sys-cross { flex-direction: column; text-align: center; padding: 1.8rem 1.4rem; gap: 1.2rem; }
  .sys-cross-arrow { transform: rotate(-90deg); }
  .sys-cross:hover .sys-cross-arrow { transform: rotate(-90deg) translateX(-8px); }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sys-logo-badge { width: 76px; height: 76px; border-radius: 22px; font-size: 2.1rem; margin-bottom: 1.2rem; }
  .sys-pills { gap: .45rem; }
  .sys-pill { font-size: .72rem; padding: .36rem .8rem; }
  .sys-step-num { width: 34px; height: 34px; font-size: .95rem; top: -12px; right: 18px; }
  .sys-cross-icon { width: 64px; height: 64px; border-radius: 18px; font-size: 1.8rem; }
  .sys-cross-body h3 { font-size: 1.02rem; }
}
