/* ===== Brand tokens ===== */
:root {
  --c-marketing: #8EA7D1;
  --c-marketing-deep: #1A2740;
  --c-it: #F2A126;
  --c-it-soft: #E06A2C;
  --c-it-bright: #F2A126;
  --c-accent: #198A97;
  --c-bg: #07090D;
  --c-card: #10151D;
  --c-card-alt: #131A24;
  --c-text: #F8FAFC;
  --c-muted: rgba(248, 250, 252, 0.66);
  --c-border: rgba(255, 255, 255, 0.09);

  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --radius-xxl: 3rem;

  --maxw: 80rem;
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  background: var(--c-bg);
}

button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Page background ===== */
.page-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(142,167,209,0.094), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(224,106,44,0.133), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(25,138,151,0.078), transparent 38%),
    var(--c-bg);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .header-inner { padding: 1rem 2rem; }
}
.logo-btn {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

/* ===== Logo ===== */
.logo { display: inline-flex; align-items: flex-end; gap: 0.75rem; }
.logo-letters {
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
}
.logo-letters .logo-j,
.logo-letters .logo-n,
.logo-letters .logo-k {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.logo-letters .logo-j { background-image: linear-gradient(180deg, #F5A51B 0%, #FF5A1F 100%); }
.logo-letters .logo-n { background-image: linear-gradient(115deg, #E53625 0%, #071019 52%, #071019 100%); }
.logo-letters .logo-k { background-image: linear-gradient(90deg, #071019 0%, #063044 42%, #138FA7 100%); }

.logo-compact .logo-letters { font-size: 34px; }
.logo-compact .logo-sub {
  margin-top: 0.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.48em;
  color: rgba(255, 255, 255, 0.75);
  font-size: 8px;
}

/* ===== Nav ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}
.nav-btn {
  border: 0;
  background: transparent;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-btn:hover { background: rgba(255, 255, 255, 0.1); }
.nav-btn.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-it-bright);
}

/* ===== Buttons ===== */
.btn {
  border: 0;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--c-it-bright);
  color: #15110A;
  padding: 0.75rem 1.25rem;
}
.btn-marketing {
  background: rgba(142, 167, 209, 0.094);
  border: 1px solid rgba(142, 167, 209, 0.333);
  color: #fff;
  padding: 1rem 1.5rem;
}
.btn-block { width: 100%; padding: 1rem 1.5rem; margin-top: 1.5rem; }

/* ===== Main ===== */
.site-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
@media (min-width: 1024px) {
  .site-main { padding: 3.5rem 2rem; }
}

/* ===== Pages ===== */
.page { display: none; }
.page[data-active="true"] {
  display: block;
  animation: pageIn 0.45s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Grid helpers ===== */
.grid { display: grid; gap: 1.25rem; }

.hero-grid { gap: 2.5rem; }
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.sub-hero-grid { gap: 2rem; }
@media (min-width: 1024px) {
  .sub-hero-grid { grid-template-columns: 0.9fr 1.1fr; }
}

.contact-grid { gap: 2rem; }
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
}

.home-caps { margin-top: 4rem; gap: 1.25rem; }
@media (min-width: 1024px) {
  .home-caps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.software-solutions { gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 1024px) {
  .software-solutions { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.outcomes { gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 1024px) {
  .outcomes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.service-panels { gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 1024px) {
  .service-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.ecosystem-grid { gap: 2rem; margin-top: 4rem; }
@media (min-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.detail-grid-2 { gap: 1.25rem; margin-top: 4rem; }
@media (min-width: 1024px) {
  .detail-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.mk-consultancy { gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 1024px) {
  .mk-consultancy { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== Hero text ===== */
.hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 2;
  color: #cbd5e1;
}
@media (min-width: 768px) {
  .hero-lead { font-size: 1.125rem; }
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-cta .btn { padding: 1rem 1.5rem; }

/* Sub-page title */
.sub-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0;
}
@media (min-width: 768px) {
  .sub-title { font-size: 4.5rem; }
}
.sub-lead {
  margin-top: 1.75rem;
  line-height: 2.25;
  color: var(--c-muted);
}

/* ===== Pills ===== */
.pill {
  display: inline-flex;
  border: 1px solid;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.pill-marketing {
  color: var(--c-marketing);
  background: rgba(142, 167, 209, 0.094);
  border-color: rgba(142, 167, 209, 0.2);
}
.pill-it {
  color: var(--c-it-bright);
  background: rgba(242, 161, 38, 0.267);
  border-color: rgba(242, 161, 38, 0.2);
}
.pill-accent {
  color: var(--c-accent);
  background: rgba(25, 138, 151, 0.094);
  border-color: rgba(25, 138, 151, 0.2);
}

/* ===== Block cards ===== */
.block-card {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 1.75rem;
  background: var(--c-card);
}
@media (min-width: 1024px) {
  .block-card { padding: 2.5rem; }
}
.block-card-soft { background: rgba(255, 255, 255, 0.045); }

.complete-it {
  border-color: rgba(242, 161, 38, 0.157);
  background: linear-gradient(145deg, rgba(142,167,209,0.137), rgba(255,255,255,0.035));
}

.block-head { gap: 2rem; }
@media (min-width: 1024px) {
  .block-head {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
  }
}
.block-head-95 {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .block-head-95 {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }
}

.block-title {
  margin: 1.25rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .block-title { font-size: 3rem; }
}
.block-lead {
  margin: 0;
  line-height: 2;
  color: var(--c-muted);
}
.block-card .block-lead { margin-top: 0; }
.complete-it .block-lead,
.mk-block .block-lead { margin-top: 0; }

.max-w-3 { max-width: 48rem; }
.max-w-4 { max-width: 56rem; }

/* ===== Outcomes / capabilities cards ===== */
.cap-card,
.software-card,
.outcome-card,
.detail-card,
.mk-consultancy-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  background: var(--c-card);
  transition: transform 0.3s ease, background 0.3s ease;
}
.cap-card:hover,
.software-card:hover,
.detail-card:hover,
.mk-consultancy-card:hover {
  transform: translateY(-8px);
}
.cap-card { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.card-text {
  margin: 1rem 0 0;
  line-height: 1.75;
  color: var(--c-muted);
}

/* Software solution accent bar */
.software-card .accent-bar,
.detail-card .accent-bar,
.mk-consultancy-card .accent-bar {
  display: block;
  height: 0.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.software-card.alt { background: rgba(255, 255, 255, 0.045); }

.outcome-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
}
.outcome-card.first {
  background: rgba(242, 161, 38, 0.333);
}
.outcome-metric {
  font-size: 0.875rem;
  font-weight: 900;
  margin: 0;
}
.outcome-title {
  margin: 1rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.outcome-text {
  margin: 1rem 0 0;
  line-height: 1.75;
  color: var(--c-muted);
}

/* ===== Service panel ===== */
.service-panel {
  border-radius: var(--radius-xl);
  border: 1px solid;
  padding: 1.75rem;
}
@media (min-width: 1024px) {
  .service-panel { padding: 2.25rem; }
}
.panel-marketing {
  background: rgba(142, 167, 209, 0.063);
  border-color: rgba(142, 167, 209, 0.196);
}
.panel-it {
  background: rgba(242, 161, 38, 0.271);
  border-color: rgba(242, 161, 38, 0.157);
}
.panel-title {
  margin: 1.25rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
}
.service-panel:has(.pill) .panel-title,
.service-panel .pill + .panel-title { margin-top: 1.25rem; }
@media (min-width: 768px) {
  .panel-title { font-size: 2.25rem; }
}
.panel-lead {
  margin: 1.25rem 0 0;
  line-height: 2;
  color: var(--c-muted);
}
.panel-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}
.panel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1rem;
  transition: transform 0.25s ease;
}
.panel-item:hover { transform: translateX(6px); }
.panel-item .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.panel-item .text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Command Center (hero) ===== */
.command-center {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xxl);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.cc-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}
.cc-glow-orange {
  right: -4rem; top: -4rem;
  height: 11rem; width: 11rem;
  background: rgba(242, 161, 38, 0.333);
  animation: pulseGlow 5s ease-in-out infinite;
}
.cc-glow-teal {
  bottom: -5rem; left: -4rem;
  height: 14rem; width: 14rem;
  background: rgba(25, 138, 151, 0.25);
  animation: pulseGlow2 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.2); opacity: 0.65; }
}
@keyframes pulseGlow2 {
  0%, 100% { transform: scale(1.1); opacity: 0.28; }
  50% { transform: scale(0.9); opacity: 0.55; }
}
.cc-inner {
  position: relative;
  border-radius: 2.4rem;
  border: 1px solid var(--c-border);
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.22);
}
.cc-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cc-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}
.cc-title {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.cc-badge {
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(25, 138, 151, 0.267);
  background: rgba(25, 138, 151, 0.133);
  animation: badgeWobble 4s ease-in-out infinite;
}
.cc-badge-dot {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  background: var(--c-accent);
}
@keyframes badgeWobble {
  0%, 100% { transform: rotate(0) translateY(0); }
  25% { transform: rotate(4deg) translateY(-2px); }
  50% { transform: rotate(0) translateY(-3px); }
  75% { transform: rotate(-4deg) translateY(-2px); }
}

.cc-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.cc-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
  transition: transform 0.25s ease;
  opacity: 0;
  transform: translateY(22px);
  animation: ccCardIn 0.6s ease-out forwards;
}
.cc-card:hover { transform: translateY(-5px) scale(1.01); }
@keyframes ccCardIn {
  to { opacity: 1; transform: translateY(0); }
}
.cc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cc-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.cc-card-value {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.cc-card-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
}
.cc-progress {
  margin-top: 1rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.cc-progress-bar {
  height: 100%;
  border-radius: 9999px;
  width: 0;
  animation: ccProgress 1.1s ease-out forwards;
}
@keyframes ccProgress {
  to { width: var(--bar-target); }
}

.cc-stats {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.cc-stat {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  text-align: center;
  transition: transform 0.25s ease;
}
.cc-stat:hover { transform: translateY(-4px) scale(1.02); }
.cc-stat-number {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
}
.cc-stat-label {
  margin: 0.25rem 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== Floating SaaS visual ===== */
.floating-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(142,167,209,0.157), rgba(25,138,151,0.078), rgba(242,161,38,0.078));
}
.fv-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 11rem;
  width: 11rem;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  border: 1px solid rgba(242, 161, 38, 0.2);
  background: rgba(242, 161, 38, 0.071);
  animation: orbitPulse 7s ease-in-out infinite;
}
@keyframes orbitPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0); }
  50% { transform: translate(-50%, -50%) scale(1.12) rotate(12deg); }
}
.fv-core {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 6rem;
  width: 6rem;
  margin-left: -3rem;
  margin-top: -3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(25, 138, 151, 0.267);
  background: rgba(0, 0, 0, 0.32);
  padding: 1rem;
  text-align: center;
  animation: coreFloat 4.5s ease-in-out infinite;
}
@keyframes coreFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fv-core-title {
  margin: 0;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 0.75rem;
  color: var(--c-accent);
}
.fv-core-sub {
  margin: 0.5rem 0 0;
  font-size: 11px;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
.fv-card {
  position: absolute;
  width: 10rem;
  border-radius: var(--radius-md);
  border: 1px solid;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
  animation: cardFloat 6s ease-in-out infinite;
}
.fv-card:hover { transform: scale(1.05); }
.fv-card-bar {
  display: block;
  margin-bottom: 0.75rem;
  height: 0.5rem;
  width: 2.5rem;
  border-radius: 9999px;
}
.fv-card-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.fv-card-detail {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
}
.fv-pos-1 { left: 1.5rem; top: 2rem; animation-duration: 4s; }
.fv-pos-2 { right: 1.5rem; top: 4rem; animation-duration: 4.4s; animation-name: cardFloatReverse; }
.fv-pos-3 { left: 2.5rem; bottom: 3.5rem; animation-duration: 4.8s; }
.fv-pos-4 { right: 2.5rem; bottom: 2.5rem; animation-duration: 5.2s; animation-name: cardFloatReverse; }
.fv-pos-5 { left: 50%; top: 2rem; transform: translateX(-50%); animation-duration: 5.6s; }
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 5px -12px; }
}
@keyframes cardFloatReverse {
  0%, 100% { translate: 0 0; }
  50% { translate: -5px 12px; }
}
.fv-pos-5 { animation-name: cardFloatCenter; }
@keyframes cardFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

/* ===== Detail card ===== */
.detail-card {
  background: rgba(255, 255, 255, 0.045);
}
.detail-card .accent-bar { background: var(--c-it-bright); }
.detail-card.tone-marketing .accent-bar { background: var(--c-marketing); }
.detail-card .card-title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.detail-card .card-text { line-height: 2; }

/* ===== SaaS Journey ===== */
.saas-journey-section { background: var(--c-card-alt); }
.saas-journey-section .block-head,
.saas-journey-section > .anim-fade:first-child { /* head text col */ }
.saas-journey-section {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .saas-journey-section {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.journey-stages {
  position: relative;
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .journey-stages::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 1px;
    background: linear-gradient(var(--c-it-bright), var(--c-marketing));
    transform-origin: top;
    animation: lineGrow 1.2s ease-out;
  }
}
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.journey-stage {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.journey-stage:hover { transform: translateX(6px); }
@media (min-width: 1024px) {
  .journey-stage { padding-left: 3.5rem; }
  .journey-stage::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1.25rem;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: var(--stage-color, var(--c-it-bright));
  }
}
.journey-stage-num {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--stage-color, var(--c-it-bright));
}
.journey-stage-text {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

/* ===== Process steps ===== */
.process-section {
  display: grid;
  gap: 2rem;
  background: var(--c-card-alt);
}
@media (min-width: 1024px) {
  .process-section { grid-template-columns: 0.8fr 1.2fr; }
}
.process-steps { display: grid; gap: 1rem; }
.process-step {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}
.process-step:hover { transform: translateX(6px); }
.process-step-num {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
}
.process-step-text {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

/* ===== Final CTAs ===== */
.final-cta {
  overflow: hidden;
  border-color: rgba(142, 167, 209, 0.157);
  background:
    radial-gradient(circle at 15% 20%, rgba(142, 167, 209, 0.133), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(242, 161, 38, 0.133), transparent 34%),
    rgba(255, 255, 255, 0.045);
}
.final-cta-inner {
  margin: 0 auto;
  max-width: 56rem;
  text-align: center;
}
.cta-center { margin-top: 2rem; display: flex; justify-content: center; }
.cta-center .btn { padding: 1rem 1.75rem; }

.mk-final-cta {
  overflow: hidden;
  border-color: rgba(142, 167, 209, 0.157);
  background:
    radial-gradient(circle at 15% 20%, rgba(142, 167, 209, 0.125), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(25, 138, 151, 0.094), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.mk-block {
  border-color: rgba(142, 167, 209, 0.2);
  background: linear-gradient(145deg, rgba(142, 167, 209, 0.137), rgba(255, 255, 255, 0.035));
}

/* ===== Marketing consultancy ===== */
.mk-consultancy-card {
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.18);
}
.mk-consultancy-card.center {
  background: rgba(142, 167, 209, 0.078);
}

/* ===== Services overview ===== */
.services-overview { background: var(--c-card); }
.services-overview .detail-grid-2 { margin-top: 2.25rem; }

/* ===== Contact ===== */
.contact-info {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
}
.contact-info p { margin: 0; }
.contact-address {
  margin-top: 0.25rem;
  line-height: 1.75;
}

.contact-form {
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 1.75rem;
  background: var(--c-card);
}
@media (min-width: 1024px) {
  .contact-form { padding: 2.25rem; }
}
.form-field {
  display: block;
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.form-input {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  font-size: 1rem;
}
.form-input:focus { border-color: rgba(255, 255, 255, 0.3); }
.form-textarea { resize: vertical; min-height: 8rem; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.22);
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-brand { flex-direction: row; align-items: center; }
}
.footer-brand-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.footer-brand-tag {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
}
.footer-links button {
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer-links button:hover { color: #fff; }
.footer-links button.is-active { color: var(--c-it-bright); }
.footer-meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 1024px) {
  .footer-meta { text-align: right; }
}
.footer-meta p { margin: 0; }
.footer-meta p + p { margin-top: 0.25rem; }
.footer-copy {
  border-top: 1px solid var(--c-border);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 1024px) {
  .footer-copy { padding: 1rem 2rem; }
}

/* ===== Fade-up animation (replaces Framer Motion) ===== */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when parent grids reveal */
.grid > .anim-fade { transition-delay: 0s; }

/* ===== Small utility ===== */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
