/* ===================================
   BITNDASH THEME — MAIN STYLESHEET
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --bg: #08080C;
  --surface: #0F0F16;
  --card: #14141E;
  --card2: #1A1A28;
  --border: #1F1F30;
  --border2: #2A2A40;
  --blue: #3D8EFF;
  --blue2: #2563EB;
  --blue3: #60A5FA;
  --blue-dim: rgba(61,142,255,0.12);
  --blue-dim2: rgba(61,142,255,0.06);
  --white: #EEF2FF;
  --muted: #6B7280;
  --muted2: #9CA3AF;
  --head: 'Sora', sans-serif;
  --body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,12,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -1px;
  color: var(--white);
}
.site-logo em { color: var(--blue); font-style: normal; }
.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: var(--muted2);
  font-size: 0.83rem;
  font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.nav-cta-group { display: flex; gap: .75rem; align-items: center; }
.btn-ghost-sm {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
  padding: .5rem 1.1rem;
  border-radius: 6px;
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.btn-ghost-sm:hover { border-color: var(--blue); color: var(--blue3); }
.btn-blue-sm {
  background: var(--blue2);
  color: #fff;
  border: none;
  padding: .5rem 1.1rem;
  border-radius: 6px;
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.btn-blue-sm:hover { background: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero-section {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61,142,255,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .22;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-dim);
  border: 1px solid rgba(61,142,255,.25);
  color: var(--blue3);
  font-size: .72rem; font-weight: 600;
  padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem; letter-spacing: .3px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.3); }
}
.hero-title {
  font-family: var(--head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero-title .accent { display: block; color: var(--blue3); }
.hero-subtitle {
  color: var(--muted2);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--blue);
  color: #fff; border: none;
  padding: .85rem 2rem; border-radius: 8px;
  font-family: var(--body); font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: all .2s; display: inline-block;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border2);
  padding: .85rem 2rem; border-radius: 8px;
  font-family: var(--body); font-weight: 500; font-size: .9rem;
  cursor: pointer; transition: all .2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--blue3); color: var(--blue3); }
.hero-stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--head); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat-number span { color: var(--blue); }
.stat-label { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.stat-divider { width: 1px; background: var(--border2); align-self: stretch; }

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0; overflow: hidden; position: relative;
}
.marquee-section::before, .marquee-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 22s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.marquee-item svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ===== SECTION BASE ===== */
.section-wrap { padding: 5rem 2rem; max-width: 1080px; margin: 0 auto; }
.section-divider { border: none; border-top: 1px solid var(--border); max-width: 1080px; margin: 0 auto; }
.section-label { font-size: .68rem; font-weight: 700; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; margin-bottom: .6rem; font-family: var(--head); }
.section-title { font-family: var(--head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: .75rem; }
.section-sub { color: var(--muted2); font-size: .93rem; line-height: 1.7; max-width: 500px; margin-bottom: 2.5rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.service-card { background: var(--surface); padding: 2rem 1.75rem; transition: background .25s; }
.service-card:hover { background: var(--card); }
.svc-num { font-family: var(--head); font-size: .65rem; font-weight: 700; color: var(--blue); letter-spacing: 2px; margin-bottom: 1.2rem; opacity: .7; }
.svc-icon { width: 44px; height: 44px; background: var(--blue-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--head); font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p { color: var(--muted2); font-size: .8rem; line-height: 1.65; }
.svc-badge { display: inline-block; margin-top: .9rem; background: var(--blue-dim2); border: 1px solid rgba(61,142,255,.15); color: var(--blue3); font-size: .68rem; padding: .2rem .6rem; border-radius: 4px; }

/* ===== PORTFOLIO ===== */
.port-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: transparent; border: 1px solid var(--border2); color: var(--muted2); padding: .4rem .9rem; border-radius: 100px; font-size: .75rem; font-family: var(--body); cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--blue-dim); border-color: rgba(61,142,255,.35); color: var(--blue3); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.port-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; cursor: pointer; }
.port-card:hover { border-color: rgba(61,142,255,.4); transform: translateY(-3px); }
.port-card.featured { grid-column: span 2; }
.port-screen { height: 220px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.port-card.featured .port-screen { height: 280px; }
.port-browser { width: 88%; background: #0A0A14; border-radius: 8px; border: 1px solid var(--border2); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.browser-bar { background: #13131F; padding: .4rem .7rem; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: .3rem; }
.browser-dots span { width: 7px; height: 7px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url { flex: 1; background: var(--surface); border-radius: 4px; padding: .2rem .6rem; font-size: .62rem; color: var(--muted); font-family: monospace; }
.browser-body { padding: 1rem; min-height: 100px; }
.port-info { padding: 1.25rem 1.4rem; display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.port-info-left h4 { font-family: var(--head); font-size: .92rem; font-weight: 700; margin-bottom: .3rem; }
.port-info-left p { color: var(--muted2); font-size: .78rem; }
.port-meta-tag { background: var(--blue-dim); border: 1px solid rgba(61,142,255,.2); color: var(--blue3); font-size: .65rem; padding: .25rem .6rem; border-radius: 4px; white-space: nowrap; font-weight: 500; }
.port-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }
.demo-strip { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 1.25rem; }
.demo-strip h3 { font-family: var(--head); font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.demo-strip p { color: var(--muted2); font-size: .83rem; line-height: 1.6; }
.demo-links { display: flex; flex-direction: column; gap: .5rem; }
.demo-link { display: flex; align-items: center; gap: .6rem; background: var(--card); border: 1px solid var(--border2); border-radius: 8px; padding: .65rem 1rem; color: var(--white); font-size: .8rem; font-weight: 500; transition: all .2s; white-space: nowrap; }
.demo-link:hover { border-color: var(--blue); color: var(--blue3); }
.demo-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-cards { display: flex; flex-direction: column; gap: 1rem; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color .2s; }
.why-card:hover { border-color: rgba(61,142,255,.3); }
.why-icon { width: 38px; height: 38px; background: var(--blue-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4 { font-family: var(--head); font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.why-card p { color: var(--muted2); font-size: .78rem; line-height: 1.6; }
.why-metrics { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.why-metrics h3 { font-family: var(--head); font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.3; }
.metric-list { display: flex; flex-direction: column; gap: .85rem; margin: 1.5rem 0; }
.metric-row { display: flex; justify-content: space-between; align-items: center; }
.metric-label { font-size: .8rem; color: var(--muted2); }
.metric-bar { flex: 1; height: 4px; background: var(--border2); border-radius: 2px; margin: 0 .75rem; }
.metric-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue2), var(--blue3)); }
.metric-val { font-size: .78rem; font-weight: 600; color: var(--blue3); min-width: 32px; text-align: right; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.process-step { padding: 2rem 1.5rem; border-right: 1px solid var(--border); transition: background .2s; }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--card2); }
.proc-num { font-family: var(--head); font-size: 2.5rem; font-weight: 800; color: rgba(61,142,255,.12); line-height: 1; margin-bottom: .75rem; }
.proc-icon { width: 36px; height: 36px; background: var(--blue-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.proc-icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h4 { font-family: var(--head); font-size: .88rem; font-weight: 700; margin-bottom: .5rem; }
.process-step p { color: var(--muted2); font-size: .77rem; line-height: 1.6; }
.proc-day { display: inline-block; margin-top: .75rem; font-size: .65rem; color: var(--blue); font-weight: 600; letter-spacing: .5px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; position: relative; transition: border-color .25s; }
.price-card.featured { border-color: rgba(61,142,255,.4); background: linear-gradient(135deg,#0F1629 0%,var(--card) 100%); }
.price-card:hover { border-color: rgba(61,142,255,.3); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue2); color: #fff; font-size: .65rem; font-weight: 700; padding: .25rem .85rem; border-radius: 100px; white-space: nowrap; letter-spacing: .5px; }
.price-tier { font-family: var(--head); font-size: .85rem; font-weight: 700; color: var(--muted2); margin-bottom: .5rem; }
.price-amount { font-family: var(--head); font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; margin-bottom: .25rem; }
.price-amount sup { font-size: 1rem; vertical-align: top; margin-top: .4rem; color: var(--blue3); }
.price-desc { font-size: .78rem; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.price-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.price-feature { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted2); }
.price-feature svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.price-btn { width: 100%; padding: .7rem; border-radius: 7px; font-family: var(--body); font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; border: none; }
.price-btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border2); }
.price-btn-outline:hover { border-color: var(--blue3); color: var(--blue3); }
.price-btn-solid { background: var(--blue2); color: #fff; }
.price-btn-solid:hover { background: var(--blue); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color .2s; }
.testi-card:hover { border-color: rgba(61,142,255,.3); }
.testi-stars { color: var(--blue); font-size: .75rem; letter-spacing: 2px; margin-bottom: .85rem; }
.testi-quote { font-size: .83rem; line-height: 1.7; color: var(--muted2); margin-bottom: 1.1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .65rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-dim); border: 1px solid rgba(61,142,255,.2); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: .68rem; font-weight: 700; color: var(--blue3); flex-shrink: 0; }
.testi-name { font-size: .8rem; font-weight: 600; }
.testi-biz { font-size: .7rem; color: var(--muted); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; }
.blog-card:hover { border-color: rgba(61,142,255,.35); transform: translateY(-2px); }
.blog-thumb { height: 180px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-cat-badge { position: absolute; top: .75rem; left: .75rem; background: rgba(61,142,255,.15); border: 1px solid rgba(61,142,255,.3); color: var(--blue3); font-size: .65rem; padding: .2rem .55rem; border-radius: 100px; font-weight: 600; }
.blog-body { padding: 1.25rem 1.4rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.blog-date, .blog-read { font-size: .72rem; color: var(--muted); }
.blog-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.blog-card h3 { font-family: var(--head); font-size: .95rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.4; }
.blog-card h3 a { color: var(--white); transition: color .2s; }
.blog-card h3 a:hover { color: var(--blue3); }
.blog-excerpt { font-size: .78rem; color: var(--muted2); line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more { font-size: .78rem; color: var(--blue3); font-weight: 500; display: flex; align-items: center; gap: .35rem; transition: gap .2s; }
.blog-read-more:hover { gap: .6rem; }

/* ===== BLOG SINGLE / ARCHIVE ===== */
.blog-page-wrap { max-width: 1080px; margin: 0 auto; padding: 4rem 2rem; }
.blog-hero { text-align: center; padding: 4rem 2rem 2rem; }
.blog-hero h1 { font-family: var(--head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.blog-hero p { color: var(--muted2); max-width: 500px; margin: 0 auto; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.single-post-wrap { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.post-header { margin-bottom: 2.5rem; }
.post-cat { font-size: .72rem; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: .75rem; display: block; }
.post-title { font-family: var(--head); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 1rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .8rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.post-content { font-size: .95rem; line-height: 1.8; color: var(--muted2); }
.post-content h2, .post-content h3 { font-family: var(--head); color: var(--white); margin: 2rem 0 .75rem; }
.post-content h2 { font-size: 1.4rem; font-weight: 700; }
.post-content h3 { font-size: 1.1rem; font-weight: 700; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.post-content li { font-size: .93rem; }
.post-content a { color: var(--blue3); }
.post-content strong { color: var(--white); font-weight: 600; }
.post-content blockquote { border-left: 3px solid var(--blue); padding: 1rem 1.5rem; background: var(--card); border-radius: 0 8px 8px 0; margin: 1.5rem 0; font-style: italic; }
.post-featured-img { width: 100%; border-radius: 12px; margin-bottom: 2rem; border: 1px solid var(--border); }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-nav a { display: flex; flex-direction: column; gap: .3rem; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; max-width: 48%; transition: border-color .2s; }
.post-nav a:hover { border-color: var(--blue); }
.post-nav-label { font-size: .7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.post-nav-title { font-size: .85rem; font-weight: 600; color: var(--white); }
.post-nav-next { text-align: right; margin-left: auto; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(61,142,255,.25); }
.faq-question { padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 1rem; }
.faq-question span { font-size: .88rem; font-weight: 600; font-family: var(--head); }
.faq-chevron { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 1.25rem 1.1rem; font-size: .82rem; color: var(--muted2); line-height: 1.7; border-top: 1px solid var(--border); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-info h2 { font-family: var(--head); font-size: 1.7rem; font-weight: 800; letter-spacing: -1px; margin-bottom: .75rem; line-height: 1.25; }
.contact-info h2 span { color: var(--blue3); }
.contact-info > p { color: var(--muted2); font-size: .87rem; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-details { display: flex; flex-direction: column; gap: .6rem; }
.contact-detail-card { display: flex; align-items: center; gap: .75rem; background: var(--card); border: 1px solid var(--border); border-radius: 9px; padding: .85rem 1rem; }
.contact-detail-card svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.detail-label { font-size: .72rem; color: var(--muted2); }
.detail-value { font-size: .83rem; font-weight: 500; color: var(--white); }
.contact-form-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; display: flex; flex-direction: column; gap: .85rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .7rem; color: var(--muted); font-weight: 500; letter-spacing: .4px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #080810;
  border: 1px solid var(--border2);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--body);
  font-size: .83rem;
  padding: .6rem .85rem;
  outline: none;
  transition: border-color .2s;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #2A2A45; }
.form-group select option { background: #0F0F16; }
.form-submit { background: var(--blue2); color: #fff; border: none; padding: .85rem; border-radius: 8px; font-family: var(--head); font-weight: 700; font-size: .88rem; cursor: pointer; transition: all .2s; }
.form-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* ===== FOOTER ===== */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-brand .site-logo { font-size: 1.1rem; display: block; margin-bottom: .5rem; }
.footer-brand p { font-size: .78rem; color: var(--muted); max-width: 220px; line-height: 1.6; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--head); font-size: .72rem; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .85rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: var(--muted); font-size: .78rem; transition: color .2s; }
.footer-col a:hover { color: var(--blue3); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1.25rem; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: .73rem; color: var(--muted); }
.footer-badges { display: flex; gap: .5rem; }
.footer-badge { background: var(--blue-dim); border: 1px solid rgba(61,142,255,.2); color: var(--blue3); font-size: .65rem; padding: .2rem .6rem; border-radius: 4px; font-weight: 500; }

/* ===== FADE IN ===== */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== PAGE / 404 ===== */
.page-content-wrap { max-width: 760px; margin: 0 auto; padding: 5rem 2rem; }
.page-content-wrap h1 { font-family: var(--head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1.5rem; }
.error-404 { text-align: center; padding: 8rem 2rem; }
.error-404 .err-num { font-family: var(--head); font-size: 8rem; font-weight: 800; color: rgba(61,142,255,.15); line-height: 1; }
.error-404 h2 { font-family: var(--head); font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.error-404 p { color: var(--muted2); margin-bottom: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-card.featured { grid-column: span 1; }
  .demo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-inner { padding: .9rem 1.25rem; }
  .main-nav, .nav-cta-group { display: none; }
  .hamburger { display: flex; }
  .main-nav.open { display: flex; position: fixed; top: 60px; left: 0; right: 0; background: rgba(8,8,12,.97); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; z-index: 99; }
  .main-nav.open ul { flex-direction: column; gap: 1.25rem; width: 100%; }
  .main-nav.open a { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 3rem 1.25rem; }
  .hero-section { padding: 3rem 1.25rem; }
  .site-footer { padding: 2rem 1.25rem; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 2rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}
