/* Fonts loaded via <link> in HTML for better performance */

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

:root {
  --bg:        #06080f;
  --bg-2:      #0a0c18;
  --bg-card:   #0d0f1e;
  --border:    #1a1d30;
  --blue:      #1E56C8;
  --blue-lt:   #4A7FE8;
  --blue-dim:  rgba(30,86,200,.15);
  --orange:    #F5A623;
  --orange-lt: #F7BC52;
  --orange-dim: rgba(245,166,35,.12);
  /* backward-compat aliases used throughout */
  --gold:      #F5A623;
  --gold-lt:   #F7BC52;
  --gold-dim:  rgba(245,166,35,.12);
  --white:     #ffffff;
  --muted:     #8b8b9e;
  --muted-lt:  #b0b0c4;
  --grad:      linear-gradient(135deg, #1E56C8 0%, #F5A623 100%);
  --grad-glow: 0 0 60px rgba(30,86,200,.22);
  --radius:    14px;
  --radius-lg: 22px;
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.032;
  pointer-events: none;
  z-index: 9997;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ─── Utility ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(245,166,35,.28);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--grad);
  color: #ffffff;
  box-shadow: 0 4px 28px rgba(30,86,200,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(30,86,200,.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ─── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(6,8,15,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted-lt);
  transition: var(--trans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted-lt);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-dim); }

/* ─── Marquee Strip ─────────────────────────────────────── */
.marquee-strip {
  background: var(--blue);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
  margin-top: 102px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30,86,200,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(245,166,35,.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,86,200,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,86,200,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title .grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-tagline-main {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.card-metric-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.card-metric-value { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; margin-bottom: 4px; }
.card-metric-value span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-metric-change { font-size: .8rem; color: #4ade80; font-weight: 600; }

.card-bar-wrap { margin-top: 20px; }
.card-bar-label { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); margin-bottom: 6px; }
.card-bar { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.card-bar-fill { height: 100%; border-radius: 99px; background: var(--grad); }

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
}

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

.badge-1 { bottom: -24px; right: -24px; animation-delay: .5s; }
.badge-2 { top: -20px; left: -20px; animation-delay: 1.5s; }

.badge-icon { font-size: 1.5rem; }
.badge-text-sm { font-size: .7rem; color: var(--muted); }
.badge-text-lg { font-size: .9rem; font-weight: 700; }

/* ─── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: var(--grad) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--trans);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--grad-glow); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-dim);
  border: 1px solid rgba(30,86,200,.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--trans);
}
.service-card:hover .service-icon { background: rgba(30,86,200,.28); }

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--trans);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── Stats / Counter ───────────────────────────────────── */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(30,86,200,.05); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }

/* ─── Why Us ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.why-item:hover { border-color: rgba(30,86,200,.35); transform: translateX(6px); }

.why-check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid rgba(30,86,200,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-lt);
  font-size: .9rem;
  font-weight: 700;
}

.why-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.why-item p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
}
.why-card:hover { border-color: rgba(30,86,200,.35); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }

.why-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.why-card-title { font-size: .9rem; font-weight: 600; }
.why-card-badge { font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; }
.badge-up { background: rgba(74,222,128,.15); color: #4ade80; }
.badge-live { background: var(--blue-dim); color: var(--blue-lt); }

.mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.bar { flex: 1; background: var(--border); border-radius: 3px; transition: var(--trans); }
.bar.active { background: var(--grad); }
.why-card:hover .bar.active { filter: brightness(1.15); }

.mini-progress { margin-top: 8px; }
.mini-progress-bar { height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; margin-top: 6px; }
.mini-progress-fill { height: 100%; border-radius: 99px; background: var(--grad); }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.cta-inner {
  background: var(--bg-card);
  border: 1px solid rgba(30,86,200,.25);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: var(--grad);
  opacity: .6;
}

.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,86,200,.12), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner h2 span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-inner p { color: var(--muted); font-size: 1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(30,86,200,.12), transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ─── About ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--trans);
}
.value-chip:hover { border-color: rgba(30,86,200,.35); color: var(--blue-lt); }
.value-chip span { font-size: 1.1rem; }

.about-side { display: flex; flex-direction: column; gap: 16px; }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
}
.about-card:hover { border-color: rgba(30,86,200,.3); }
.about-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.about-card-icon { font-size: 1.6rem; margin-bottom: 10px; }

/* ─── Services Page ──────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-icon {
  width: 72px; height: 72px;
  background: var(--blue-dim);
  border: 1px solid rgba(30,86,200,.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.service-detail h2 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.service-detail h2 span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.service-detail p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--muted-lt);
}
.feature-item::before { content: '✦'; color: var(--orange); font-size: .7rem; flex-shrink: 0; }

.service-visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-visual-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .3;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.process-step:hover { border-color: rgba(30,86,200,.3); transform: translateY(-4px); }

.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.process-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.process-step p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted-lt);
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: var(--trans);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(30,86,200,.5); box-shadow: 0 0 0 3px rgba(30,86,200,.1); }

.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--trans);
}
.info-card:hover { border-color: rgba(30,86,200,.3); transform: translateX(4px); }

.info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid rgba(30,86,200,.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.info-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.info-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  transition: var(--trans);
  text-decoration: none;
}
.social-link:hover { background: var(--blue-dim); border-color: rgba(30,86,200,.4); color: var(--blue-lt); transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 56px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-nav-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 180px;
}

.footer-right {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--muted);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: .83rem; color: var(--muted); }
.footer-bottom span { color: var(--orange); }

/* ─── Animations ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-divider { width: 100%; height: 1px; min-height: unset; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
  .contact-form-wrap { padding: 24px; }
}

/* ─── Light Theme ───────────────────────────────────────── */
[data-theme="light"] {
  --bg:       #f0f2ff;
  --bg-2:     #e8ebf8;
  --bg-card:  #ffffff;
  --border:   #ced3ef;
  --white:    #0a0c1e;
  --muted:    #6470a0;
  --muted-lt: #3a4270;
  --blue-dim:  rgba(30,86,200,.1);
  --orange-dim: rgba(245,166,35,.1);
  --gold-dim: rgba(245,166,35,.1);
  --grad-glow: 0 0 60px rgba(30,86,200,.1);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(240,242,255,.92);
  border-bottom-color: var(--border);
}

[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30,86,200,.09), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(245,166,35,.05), transparent 60%);
}

[data-theme="light"] .page-hero::before {
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(30,86,200,.09), transparent 70%);
}

[data-theme="light"] .mobile-menu { background: var(--bg-card); }
[data-theme="light"] .floating-badge { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
[data-theme="light"] .music-panel   { box-shadow: 0 8px 40px rgba(0,0,0,.12); }

/* ─── Theme Toggle (Pill) ───────────────────────────────── */
.theme-toggle {
  width: 50px;
  height: 28px;
  border-radius: 99px;
  border: none;
  background: var(--border);
  cursor: pointer;
  position: relative;
  transition: background var(--trans);
  flex-shrink: 0;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--muted-lt);
  transition: transform var(--trans), background var(--trans);
}

[data-theme="light"] .theme-toggle { background: var(--blue); }
[data-theme="light"] .theme-toggle::before { background: #fff; transform: translateX(22px); }

@media (max-width: 768px) {
  .theme-toggle { margin-left: auto; margin-right: 8px; }
}

/* ─── Music Player ──────────────────────────────────────── */
.music-player {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.music-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  width: 240px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(10px) scale(.95);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.music-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.music-track-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-track-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--muted);
  margin: 3px 0 14px;
}

.music-controls { display: flex; align-items: center; gap: 12px; }

.music-play-pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  cursor: pointer;
  font-size: .9rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}

.music-play-pause:hover { filter: brightness(1.15); transform: scale(1.05); }

.music-progress-wrap { flex: 1; }

.music-progress {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  cursor: pointer;
  overflow: hidden;
}

.music-progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  width: 0%;
  transition: width .5s linear;
  pointer-events: none;
}

.music-time {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--muted);
  margin-top: 4px;
}

.music-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: .72rem;
  color: var(--muted);
}

.music-vol input[type=range] { flex: 1; accent-color: var(--blue); cursor: pointer; }

.music-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  vertical-align: middle;
}

.music-bar { width: 3px; background: var(--orange); border-radius: 2px; }

.music-bars.playing .music-bar:nth-child(1) { animation: mbar1 .8s ease-in-out infinite; }
.music-bars.playing .music-bar:nth-child(2) { animation: mbar2 .6s ease-in-out infinite .1s; }
.music-bars.playing .music-bar:nth-child(3) { animation: mbar3 .9s ease-in-out infinite .2s; }
.music-bars.playing .music-bar:nth-child(4) { animation: mbar1 .7s ease-in-out infinite .15s; }

@keyframes mbar1 { 0%,100%{height:3px}  50%{height:13px} }
@keyframes mbar2 { 0%,100%{height:7px}  50%{height:5px}  }
@keyframes mbar3 { 0%,100%{height:10px} 50%{height:3px}  }

.music-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: 0 4px 24px rgba(30,86,200,.4);
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(30,86,200,.55); }

@media (max-width: 480px) {
  .music-player { bottom: 20px; right: 20px; }
  .music-panel  { width: 210px; }
}

/* ─── Portfolio ──────────────────────────────────────────── */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 52px;
}

.pf-btn {
  padding: 10px 24px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted-lt);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'DM Sans', sans-serif;
}

.pf-btn:hover,
.pf-btn.active {
  border-color: var(--blue);
  color: var(--blue-lt);
  background: var(--blue-dim);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,86,200,.38);
  box-shadow: 0 20px 50px rgba(0,0,0,.3), var(--grad-glow);
}

.portfolio-card.hidden { display: none; }

.portfolio-card-visual {
  height: 158px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: .07;
  transition: var(--trans);
}

.portfolio-card:hover .portfolio-card-visual::before { opacity: .13; }

.pv-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.pv-metric {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pv-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 6px 0 14px;
}

.pv-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 40px;
}

.pv-bar {
  width: 9px;
  border-radius: 3px 3px 0 0;
  background: rgba(30,86,200,.18);
}

.pv-bar.hi { background: var(--grad); }

.portfolio-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-cat-badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-lt);
  background: var(--blue-dim);
  border: 1px solid rgba(30,86,200,.25);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  width: fit-content;
}

.portfolio-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio-card-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.portfolio-results {
  display: flex;
  gap: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.result-item {
  flex: 1;
  text-align: center;
  padding: 0 4px;
  border-right: 1px solid var(--border);
}

.result-item:last-child { border-right: none; }

.result-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-lbl {
  display: block;
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ─── Logo Image ────────────────────────────────────────── */
.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 82px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: opacity var(--trans), box-shadow var(--trans);
}

.nav-logo-wrap:hover .nav-logo-img { opacity: 0.88; }

[data-theme="dark"] .nav-logo-img {
  box-shadow: 0 2px 20px rgba(30,86,200,.3);
}

.footer-logo-img {
  height: 74px;
  width: auto;
  display: block;
  border-radius: 10px;
}

[data-theme="dark"] .footer-logo-img {
  box-shadow: 0 2px 16px rgba(30,86,200,.25);
}

.intro-logo-img {
  height: 220px;
  width: auto;
  border-radius: 20px;
  animation: introPop .6s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow: 0 10px 56px rgba(30,86,200,.45);
}

/* ─── Brand Tagline ─────────────────────────────────────── */
.brand-tagline {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 6px 0 14px;
}

/* Page-hero brand stamp */
.page-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.page-hero-logo {
  height: 80px;
  width: auto;
  border-radius: 12px;
}

[data-theme="dark"] .page-hero-logo {
  box-shadow: 0 4px 24px rgba(30,86,200,.3);
}

.page-hero-tagline {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA section brand stamp */
.cta-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.cta-logo {
  height: 72px;
  width: auto;
  border-radius: 10px;
  opacity: .92;
}

[data-theme="dark"] .cta-logo {
  box-shadow: 0 4px 20px rgba(30,86,200,.28);
}

@keyframes introPop {
  0%   { transform: scale(.7); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: exclusion;
  transition: width .2s, height .2s, opacity .2s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .2s;
  opacity: 0.7;
}

/* Hide default cursor everywhere on desktop — show only the custom one */
*, *::before, *::after { cursor: none !important; }

@media (hover: none), (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  /* Restore native cursor on touch devices */
  * { cursor: auto !important; }
  a, button, [role="button"], select, input, textarea, label { cursor: pointer !important; }
}

/* ─── Intro Screen ──────────────────────────────────────── */
#intro-screen {
  position: fixed;
  inset: 0;
  background: #06080f;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity .8s ease;
}

#intro-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.intro-logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-tagline {
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.intro-plane {
  font-size: 2.4rem;
  animation: introFly 1.6s ease-in-out infinite alternate;
  display: block;
  margin: 12px 0;
}

@keyframes introFly {
  0%   { transform: translateX(-28px) rotate(-8deg); opacity: .5; }
  100% { transform: translateX(28px)  rotate(8deg);  opacity: 1;  }
}

.intro-hint {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 36px;
  animation: blinkHint 1.6s ease-in-out infinite;
}

@keyframes blinkHint {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1;   }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item.open { border-color: rgba(30,86,200,.35); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  user-select: none;
}

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--muted);
  transition: var(--trans);
}

.faq-item.open .faq-icon { border-color: var(--blue); color: var(--blue-lt); background: var(--blue-dim); transform: rotate(45deg); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 400px; }
