/* ==========================================================================
   PROJEKTOHOLIK v5 — Creative Redesign
   Inspired by: Linear (dark luminance), Vercel (precision),
   Cursor (atmospheric shadows), Stripe (chromatic depth),
   Superhuman (cinematic gradients)
   ========================================================================== */

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

:root {
  /* Brand colors — PRESERVED */
  --bg: #08090a;
  --bg-alt: #0f1012;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --accent: #e8552d;
  --accent-light: #ff6b42;
  --accent-glow: rgba(232, 85, 45, 0.15);
  --accent-glow-strong: rgba(232, 85, 45, 0.25);
  --accent-glow-subtle: rgba(232, 85, 45, 0.06);
  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.10);
  --red: #f87171;
  --red-glow: rgba(248, 113, 113, 0.10);

  /* Text — refined for depth */
  --text: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a80;
  --text-faint: rgba(255,255,255,0.35);

  /* Borders — Linear-style translucent */
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --border-accent: rgba(232, 85, 45, 0.3);

  /* Structure */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1100px;

  /* Spacing scale */
  --s-xs: 8px;
  --s-sm: 16px;
  --s-md: 24px;
  --s-lg: 48px;
  --s-xl: 80px;
  --s-2xl: 120px;

  /* Shadows — Cursor-style atmospheric */
  --shadow-card:
    rgba(0,0,0,0.3) 0px 20px 60px -20px,
    rgba(0,0,0,0.15) 0px 8px 24px -8px;
  --shadow-card-hover:
    rgba(0,0,0,0.4) 0px 30px 80px -20px,
    rgba(0,0,0,0.2) 0px 12px 32px -8px,
    rgba(232,85,45,0.05) 0px 0px 40px;
  --shadow-glow: 0 0 80px rgba(232,85,45,0.12), 0 0 160px rgba(232,85,45,0.06);
  --shadow-btn: 0 0 20px rgba(232,85,45,0.3), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-btn-hover: 0 0 30px rgba(232,85,45,0.45), 0 4px 16px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-feature-settings: "cv01", "ss03";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== FOCUS STATES (a11y) ===== */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:focus-visible,
.nav-cta:focus-visible,
.btn-linkedin:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: var(--shadow-btn), 0 0 0 4px var(--accent-glow);
}

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
p {
  color: var(--text-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}
.section-header h2 {
  margin-bottom: var(--s-sm);
}
.section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, #ff8a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 16px;
}
.btn-ghost:hover {
  color: var(--accent-light);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: 14px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,9,10,0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.25s;
  box-shadow: 0 0 16px rgba(232,85,45,0.2);
}
.nav-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px rgba(232,85,45,0.35);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 180px 0 var(--s-2xl);
  text-align: center;
  overflow: hidden;
}

/* Hero glow orbs */
.hero-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background:
    radial-gradient(ellipse at center, rgba(232,85,45,0.22) 0%, rgba(232,85,45,0.10) 30%, rgba(232,85,45,0.03) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-glow-secondary {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232,85,45,0.12) 0%, rgba(255,107,66,0.05) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow2 12s ease-in-out infinite alternate-reverse;
}
.hero-glow-tertiary {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 450px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,138,101,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 10s ease-in-out 2s infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}
@keyframes heroGlow2 {
  0% { opacity: 0.5; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.9; transform: scale(1.1) translate(10px, -10px); }
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,85,45,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,85,45,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(232,85,45,0.08);
  border: 1px solid rgba(232,85,45,0.15);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: var(--s-md);
  backdrop-filter: blur(8px);
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.4; box-shadow: 0 0 16px var(--accent); }
}

.hero h1 {
  margin-bottom: var(--s-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto var(--s-lg);
  line-height: 1.75;
  color: var(--text-secondary);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION GLOW ACCENTS ===== */
.section-glow {
  position: relative;
}
.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--accent), var(--accent-light), transparent);
  opacity: 0.6;
  box-shadow: 0 0 20px rgba(232,85,45,0.15), 0 0 60px rgba(232,85,45,0.08);
}

/* ===== TRANSFORMATION (Before / After) ===== */
.transformation {
  padding: var(--s-xl) 0;
  background: var(--bg-alt);
  position: relative;
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.transform-col {
  border-radius: var(--radius-lg);
  padding: var(--s-lg) var(--s-md);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.transform-before {
  border: 1px solid rgba(248,113,113,0.12);
}
.transform-before:hover {
  border-color: rgba(248,113,113,0.25);
  box-shadow: 0 0 40px rgba(248,113,113,0.05);
}
.transform-after {
  border: 1px solid rgba(52,211,153,0.12);
}
.transform-after:hover {
  border-color: rgba(52,211,153,0.25);
  box-shadow: 0 0 40px rgba(52,211,153,0.05);
}

.transform-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-md);
}
.transform-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.transform-icon-before {
  background: var(--red-glow);
  color: var(--red);
}
.transform-icon-after {
  background: var(--green-glow);
  color: var(--green);
}
.transform-col-header h3 {
  color: var(--text);
  font-size: 1.05rem;
}
.transform-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.transform-item .transform-icon {
  margin-top: 2px;
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.transform-item:last-child { border-bottom: none; }
.transform-item p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.bridge {
  text-align: center;
  margin-top: var(--s-xl);
  position: relative;
}
.bridge p {
  font-size: clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.bridge span {
  color: var(--accent);
  position: relative;
}
.bridge span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  opacity: 0.6;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--s-xl) 0;
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: var(--s-lg) var(--s-md);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.step-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.step-number {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s-xs);
  line-height: 1;
}
.step-card h3 {
  margin-bottom: var(--s-xs);
  color: var(--text);
}
.step-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--s-xl) 0;
  background: var(--bg-alt);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto auto auto 1fr auto);
  gap: 20px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: var(--s-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-lg) var(--s-md);
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}
@supports not (grid-template-rows: subgrid) {
  .pricing-card {
    grid-row: auto;
    display: flex;
    flex-direction: column;
  }
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Featured card — gradient border */
.pricing-featured {
  border: none;
  background: var(--bg-card);
  position: relative;
  z-index: 1;
}
.pricing-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), rgba(232,85,45,0.3), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(to bottom, rgba(232,85,45,0.08), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.pricing-featured:hover {
  box-shadow: 0 0 60px rgba(232,85,45,0.1), var(--shadow-card);
  transform: translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(232,85,45,0.3);
}
.pricing-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-xs);
}
.pricing-desc {
  font-size: 0.92rem;
  margin-bottom: var(--s-md);
  line-height: 1.55;
}
.pricing-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 68px;
  justify-content: flex-end;
}
.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pricing-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  min-height: 1.2em;
}
.pricing-features {
  margin: 0;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid var(--accent);
}
.pricing-features li::after {
  content: '\2713';
  position: absolute;
  left: 2.5px;
  top: 11px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.65rem;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
  align-self: end;
}

/* ===== SOLUTIONS (tabs) ===== */
.solutions {
  padding: var(--s-xl) 0;
  position: relative;
}
.solutions-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.solutions-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.solutions-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
}
.solutions-tab:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border);
}
.solutions-tab.active {
  background: var(--accent-glow-subtle);
  color: var(--accent-light);
  border-color: var(--border-accent);
}
.solutions-tab svg {
  flex-shrink: 0;
  opacity: 0.4;
  transition: all 0.25s;
}
.solutions-tab.active svg {
  opacity: 1;
  stroke: var(--accent-light);
}

.solutions-panels { position: relative; }
.solutions-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  backdrop-filter: blur(12px);
  animation: panelFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.solutions-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.solutions-panel h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: var(--s-sm);
  letter-spacing: -0.01em;
}
.solutions-panel > p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: var(--s-md);
}
.solutions-panel ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solutions-panel li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.solutions-panel li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--s-xl) 0;
  background: var(--bg-alt);
  position: relative;
}
.about-grid {
  display: flex;
  align-items: flex-start;
  gap: var(--s-xl);
  max-width: 800px;
  margin: 0 auto var(--s-xl);
}
.about-photo-wrap {
  flex-shrink: 0;
  position: relative;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(232,85,45,0.2));
  z-index: -1;
  opacity: 0.6;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-alt);
  position: relative;
  z-index: 1;
}
.about-content h2 {
  margin-bottom: 4px;
}
.about-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  margin-bottom: var(--s-sm) !important;
}
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
  margin-bottom: var(--s-sm);
}
.btn-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  box-shadow: 0 0 20px rgba(10,102,194,0.25);
}
.btn-linkedin svg {
  flex-shrink: 0;
}
.about-content > p {
  font-size: 0.98rem;
  margin-bottom: var(--s-sm);
  line-height: 1.75;
}
.about-stats {
  display: flex;
  gap: var(--s-lg);
  margin-top: var(--s-md);
  margin-bottom: var(--s-sm);
}
.about-stat { text-align: left; }
.about-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Competencies — Timeline */
.competencies {
  max-width: 800px;
  margin: 0 auto var(--s-xl);
  text-align: center;
}
.competencies h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: var(--s-sm);
}
.competencies > p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto var(--s-lg);
}
.comp-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.comp-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  opacity: 0.4;
}
.comp-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 24px;
  position: relative;
  transition: all 0.3s ease;
  width: 50%;
}
/* Steps 1,3,5,7 = nth-child(even) due to timeline-line being child 1 */
.comp-step:nth-child(even) {
  margin-left: 50%;
  padding-left: 32px;
}
/* Steps 2,4,6 = nth-child(odd) */
.comp-step:nth-child(odd) {
  margin-right: 50%;
  flex-direction: row-reverse;
  text-align: right;
}
/* Dot on the timeline */
.comp-step::after {
  content: '';
  position: absolute;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong), 0 0 4px var(--accent);
  z-index: 1;
}
.comp-step:nth-child(even)::after {
  left: -5px;
}
.comp-step:nth-child(odd)::after {
  right: -6px;
}
.comp-step:hover {
  background: rgba(232,85,45,0.03);
  border-radius: var(--radius);
}
.comp-num {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-glow-strong), var(--accent-glow));
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comp-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.comp-title {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.comp-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Logo Slider */
.logo-slider {
  text-align: center;
}
.logo-slider-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--s-md);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.88rem;
}
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: var(--s-sm);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.marquee-item:hover {
  opacity: 0.75;
}
.marquee-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--s-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(232,85,45,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  margin-bottom: var(--s-sm);
}
.final-cta p {
  font-size: 1.05rem;
  margin-bottom: var(--s-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--s-xl) 0;
  background: var(--bg-alt);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.faq-item:hover {
  background: rgba(255,255,255,0.01);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer > * {
  overflow: hidden;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.active .faq-answer p {
  padding-bottom: 24px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--s-lg) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-sm);
}
.footer-brand {
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand span { color: var(--accent); }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-copy a { color: var(--text-muted); transition: color 0.2s; }
.footer-copy a:hover { color: var(--text-secondary); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,9,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--s-md) 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }

  .hero { padding: 130px 0 var(--s-xl); }
  .hero h1 br { display: none; }
  .hero-glow { width: 100%; height: 400px; }
  .hero-glow-secondary { display: none; }

  .transformation .section-header h2 br { display: none; }
  .transform-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .step-card { padding: var(--s-md); }
  .step-number { font-size: 2.4rem; }

  .pricing-grid { grid-template-columns: 1fr; grid-template-rows: none; max-width: 440px; margin: 0 auto; }
  .pricing-card { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; }
  .pricing-card .btn { margin-top: auto; }
  .pricing-featured { order: -1; }

  .solutions-layout {
    grid-template-columns: 1fr;
  }
  .solutions-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 4px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .solutions-tab {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 12px 16px;
    min-height: 44px;
  }
  .solutions-tab svg { display: none; }

  .about-grid {
    flex-direction: column;
    text-align: center;
    gap: var(--s-md);
    align-items: center;
  }
  .about-content { display: flex; flex-direction: column; align-items: center; }
  .btn-linkedin { align-self: center; }
  .about-photo { width: 120px; height: 120px; }
  .about-photo-wrap::after { inset: -3px; }
  .about-stats { justify-content: center; gap: var(--s-md); }
  .about-stat { text-align: center; }

  .comp-timeline {
    max-width: 400px;
    padding-left: 20px;
  }
  .comp-timeline-line {
    left: 0;
  }
  .comp-step,
  .comp-step:nth-child(odd),
  .comp-step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    text-align: left;
    padding: 10px 16px 10px 24px;
  }
  .comp-step:nth-child(odd)::after,
  .comp-step:nth-child(even)::after {
    left: -25px;
    right: auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--s-sm);
  }

  .section-glow::before { width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: var(--s-sm); }
}
