/* ===================== THEME VARIABLES ===================== */
:root,
[data-theme="dark"] {
  --bg:           #080C18;
  --bg2:          #0D1225;
  --surface:      #131929;
  --border:       rgba(0,210,255,0.12);
  --border-solid: rgba(0,210,255,0.28);
  --cyan:         #00D2FF;
  --gold:         #FFB84C;
  --text:         #EEF2FF;
  --muted:        #6B7A9F;
  --gradient:     linear-gradient(135deg, #00D2FF 0%, #7B61FF 100%);
  --nav-bg:       rgba(8,12,24,0.96);
  --menu-bg:      rgba(8,12,24,0.98);
  --card-hover:   #0D1225;
  --shadow:       0 8px 40px rgba(0,0,0,0.4);
  --shadow-soft:  0 4px 20px rgba(0,0,0,0.25);
  --noise-opacity: 0.025;
}

[data-theme="light"] {
  --bg:           #F4F7FF;
  --bg2:          #EBF0FF;
  --surface:      #FFFFFF;
  --border:       rgba(0,140,200,0.14);
  --border-solid: rgba(0,140,200,0.35);
  --cyan:         #0099CC;
  --gold:         #C87800;
  --text:         #0D1225;
  --muted:        #5A6890;
  --gradient:     linear-gradient(135deg, #0099CC 0%, #6040E0 100%);
  --nav-bg:       rgba(244,247,255,0.96);
  --menu-bg:      rgba(244,247,255,0.99);
  --card-hover:   #EBF0FF;
  --shadow:       0 8px 40px rgba(0,100,200,0.1);
  --shadow-soft:  0 4px 20px rgba(0,100,200,0.08);
  --noise-opacity: 0.012;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Offset for fixed nav */
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  cursor: none;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
  max-width: 100vw;
}

@media (hover: none) {
  body { cursor: auto; }
}

/* ===================== NOISE OVERLAY ===================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 1;           /* low z-index — never overlaps interactive elements */
  transition: opacity 0.35s;
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor {
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,210,255,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.25s cubic-bezier(.23,1,.32,1);
}
[data-theme="light"] .cursor-ring { border-color: rgba(0,140,200,0.5); }

/* ===================== SECTION INNER WRAPPER ===================== */
/* All sections have full-width backgrounds but content max-width constrained */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;           /* above content, below menu overlay */
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  z-index: 1;
  text-decoration: none;
  cursor: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ===================== THEME TOGGLE ===================== */
.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 44px; height: 24px;
  border-radius: 12px;
  position: relative;
  cursor: none;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  transition: transform 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}
[data-theme="light"] .theme-toggle::after { transform: translateX(20px); }

.theme-toggle-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  cursor: none;
}
.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
}

/* ===================== HAMBURGER ===================== */
.hamburger-btn {
  background: transparent;
  border: none;
  cursor: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 44px;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}
.hamburger-btn .bar {
  display: block;
  height: 2px;
  background: var(--cyan);
  transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
  border-radius: 1px;
}
.hamburger-btn .bar:nth-child(1) { width: 28px; }
.hamburger-btn .bar:nth-child(2) { width: 20px; }
.hamburger-btn .bar:nth-child(3) { width: 28px; }
.hamburger-btn:hover .bar { width: 28px; }
.hamburger-btn.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 28px; }
.hamburger-btn.active .bar:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger-btn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 28px; }

/* ===================== MENU OVERLAY ===================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--menu-bg);
  z-index: 999;            /* below nav (1000) so hamburger remains visible */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.35s;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.menu-links li {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.menu-overlay.active .menu-links li { transform: translateY(0); opacity: 1; }
.menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.06s; }
.menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.12s; }
.menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.18s; }
.menu-overlay.active .menu-links li:nth-child(4) { transition-delay: 0.24s; }
.menu-overlay.active .menu-links li:nth-child(5) { transition-delay: 0.30s; }

.menu-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  position: relative;
  cursor: none;
}
.menu-links a:hover { color: var(--cyan); }
.menu-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.menu-links a:hover::after { width: 100%; }

.menu-theme-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease 0.36s;
}
.menu-overlay.active .menu-theme-row {
  opacity: 1;
  transform: translateY(0);
}
.menu-theme-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,210,255,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(123,97,255,0.1) 0%, transparent 70%);
  bottom: 50px; left: 60px;
  animation: float2 10s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-solid);
  padding: 7px 16px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
  color: var(--text);
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
  font-weight: 400;
}

.hero-sub {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

/* Hero mini stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s 0.25s ease both;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 2px;
}
.hero-stat-item:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-solid);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  cursor: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(0,210,255,0.2);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,210,255,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,210,255,0.04); }

@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* Hero right card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  width: 100%;
  max-width: 340px;
  position: relative;
  box-shadow: var(--shadow);
  transition: background 0.35s, border-color 0.35s;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.card-label {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.card-stat { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.card-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.card-stat .unit { font-size: 0.75rem; color: var(--cyan); }
.card-desc { font-size: 0.7rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--cyan);
  transition: border-color 0.3s;
}
.card-footer-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  color: var(--muted);
}
.card-footer-line i { color: #4ade80; font-size: 0.75rem; }

/* ===================== TICKER STRIP ===================== */
.ticker-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item i { color: var(--cyan); font-size: 0.65rem; }
@keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ===================== SECTIONS COMMON ===================== */
.section {
  padding: 96px 48px;
}
.portfolio-section,
.process-section,
.pricing-section,
.contact-section {
  padding: 96px 48px;
}
.portfolio-section {
  background: var(--bg2);
  position: relative;
  transition: background 0.35s;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}
.pricing-section { background: var(--bg2); transition: background 0.35s; }

.section-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  max-width: 520px;
  color: var(--text);
  line-height: 1.15;
}

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg);
  padding: 44px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--card-hover); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 28px;
}
.service-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  position: relative;
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-icon { border-color: var(--cyan); background: rgba(0,210,255,0.04); }
.service-card:hover .service-icon::after { opacity: 0.07; }
.service-icon i {
  font-size: 1.2rem;
  color: var(--cyan);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.service-card:hover .service-icon i { transform: scale(1.15); }

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.service-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 4px;
}
.service-features {
  margin-top: 20px;
  list-style: none;
  flex: 1;
}
.service-features li {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--cyan);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-decoration: none;
  transition: gap 0.2s;
  cursor: none;
  align-self: flex-start;
}
.service-cta:hover { gap: 10px; }
.service-cta i { font-size: 0.6rem; }

/* WHY US strip */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-item {
  background: var(--bg2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.3s;
}
.why-item:hover { background: var(--card-hover); }
.why-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.why-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.why-desc {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===================== PORTFOLIO ===================== */
.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.portfolio-note { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dossier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.35s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: none;
  min-height: 220px;
}
.dossier-card:hover {
  border-color: var(--border-solid);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.dossier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,210,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.dossier-card:hover::before { opacity: 1; }
.dossier-arrow {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.dossier-card:hover .dossier-arrow { color: var(--cyan); transform: translate(2px,-2px); }
.dossier-type {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  display: inline-block;
  align-self: flex-start;
}
.dossier-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.dossier-desc {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.dossier-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.dossier-link-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.dossier-url { font-size: 0.68rem; color: var(--cyan); word-break: break-all; font-style: italic; }

/* CTA card in dossier grid */
.dossier-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px dashed var(--border-solid);
  min-height: 220px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.dossier-cta-card:hover {
  border-color: var(--cyan);
  background: rgba(0,210,255,0.03);
  transform: translateY(-4px);
  box-shadow: none;
}
.dossier-cta-inner {
  text-align: center;
  padding: 20px;
}
.dossier-cta-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--cyan);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.dossier-cta-card:hover .dossier-cta-icon {
  border-color: var(--cyan);
  background: rgba(0,210,255,0.06);
}
.dossier-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}
.dossier-cta-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ===================== PROCESS ===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
  position: relative;
}
/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(14px + 25%/4);
  right: calc(14px + 25%/4);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.step {
  padding: 0 20px 0 20px;
  position: relative;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-dot {
  width: 54px; height: 54px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--cyan);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s;
}
.step-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc { font-size: 0.71rem; color: var(--muted); line-height: 1.75; }

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--bg);
  position: relative;
  transition: border-color 0.3s, background 0.35s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border-solid); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--border-solid);
  background: var(--surface);
}
.pricing-card.featured::before {
  content: 'POPULER';
  position: absolute;
  top: -1px; left: 28px;
  background: var(--gradient);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  color: white;
}
.pricing-tier {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-wrapper { margin-bottom: 6px; }
.price-old {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 600;
}
.discount-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: #FF4C4C;
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(255,76,76,0.3);
  z-index: 2;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);  /* responsive — no overflow */
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1.1;
  color: var(--text);
  word-break: break-word;
}
.pricing-note { font-size: 0.67rem; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-list { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-list li {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--cyan);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: none;
  margin-top: auto;
}
.btn-pricing:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,210,255,0.04); }
.btn-pricing.featured-btn {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,210,255,0.2);
}
.btn-pricing.featured-btn:hover { opacity: 0.85; }

.pricing-footer-note {
  margin-top: 28px;
  font-size: 0.7rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  line-height: 1.6;
}
.pricing-footer-note i { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ===================== CONTACT ===================== */
.contact-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,210,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact-section .section-inner {
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--text);
}
.contact-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}

/* Contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-info-card:hover { border-color: var(--border-solid); box-shadow: var(--shadow-soft); }
.contact-info-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-body { flex: 1; min-width: 0; }
.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 4px;
  word-break: break-word;
}
.contact-info-sub { font-size: 0.65rem; color: var(--muted); line-height: 1.5; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: none;
}
.contact-btn i { font-size: 1rem; flex-shrink: 0; }
.contact-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,210,255,0.04); }
.contact-btn.primary-contact {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,210,255,0.2);
}
.contact-btn.primary-contact i { color: #fff; }
.contact-btn.primary-contact:hover { opacity: 0.85; box-shadow: 0 8px 30px rgba(0,210,255,0.3); }

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  transition: border-color 0.35s;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.footer-logo span { color: var(--cyan); }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-nav a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.63rem; color: var(--muted); }
.footer-made {
  font-size: 0.63rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-made i { color: #f87171; font-size: 0.6rem; }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE — TABLET (≤1024px) ===================== */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .nav-links { gap: 24px; }

  .hero { padding: 110px 32px 70px; gap: 36px; }

  .section,
  .portfolio-section,
  .process-section,
  .pricing-section,
  .contact-section { padding: 80px 32px; }

  footer { padding: 36px 32px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .dossier-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .contact-info-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== RESPONSIVE — MOBILE (≤768px) ===================== */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .theme-toggle-label { display: none; }

  /* Hero — single column, compact */
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 20px 48px;
    gap: 36px;
    min-height: auto;
  }
  .hero-right {
    justify-content: stretch;
  }
  .hero-card {
    max-width: 100%;
    width: 100%;
  }
  .hero-stats {
    gap: 0;
  }
  .hero-stat-item {
    padding: 0 14px;
  }
  .hero-stat-item:first-child { padding-left: 0; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.58rem; }

  /* Sections */
  .section,
  .portfolio-section,
  .process-section,
  .pricing-section,
  .contact-section { padding: 64px 20px; }

  .section-title { margin-bottom: 40px; }

  /* Ticker */
  .ticker-strip { padding: 12px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }

  /* Portfolio */
  .portfolio-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .dossier-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Process — vertical with left border */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 20px;
    border-left: 1px solid var(--border);
  }
  .process-steps::before { display: none; }
  .step {
    padding: 0 0 32px 24px;
    position: relative;
  }
  .step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 22px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    border: 2px solid var(--bg);
  }
  .step:last-child { padding-bottom: 0; }
  .step-top { margin-bottom: 14px; }
  .step-dot { width: 46px; height: 46px; font-size: 0.75rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-price { font-size: clamp(1.4rem, 7vw, 2rem); }

  /* Contact */
  .contact-info-grid { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .contact-title { font-size: clamp(1.9rem, 8vw, 3rem); }

  /* Footer */
  footer { padding: 28px 20px; }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-nav { gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

/* ===================== RESPONSIVE — SMALL MOBILE (≤480px) ===================== */
@media (max-width: 480px) {
  .hero { padding: 84px 16px 40px; }

  .section,
  .portfolio-section,
  .process-section,
  .pricing-section,
  .contact-section { padding: 56px 16px; }

  footer { padding: 24px 16px; }

  /* Stacked hero stats on very small screens */
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-stat-item { padding: 0; }

  /* Full-width buttons */
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; justify-content: center; }

  /* Why strip: single column */
  .why-strip { grid-template-columns: 1fr; }

  /* Contact buttons */
  .contact-links { flex-direction: column; align-items: stretch; }
  .contact-btn { width: 100%; justify-content: center; }

  /* Menu links smaller on tiny screens */
  .menu-links a { font-size: 1.5rem; }
  .menu-links { gap: 20px; }

  /* Disable custom cursor */
  .cursor, .cursor-ring { display: none; }
}

/* Also hide cursor on touch devices regardless of screen size */
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}