/* ============================================================
   WUREXA — Global Design System
   Design. Develop. Grow.
   ============================================================ */

:root {
  --brand: #26418B;
  --brand-dark: #1B2F66;
  --brand-darker: #141F45;
  --brand-light: #E8EFFF;
  --brand-soft: #F3F7FF;
  --blue-100: #DCE7FF;
  --blue-200: #A8C3FF;
  --blue-300: #6F96F2;

  --ink: #0F1B3D;
  --ink-2: #33415F;
  --muted: #5C6B8A;
  --line: #E3E9F5;
  --line-strong: #D3DCF0;

  --white: #FFFFFF;
  --off-white: #F8FAFD;
  --light-gray: #F1F4FA;
  --navy: #0C1430;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(20, 31, 69, 0.06);
  --shadow: 0 10px 30px rgba(20, 31, 69, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 31, 69, 0.14);
  --shadow-brand: 0 14px 34px rgba(38, 65, 139, 0.28);

  --header-h: 84px;
  --header-h-scrolled: 66px;
  --container: 1200px;
  --gutter: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.22s;
  --t-med: 0.4s;
  --t-slow: 0.7s;

  --max-w-hero: 560px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.16; margin: 0; font-weight: 800; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography scale ---------- */
.h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); letter-spacing: -0.035em; }
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.02em; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p.lead { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 15px 28px; border-radius: 14px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  will-change: transform;
  text-align: center;
}
.btn .btn-arrow { display: inline-flex; transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(38, 65, 139, 0.4); }

.btn-secondary { background: var(--brand-light); color: var(--brand); }
.btn-secondary:hover { background: var(--blue-100); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--brand); }

.btn-white { background: #fff; color: var(--brand-dark); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); }

.btn-light-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-light-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 16px; }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; border-radius: 11px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Scroll progress & transition ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200; pointer-events: none; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--blue-300)); border-radius: 0 3px 3px 0; }

.transition-layer {
  position: fixed; inset: 0; z-index: 2000; background: var(--brand-darker);
  transform: translateY(100%); pointer-events: none;
}
body.is-transitioning .transition-layer { animation: layerReveal 0.5s var(--ease) forwards; }
body.is-leaving .transition-layer { animation: layerCover 0.45s var(--ease) forwards; }
@keyframes layerReveal { to { transform: translateY(100%); } }
@keyframes layerCover { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  .site-cursor { position: fixed; inset: 0; z-index: 2100; pointer-events: none; }
  .cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; will-change: transform; }
  .cursor-dot { width: 7px; height: 7px; background: var(--brand); transform: translate(-50%, -50%); z-index: 2102; }
  .cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(38,65,139,0.5); transform: translate(-50%, -50%); z-index: 2101; transition: width var(--t-med) var(--ease), height var(--t-med) var(--ease), border-color var(--t-med), background var(--t-med); }
  .cursor-ring.is-hover { width: 58px; height: 58px; border-color: var(--brand); background: rgba(38,65,139,0.08); }
  .cursor-ring.is-view { width: 68px; height: 68px; background: var(--brand); border-color: var(--brand); }
  .cursor-ring.is-view::after { content: "VIEW"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; color: #fff; font-family: var(--font-display); }
  body.has-cursor .site-cursor { display: block; }
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
}
@media (hover: none), (pointer: coarse) { .site-cursor { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              backdrop-filter var(--t-med), height var(--t-med) var(--ease);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20, 31, 69, 0.06);
}

.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { width: 42px; height: 42px; display: block; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; letter-spacing: -0.02em; color: var(--ink); }
.logo-dot { color: var(--brand); }
.logo-light .logo-text { color: #fff; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; color: var(--ink-2);
  padding: 10px 14px; border-radius: 10px; position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; border-radius: 2px;
  transition: transform var(--t-med) var(--ease);
}
.nav-link:hover { color: var(--brand); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--brand); }
.nav-chevron { display: inline-flex; transition: transform var(--t-fast) var(--ease); }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.mega-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(12px);
  width: 560px; background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 12px; opacity: 0; visibility: hidden;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
}
.nav-item:hover .mega-dropdown, .nav-item:focus-within .mega-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item {
  display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px;
  transition: background var(--t-fast) var(--ease);
  position: relative;
}
.mega-item:hover { background: var(--brand-soft); }
.mega-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-light); color: var(--brand);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast);
}
.mega-item:hover .mega-icon { background: var(--brand); color: #fff; transform: translateY(-2px) scale(1.04); }
.mega-icon svg { width: 22px; height: 22px; }
.mega-body { display: flex; flex-direction: column; min-width: 0; }
.mega-name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.mega-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.mega-arrow { margin-left: auto; color: var(--brand); opacity: 0; transform: translateX(-6px); transition: all var(--t-fast) var(--ease); }
.mega-arrow svg { width: 18px; height: 18px; }
.mega-item:hover .mega-arrow { opacity: 1; transform: translateX(0); }
.mega-vip { grid-column: 1 / -1; background: linear-gradient(120deg, var(--brand-darker), var(--brand)); }
.mega-vip .mega-icon { background: rgba(255,255,255,0.14); color: #fff; }
.mega-vip .mega-name { color: #fff; }
.mega-vip .mega-desc { color: rgba(255,255,255,0.7); }
.mega-vip:hover { background: linear-gradient(120deg, var(--brand-darker), var(--brand-dark)); }
.mega-vip .mega-arrow { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: var(--brand-light); }
.hamburger span { width: 20px; height: 2.4px; background: var(--brand); border-radius: 2px; transition: transform var(--t-med) var(--ease), opacity var(--t-fast); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 380px); z-index: 1100;
  background: #fff; transform: translateX(100%); transition: transform var(--t-med) var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-inner { padding: 96px 28px 32px; overflow-y: auto; flex: 1; }
.mobile-nav > li + li { border-top: 1px solid var(--line); }
.mobile-link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink);
  padding: 17px 4px; text-align: left;
  opacity: 0; transform: translateX(24px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), color var(--t-fast);
}
.mobile-link span { display: inline-flex; transition: transform var(--t-fast) var(--ease); color: var(--muted); }
.mobile-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.mobile-toggle[aria-expanded="true"] { color: var(--brand); }
.mobile-link:hover { color: var(--brand); }
.mobile-menu.is-open .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-med) var(--ease); }
.mobile-sub > * { overflow: hidden; }
.mobile-toggle[aria-expanded="true"] + .mobile-sub { grid-template-rows: 1fr; }
.mobile-sub li a {
  display: block; padding: 11px 4px 11px 16px; color: var(--ink-2); font-size: 0.95rem;
  border-left: 2px solid var(--line); margin-left: 4px; transition: color var(--t-fast), border-color var(--t-fast);
}
.mobile-sub li a:hover { color: var(--brand); border-left-color: var(--brand); }
.mobile-sub .sub-vip { font-weight: 700; color: var(--brand); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-overlay {
  position: fixed; inset: 0; z-index: 1050; background: rgba(12, 20, 48, 0.5);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--header-h) + clamp(50px, 8vw, 90px)) 0 clamp(50px, 7vw, 80px); position: relative; background: var(--off-white); overflow: hidden; }
.page-hero .hero-grid-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 860px; }
.page-hero p.lead { margin-top: 18px; max-width: 640px; }
.page-hero .hero-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
}
.hero-chip svg { width: 16px; height: 16px; color: var(--brand); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumbs a { color: var(--muted); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs .sep { color: var(--line-strong); }

/* ---------- Grid background ---------- */
.hero-grid-bg, .grid-bg {
  background-image:
    linear-gradient(rgba(38,65,139,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,65,139,0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
}
.grid-bg-center { -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%); mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%); }

.ambient-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.ambient-glow.g1 { width: 480px; height: 480px; background: rgba(168, 195, 255, 0.4); top: -140px; right: -80px; }
.ambient-glow.g2 { width: 420px; height: 420px; background: rgba(220, 231, 255, 0.6); bottom: -160px; left: -100px; }
.ambient-glow.g3 { width: 360px; height: 360px; background: rgba(38, 65, 139, 0.1); top: 20%; left: 30%; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-floating { position: absolute; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; padding: 10px 16px; z-index: 3; animation: floatY 6s ease-in-out infinite; }
.hero-floating .hf-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.hero-floating .hf-icon svg { width: 18px; height: 18px; }
.hero-floating strong { font-family: var(--font-display); font-size: 0.86rem; }
.hero-floating small { display: block; font-size: 0.74rem; color: var(--muted); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hero-title { margin: 20px 0 20px; }
.hero-title .grad { background: linear-gradient(120deg, var(--brand) 0%, var(--blue-300) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 22px; }
.hero-support { margin-top: 18px; color: var(--muted); font-size: 1.02rem; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 460px; }
.hero-dash {
  position: relative; z-index: 2; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden;
  animation: floatY 7s ease-in-out infinite;
}
.hero-dash-bar { display: flex; align-items: center; gap: 6px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.hero-dash-bar i { width: 9px; height: 9px; border-radius: 50%; }
.hero-dash-bar i:nth-child(1) { background: #FF5F57; }
.hero-dash-bar i:nth-child(2) { background: #FEBC2E; }
.hero-dash-bar i:nth-child(3) { background: #28C840; }
.hero-dash-url { margin-left: 10px; background: var(--off-white); border-radius: 8px; padding: 3px 14px; font-size: 0.74rem; color: var(--muted); }
.hero-dash-body { padding: 22px; }
.hero-dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-dash-head h4 { font-size: 0.96rem; }
.hero-dash-head span { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: #16A34A; background: #E8F8EF; padding: 4px 10px; border-radius: 100px; }
.hero-chart { display: flex; align-items: flex-end; gap: 10px; height: 150px; padding: 10px 0 0; }
.hero-chart .bar {
  flex: 1; background: linear-gradient(180deg, var(--blue-300), var(--brand)); border-radius: 8px 8px 4px 4px;
  height: 30%; transition: height 1.2s var(--ease); position: relative;
  animation: growBar 1.6s var(--ease) both;
}
@keyframes growBar { from { height: 4%; opacity: 0; } }
.hero-chart .bar:nth-child(1) { --h: 46%; } .hero-chart .bar:nth-child(2) { --h: 62%; } .hero-chart .bar:nth-child(3) { --h: 40%; }
.hero-chart .bar:nth-child(4) { --h: 78%; } .hero-chart .bar:nth-child(5) { --h: 58%; } .hero-chart .bar:nth-child(6) { --h: 92%; }
.hero-chart .bar:nth-child(7) { --h: 68%; } .hero-chart .bar:nth-child(8) { --h: 100%; }
.hero-chart .bar { height: var(--h); }
.hero-dash-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; }
.hero-dash-mini { background: var(--off-white); border-radius: 12px; padding: 12px; }
.hero-dash-mini small { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-dash-mini strong { font-family: var(--font-display); font-size: 1.15rem; display: block; margin-top: 2px; }

.hero-fl-card1 { position: absolute; left: -28px; bottom: 40px; z-index: 3; animation-delay: 0.8s; }
.hero-fl-card2 { position: absolute; right: -18px; top: -6px; z-index: 3; animation-delay: 1.6s; }
.hero-fl-card3 { position: absolute; right: 24px; bottom: -22px; z-index: 3; animation-delay: 2.2s; }
.hf-icon.green { background: #E8F8EF; color: #16A34A; }
.hf-icon.blue { background: var(--brand-light); color: var(--brand); }
.hf-icon.gold { background: #FFF7E0; color: #D97706; }

/* Hero slider */
.hero-slider-wrap { margin-top: clamp(48px, 6vw, 76px); position: relative; }
.hero-slider { overflow: hidden; border-radius: var(--radius-lg); }
.hero-slides { display: flex; transition: transform 0.7s var(--ease); }
.hero-slide {
  flex: 0 0 100%; padding: 34px 40px; background: linear-gradient(120deg, var(--brand-darker), var(--brand));
  color: #fff; display: flex; flex-direction: column; gap: 8px; min-height: 170px; justify-content: center; position: relative; overflow: hidden;
}
.hero-slide::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; border: 40px solid rgba(255,255,255,0.06); }
.hero-slide .sl-num { font-family: var(--font-display); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; color: var(--blue-200); }
.hero-slide h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.8rem); display: flex; align-items: center; gap: 12px; }
.hero-slide h3 svg { width: 26px; height: 26px; color: var(--blue-200); }
.hero-slide p { color: rgba(255,255,255,0.82); max-width: 620px; }
.hero-slider-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.hero-slider-arrows { display: flex; gap: 10px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; color: var(--ink-2); transition: all var(--t-fast) var(--ease);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.hero-progress { display: flex; gap: 8px; }
.hero-progress button { width: 34px; height: 4px; border-radius: 4px; background: var(--line-strong); transition: all var(--t-med) var(--ease); position: relative; overflow: hidden; }
.hero-progress button.on { background: var(--brand); }
.hero-progress button.on::after { content: ""; position: absolute; inset: 0; background: var(--blue-300); transform: scaleX(0); transform-origin: left; }
.hero-progress button.paused.on::after { animation: none; }
.hero-progress button.on::after { animation: progressFill var(--slider-speed, 5s) linear forwards; }
@keyframes progressFill { to { transform: scaleX(1); } }

/* ---------- Marquee / brand strip ---------- */
.marquee { overflow: hidden; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--off-white); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee span i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 34px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med); position: relative; overflow: hidden; }
.stat-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--brand), var(--blue-300)); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); letter-spacing: -0.03em; color: var(--brand); line-height: 1; }
.stat-num .suffix { color: var(--brand); }
.stat-label { margin-top: 10px; color: var(--muted); font-weight: 500; font-size: 0.98rem; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med);
}
.service-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--brand), var(--blue-300)); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: transform var(--t-med) var(--ease), background var(--t-med), color var(--t-med);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.service-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.service-price { margin-top: auto; display: flex; flex-direction: column; }
.service-price small { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.service-price strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--brand); }
.service-price .price-amount .amount { font-size: 1.5rem; }
.service-feats { margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.service-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-2); }
.service-feats li svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.service-card .card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--brand); }
.service-card .card-link svg { width: 18px; height: 18px; transition: transform var(--t-fast) var(--ease); }
.service-card .card-link:hover svg { transform: translateX(5px); }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med), background var(--t-med);
}
.why-card:hover { transform: translateY(-8px); background: #fff; box-shadow: var(--shadow-lg); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: #fff; border: 1px solid var(--line); color: var(--brand); display: grid; place-items: center; margin-bottom: 20px; transition: all var(--t-med) var(--ease); }
.why-card:hover .why-icon { background: var(--brand); border-color: var(--brand); color: #fff; transform: scale(1.06); }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Process timeline ---------- */
.process-wrap { position: relative; padding: 10px 0; }
.process-line { position: absolute; top: 40px; left: 0; right: 0; height: 3px; background: var(--line); border-radius: 3px; }
.process-line-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--blue-300)); border-radius: 3px; transition: width 0.6s var(--ease); }
.process-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-dot {
  width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50%; background: #fff;
  border: 3px solid var(--line-strong); display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--muted);
  transition: all var(--t-med) var(--ease);
}
.process-step.is-active .process-dot { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 8px var(--brand-light); }
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--muted); max-width: 150px; margin: 0 auto; }
.process-panel { margin-top: 48px; background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.process-panel-content h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 14px; }
.process-panel-content p { color: var(--muted); }
.process-panel-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.process-meta { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.process-meta small { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.process-meta strong { font-family: var(--font-display); font-size: 0.96rem; }
.process-step-nav { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Portfolio ---------- */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line); background: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--ink-2);
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med); display: block; }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--light-gray); }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.portfolio-card:hover .portfolio-media img { transform: scale(1.05); }
.portfolio-cat { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); color: var(--brand); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 100px; font-family: var(--font-display); }
.portfolio-body { padding: 22px 24px 24px; }
.portfolio-body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.portfolio-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.portfolio-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
.portfolio-link svg { width: 17px; height: 17px; transition: transform var(--t-fast); }
.portfolio-card:hover .portfolio-link svg { transform: translateX(5px); }

/* Featured portfolio slider */
.fp-slider { overflow: hidden; }
.fp-track { display: flex; gap: 24px; transition: transform 0.7s var(--ease); }
.fp-slide { flex: 0 0 calc((100% - 48px) / 3); }
.fp-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.fp-count { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.fp-count strong { color: var(--brand); font-size: 1.3rem; }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; }
.testi-viewport { overflow: hidden; padding: 10px 6px; }
.testi-track { display: flex; gap: 24px; transition: transform 0.7s var(--ease); }
.testi-card {
  flex: 0 0 calc((100% - 24px) / 2); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars .star { width: 17px; height: 17px; color: var(--line-strong); }
.testi-stars .star.on { color: #F5A623; }
.testi-quote { font-size: 1.02rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--blue-300)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.testi-person strong { font-family: var(--font-display); display: block; font-size: 0.98rem; }
.testi-person small { color: var(--muted); font-size: 0.84rem; }
.testi-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.testi-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: all var(--t-med) var(--ease); padding: 0; }
.dot.on { width: 26px; border-radius: 8px; background: var(--brand); }

/* ---------- CTA ---------- */
.cta-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 60%, var(--brand-dark) 100%); border-radius: var(--radius-xl); padding: clamp(50px, 7vw, 90px); color: #fff; text-align: center; }
.cta-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1), transparent 40%); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-mini-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.cta-chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 8px; }
.cta-chip svg { width: 15px; height: 15px; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; align-items: center; gap: 14px; background: var(--off-white); border: 1px solid var(--line); padding: 8px 10px; border-radius: 100px; margin-bottom: 40px; }
.pricing-toggle span { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: color var(--t-fast); }
.pricing-toggle span.on { color: var(--brand); }
.switch { position: relative; width: 56px; height: 30px; border-radius: 30px; background: var(--brand-light); border: 1px solid var(--blue-200); transition: background var(--t-med); }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform var(--t-med) var(--ease); }
.pricing-toggle[data-mode="monthly"] .switch::after { transform: translateX(26px); }
.pricing-toggle[data-mode="monthly"] .switch { background: var(--brand); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.is-featured { border: 2px solid var(--brand); background: linear-gradient(180deg, var(--brand-soft), #fff 40%); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--brand), var(--brand-dark)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.12em; padding: 7px 18px; border-radius: 100px; box-shadow: var(--shadow-brand); white-space: nowrap; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; min-height: 44px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-amount .amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.6rem); letter-spacing: -0.03em; color: var(--ink); transition: opacity var(--t-med) var(--ease); }
.price-amount .per { color: var(--muted); font-size: 0.86rem; }
.price-rev { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; }
.price-rev svg { width: 15px; height: 15px; color: var(--brand); }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.price-feats li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-2); align-items: flex-start; }
.price-feats li svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
.compare-table th, .compare-table td { padding: 16px 22px; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare-table thead th { background: var(--off-white); font-family: var(--font-display); font-weight: 700; }
.compare-table thead th.hl { background: var(--brand); color: #fff; }
.compare-table tbody tr:nth-child(even) { background: var(--off-white); }
.compare-table td.hl { background: var(--brand-soft); color: var(--brand); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-check { color: var(--brand); display: inline-block; }
.compare-check svg { width: 18px; height: 18px; }
.compare-check.no { color: var(--line-strong); }

/* ---------- Accordion / FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.faq-cats { position: sticky; top: calc(var(--header-h-scrolled) + 24px); display: flex; flex-direction: column; gap: 8px; }
.faq-cat { text-align: left; padding: 12px 18px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink-2); border: 1px solid transparent; transition: all var(--t-fast) var(--ease); }
.faq-cat:hover { color: var(--brand); }
.faq-cat.is-active { background: var(--brand); color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.accordion { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t-med), box-shadow var(--t-med); }
.accordion:hover { border-color: var(--blue-200); }
.accordion.is-open { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.accordion-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.accordion-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; transition: transform var(--t-med) var(--ease), background var(--t-med), color var(--t-med); }
.accordion-icon svg { width: 15px; height: 15px; }
.accordion.is-open .accordion-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.accordion-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-med) var(--ease); }
.accordion.is-open .accordion-body { grid-template-rows: 1fr; }
.accordion-body > div { overflow: hidden; }
.accordion-content { padding: 0 22px 22px; color: var(--muted); font-size: 0.96rem; line-height: 1.75; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.form-group { position: relative; margin-bottom: 22px; }
.form-field { width: 100%; padding: 16px 18px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--off-white); transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med); font-size: 0.98rem; color: var(--ink); }
.form-field::placeholder { color: transparent; }
.form-field:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(38,65,139,0.1); }
.form-field.has-value { background: #fff; }
.form-label {
  position: absolute; left: 14px; top: 16px; color: var(--muted); font-size: 0.98rem; pointer-events: none;
  transition: all var(--t-med) var(--ease); background: transparent; padding: 0 6px;
}
.form-field:focus + .form-label, .form-field.has-value + .form-label {
  top: -9px; font-size: 0.74rem; color: var(--brand); font-weight: 600; background: #fff; border-radius: 6px;
}
.form-error { color: #DC2626; font-size: 0.82rem; margin-top: 6px; display: none; align-items: center; gap: 6px; }
.form-group.is-invalid .form-error { display: flex; }
.form-group.is-invalid .form-field { border-color: #DC2626; }
.form-group.is-invalid .form-field:focus { box-shadow: 0 0 0 4px rgba(220,38,38,0.12); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
select.form-field { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C6B8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
textarea.form-field { min-height: 130px; resize: vertical; }

.form-status { display: none; margin-top: 18px; padding: 16px 20px; border-radius: 14px; font-size: 0.95rem; }
.form-status.is-success { display: flex; align-items: center; gap: 10px; background: #E8F8EF; color: #15803D; border: 1px solid #A7E3C0; }
.form-status.is-error { display: flex; align-items: center; gap: 10px; background: #FEE2E2; color: #B91C1C; border: 1px solid #F8B4B4; }

.contact-info-card { background: linear-gradient(160deg, var(--brand-darker), var(--brand)); color: #fff; border-radius: var(--radius-xl); padding: 40px 34px; position: relative; overflow: hidden; }
.contact-info-card::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; border: 30px solid rgba(255,255,255,0.06); }
.contact-info-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 0.96rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item .ci-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: rgba(255,255,255,0.12); display: grid; place-items: center; }
.contact-info-item .ci-icon svg { width: 20px; height: 20px; }
.contact-info-item strong { font-family: var(--font-display); display: block; font-size: 0.92rem; }
.contact-info-item a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color var(--t-fast); }
.contact-info-item a:hover { color: #fff; }
.contact-info-item small { color: rgba(255,255,255,0.6); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- About / values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: all var(--t-med) var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.value-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.93rem; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before { content: ""; position: absolute; left: -30px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); box-shadow: 0 0 0 4px var(--brand-light); }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); font-size: 0.94rem; max-width: 620px; }

/* ---------- Split features ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .media-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media .media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.media-badge { position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.media-badge .mb-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; }
.media-badge .mb-icon svg { width: 22px; height: 22px; }
.media-badge strong { font-family: var(--font-display); font-size: 1.3rem; display: block; line-height: 1.1; }
.media-badge small { color: var(--muted); font-size: 0.8rem; }
.split-content h2 { margin-bottom: 16px; }
.split-content p { color: var(--muted); margin-bottom: 16px; }
.split-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; }
.split-list li svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.split-list li strong { font-family: var(--font-display); display: block; font-size: 1rem; }
.split-list li span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Case study ---------- */
.cs-hero-result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.cs-result { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.cs-result strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--brand); display: block; }
.cs-result small { color: var(--muted); font-size: 0.84rem; }
.cs-gallery { overflow: hidden; border-radius: var(--radius-xl); }
.cs-gallery-track { display: flex; transition: transform 0.7s var(--ease); }
.cs-gallery-track img { flex: 0 0 100%; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.cs-block h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.cs-block p { color: var(--muted); margin-bottom: 14px; max-width: 720px; }
.cs-tech { display: flex; flex-wrap: wrap; gap: 10px; }
.cs-tech span { background: var(--brand-soft); color: var(--brand); border: 1px solid var(--blue-100); padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); }
.cs-results-list { display: flex; flex-direction: column; gap: 12px; }
.cs-results-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink-2); }
.cs-results-list li svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.cs-prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cs-pn-card { background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; display: flex; align-items: center; gap: 16px; transition: all var(--t-med) var(--ease); }
.cs-pn-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-3px); }
.cs-pn-card.next { justify-content: flex-end; text-align: right; }
.cs-pn-arrow { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); flex-shrink: 0; }
.cs-pn-card:hover .cs-pn-arrow { background: var(--brand); color: #fff; border-color: var(--brand); }
.cs-pn-card small { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cs-pn-card strong { font-family: var(--font-display); font-size: 1.05rem; }

/* ---------- Full VIP ---------- */
.vip-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.vip-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(38,65,139,0.55), transparent 50%), radial-gradient(circle at 20% 80%, rgba(111,150,242,0.2), transparent 45%); }
.vip-hero .container { position: relative; z-index: 2; }
.vip-hero h1 { color: #fff; }
.vip-hero .vip-sub { color: rgba(255,255,255,0.75); max-width: 640px; margin-top: 18px; font-size: 1.08rem; }
.vip-price { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 26px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 14px 26px; border-radius: 18px; backdrop-filter: blur(8px); }
.vip-price small { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.vip-price strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }

.vip-journey { position: relative; }
.vip-journey-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--line); transform: translateX(-50%); }
.vip-step { display: grid; grid-template-columns: 1fr 120px 1fr; gap: 24px; align-items: center; margin-bottom: 48px; position: relative; }
.vip-step-num { grid-column: 2; display: grid; place-items: center; position: relative; z-index: 2; }
.vip-step-num span { width: 88px; height: 88px; border-radius: 50%; background: #fff; border: 3px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--muted); transition: all var(--t-med) var(--ease); }
.vip-step.is-active .vip-step-num span { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 10px var(--brand-light); }
.vip-step-body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: all var(--t-med) var(--ease); }
.vip-step-body.right { grid-column: 3; }
.vip-step-body.left { grid-column: 1; grid-row: 1; }
.vip-step.is-active .vip-step-body { border-color: var(--brand); box-shadow: var(--shadow); }
.vip-step-body h3 { font-size: 1.2rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.vip-step-body h3 svg { width: 22px; height: 22px; color: var(--brand); }
.vip-step-body p { color: var(--muted); font-size: 0.94rem; }
.vip-includes { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.vip-includes span { background: var(--brand-soft); color: var(--brand); font-size: 0.78rem; font-weight: 600; font-family: var(--font-display); padding: 5px 12px; border-radius: 100px; }
.vip-cover-band { background: linear-gradient(120deg, var(--brand-darker), var(--brand)); border-radius: var(--radius-xl); padding: clamp(44px, 6vw, 72px); color: #fff; position: relative; overflow: hidden; text-align: center; }
.vip-cover-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12), transparent 40%); }
.vip-cover-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.vip-cover-band p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 30px; }
.vip-feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.vip-feature { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 20px; text-align: left; }
.vip-feature svg { width: 26px; height: 26px; color: var(--blue-200); margin-bottom: 10px; }
.vip-feature strong { font-family: var(--font-display); display: block; margin-bottom: 4px; }
.vip-feature small { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ---------- Gallery / before-after ---------- */
.ba-compare { position: relative; border-radius: var(--radius-xl); overflow: hidden; user-select: none; aspect-ratio: 16/8; background: var(--light-gray); }
.ba-compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-top { clip-path: inset(0 50% 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 20px rgba(0,0,0,0.4); cursor: ew-resize; }
.ba-handle::after { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; background: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); font-size: 1.1rem; color: var(--brand); }
.ba-label { position: absolute; top: 16px; background: rgba(0,0,0,0.55); color: #fff; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 100px; backdrop-filter: blur(4px); }
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

/* ---------- Process page steps ---------- */
.steps-list { display: flex; flex-direction: column; gap: 20px; }
.step-row { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; display: flex; gap: 24px; transition: all var(--t-med) var(--ease); }
.step-row:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-200); }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--blue-200); line-height: 1; min-width: 56px; }
.step-row h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step-row p { color: var(--muted); font-size: 0.95rem; max-width: 720px; }
.step-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.step-details span { background: var(--brand-soft); color: var(--brand); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; font-family: var(--font-display); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #AEB8D0; position: relative; overflow: hidden; padding-top: 70px; }
.footer-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(38,65,139,0.4), transparent 70%); pointer-events: none; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; position: relative; z-index: 2; }
.footer-brand .logo-light .logo-text { color: #fff; }
.footer-tagline { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; margin: 18px 0 8px; letter-spacing: 0.02em; }
.footer-about { font-size: 0.9rem; color: #8D97B5; max-width: 300px; margin-bottom: 22px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: grid; place-items: center; color: #AEB8D0; transition: all var(--t-fast) var(--ease); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); border-color: var(--brand); }
.footer-title { color: #fff; font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: #8D97B5; font-size: 0.92rem; transition: color var(--t-fast), padding-left var(--t-fast); position: relative; }
.footer-col ul a:hover { color: #fff; padding-left: 6px; }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer-contact ul a { display: inline-flex; align-items: flex-start; gap: 10px; }
.footer-contact .f-icon { color: var(--blue-300); flex-shrink: 0; margin-top: 2px; }
.footer-contact .f-icon svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; position: relative; z-index: 2; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: #8D97B5; transition: color var(--t-fast); }
.footer-legal a:hover { color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900; width: 48px; height: 48px;
  border-radius: 14px; background: var(--brand); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-brand); opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all var(--t-med) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; transition: transform var(--t-fast) var(--ease); }
.back-to-top:hover { background: var(--brand-dark); }
.back-to-top:hover svg { transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

.img-reveal { position: relative; overflow: hidden; }
.img-reveal img { transition: transform var(--t-slow) var(--ease); }
.img-reveal::after { content: ""; position: absolute; inset: 0; background: var(--brand); transform: translateY(100%); transition: transform 0.8s var(--ease); z-index: 2; }
.img-reveal.is-revealed::after { transform: translateY(-100%); }

/* ---------- Page entrance ---------- */
body.page-load .site-main > * { animation: pageIn 0.7s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
body.page-load .site-main > :nth-child(1) { animation-delay: 0.05s; }
body.page-load .site-main > :nth-child(2) { animation-delay: 0.12s; }
body.page-load .site-main > :nth-child(3) { animation-delay: 0.19s; }

/* ---------- Magnetic ---------- */
.magnetic { position: relative; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 56px; }
.mb-1 { margin-bottom: 12px; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }
.bg-off { background: var(--off-white); }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2 { color: #fff; }
.bg-navy .lead { color: #AEB8D0; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .services-grid, .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .fp-slide { flex: 0 0 calc((100% - 24px) / 2); }
  .vip-step { grid-template-columns: 1fr 90px; }
  .vip-step-num { grid-column: 1; grid-row: 1; justify-self: start; }
  .vip-step-body { grid-column: 1 / -1; }
  .vip-step-body.right, .vip-step-body.left { grid-column: 1 / -1; grid-row: auto; }
  .vip-journey-line { left: 44px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cats { position: static; flex-direction: row; flex-wrap: wrap; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .process-line { display: none; }
  .vip-feature-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; --header-h-scrolled: 62px; }
  body { font-size: 15.5px; }
  .container { --gutter: 18px; }
  .services-grid, .why-grid, .values-grid, .stats-grid, .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 14px; }
  .testi-card { flex: 0 0 100%; }
  .fp-slide { flex: 0 0 100%; }
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-dash-cards { grid-template-columns: 1fr 1fr; }
  .hero-fl-card1 { left: -8px; }
  .hero-fl-card2 { right: -8px; }
  .hero-slide { padding: 26px 24px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-panel { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .page-hero { padding-top: calc(var(--header-h) + 34px); }
  .cs-prev-next { grid-template-columns: 1fr; }
  .vip-step { grid-template-columns: 1fr; gap: 12px; }
  .vip-step-num { grid-row: auto; justify-self: start; }
  .vip-journey-line { display: none; }
  .back-to-top { right: 16px; bottom: 16px; }
  .cta-section { border-radius: var(--radius-lg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-chart .bar { height: var(--h); opacity: 1; }
}
