/* Coder Bhai — shared design system */
:root {
  --background: #fcfcfd;
  --background-soft: #f5f7fa;
  --surface: #ffffff;
  --text-primary: #0b0f14;
  --text-secondary: #5f6b7a;
  --border: #e4e8ee;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eaf2ff;
  --dark-section: #0b1017;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ead53;
  --navy-950: var(--dark-section);
  --navy-900: var(--text-primary);
  --blue-600: var(--blue);
  --sky-400: #60a5fa;
  --slate-50: var(--background-soft);
  --white: var(--surface);
  --text: var(--text-primary);
  --muted: var(--text-secondary);
  --green: var(--whatsapp);
  --green-dark: var(--whatsapp-hover);
  --gradient: linear-gradient(135deg, var(--blue), var(--blue-dark));
  --shadow-sm: 0 6px 20px rgba(11, 15, 20, .055);
  --shadow-lg: 0 18px 48px rgba(11, 15, 20, .14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 70px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: var(--blue-600); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--navy-900);
  line-height: 1.14;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.35rem, 6vw, 4.85rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.18rem, 2.5vw, 1.42rem); letter-spacing: -.02em; }
ul, ol { padding-left: 1.25rem; }
::selection { color: var(--white); background: var(--blue-600); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sky-400); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--slate-50); }
.section-dark { color: #cbd5e1; background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #94a3b8; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; content: ""; background: var(--gradient); }
.section-dark .eyebrow { color: var(--sky-400); }
.lead { color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.24rem); }
.muted { color: var(--muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 750;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

/* Announcement and header */
.announcement {
  position: relative;
  z-index: 110;
  color: #cbd5e1;
  background: #030712;
  font-size: .78rem;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.availability { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 5px rgba(37, 99, 235, .11); animation: status 2.2s ease-in-out 2; }
@keyframes status { 50% { box-shadow: 0 0 0 9px rgba(37, 99, 235, 0); } }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  color: var(--white);
  background: rgba(7, 17, 31, .97);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  transition: min-height .3s var(--ease), box-shadow .3s, background .3s;
}
.site-header.is-scrolled { min-height: 66px; background: rgba(7, 17, 31, .88); box-shadow: 0 10px 30px rgba(2, 8, 23, .18); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 28px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
  white-space: nowrap;
}
.logo-image { flex: 0 0 auto; width: 46px; height: 46px; padding: 2px; object-fit: contain; background: #fff; border: 1px solid rgba(96, 165, 250, .28); border-radius: 50%; box-shadow: 0 5px 14px rgba(0, 0, 0, .14); }
.logo-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--sky-400); background: rgba(37, 99, 235, .13); border: 1px solid rgba(56, 189, 248, .25); border-radius: 10px; font: 800 .75rem/1 ui-monospace, monospace; }
.logo span:last-child { color: var(--sky-400); }
.site-nav { display: flex; align-items: center; margin-left: auto; gap: 7px; }
.site-nav > a:not(.btn) {
  position: relative;
  padding: 10px 11px;
  color: #cbd5e1;
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:not(.btn)::after { position: absolute; right: 11px; bottom: 4px; left: 11px; height: 2px; content: ""; background: var(--gradient); transform: scaleX(0); transform-origin: right; transition: transform .28s var(--ease); }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; color: var(--white); background: transparent; border: 1px solid rgba(148, 163, 184, .25); border-radius: 12px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; border-radius: 2px; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--white);
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: var(--gradient);
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .23);
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.btn::after { content: "→"; transition: transform .25s var(--ease); }
.btn:hover { color: var(--white); box-shadow: 0 14px 34px rgba(37, 99, 235, .31); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.06); border-color: rgba(148,163,184,.36); box-shadow: none; }
.btn-secondary:hover { background: rgba(255,255,255,.11); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--navy-900); }
.btn-whatsapp { background: var(--green-dark); box-shadow: 0 10px 28px rgba(21, 128, 61, .22); }
.btn-small { min-height: 42px; padding: 9px 16px; font-size: .88rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 38px));
  display: flex;
  align-items: center;
  padding: 62px 0 76px;
  color: #cbd5e1;
  background-color: var(--navy-950);
  background-image: linear-gradient(rgba(56, 189, 248, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, .035) 1px, transparent 1px), radial-gradient(circle at 78% 40%, rgba(37,99,235,.2), transparent 32%);
  background-size: 40px 40px, 40px 40px, auto, auto;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); align-items: center; gap: clamp(38px, 6vw, 82px); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { color: var(--white); font-size: clamp(2.45rem, 5vw, 4.35rem); animation: hero-in .65s var(--ease) both; }
.hero .lead { max-width: 690px; color: #aebdd1; animation: hero-in .65s .1s var(--ease) both; }
.hero .btn-group { margin: 28px 0 22px; animation: hero-in .65s .18s var(--ease) both; }
.trust-line { color: #91a3ba; font: 650 .82rem/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .02em; animation: hero-in .65s .26s var(--ease) both; }
@keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-visual { position: relative; min-height: 440px; perspective: 1200px; animation: hero-in .7s .15s var(--ease) both; }
.app-window { position: absolute; inset: 6% 0 6% 4%; overflow: hidden; background: rgba(15, 23, 42, .82); border: 1px solid rgba(148,163,184,.22); border-radius: var(--radius-lg); box-shadow: 0 40px 90px rgba(0,0,0,.4); backdrop-filter: blur(12px); transform: rotateY(-4deg) rotateX(2deg); animation: gentle-float 5s ease-in-out infinite; }
@keyframes gentle-float { 50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-7px); } }
.window-bar { height: 44px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: rgba(2, 8, 23, .56); border-bottom: 1px solid rgba(148,163,184,.15); }
.window-bar i { width: 8px; height: 8px; background: #475569; border-radius: 50%; }
.window-bar i:first-child { background: #fb7185; }
.window-bar i:nth-child(2) { background: #facc15; }
.window-bar i:nth-child(3) { background: #60a5fa; }
.dashboard { display: grid; grid-template-columns: 92px 1fr; min-height: 350px; }
.dash-sidebar { padding: 20px 14px; background: rgba(2,8,23,.35); border-right: 1px solid rgba(148,163,184,.12); }
.dash-logo { width: 34px; height: 8px; margin-bottom: 28px; background: var(--gradient); border-radius: 4px; }
.dash-nav { height: 7px; margin: 16px 0; background: #26364d; border-radius: 5px; }
.dash-nav.active { width: 90%; background: var(--blue-600); }
.dash-main { padding: 22px; }
.dash-top { display: flex; justify-content: space-between; margin-bottom: 22px; }
.dash-title { width: 126px; height: 13px; background: #e2e8f0; border-radius: 4px; }
.dash-action { width: 72px; height: 26px; background: var(--gradient); border-radius: 7px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric { min-height: 82px; padding: 14px; background: rgba(255,255,255,.045); border: 1px solid rgba(148,163,184,.12); border-radius: 12px; }
.metric b { display: block; color: var(--white); font-size: 1.25rem; }
.metric small { color: #71849d; }
.chart { position: relative; height: 132px; margin-top: 14px; overflow: hidden; background: rgba(255,255,255,.035); border: 1px solid rgba(148,163,184,.1); border-radius: 12px; }
.chart::before { position: absolute; inset: 20% 8% 17%; content: ""; border-bottom: 2px solid var(--sky-400); clip-path: polygon(0 74%, 18% 52%, 31% 65%, 48% 26%, 66% 44%, 83% 8%, 100% 19%, 100% 23%, 83% 12%, 66% 48%, 48% 30%, 31% 69%, 18% 56%, 0 78%); background: linear-gradient(to top, rgba(37,99,235,.2), transparent); }
.workflow-pill { position: absolute; right: -9px; bottom: 8px; width: 180px; padding: 13px 15px; color: #cbd5e1; background: rgba(15,23,42,.92); border: 1px solid rgba(56,189,248,.27); border-radius: 14px; box-shadow: var(--shadow-lg); font-size: .76rem; }
.workflow-row { display: flex; align-items: center; gap: 8px; }
.workflow-node { width: 24px; height: 24px; flex: none; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 7px; font-size: .65rem; }
.workflow-line { height: 2px; flex: 1; background: linear-gradient(90deg, var(--blue-600) 50%, transparent 50%); background-size: 10px 2px; animation: flow 1.1s linear infinite; }
@keyframes flow { to { background-position: 10px 0; } }

/* Page hero and breadcrumbs */
.page-hero { position: relative; padding: 72px 0 68px; color: #cbd5e1; background: var(--navy-950); overflow: hidden; }
.page-hero::after { position: absolute; top: -180px; right: -100px; width: 540px; height: 540px; content: ""; background: radial-gradient(circle, rgba(37,99,235,.2), transparent 68%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 940px; color: var(--white); font-size: clamp(2.3rem, 5vw, 4.25rem); }
.page-hero .lead { max-width: 790px; color: #aebdd1; }
.breadcrumb { margin-bottom: 22px; font-size: .84rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 8px; color: #64748b; content: "/"; }
.breadcrumb a { color: #b9c6d8; text-decoration: none; }
.breadcrumb [aria-current="page"] { color: var(--sky-400); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag { display: inline-flex; align-items: center; min-height: 31px; padding: 5px 10px; color: #365071; background: #eef6ff; border: 1px solid #d5e8ff; border-radius: var(--radius-pill); font-size: .76rem; font-weight: 720; }
.page-hero .tag { color: #c7eafe; background: rgba(56,189,248,.08); border-color: rgba(56,189,248,.22); }

/* Cards and grids */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }
.card ul { margin: 20px 0; padding: 0; list-style: none; }
.card li { position: relative; margin: 8px 0; padding-left: 22px; color: #475569; }
.card li::before { position: absolute; top: .64em; left: 2px; width: 8px; height: 8px; content: ""; background: var(--gradient); border-radius: 50%; }
.service-card { display: flex; flex-direction: column; min-height: 100%; transition: transform .3s var(--ease), box-shadow .3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(15,23,42,.11); }
.service-card .text-link { margin-top: auto; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; color: var(--blue-600); background: var(--blue-soft); border: 1px solid #dbeafe; border-radius: 14px; }
.icon-box svg { width: 25px; height: 25px; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 26px; }
.feature { padding: 22px; background: var(--slate-50); border: 1px solid var(--border); border-radius: var(--radius-md); }
.feature strong { display: block; margin-bottom: 6px; color: var(--navy-900); }
.feature p { margin: 0; color: var(--muted); }

/* Problem strip */
.problem-strip { position: relative; z-index: 4; margin-top: -42px; }
.problem-shell { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 24px 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.problems { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.problem-chip { padding: 9px 12px; color: #475569; background: var(--slate-50); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: .84rem; }
.solution-chip { padding: 12px 16px; color: var(--white); background: var(--gradient); border-radius: var(--radius-pill); font-weight: 800; text-align: center; }

/* Project mockups */
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.project-card { overflow: hidden; padding: 0; }
.project-visual { position: relative; min-height: 280px; padding: 28px; background: #0a1425; overflow: hidden; }
.project-visual::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(56,189,248,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(56,189,248,.04) 1px,transparent 1px); background-size: 26px 26px; }
.project-screen { position: relative; height: 220px; overflow: hidden; background: #f8fafc; border: 7px solid #172033; border-radius: 13px; box-shadow: 0 20px 38px rgba(0,0,0,.3); transition: transform .45s var(--ease); }
.project-card:hover .project-screen { transform: scale(1.035); }
.screen-head { height: 28px; background: #fff; border-bottom: 1px solid #dbe4f0; }
.screen-body { height: calc(100% - 28px); display: grid; grid-template-columns: 56px 1fr; }
.screen-side { background: #16233a; }
.screen-content { padding: 13px; }
.mini-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.mini-kpis i { height: 34px; background: linear-gradient(135deg,#dbeafe,#eaf2ff); border-radius: 5px; }
.mini-table { margin-top: 9px; }
.mini-table i { display: block; height: 8px; margin: 7px 0; background: #e2e8f0; border-radius: 4px; }
.mini-table i:nth-child(2n) { width: 82%; }
.project-visual.shop .screen-side { background: #1d4ed8; }
.project-visual.shop .mini-kpis i { background: linear-gradient(135deg,#dbeafe,#eaf2ff); }
.project-visual.doctor { background: #eaf5f7; }
.project-visual.doctor .project-screen { background: #fff; border-color: #fff; }
.doctor-layout { height: 100%; padding: 20px; background: linear-gradient(120deg,#fff 0 50%,#eaf2ff 50%); }
.doctor-layout b { display: block; width: 47%; height: 14px; margin: 12px 0; background: #2563eb; border-radius: 4px; }
.doctor-layout i { display: block; width: 38%; height: 7px; margin: 9px 0; background: #cbd5e1; border-radius: 4px; }
.doctor-layout em { position: absolute; right: 14%; bottom: 10%; width: 120px; height: 120px; background: #bfd5f7; border-radius: 50% 50% 12px 12px; }
.project-visual.csv { background: #071a2c; }
.csv-drop { position: absolute; inset: 22% 18%; display: grid; place-items: center; color: #52657c; background: #fff; border: 2px dashed #93c5fd; border-radius: 14px; font-size: .78rem; text-align: center; }
.csv-progress { width: 70%; height: 8px; background: #dbeafe; border-radius: 5px; overflow: hidden; }
.csv-progress::after { display: block; width: 72%; height: 100%; content: ""; background: var(--gradient); }
.project-body { padding: 26px; }
.project-body p { color: var(--muted); }
.stack { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0; }
.stack span { padding: 4px 8px; color: #53657c; background: var(--slate-50); border: 1px solid var(--border); border-radius: 6px; font-size: .72rem; font-weight: 720; }

/* Process, technologies, content */
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; counter-reset: steps; }
.process-step { position: relative; padding: 24px 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(148,163,184,.16); border-radius: var(--radius-md); counter-increment: steps; }
.process-step::before { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 16px; color: var(--white); content: counter(steps, decimal-leading-zero); background: var(--gradient); border-radius: 9px; font: 800 .71rem/1 ui-monospace, monospace; }
.process-step h3 { font-size: 1rem; }
.process-step p { margin: 0; color: #94a3b8; font-size: .88rem; }
.tech-cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.tech-badge { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px; color: #34445b; background: var(--white); border: 1px solid var(--border); border-radius: 11px; box-shadow: var(--shadow-sm); font-weight: 750; }
.tech-badge::before { width: 8px; height: 8px; content: ""; background: var(--gradient); border-radius: 50%; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: center; gap: clamp(36px, 7vw, 88px); }
.content-copy { max-width: 760px; }
.content-copy h2 { margin-top: 2.7rem; }
.content-copy h3 { margin-top: 2rem; }
.content-copy li { margin-bottom: .6rem; }
.content-copy table { width: 100%; margin: 24px 0; border-collapse: collapse; }
.content-copy th, .content-copy td { padding: 13px 14px; text-align: left; vertical-align: top; border: 1px solid var(--border); }
.content-copy th { background: var(--slate-50); }
.toc { padding: 24px; background: var(--slate-50); border: 1px solid var(--border); border-radius: var(--radius-md); }
.toc strong { display: block; margin-bottom: 9px; }
.toc ol { margin: 0; }
.toc a { text-decoration: none; }
.callout { margin: 28px 0; padding: 22px 24px; background: #eff6ff; border-left: 4px solid var(--blue-600); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.profile-frame { position: relative; overflow: hidden; background: var(--navy-950); border: 1px solid #22324a; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; }
.profile-frame img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo-frame { background: #fff; }
.brand-logo-frame img { object-fit: contain; }

/* FAQ */
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; color: var(--navy-900); background: none; border: 0; font-weight: 780; text-align: left; }
.faq-question::after { flex: none; content: "+"; color: var(--blue-600); font-size: 1.45rem; font-weight: 400; transition: transform .25s; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 780px; margin: 0; padding: 0 42px 20px 0; color: var(--muted); }
.js .faq-answer { grid-template-rows: 0fr; }
.js .faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p.is-typing::after { display: inline-block; width: 2px; height: 1em; margin-left: 3px; content: ""; background: var(--blue-600); vertical-align: -.12em; animation: faq-type-cursor .72s steps(1, end) infinite; }
@keyframes faq-type-cursor { 50% { opacity: 0; } }

/* CTA */
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; padding: 48px; color: #cbd5e1; background: var(--navy-950); border: 1px solid #22324a; border-radius: 28px; box-shadow: var(--shadow-lg); }
.cta-panel::after { position: absolute; right: -100px; bottom: -180px; width: 430px; height: 430px; content: ""; background: radial-gradient(circle,rgba(37,99,235,.18),transparent 67%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: var(--white); }
.cta-panel p { max-width: 680px; margin: 0; }
.cta-panel .btn-group { justify-content: flex-end; }

/* Projects filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-button { min-height: 44px; padding: 9px 15px; color: #475569; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-pill); font-weight: 720; }
.filter-button[aria-pressed="true"] { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.project-card[hidden] { display: none; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .65fr); align-items: start; gap: 36px; }
.enquiry-form { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: var(--navy-900); font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 11px 13px; color: var(--text); background: var(--white); border: 1px solid #cbd5e1; border-radius: 10px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(37,99,235,.11); }
.field [aria-invalid="true"] { border-color: #dc2626; }
.error { min-height: 1.3em; display: block; margin-top: 4px; color: #b91c1c; font-size: .78rem; }
.form-note { margin-top: 14px; color: var(--muted); font-size: .82rem; }
.contact-card { position: sticky; top: 96px; }
.contact-row { display: block; margin: 17px 0; padding: 16px; color: var(--text); background: var(--slate-50); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; overflow-wrap: anywhere; }
.contact-row small { display: block; color: var(--muted); }

/* Footer and floating WhatsApp */
.site-footer { padding: 70px 0 24px; color: #94a3b8; background: #030a14; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 46px; }
.footer-brand p { max-width: 360px; margin-top: 18px; }
.site-footer h2 { color: var(--white); font-size: .93rem; letter-spacing: 0; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: #94a3b8; text-decoration: none; }
.footer-links a:hover { color: var(--sky-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 54px; padding-top: 22px; border-top: 1px solid #172033; font-size: .8rem; }
.footer-bottom p { margin: 0; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; display: grid; place-items: center; color: var(--white); background: var(--green-dark); border: 0; border-radius: 50%; box-shadow: 0 15px 35px rgba(21,128,61,.32); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s; }
.whatsapp-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.whatsapp-float.pulse-once { animation: whatsapp-pulse .7s ease-out 1; }
.whatsapp-float svg { width: 27px; height: 27px; }
@keyframes whatsapp-pulse { 50% { box-shadow: 0 0 0 12px rgba(34,197,94,.14), 0 15px 35px rgba(21,128,61,.32); } }

/* Utility states */
.reveal { opacity: 1; transform: none; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: none; }
.service-grid .reveal:nth-child(2), .project-grid .reveal:nth-child(2) { transition-delay: .06s; }
.service-grid .reveal:nth-child(3), .project-grid .reveal:nth-child(3) { transition-delay: .12s; }
.service-grid .reveal:nth-child(4), .project-grid .reveal:nth-child(4) { transition-delay: .18s; }
.notice { padding: 18px 20px; color: #42546b; background: #f0f9ff; border: 1px solid #bae6fd; border-radius: var(--radius-md); }
.center { text-align: center; }
.justify-center { justify-content: center; }
.spacer-top { margin-top: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==================================================
   2026 compact visual refresh — neutral, blue, focused
   ================================================== */
body {
  color: var(--text-primary);
  background: var(--background);
  font-size: 1rem;
  line-height: 1.7;
}

p { max-width: 680px; }
h1, h2, h3, h4 { font-weight: 760; }
h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.12; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.4rem); line-height: 1.22; }
a:hover { color: var(--blue-dark); }

.container { width: min(calc(100% - 40px), 1180px); }
.narrow { width: min(calc(100% - 40px), 800px); }
.section { padding: 72px 0; background: var(--surface); }
.section-sm { padding: 48px 0; }
.section-soft { background: var(--background-soft); }
.section-dark { color: #b9c1cc; background: var(--dark-section); }
.section-heading { max-width: 720px; margin-bottom: 30px; }
.section-heading p { color: var(--text-secondary); font-size: 1rem; }
.section-dark .section-heading p { color: #aab3bf; }
.eyebrow { margin-bottom: 10px; color: var(--blue); font-size: .75rem; letter-spacing: .12em; }
.eyebrow::before { width: 18px; background: var(--blue); }
.section-dark .eyebrow { color: #8bb7ff; }
.lead { color: var(--text-secondary); font-size: clamp(1.02rem, 1.5vw, 1.15rem); }

/* Compact announcement and sticky navigation */
.announcement { color: #c7ced8; background: #080c12; font-size: .74rem; }
.announcement-inner { min-height: 34px; }
.status-dot { width: 7px; height: 7px; background: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .14); }
@keyframes status { 50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); } }
.site-header { min-height: 70px; background: rgba(11, 16, 23, .96); border-bottom-color: rgba(228, 232, 238, .12); }
.site-header.is-scrolled { min-height: 62px; background: rgba(11, 16, 23, .88); box-shadow: 0 8px 24px rgba(11, 15, 20, .13); backdrop-filter: blur(14px); }
.nav-wrap { gap: 20px; }
.logo { font-size: 1.2rem; font-weight: 780; }
.logo-mark { width: 32px; height: 32px; color: #8bb7ff; background: rgba(37, 99, 235, .13); border-color: rgba(96, 165, 250, .25); border-radius: 9px; }
.logo span:last-child { color: #79aaff; }
.site-nav { gap: 4px; }
.site-nav > a:not(.btn) { padding: 9px 10px; color: #c7ced8; font-size: .88rem; font-weight: 620; }
.site-nav > a:not(.btn)::after { right: 10px; bottom: 3px; left: 10px; background: var(--blue); }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--surface); }
.menu-toggle { width: 44px; height: 44px; border-radius: 10px; }

/* Buttons */
.btn {
  min-height: 46px;
  padding: 11px 18px;
  font-size: .92rem;
  font-weight: 720;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .18);
  transition: color .25s, background .25s, border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.btn:hover { color: var(--surface); background: var(--blue-dark); box-shadow: 0 10px 24px rgba(37, 99, 235, .24); transform: translateY(-2px); }
.btn-secondary { color: #eef3fa; background: rgba(255, 255, 255, .055); border-color: rgba(228, 232, 238, .26); box-shadow: none; }
.btn-secondary:hover { color: var(--surface); background: rgba(255, 255, 255, .1); border-color: rgba(228, 232, 238, .38); }
.btn-light { color: var(--text-primary); background: var(--surface); }
.btn-light:hover { color: var(--text-primary); background: var(--blue-soft); }
.btn-whatsapp { background: var(--whatsapp); box-shadow: 0 8px 20px rgba(37, 211, 102, .2); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); box-shadow: 0 10px 24px rgba(37, 211, 102, .25); }
.btn-small { min-height: 40px; padding: 9px 15px; font-size: .85rem; }
.btn-group { gap: 10px; }

/* First-viewport hero */
.hero {
  min-height: min(640px, calc(100svh - 104px));
  padding: 32px 0 38px;
  color: #c8d0dc;
  background-color: var(--dark-section);
  background-image: linear-gradient(rgba(96, 165, 250, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(96, 165, 250, .025) 1px, transparent 1px), radial-gradient(circle at 82% 40%, rgba(37, 99, 235, .16), transparent 33%);
  background-size: 44px 44px, 44px 44px, auto;
}
.hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: clamp(30px, 4vw, 50px); }
.hero-copy { min-width: 0; }
.hero-copy > .eyebrow { animation: hero-fade-up .55s .02s var(--ease) both; }
.hero h1 { max-width: 780px; margin-bottom: 17px; color: var(--surface); font-size: clamp(2.6rem, 4.3vw, 4.15rem); line-height: 1.02; animation: none; }
.hero-title-line { display: block; opacity: 0; transform: translateY(18px); animation: hero-line .62s var(--ease) forwards; }
.hero-title-line:nth-child(1) { animation-delay: .12s; }
.hero-title-line:nth-child(2) { animation-delay: .2s; }
.hero-title-line:nth-child(3) { animation-delay: .28s; }
.hero-title-line:nth-child(4) { animation-delay: .36s; }
.hero .lead { max-width: 660px; margin-bottom: 0; color: #aeb8c5; animation: hero-fade-up .55s .34s var(--ease) both; }
.hero .btn-group { margin: 22px 0 17px; animation: hero-fade-up .55s .42s var(--ease) both; }
.hero .btn-group .btn:nth-child(2) { transition-delay: .035s; }
.hero-typewriter { min-height: 1.7em; margin: 0 0 12px; color: #d6deea; font-size: .92rem; font-weight: 650; animation: hero-fade-up .5s .08s var(--ease) both; }
.hero-typewriter-prefix { color: #8f9baa; }
.hero-typewriter-value { display: inline-block; width: 29ch; color: #8bb7ff; }
.typewriter-cursor { display: inline-block; width: 2px; height: 1.05em; margin-left: 3px; vertical-align: -.13em; background: #8bb7ff; animation: cursor-blink .85s steps(1, end) infinite; }
.trust-line { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; color: #9facbb; font: 650 .72rem/1.3 ui-monospace, SFMono-Regular, Consolas, monospace; animation: hero-fade-up .55s .5s var(--ease) both; }
.trust-line span:not(.tech-separator) { padding: 5px 8px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(228, 232, 238, .12); border-radius: 6px; }
.tech-separator { display: none; }
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes hero-line { to { opacity: 1; transform: none; } }
@keyframes cursor-blink { 50% { opacity: .18; } }

.hero-visual { min-height: 360px; animation: dashboard-enter .65s .28s var(--ease) both; }
.app-window { inset: 4% 0 4% 2%; background: rgba(15, 22, 32, .94); border-color: rgba(228, 232, 238, .15); border-radius: 14px; box-shadow: 0 24px 52px rgba(0, 0, 0, .28); backdrop-filter: blur(9px); transform: none; animation: gentle-float 7s ease-in-out infinite; }
@keyframes dashboard-enter { from { opacity: 0; transform: scale(.975) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes gentle-float { 50% { transform: translateY(-5px); } }
.window-bar { height: 38px; padding: 0 14px; background: rgba(6, 9, 14, .48); }
.window-bar i { width: 7px; height: 7px; background: #5f6b7a; }
.window-bar i:first-child { background: #7896c7; }
.window-bar i:nth-child(2) { background: #4f7dcc; }
.window-bar i:nth-child(3) { background: #7eb0ff; }
.dashboard { grid-template-columns: 74px 1fr; min-height: 292px; }
.dash-sidebar { padding: 17px 11px; }
.dash-logo { width: 28px; height: 7px; margin-bottom: 22px; background: var(--blue); }
.dash-nav { height: 6px; margin: 13px 0; }
.dash-main { padding: 17px; }
.dash-top { margin-bottom: 16px; }
.dash-title { width: 106px; height: 11px; }
.dash-action { width: 64px; height: 23px; background: var(--blue); }
.metric-grid { gap: 9px; }
.metric { min-height: 67px; padding: 11px; border-radius: 9px; }
.metric b { font-size: 1.05rem; }
.chart { height: 101px; margin-top: 11px; border-radius: 9px; }
.chart::before { border-bottom-color: #79aaff; background: linear-gradient(to top, rgba(37, 99, 235, .16), transparent); animation: data-drift 7s ease-in-out infinite; }
@keyframes data-drift { 50% { transform: translateX(2%) scaleX(.96); } }
.workflow-pill { right: -4px; bottom: 4px; width: 164px; padding: 11px 12px; color: #cbd4df; background: rgba(11, 16, 23, .96); border-color: rgba(96, 165, 250, .28); border-radius: 11px; box-shadow: 0 12px 28px rgba(0, 0, 0, .22); }
.workflow-node { width: 22px; height: 22px; background: var(--blue); border-radius: 6px; }
.workflow-line { background: linear-gradient(90deg, var(--blue) 50%, transparent 50%); background-size: 9px 2px; }
.hero-code-panel { position: absolute; left: -12px; bottom: 20px; z-index: 3; width: 148px; padding: 11px; background: rgba(8, 12, 18, .96); border: 1px solid rgba(96, 165, 250, .22); border-radius: 10px; box-shadow: 0 12px 28px rgba(0, 0, 0, .22); }
.code-line { display: block; height: 5px; margin: 6px 0; background: #334155; border-radius: 3px; transform-origin: left; animation: code-pulse 4.8s ease-in-out infinite; }
.code-line:nth-child(1) { width: 72%; background: #3975d5; }
.code-line:nth-child(2) { width: 94%; animation-delay: .4s; }
.code-line:nth-child(3) { width: 58%; background: #5c8fdf; animation-delay: .8s; }
.code-line:nth-child(4) { width: 82%; animation-delay: 1.2s; }
@keyframes code-pulse { 50% { opacity: .62; transform: scaleX(.94); } }

/* Compact internal-page heroes */
.page-hero { padding: 54px 0 50px; color: #c5ced9; background: var(--dark-section); }
.page-hero::after { top: -240px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37, 99, 235, .14), transparent 67%); }
.page-hero h1 { max-width: 880px; margin-bottom: 14px; color: var(--surface); font-size: clamp(2.5rem, 4.7vw, 4.25rem); line-height: 1.04; }
.page-hero .lead { max-width: 760px; color: #abb6c4; }
.breadcrumb { margin-bottom: 16px; font-size: .8rem; }
.breadcrumb a { color: #c1cad6; }
.breadcrumb [aria-current="page"] { color: #8bb7ff; }
.hero-meta { gap: 7px; margin-top: 16px; }
.tag { min-height: 28px; padding: 4px 9px; color: #365277; background: var(--blue-soft); border-color: #cfddf2; }
.page-hero .tag { color: #cfe0ff; background: rgba(37, 99, 235, .12); border-color: rgba(96, 165, 250, .22); }

/* Cards and balanced content */
.grid-2, .grid-3, .grid-4 { gap: 20px; }
.card { padding: 24px; border-color: var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); }
.card p { color: var(--text-secondary); }
.card ul { margin: 16px 0; }
.card li { margin: 6px 0; padding-left: 19px; color: #4f5b6b; }
.card li::before { width: 6px; height: 6px; background: var(--blue); }
.service-card { min-height: 0; height: 100%; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.service-card:hover, .project-card:hover { border-color: #b9d0f5; box-shadow: 0 14px 34px rgba(11, 15, 20, .09); transform: translateY(-5px); }
.service-card p { font-size: .94rem; line-height: 1.62; }
.service-card .text-link { margin-top: auto; padding-top: 4px; }
.icon-box { width: 42px; height: 42px; margin-bottom: 15px; color: var(--blue); background: var(--blue-soft); border-color: #d5e2f5; border-radius: 11px; transition: background .25s, border-color .25s, color .25s; }
.icon-box svg { width: 21px; height: 21px; }
.service-card:hover .icon-box { color: var(--blue-dark); background: #dceaff; border-color: #bdd3f6; }
.feature-list { gap: 12px; margin-top: 20px; }
.feature { padding: 18px; background: var(--surface); border-color: var(--border); border-radius: 12px; }
.split { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(34px, 6vw, 70px); }

/* Compact problem strip */
.problem-strip { margin-top: -24px; }
.problem-shell { gap: 16px; padding: 15px 18px; border-radius: 13px; box-shadow: 0 8px 24px rgba(11, 15, 20, .075); }
.problems { gap: 7px; }
.problem-chip { padding: 6px 10px; color: var(--text-secondary); background: var(--background-soft); font-size: .78rem; }
.solution-chip { padding: 8px 12px; background: var(--blue); font-size: .82rem; font-weight: 720; }

/* Compact 16:9 project cards */
.project-grid { gap: 20px; }
.project-card { border-radius: 14px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.project-visual { min-height: 0; aspect-ratio: 16 / 9; padding: 20px; background: #101824; }
.project-screen { height: 100%; border-width: 5px; border-color: #202a38; border-radius: 10px; box-shadow: 0 14px 28px rgba(0, 0, 0, .2); }
.screen-head { height: 23px; }
.screen-body { height: calc(100% - 23px); grid-template-columns: 46px 1fr; }
.screen-content { padding: 10px; }
.mini-kpis { gap: 5px; }
.mini-kpis i { height: 28px; background: linear-gradient(135deg, #dbeafe, #edf4ff); }
.mini-table { margin-top: 7px; }
.mini-table i { height: 6px; margin: 5px 0; }
.project-visual.shop .screen-side { background: #1d4ed8; }
.project-visual.shop .mini-kpis i { background: linear-gradient(135deg, #dbeafe, #eaf2ff); }
.project-visual.doctor { background: #edf4ff; }
.doctor-layout { padding: 16px; background: linear-gradient(120deg, #fff 0 50%, #eaf2ff 50%); }
.doctor-layout b { background: var(--blue); }
.doctor-layout em { background: #bfd5f7; }
.project-visual.csv { background: #111b28; }
.project-body { padding: 22px 24px 24px; }
.project-body .eyebrow { margin-bottom: 8px; }
.project-body p { font-size: .94rem; line-height: 1.62; }
.stack { gap: 6px; margin: 13px 0; }
.stack span { padding: 3px 7px; color: #526176; background: var(--background-soft); border-radius: 5px; }

/* Clean project screenshots */
.project-visual.project-image { padding: 0; background: #eef2f7; border-bottom: 1px solid var(--border); }
.project-visual.project-image::before { display: none; }
.project-visual.project-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #e9edf2; transition: transform .45s var(--ease); }
.project-card:hover .project-image img { transform: scale(1.025); }
.case-screenshot { margin: 0; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); }
.case-screenshot img { display: block; width: 100%; height: auto; }
.case-screenshot figcaption { padding: 11px 14px; color: var(--text-secondary); background: var(--background-soft); border-top: 1px solid var(--border); font-size: .82rem; font-weight: 650; }

/* Accessible project screenshot carousels */
.project-visual.project-carousel, .case-carousel { position: relative; padding: 0; overflow: hidden; background: #e9edf2; }
.project-carousel::before { display: none; }
.project-carousel-viewport { position: absolute; inset: 0; }
.project-carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.project-carousel-slide.is-active { opacity: 1; visibility: visible; }
.project-carousel-slide img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #e9edf2; }
.case-carousel { width: min(100%, 960px); aspect-ratio: 16 / 9; margin-inline: auto; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); }
.carousel-arrow { position: absolute; top: 50%; z-index: 3; display: grid; width: 40px; height: 40px; padding: 0; color: #fff; background: rgba(11, 16, 23, .84); border: 1px solid rgba(255, 255, 255, .32); border-radius: 50%; box-shadow: 0 8px 20px rgba(11, 15, 20, .2); font-size: 1.2rem; line-height: 1; place-items: center; transform: translateY(-50%); transition: background-color .2s, border-color .2s, transform .2s; }
.carousel-arrow:hover { color: #fff; background: var(--blue); border-color: rgba(255, 255, 255, .7); transform: translateY(calc(-50% - 2px)); }
.carousel-arrow:focus-visible { outline: 3px solid rgba(37, 99, 235, .32); outline-offset: 3px; }
.carousel-arrow--prev { left: 12px; }
.carousel-arrow--next { right: 12px; }
.carousel-count { position: absolute; right: 12px; bottom: 10px; z-index: 3; min-width: 46px; padding: 4px 8px; color: #fff; background: rgba(11, 16, 23, .78); border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; font-size: .73rem; font-weight: 750; line-height: 1.3; text-align: center; }
.no-js .carousel-arrow, .no-js .carousel-count { display: none; }
.no-js .project-visual.project-carousel, .no-js .case-carousel { aspect-ratio: auto; overflow: visible; }
.no-js .project-carousel-viewport { position: static; display: grid; gap: 1px; }
.no-js .project-carousel-slide { position: static; opacity: 1; visibility: visible; transform: none; }
.no-js .project-carousel-slide img { height: auto; }

/* Process timeline and technology badges */
.process-grid { position: relative; gap: 12px; }
.process-grid::before { position: absolute; top: 40px; right: 7%; left: 7%; z-index: 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .42) 12%, rgba(96, 165, 250, .42) 88%, transparent); }
.process-step { z-index: 1; min-height: 0; padding: 20px 16px; background: #101720; border-color: rgba(228, 232, 238, .13); border-radius: 12px; }
.process-step::before { width: 29px; height: 29px; margin-bottom: 13px; background: var(--blue); border-radius: 8px; }
.process-step h3 { margin-bottom: 8px; font-size: .98rem; }
.process-step p { color: #a7b0bc; font-size: .84rem; line-height: 1.55; }
.tech-cloud { gap: 8px; }
.tech-badge { min-height: 40px; padding: 8px 12px; color: #394659; border-color: var(--border); border-radius: 9px; box-shadow: 0 4px 14px rgba(11, 15, 20, .045); font-size: .86rem; }
.tech-badge::before { width: 6px; height: 6px; background: var(--blue); }

/* Long-form content, FAQs and final CTA */
.content-copy h2 { margin-top: 2.3rem; }
.content-copy h3 { margin-top: 1.7rem; }
.toc { padding: 20px; border-radius: 12px; }
.callout { margin: 24px 0; padding: 18px 20px; border-left-color: var(--blue); border-radius: 0 12px 12px 0; }
.profile-frame { border-color: var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); }
.faq-item h3 { margin: 0; }
.faq-question { min-height: 58px; padding: 14px 0; font-size: .98rem; font-weight: 700; }
.faq-question::after { font-size: 1.3rem; }
.faq-answer p { padding-bottom: 16px; color: var(--text-secondary); }
.cta-panel { gap: 28px; padding: 36px; background: var(--dark-section); border-color: #202936; border-radius: 14px; box-shadow: 0 16px 40px rgba(11, 15, 20, .14); }
.cta-panel::after { right: -130px; bottom: -220px; background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 67%); }
.filter-bar { gap: 7px; margin-bottom: 22px; }
.filter-button { min-height: 40px; padding: 7px 13px; color: var(--text-secondary); background: var(--surface); }
.filter-button[aria-pressed="true"] { background: var(--text-primary); border-color: var(--text-primary); }

/* Forms */
.contact-layout { gap: 28px; }
.enquiry-form { padding: 24px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.form-grid { gap: 15px; }
.field input, .field select, .field textarea { min-height: 47px; border-color: #d6dce5; border-radius: 9px; }
.field textarea { min-height: 136px; }
.contact-card { top: 82px; }
.contact-row { margin: 13px 0; padding: 13px; border-radius: 10px; }

/* Compact footer and WhatsApp action */
.site-footer { padding: 52px 0 20px; color: #aab3bf; background: #080c12; }
.footer-grid { gap: 34px; }
.footer-brand p { margin-top: 14px; }
.site-footer h2 { margin-bottom: 12px; font-size: .9rem; }
.footer-links li { margin: 6px 0; }
.footer-links a { color: #aab3bf; font-size: .88rem; }
.footer-links a:hover { color: #8bb7ff; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top-color: #202730; }
.whatsapp-float { right: 20px; bottom: 20px; width: 54px; height: 54px; background: var(--whatsapp); box-shadow: 0 12px 28px rgba(37, 211, 102, .25); }
.whatsapp-float:hover { color: var(--surface); background: var(--whatsapp-hover); }
@keyframes whatsapp-pulse { 50% { box-shadow: 0 0 0 11px rgba(37, 211, 102, .13), 0 12px 28px rgba(37, 211, 102, .25); } }

/* Shared reveal choreography */
.reveal, .reveal-item { opacity: 1; transform: none; }
.js .reveal, .js .reveal-item { opacity: 0; transform: translateY(20px); transition: opacity .58s var(--ease), transform .58s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible, .reveal-item.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > .eyebrow, .hero-title-line, .hero .lead, .hero .btn-group, .hero-typewriter, .trust-line, .hero-visual,
  .app-window, .chart::before, .workflow-line, .code-line, .typewriter-cursor, .status-dot, .whatsapp-float {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .reveal, .reveal-item, .js .reveal, .js .reveal-item { opacity: 1; transform: none; transition: none; }
  .project-carousel-slide, .carousel-arrow { transition: none; }
  .faq-answer p.is-typing::after { display: none; animation: none; }
  .typewriter-cursor { display: none; }
}
