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

:root {
  --bg:      #04080f;
  --surface: #080f1c;
  --navy:    #071429;
  --blue:    #0a2550;
  --mid:     #0f3875;
  --accent:  #1458c8;
  --bright:  #2d7aff;
  --white:   #ffffff;
  --off:     #e8edf5;
  --muted:   #6b7899;
  --border:  rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.1);
  --ff: 'Bebas Neue', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--off);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 66px;
  background: rgba(4,8,15,.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--ff); font-size: 1.65rem; letter-spacing: .05em;
  color: var(--white); text-decoration: none;
}
.logo span {
  background: linear-gradient(90deg, #2d7aff, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navlinks { display: flex; gap: 2rem; align-items: center; }
.navlinks a {
  font-size: .78rem; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: .05em; text-transform: uppercase;
  transition: color .2s;
}
.navlinks a:hover, .navlinks a.active { color: var(--white); }
.navlinks a.active {
  position: relative;
}
.navlinks a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--bright));
  box-shadow:
    0 0 6px rgba(45,122,255,.8),
    0 0 20px rgba(45,122,255,.5),
    0 4px 30px 6px rgba(45,122,255,.25),
    0 8px 50px 12px rgba(45,122,255,.1);
}
.nav-btn {
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff; border: none; cursor: pointer;
  font-family: var(--fb); font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .65rem 1.4rem; border-radius: 99px;
  text-decoration: none; transition: opacity .2s; display: inline-block;
}
.nav-btn:hover { opacity: .85; }
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.ham span { width: 22px; height: 1.5px; background: var(--white); display: block; }

/* ── MOBILE MENU ── */
.mob {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 300;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
}
.mob.open { display: flex; }

/* Top bar inside mob */
.mob-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-top-logo {
  font-family: var(--ff); font-size: 1.5rem; letter-spacing: .05em; color: var(--white);
  text-decoration: none; display: flex; align-items: center;
  max-width: calc(100% - 50px); overflow: hidden;
}
.mob-top-logo img {
  height: 26px; width: auto; max-width: 100%; object-fit: contain; display: block;
}
.mob-top-logo span {
  background: linear-gradient(90deg, #2d7aff, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mob-x {
  color: var(--muted); font-size: 1rem; cursor: pointer; background: none; border: none;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border); color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* Nav links — fills all available space */
.mob-nav-links {
  display: flex; flex-direction: column;
  flex: 1; justify-content: center;
  gap: 0;
}
.mob-nav-links a {
  font-family: var(--ff); font-size: 2rem; letter-spacing: .04em;
  color: rgba(255,255,255,.75); text-decoration: none;
  padding: .9rem 0; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-nav-links a:first-child { border-top: 1px solid var(--border); }
.mob-nav-links a:hover { color: var(--white); }
.mob-nav-links a::after {
  content: '→'; font-family: var(--fb); font-size: 1rem;
  color: var(--border2); transition: color .2s; margin-left: .5rem;
}
.mob-nav-links a:hover::after { color: var(--bright); }

/* CTA at bottom */
.mob-footer { flex-shrink: 0; padding-top: 1.5rem; }
.mob-btn {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff; padding: 1.1rem 1.5rem; border-radius: 14px;
  font-family: var(--fb); font-size: .88rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 0 28px rgba(45,122,255,.35);
}

/* ── BUTTONS ── */
.btn-glow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff; border: none; cursor: pointer;
  font-family: var(--fb); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 1.8rem; border-radius: 99px; transition: all .2s;
  text-decoration: none; box-shadow: 0 0 24px rgba(45,122,255,.3);
}
.btn-glow:hover { box-shadow: 0 0 36px rgba(45,122,255,.5); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.05); color: var(--white);
  border: 1px solid var(--border2); cursor: pointer;
  font-family: var(--fb); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 1.8rem; border-radius: 99px; transition: all .2s;
  text-decoration: none; backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.btn-lg { padding: 1rem 2rem; font-size: .9rem; }

/* ── LAYOUT ── */
.wrap { max-width: 1380px; margin: 0 auto; padding: 0 4rem; }
.sec { padding: 8rem 0; }

/* ── TYPOGRAPHY ── */
.eye {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--bright); margin-bottom: 1rem;
}
.eye::before { content: ''; width: 18px; height: 1.5px; background: var(--bright); }
.dxl { font-family: var(--ff); font-size: clamp(3rem, 6vw, 5.5rem); line-height: .93; letter-spacing: .02em; color: var(--white); }
.dlg { font-family: var(--ff); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .93; letter-spacing: .02em; color: var(--white); }
.dmd { font-family: var(--ff); font-size: clamp(2rem, 4vw, 3.2rem); line-height: .95; letter-spacing: .02em; color: var(--white); }
.grad-text {
  background: linear-gradient(135deg, #fff 0%, #7ab4ff 60%, #2d7aff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.body-lg { font-size: .97rem; color: rgba(255,255,255,.45); line-height: 1.78; font-weight: 300; }
.split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: .85rem 0; background: rgba(255,255,255,.02);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}
.mi { font-family: var(--ff); font-size: 1rem; letter-spacing: .14em; color: rgba(255,255,255,.3); padding: 0 2.5rem; white-space: nowrap; }
.md { color: var(--bright); opacity: .5; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 66px); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7rem 4rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(20,88,200,.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(10,37,80,.6) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at -10% 50%, rgba(7,20,41,.8) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; top: 5%; right: 10%; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -10%; left: 20%; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,37,80,.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(45,122,255,.1); border: 1px solid rgba(45,122,255,.25);
  border-radius: 99px; padding: .35rem 1rem .35rem .5rem;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.75);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 2rem; position: relative; z-index: 1; width: fit-content;
}
.htdot { width: 22px; height: 22px; border-radius: 50%; background: rgba(45,122,255,.25); display: flex; align-items: center; justify-content: center; }
.htdot i { width: 8px; height: 8px; border-radius: 50%; background: var(--bright); display: block; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.75); } }
.hero h1 {
  font-family: var(--ff); font-size: clamp(5rem, 11vw, 10.5rem);
  line-height: .9; letter-spacing: .02em; color: var(--white);
  position: relative; z-index: 1; margin-bottom: 3rem;
}
.hero h1 .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.2); }
.hero h1 .grad {
  background: linear-gradient(135deg, #fff 0%, #7ab4ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  position: relative; z-index: 1; border-top: 1px solid var(--border); padding-top: 2.5rem;
}
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.45); max-width: 400px; line-height: 1.8; font-weight: 300; }
.hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; }
.stats-row { display: flex; gap: 0; }
.stat-item { padding: 0 2rem; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.sn {
  font-family: var(--ff); font-size: 2.8rem; line-height: 1; letter-spacing: .02em;
  background: linear-gradient(135deg, #fff, #7ab4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sl { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .2rem; }
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── SERVICE CARDS ── */
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}
.svc { background: var(--surface); padding: 3rem; transition: background .3s; position: relative; }
.svc::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(45,122,255,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.svc:hover { background: #090e1b; }
.svc:hover::before { opacity: 1; }
.svc-num { font-family: var(--ff); font-size: 3.5rem; letter-spacing: .02em; line-height: 1; margin-bottom: 1.5rem; color: rgba(255,255,255,.06); transition: color .3s; }
.svc:hover .svc-num { color: var(--bright); opacity: .5; }
.svc h3 { font-family: var(--ff); font-size: 1.8rem; letter-spacing: .02em; color: var(--white); margin-bottom: .75rem; }
.svc p { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 380px; }
.svc-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.tag { background: rgba(45,122,255,.1); border: 1px solid rgba(45,122,255,.15); border-radius: 99px; padding: .3rem .85rem; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ── PROCESS ── */
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; margin-top: 4rem;
}
.proc { padding: 2.5rem 2rem; background: var(--surface); transition: background .25s; position: relative; overflow: hidden; }
.proc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.proc:hover { background: #0a1020; }
.proc:hover::after { transform: scaleX(1); }
.pn { font-family: var(--ff); font-size: 4rem; color: rgba(255,255,255,.04); line-height: 1; margin-bottom: 1.5rem; transition: color .3s; }
.proc:hover .pn { color: rgba(45,122,255,.2); }
.proc h4 { font-family: var(--ff); font-size: 1.4rem; letter-spacing: .03em; color: var(--white); margin-bottom: .6rem; }
.proc p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── NUMBERS ── */
.nums-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}
.nc { background: var(--surface); padding: 2.5rem; text-align: center; transition: background .25s; position: relative; overflow: hidden; }
.nc::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(45,122,255,.08) 0%, transparent 70%); opacity: 0; transition: opacity .3s; }
.nc:hover { background: #090e1b; }
.nc:hover::before { opacity: 1; }
.nc-n {
  font-family: var(--ff); font-size: 4.5rem; letter-spacing: .02em; line-height: 1;
  background: linear-gradient(135deg, #fff, #7ab4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nc-l { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: .5rem; }

/* ── PROJECTS ── */
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; margin-top: 3rem; }
.proj { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
.proj-a { grid-row: span 2; min-height: 580px; }
.proj-b, .proj-c { min-height: 270px; }
.proj-bg-grad { position: absolute; inset: 0; }
.proj-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}
.proj-over {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  background: linear-gradient(to top, rgba(4,8,15,.95) 0%, rgba(4,8,15,.2) 55%, transparent 80%);
  transition: .35s;
}
.proj:hover .proj-over { background: linear-gradient(to top, rgba(4,8,15,1) 0%, rgba(4,8,15,.5) 55%, rgba(4,8,15,.1) 80%); }
.proj-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem;
  transition: .3s; backdrop-filter: blur(8px);
}
.proj:hover .proj-arrow { background: var(--bright); border-color: var(--bright); color: #fff; box-shadow: 0 0 20px rgba(45,122,255,.4); }
.proj-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: .4rem; }
.proj-name { font-family: var(--ff); font-size: 1.6rem; letter-spacing: .02em; color: #fff; line-height: 1.1; }
.proj-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: .4rem; }

/* ── PRICING ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pkg {
  border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .25s, transform .25s; position: relative; overflow: hidden;
}
.pkg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 100% 60% at 50% 100%, rgba(20,88,200,.08) 0%, transparent 60%); pointer-events: none; }
.pkg:hover { border-color: rgba(45,122,255,.3); transform: translateY(-4px); }
.pkg-hot { border-color: rgba(45,122,255,.4); background: linear-gradient(160deg, #071832 0%, #0a2550 100%); }
.pkg-hot::before { background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(45,122,255,.15) 0%, transparent 60%); }
.pkg-hot:hover { border-color: rgba(45,122,255,.7); }
.pkg-badge { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, var(--accent), var(--bright)); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 0 20px 0 12px; }
.pkg-name { font-family: var(--ff); font-size: 1.5rem; letter-spacing: .03em; color: var(--white); }
.pkg-price {
  font-family: var(--ff); font-size: 3rem; letter-spacing: .01em; line-height: 1;
  background: linear-gradient(135deg, #fff, #7ab4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pkg-price sub { font-family: var(--fb); font-size: .85rem; font-weight: 400; color: var(--muted); -webkit-text-fill-color: var(--muted); letter-spacing: 0; }
.pkg-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.pkg-div { height: 1px; background: var(--border); }
.feats { list-style: none; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.feats li { font-size: .83rem; color: var(--muted); display: flex; align-items: center; gap: .65rem; padding: .3rem 0; }
.feats li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: rgba(45,122,255,.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-3' stroke='%232d7aff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.pkg-btn {
  border-radius: 99px; cursor: pointer; font-family: var(--fb); font-weight: 700;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--border2); padding: .8rem 1.2rem;
  background: transparent; color: var(--white); transition: all .2s;
  text-align: center; text-decoration: none; display: block;
}
.pkg-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.pkg-hot .pkg-btn { background: linear-gradient(135deg, var(--accent), var(--bright)); border-color: transparent; box-shadow: 0 0 20px rgba(45,122,255,.3); }
.pkg-hot .pkg-btn:hover { box-shadow: 0 0 32px rgba(45,122,255,.5); transform: translateY(-1px); }
.pkg-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.pkg-seo {
  border-radius: 20px; padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #071832 0%, #0d2a5a 100%);
  border: 1px solid rgba(45,122,255,.2);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.pkg-seo::before { content: ''; position: absolute; top: -40%; right: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(45,122,255,.12) 0%, transparent 70%); pointer-events: none; }
.seo-l { display: flex; flex-direction: column; gap: .6rem; position: relative; z-index: 1; }
.seo-r { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; min-width: 180px; }
.pkg-custom { border: 1px dashed rgba(255,255,255,.08); border-radius: 20px; padding: 2.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--surface); }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 4rem auto; width: calc(100% - 8rem); max-width: 1380px; border-radius: 28px; padding: 7rem 4rem; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #071428 0%, #0a2045 40%, #071428 100%);
  border: 1px solid rgba(45,122,255,.15);
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(45,122,255,.18) 0%, transparent 65%); }
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--ff); font-size: clamp(2.8rem, 7vw, 6rem); line-height: .92; letter-spacing: .02em;
  background: linear-gradient(135deg, #fff 0%, #7ab4ff 60%, #2d7aff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.cta-banner p { color: rgba(255,255,255,.4); font-size: .95rem; max-width: 400px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq { border-radius: 16px; padding: 1.75rem; background: var(--surface); border: 1px solid var(--border); }
.faq h4 { font-family: var(--ff); font-size: 1.1rem; letter-spacing: .03em; color: var(--white); margin-bottom: .5rem; }
.faq p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0 8rem; align-items: start; }
.about-vis {
  border-radius: 24px;
  background: linear-gradient(160deg, #080f1e 0%, #0a1e3d 100%);
  border: 1px solid var(--border); padding: 3rem;
  display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden;
}
.about-vis::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45,122,255,.1) 0%, transparent 60%); pointer-events: none; }
.about-vis::after { content: 'NX'; font-family: var(--ff); font-size: 14rem; color: var(--white); opacity: .02; position: absolute; bottom: -2rem; right: -1rem; line-height: 1; pointer-events: none; }
.astat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.astat { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.astat-n {
  font-family: var(--ff); font-size: 3rem; letter-spacing: .02em; line-height: 1;
  background: linear-gradient(135deg, #fff, #7ab4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.astat-l { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .25rem; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.val { border-radius: 14px; padding: 1.4rem; background: var(--surface); border: 1px solid var(--border); }
.val h4 { font-family: var(--ff); font-size: 1rem; letter-spacing: .03em; color: var(--white); margin-bottom: .3rem; }
.val p { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform .2s, border-color .25s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(45,122,255,.3); }
.team-av { height: 160px; display: flex; align-items: center; justify-content: center; font-family: var(--ff); font-size: 4rem; color: #fff; letter-spacing: .04em; position: relative; overflow: hidden; }
.team-av::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 130%, rgba(45,122,255,.3) 0%, transparent 65%); }
.team-body { padding: 1.5rem; }
.team-name { font-family: var(--ff); font-size: 1.3rem; letter-spacing: .03em; color: var(--white); }
.team-role { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .2rem; }
.team-bio { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-top: .75rem; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; padding: 8rem 0; max-width: 1380px; margin: 0 auto; }
.ci-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; border-top: 1px solid var(--border); }
.ci-row { padding: 1.2rem 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: .25rem; }
.ci-l { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.ci-v { font-size: .95rem; font-weight: 600; color: var(--white); }
.avail { display: inline-flex; align-items: center; gap: .5rem; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); border-radius: 99px; padding: .35rem .9rem; font-size: .7rem; font-weight: 700; color: #4ade80; margin-top: 1.5rem; letter-spacing: .04em; text-transform: uppercase; }
.avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
.cform { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; position: relative; overflow: hidden; }
.cform::before { content: ''; position: absolute; top: -30%; right: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(45,122,255,.06) 0%, transparent 70%); pointer-events: none; }
.cform-title { font-family: var(--ff); font-size: 1.4rem; letter-spacing: .03em; color: var(--white); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.flabel { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); display: block; margin-bottom: .4rem; }
.ffield {
  width: 100%; border: 1px solid var(--border); border-radius: 12px;
  padding: .8rem 1.1rem; font-family: var(--fb); font-size: .88rem;
  color: var(--white); background: rgba(255,255,255,.04); outline: none;
  transition: border-color .15s; -webkit-appearance: none;
}
.ffield::placeholder { color: rgba(255,255,255,.2); }
.ffield:focus { border-color: rgba(45,122,255,.5); background: rgba(45,122,255,.05); }
textarea.ffield { height: 120px; resize: vertical; }
select.ffield { cursor: pointer; }
select.ffield option { background: #0a1020; color: var(--white); }
.fgroup { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.fsub {
  width: 100%; border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff; border: none; cursor: pointer;
  font-family: var(--fb); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 1rem 1.5rem;
  transition: all .2s; margin-top: .5rem; box-shadow: 0 0 24px rgba(45,122,255,.25);
  position: relative; z-index: 1;
}
.fsub:hover { box-shadow: 0 0 36px rgba(45,122,255,.4); transform: translateY(-1px); }
.fmeta { font-size: .7rem; color: var(--muted); text-align: center; margin-top: .75rem; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 4rem 2.5rem; }
.foot-inner { max-width: 1380px; margin: 0 auto; }
.foot-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.flogo { font-family: var(--ff); font-size: 2rem; letter-spacing: .05em; color: var(--white); }
.flogo span { background: linear-gradient(90deg, #2d7aff, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fdesc { font-size: .82rem; color: rgba(255,255,255,.25); line-height: 1.8; margin-top: .75rem; max-width: 280px; }
.fcol h5 { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.2); margin-bottom: 1.2rem; }
.fcol a { display: block; font-size: .83rem; color: rgba(255,255,255,.35); text-decoration: none; margin-bottom: .6rem; transition: color .15s; }
.fcol a:hover { color: var(--white); }
.fbot { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: .72rem; color: rgba(255,255,255,.18); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff; padding: .9rem 1.75rem; border-radius: 99px;
  font-size: .83rem; font-weight: 600; z-index: 999;
  transform: translateY(80px); opacity: 0; transition: .3s;
  pointer-events: none; box-shadow: 0 0 32px rgba(45,122,255,.4);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  /* Nav */
  .nav { padding: 0 1.25rem; height: 60px; }
  .navlinks, .nav-btn { display: none; }
  .ham { display: flex; }

  /* Hero */
  .hero { padding: 4rem 1.25rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.5rem); margin-bottom: 2rem; }
  .hero-tag { font-size: .65rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding-top: 1.5rem; }
  .hero-right { align-items: flex-start; width: 100%; }
  .hero-desc { font-size: .9rem; max-width: 100%; }
  .stats-row { flex-wrap: wrap; gap: 0; width: 100%; }
  .stat-item { padding: .5rem 1.25rem .5rem 0; border-right: none; }
  .hero-btns { flex-wrap: wrap; width: 100%; }
  .hero-btns .btn-glow,
  .hero-btns .btn-outline { flex: 1; justify-content: center; min-width: 140px; font-size: .75rem; padding: .75rem 1rem; }

  /* Layout */
  .wrap { padding: 0 1.25rem; }
  .sec { padding: 4rem 0; }

  /* Grids → single column */
  .svc-grid, .proc-grid, .nums-grid, .pkg-grid, .faq-grid,
  .vals, .about-grid, .team-grid, .foot-grid, .contact-wrap,
  .form-row, .astat-row, .pkg-extra { grid-template-columns: 1fr; }

  /* Projects */
  .proj-grid { grid-template-columns: 1fr; }
  .proj-a { grid-row: auto; min-height: 300px; }
  .proj-b, .proj-c { min-height: 220px; }

  /* Pricing */
  .pkg { padding: 2rem 1.5rem; }
  .pkg-seo, .pkg-custom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .seo-r { align-items: flex-start; width: 100%; }
  .seo-r .btn-glow { width: 100%; justify-content: center; }
  .pkg-custom .btn-glow { width: 100%; justify-content: center; }

  /* CTA banner */
  .cta-banner { margin: 2rem 1.25rem; padding: 3rem 1.5rem; border-radius: 20px; text-align: center; width: auto; }
  .cta-banner h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .cta-banner p { max-width: 100%; font-size: .88rem; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: .75rem; }
  .cta-btns .btn-glow,
  .cta-btns .btn-outline { justify-content: center; width: 100%; }

  /* Sections */
  .split { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
  .dxl { font-size: clamp(2.5rem, 10vw, 4rem); }
  .dlg { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* Service cards */
  .svc { padding: 2rem 1.5rem; }

  /* Contact */
  .contact-wrap { padding: 4rem 1.25rem; gap: 2.5rem; }
  .cform { padding: 2rem 1.5rem; }

  /* About */
  .about-grid { padding: 2rem 1.25rem 4rem; gap: 2.5rem; }

  /* Footer */
  footer { padding: 3.5rem 1.25rem 2rem; }
  .foot-grid { gap: 2rem; }

  /* Marquee */
  .mi { font-size: .85rem; padding: 0 1.5rem; }
}

/* ── EMOJI IN STATS ── */
.nc-n.emoji {
  font-family: var(--fb);
  font-size: 2.8rem;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
}

/* Ensure mob menu overlays everything */
.mob {
  z-index: 400;
}

/* ── USP TITLES (niet-emoji) ── */
.usp-title {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.nc-icon {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  display: block;
  line-height: 1;
}

/* ── DIENSTEN PAGINA ── */
.dienst-blok {
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 2rem;
  position: relative;
}
.dienst-blok::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 0% 0%, rgba(45,122,255,.05) 0%, transparent 60%);
  pointer-events: none;
}
.dienst-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 3rem 0;
  position: relative;
  z-index: 1;
}
.dienst-num {
  font-family: var(--ff);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(45,122,255,.2);
  flex-shrink: 0;
  margin-top: -.4rem;
}
.dienst-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 3rem 3rem;
  position: relative;
  z-index: 1;
}
.dienst-desc .body-lg { font-size: .92rem; }
.dienst-feats {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
}
.dfeat {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--off);
}
.dfeat-check {
  color: var(--bright);
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dienst-pakketten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mini pakket kaartjes op diensten pagina */
.mini-pkg {
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: border-color .2s;
}
.mini-pkg:hover { border-color: rgba(45,122,255,.25); }
.mini-pkg-hot {
  background: linear-gradient(160deg, #071832 0%, #0a2550 100%);
  border-color: rgba(45,122,255,.35);
  position: relative;
}
.mini-pkg-seo {
  background: linear-gradient(135deg, #071832 0%, #0d2a5a 100%);
  border-color: rgba(45,122,255,.2);
  flex: 1;
}
.mini-pkg-dashed {
  border-style: dashed;
  border-color: rgba(255,255,255,.1);
  background: transparent;
}
.mini-pkg-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--bright));
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 99px;
  margin-bottom: .6rem;
}
.mini-pkg-name {
  font-family: var(--ff);
  font-size: 1.2rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: .3rem;
}
.mini-pkg-price {
  font-family: var(--ff);
  font-size: 2rem;
  letter-spacing: .02em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #7ab4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .3rem;
}
.mini-pkg-sub {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

/* Responsive diensten */
@media (max-width: 860px) {
  .dienst-header { padding: 2rem 1.5rem 0; gap: 1rem; }
  .dienst-num { font-size: 3rem; }
  .dienst-body { grid-template-columns: 1fr; padding: 1.5rem 1.5rem 2rem; gap: 2rem; }
}

/* ── LOGO IMAGE ── */
.logo-img { display: flex; align-items: center; text-decoration: none; }
.nav-logo  { height: 38px; width: auto; display: block; }
.mob-logo-img { display: flex; align-items: center; text-decoration: none; }
.mob-logo-img img { height: 34px; width: auto; display: block; }
.foot-logo-img { height: 48px; width: auto; display: block; margin-bottom: .75rem; }

@media (max-width: 860px) {
  .nav-logo { height: 28px; }
  .mob-logo-img img { height: 26px; width: auto; max-width: 140px; object-fit: contain; }
}

/* ── LEGAL PAGES ── */
.legal-body h2 {
  font-family: var(--ff);
  font-size: 1.4rem;
  letter-spacing: .03em;
  color: var(--white);
  margin: 2rem 0 .6rem;
}
.legal-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.legal-body a { color: var(--bright); }

/* ── FOOTER LEGAL LINKS ── */
.fbot a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .15s;
}
.fbot a:hover { color: var(--white); }
