/* ========================================================
   ALBIN REJI — PREMIUM MINIMALIST BRUTALIST DESIGN SYSTEM
   Inspired by digitalists.at
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg-primary: #f5f5f3;
  --bg-secondary: #ffffff;
  --bg-tertiary: #ecebe6;
  --bg-card: #ffffff;
  
  --text-primary: #000000;
  --text-secondary: #222222;
  --text-muted: #555555;
  
  --accent: #000000;
  --accent-hover: #ffffff;
  
  --highlight-neon: #d4ff00;
  --highlight-green: #00ff66;
  --border-color: #000000;
  --border: 1px solid #000000;
  --border-thick: 2px solid #000000;
  
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --nav-height: 90px;
  --transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-offset: 4px;
}

/* ---------- Global Reset & Basics ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--highlight-neon);
  color: #000;
}

/* Dotted Grid Utility */
.dot-pattern {
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%; height: 4px;
  background: var(--highlight-green);
  border-bottom: 1px solid #000;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Layout Containers ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section--gray {
  background: var(--bg-tertiary);
}

.section--accent {
  background: var(--bg-secondary);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 16px;
  padding: 2px 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section__subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 40px;
}

/* High Contrast Title Accent */
.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  background-color: var(--highlight-neon);
  color: #000;
  padding: 2px 8px;
  display: inline-block;
}

/* ---------- Buttons (Blocky, Brutalist) ---------- */
.btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: var(--border-thick);
  border-radius: 0px !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn::after {
  content: '■';
  font-size: 10px;
  margin-left: 2px;
}

.btn--primary {
  background: #000000;
  color: #ffffff;
}

.btn--primary::after {
  color: #ffffff;
}

.btn--primary:hover {
  background: #ffffff;
  color: #000000;
}

.btn--primary:hover::after {
  color: #000000;
}

.btn--outline {
  background: transparent;
  color: #000000;
}

.btn--outline::after {
  color: #000000;
}

.btn--outline:hover {
  background: #000000;
  color: #ffffff;
}

.btn--outline:hover::after {
  color: #ffffff;
}

.btn--white {
  background: #ffffff;
  color: #000000;
}

.btn--white::after {
  color: #000000;
}

.btn--white:hover {
  background: #000000;
  color: #ffffff;
}

.btn--white:hover::after {
  color: #ffffff;
}

/* ---------- Navigation Bar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition);
}

.nav--scrolled {
  background: var(--bg-secondary);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav__meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 2px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #000;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.nav__logo span {
  color: inherit;
}

.nav__color-bar {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.color-dot {
  width: 8px;
  height: 4px;
}

.c-green { background: #00ff66; }
.c-yellow { background: #ffff00; }
.c-orange { background: #ffaa00; }
.c-red { background: #ff3300; }
.c-pink { background: #ff00aa; }
.c-blue { background: #00aaff; }
.c-purple { background: #9900ff; }
.c-indigo { background: #3300aa; }

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

.nav__link {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 6px 10px;
  position: relative;
}

.nav__link-main {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav__link-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 2px;
}

.nav__link:hover .nav__link-main {
  color: var(--text-muted);
}

.nav__link--active .nav__link-main {
  border-bottom: 2px solid #000;
}

/* Nav dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.nav__dropdown-link:hover {
  background: var(--highlight-neon);
}

.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
}

.nav__cta::after {
  content: '■';
  font-size: 8px;
  margin-left: 6px;
}

.nav__cta:hover {
  background: #fff;
  color: #000;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all var(--transition);
}

.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Interactive Switcher Hero ---------- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 320px 1fr 440px;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  height: 100%;
  min-height: calc(100vh - var(--nav-height));
}

/* Left Switcher Menu */
.hero__switcher {
  border-right: 1px solid var(--border-color);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__switcher-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: block;
}

.hero__switcher-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.hero__switcher-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.hero__switcher-arrow {
  opacity: 0;
  transition: opacity var(--transition);
  font-weight: 800;
  color: #000;
}

.hero__switcher-link--active {
  color: #000;
  font-weight: 800;
}

.hero__switcher-link--active .hero__switcher-arrow {
  opacity: 1;
}

.hero__switcher-skip {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skip-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.skip-dots {
  display: flex;
  gap: 4px;
}

.skip-dots .dot {
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  background: transparent;
}

.skip-dots .dot.active {
  background: #000;
}

/* Center Visual Container */
.hero__center-wrap {
  border-right: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
}

.hero__giant-stat {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 8vw, 130px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hero__visual-cards {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 380px;
  z-index: 1;
}

.hero__visual-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__visual-card--active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero__visual-card .card-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border: var(--border-thick);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 6px 6px 0px #000000;
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 2px 8px;
  align-self: flex-start;
}

.card-chart {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neon-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.card-pixels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.card-code {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #000;
  text-align: left;
}

.card-bar-graph {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

.card-bar-graph .bar {
  width: 24px;
  background: #000;
  border: 1px solid #000;
  transition: height var(--transition);
}

.card-bar-graph .bar:nth-child(2) {
  background: var(--highlight-green);
}

.card-social-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  align-content: center;
}

.grid-cell {
  border: 1px dashed #000;
  padding: 16px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.card-target {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.target-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #000;
  background: var(--highlight-neon);
  animation: pulseTarget 2s infinite ease-in-out;
}

@keyframes pulseTarget {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.target-val {
  position: absolute;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.card-media-box {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform var(--transition);
}

.play-btn:hover {
  transform: scale(1.08) rotate(-5deg);
}

.card-identity-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.id-symbol {
  font-size: 36px;
  color: #000;
}

.id-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-automation-flow {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  border: 1px solid #000;
  padding: 10px;
  background: var(--bg-tertiary);
}

/* Right Editorial Content */
.hero__editorial-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__typing {
  background: var(--highlight-neon);
  color: #000;
  padding: 0 4px;
  border-right: 2px solid #000;
  display: inline-block;
  min-width: 8ch;
  text-align: left;
}

.hero__desc-container {
  flex-grow: 1;
  margin-bottom: 30px;
  position: relative;
}

.hero__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.hero__preview-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.preview-thumbnail {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  overflow: hidden;
  position: relative;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 700;
  border-bottom: 1px solid #000;
}

/* ---------- Client Marquee Section ---------- */
.marquee-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
}

.marquee-section__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: scrollMarquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-row--reverse .marquee-track {
  animation-name: scrollMarqueeReverse;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.marquee-item:hover {
  filter: grayscale(0) drop-shadow(0px 2px 8px rgba(0,0,0,0.1));
  opacity: 1;
}

/* ---------- Stats Grid ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  background: var(--border-color);
  gap: 1px;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 40px 24px;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ---------- Page Banner ---------- */
.page-banner {
  padding: 100px 0 60px 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-tertiary);
  margin-top: var(--nav-height);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #000;
}

/* ---------- Cards & Grids (Site-Wide) ---------- */
.services__grid, .work__grid, .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card, .project-card, .testimonial-card {
  background: var(--bg-secondary);
  border: var(--border-thick);
  padding: 30px;
  border-radius: 0px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}

.service-card:hover, .project-card:hover, .testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px #000000;
}

/* Service Card specifics */
.service-card__icon {
  font-size: 28px;
  margin-bottom: 20px;
  align-self: flex-start;
  padding: 8px;
  background: var(--bg-primary);
  border: 1px solid #000;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card__description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card__link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #000;
  align-self: flex-start;
  padding-bottom: 2px;
}

/* Project Card specifics */
.project-card__image {
  width: 100%;
  height: 200px;
  border: 1px solid #000;
  background: var(--bg-tertiary);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.project-card__image-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-card__description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-tertiary);
  border: 1px solid #000;
  padding: 2px 6px;
  text-transform: uppercase;
}

.project-card__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 8px 16px;
  align-self: flex-start;
  background: #000;
  color: #fff;
}

.project-card__link:hover {
  background: #fff;
  color: #000;
}

/* ---------- Testimonial Card Redesign ---------- */
.testimonial-card {
  padding: 30px;
}

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}

.testimonial-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-card__logo {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: #000;
  filter: grayscale(1);
}

.testimonial-card__logo svg {
  width: 20px;
  height: 20px;
}

.testimonial-card__quote {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-left: 2px solid #000;
  padding-left: 16px;
}

/* ---------- Service Detail Page Layout ---------- */
.service-detail__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.service-detail__sidebar {
  position: sticky;
  top: 130px;
  border: var(--border-thick);
  padding: 24px;
  background: var(--bg-secondary);
}

.service-detail__menu-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.service-detail__menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__menu-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.service-detail__menu-link:hover, .service-detail__menu-link--active {
  color: #000;
  font-weight: 800;
}

.service-detail__content {
  display: flex;
  flex-direction: column;
}

.service-detail__header-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}

.service-detail__icon {
  font-size: 36px;
  padding: 12px;
  border: 1px solid #000;
  background: var(--highlight-neon);
  line-height: 1;
}

.service-detail__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-box {
  background: var(--bg-secondary);
  border: var(--border);
  padding: 24px;
}

.feature-box__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-box__title::before {
  content: '→';
  font-weight: 800;
}

.feature-box__desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Pricing Monochrome Grid ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  background: #000;
  gap: 1px;
}

.pricing-card {
  background: var(--bg-secondary);
  border: none;
  border-radius: 0px !important;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card--featured {
  background: var(--bg-tertiary);
  position: relative;
}

.pricing-card--featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  background: var(--highlight-green);
  border: 1px solid #000;
  padding: 2px 6px;
  letter-spacing: 0.5px;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-card__feature {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card__feature::before {
  content: '✓';
  font-weight: 800;
  color: #000;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

/* ---------- Growth Strategy Planner ---------- */
.growth-planner {
  background: #000000;
  color: #ffffff;
  border: var(--border-thick);
  padding: 48px;
  margin-top: 40px;
}

.growth-planner .section__label {
  border-color: #fff;
  background: #000;
  color: #fff;
}

.growth-planner__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.planner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.biz-selector {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.biz-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.biz-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.biz-btn:hover, .biz-btn.active {
  background: #fff;
  color: #000;
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.planner-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #333;
  outline: none;
  border: 1px solid #fff;
}

.planner-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--highlight-green);
  border: 1px solid #000;
  cursor: pointer;
}

.planner-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--highlight-green);
  border: 1px solid #000;
  cursor: pointer;
}

.planner-output {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed #fff;
  padding: 24px;
}

.output-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.metric-val.highlight {
  color: var(--highlight-green);
}

.alloc-bar {
  width: 100%;
  height: 10px;
  background: #222;
  border: 1px solid #fff;
  margin-top: 4px;
}

.alloc-fill {
  height: 100%;
  background: var(--highlight-green);
  width: 0%;
  transition: width 0.3s ease;
}

.roadmap-container {
  margin-top: 30px;
}

.roadmap-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#roadmap-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  list-style-type: square;
}

#roadmap-points li {
  font-size: 13px;
  color: #ddd;
}

/* ---------- Contact Section & Form ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-info-card {
  border: var(--border-thick);
  background: var(--bg-secondary);
  padding: 24px;
}

.contact-info-card__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-info-card__content {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.contact-form-wrapper {
  border: var(--border-thick);
  background: var(--bg-secondary);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: var(--border-thick);
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  background: var(--bg-primary);
}

.form-control:focus {
  background: #fff;
  border-color: #000;
}

/* ---------- FAQ Section ---------- */
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
}

.faq-item {
  border-bottom: 1px solid #000;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.faq-item__icon {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item__answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item--open .faq-item__icon {
  content: '-';
}

/* ---------- SEO Tabs Section ---------- */
.seo-tabs {
  margin-top: 40px;
  border: var(--border-thick);
  background: var(--bg-secondary);
}

.seo-tab-btns {
  display: flex;
  border-bottom: 1px solid #000;
  overflow-x: auto;
}

.seo-tab-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  border-right: 1px solid #000;
  background: var(--bg-tertiary);
  cursor: pointer;
  white-space: nowrap;
}

.seo-tab-btn.active {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--highlight-green);
}

.seo-tab-content {
  padding: 30px;
}

.seo-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.seo-pane.active {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: var(--border-thick);
  padding: 60px 0 30px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 4px;
}

.footer__brand-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__link:hover {
  color: #000;
}

.footer__bottom {
  border-top: 1px solid #000;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border: var(--border-thick);
  background: var(--bg-secondary);
  cursor: pointer;
  z-index: 90;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #000;
  color: #fff;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    border: none;
  }
  
  .hero__switcher {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero__center-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 60px;
  }
  
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail__inner {
    grid-template-columns: 1fr;
  }
  
  .service-detail__sidebar {
    position: static;
    margin-bottom: 40px;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
    border: var(--border-thick);
    gap: 0;
  }
  
  .pricing-card {
    border-bottom: 1px solid #000;
  }
  
  .pricing-card:last-child {
    border-bottom: none;
  }
  
  .planner__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    align-items: flex-start;
    border-top: 1px solid #000;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav__links--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__link-main {
    font-size: 20px;
  }
  
  .nav__link-sub {
    font-size: 10px;
  }
  
  .nav__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  .stats__grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .biz-btns {
    grid-template-columns: 1fr;
  }
}
