/* ===========================
   AXIOM ENGINEERING – STYLES
   =========================== */

:root {
  --bg:        #0a0c10;
  --bg-2:      #0f1117;
  --bg-3:      #161b24;
  --border:    rgba(255,255,255,0.07);
  --accent:    #7F52FF;   /* Kotlin Purple */
  --accent-2:  #C811E1;   /* Kotlin Magenta */
  --accent-3:  #E44857;   /* Kotlin Coral */
  --accent-glow: rgba(127,82,255,0.25);
  --text:      #e8eaf0;
  --text-muted:#8892a4;
  --text-dim:  #555f72;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', monospace;
  --nav-h:     72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(127,82,255,0.1);
  border: 1px solid rgba(127,82,255,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 32px var(--accent-glow);
}
.btn--primary:hover {
  background: #9B7FFF;
  box-shadow: 0 0 48px rgba(127,82,255,0.4);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn--full { width: 100%; justify-content: center; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,12,16,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,12,16,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.about__card-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500 !important;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav__cta:hover {
  background: #9B7FFF !important;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { padding: 0 24px; }
.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--text); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero__content {
  max-width: 620px;
}

.hero__logo-wrap {
  flex-shrink: 0;
}

.hero__logo-full {
  width: 420px;
  height: 420px;
  object-fit: contain;
  display: block;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(127,82,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: linear-gradient(145deg, rgba(127,82,255,0.08), rgba(200,17,225,0.04));
  border-color: rgba(127,82,255,0.2);
}

.service-card__image {
  margin: -36px -32px 24px;   /* bleed to card edges */
  height: 180px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__image--mobile {
  background: url('img-mobile.webp') center center / cover no-repeat;
}

.service-card__image--ai {
  background: url('img-ai-consulting.jpg') center center / cover no-repeat;
}

.service-card__image--tech {
  background: url('img-tech-consulting.png') center center / cover no-repeat;
}

/* dark scrim so frosted icon stays readable */
.service-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.4));
}

.service-card__image-icon {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}
.service-card__image-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card__link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link:hover { gap: 8px; }

/* ===========================
   EXPERTISE
   =========================== */
.expertise__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.expertise__col-title {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.tech-list { display: flex; flex-direction: column; gap: 20px; }

.tech-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.tech-item__name {
  font-size: 14px;
  font-weight: 500;
}

.tech-item__level {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--accent);
  background: rgba(127,82,255,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

.tech-item__bar {
  height: 3px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}

.tech-item__fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-item__fill.animated { transform: scaleX(1); }

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  font-size: 12px;
  padding: 5px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(127,82,255,0.05);
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--bg-2); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.about__card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(127,82,255,0.15), transparent 70%);
  border-radius: 50%;
}

.about__card-logo {
  width: 52px; height: 52px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 0 24px var(--accent-glow);
}

.about__card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}
.about__card-line--wide { width: 80%; background: rgba(255,255,255,0.08); }
.about__card-line--mid  { width: 60%; }
.about__card-line--short { width: 40%; }

.about__card-tags {
  display: flex;
  gap: 8px;
}
.about__card-tags span {
  font-size: 11px;
  font-family: var(--mono);
  padding: 4px 10px;
  background: rgba(127,82,255,0.1);
  border: 1px solid rgba(127,82,255,0.2);
  border-radius: 6px;
  color: var(--accent);
}

.about__quote {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.about__quote-icon {
  width: 28px; height: 28px;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 12px;
}

.about__quote p {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.about__quote--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(127,82,255,0.08) 0%, var(--bg-3) 100%);
}

.about__quote--accent .about__quote-icon {
  color: var(--accent-2);
  opacity: 0.8;
}

.about__quote--accent p {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

.about__content { }

.about__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__highlight-icon {
  width: 36px; height: 36px;
  background: rgba(127,82,255,0.1);
  border: 1px solid rgba(127,82,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.about__highlight-icon svg { width: 16px; height: 16px; }

.about__highlight div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__highlight strong {
  font-size: 14px;
  font-weight: 600;
}
.about__highlight span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   PROJECTS
   =========================== */
.projects {
  background: var(--bg);
}

.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.project-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

/* ── Project card banner ── */
.project-card__banner {
  margin: -40px -40px 24px;
  height: 160px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
}

.project-card__banner--twint {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,0,102,0.9) 0%, rgba(255,0,102,0.4) 35%, transparent 70%),
    radial-gradient(ellipse at 80% 30%, rgba(255,80,150,0.6) 0%, transparent 55%),
    linear-gradient(135deg, #1a0010 0%, #2d0020 50%, #1a0010 100%);
}

.project-card__banner--swisscom {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,159,218,0.9) 0%, rgba(0,159,218,0.4) 35%, transparent 70%),
    radial-gradient(ellipse at 80% 30%, rgba(0,200,255,0.5) 0%, transparent 55%),
    linear-gradient(135deg, #001520 0%, #002030 50%, #001520 100%);
}

.project-card__banner--custcenter {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,100,180,0.9) 0%, rgba(0,100,180,0.4) 35%, transparent 70%),
    radial-gradient(ellipse at 80% 30%, rgba(0,140,220,0.5) 0%, transparent 55%),
    linear-gradient(135deg, #000d1a 0%, #001428 50%, #000d1a 100%);
}

.project-card__banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 52px;
  width: auto;
  z-index: 1;
  mix-blend-mode: normal;
}

/* subtle noise texture overlay */
.project-card__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
}

/* TWINT brand: #FF0066 hot magenta */
.project-card--twint {
  background: linear-gradient(160deg, rgba(255,0,102,0.18) 0%, rgba(255,0,102,0.06) 50%, var(--bg-3) 100%);
  border-color: rgba(255,0,102,0.3);
}
.project-card--twint::before {
  background: linear-gradient(145deg, rgba(255,0,102,0.12), transparent);
}

/* Swisscom brand: #009FDA bright blue */
.project-card--swisscom {
  background: linear-gradient(160deg, rgba(0,159,218,0.18) 0%, rgba(0,159,218,0.06) 50%, var(--bg-3) 100%);
  border-color: rgba(0,159,218,0.3);
}
.project-card--swisscom::before {
  background: linear-gradient(145deg, rgba(0,159,218,0.12), transparent);
}

/* Swisscom Customer Center — darker blue variant */
.project-card--custcenter {
  background: linear-gradient(160deg, rgba(0,100,180,0.18) 0%, rgba(0,100,180,0.06) 50%, var(--bg-3) 100%);
  border-color: rgba(0,100,180,0.3);
}
.project-card--custcenter::before {
  background: linear-gradient(145deg, rgba(0,100,180,0.12), transparent);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.45);
}
.project-card--twint:hover     { border-color: rgba(255,0,102,0.55);  box-shadow: 0 28px 72px rgba(255,0,102,0.12); }
.project-card--twint:hover::before     { opacity: 1; }
.project-card--swisscom:hover  { border-color: rgba(0,159,218,0.55);  box-shadow: 0 28px 72px rgba(0,159,218,0.12); }
.project-card--swisscom:hover::before  { opacity: 1; }
.project-card--custcenter:hover { border-color: rgba(0,100,180,0.55); box-shadow: 0 28px 72px rgba(0,100,180,0.12); }
.project-card--custcenter:hover::before { opacity: 1; }

.project-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.project-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-card--twint .project-card__icon {
  background: rgba(255,0,102,0.15);
  border: 1px solid rgba(255,0,102,0.35);
  color: #FF0066;
}
.project-card--swisscom .project-card__icon {
  background: rgba(0,159,218,0.15);
  border: 1px solid rgba(0,159,218,0.35);
  color: #009FDA;
}
.project-card--custcenter .project-card__icon {
  background: rgba(0,100,180,0.15);
  border: 1px solid rgba(0,100,180,0.35);
  color: #0064B4;
}
.project-card__icon svg { width: 24px; height: 24px; }

.project-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-card__role {
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.project-card--twint      .project-card__role { color: #FF0066; }
.project-card--swisscom   .project-card__role { color: #009FDA; }
.project-card--custcenter .project-card__role { color: #0064B4; }

.project-card__company {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.project-card__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.project-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-card__tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.project-card--twint      .project-card__tags span { border-color: rgba(255,0,102,0.25); color: var(--text-muted); }
.project-card--swisscom   .project-card__tags span { border-color: rgba(0,159,218,0.25); color: var(--text-muted); }
.project-card--custcenter .project-card__tags span { border-color: rgba(0,100,180,0.25); color: var(--text-muted); }

.project-card__stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.project-card__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}
.project-card__stat:last-child { border-right: none; }
.project-card__stat:first-child { padding-left: 0; }

.project-card__stat-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.project-card--twint      .project-card__stat-num { color: #FF0066; }
.project-card--swisscom   .project-card__stat-num { color: #009FDA; }
.project-card--custcenter .project-card__stat-num { color: #0064B4; }

.project-card__stat-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   PROCESS
   =========================== */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.process__step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(127,82,255,0.1);
  border: 1px solid rgba(127,82,255,0.2);
  width: 40px; height: 40px;
  line-height: 40px;
  border-radius: 10px;
  font-weight: 500;
}

.process__step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 8px; height: 8px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--bg-2); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact__detail:hover { color: var(--text); }
.contact__detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* Form */
.contact__form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group select option { background: var(--bg-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(127,82,255,0.15);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: -8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-dim);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .hero__logo-full { width: 320px; height: 320px; }
}

@media (max-width: 1024px) {
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .projects__grid .project-card:last-child { grid-column: 1 / -1; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__grid .service-card:last-child { grid-column: 1 / -1; }
  .expertise__columns { grid-template-columns: 1fr 1fr; }
  .expertise__col--badges { grid-column: 1 / -1; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .process__steps { flex-wrap: wrap; gap: 32px; }
  .process__connector { display: none; }
  .process__step { flex: 1 1 calc(50% - 16px); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .projects__grid { grid-template-columns: 1fr; }
  .projects__grid .project-card:last-child { grid-column: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo-wrap { display: flex; justify-content: center; }
  .hero__logo-full { width: 260px; height: 260px; }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:last-child { grid-column: auto; }
  .expertise__columns { grid-template-columns: 1fr; }
  .expertise__col--badges { grid-column: auto; }
  .process__step { flex: 1 1 100%; }
  .hero__scroll-hint { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 20px; }
}
