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

:root {
  --bg: #0a0a0a;
  --bg-alt: #0e0e0e;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --accent: #c8ff00;
  --border: #222222;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  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;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 255, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor.hover {
  width: 14px;
  height: 14px;
}

.cursor-follower.hover {
  width: 52px;
  height: 52px;
  border-color: rgba(200, 255, 0, 0.6);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.preloader-percent {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.logo-dot {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 4px;
  border: 1px solid var(--border);
  padding: 2px;
}

.lang-btn {
  padding: 4px 10px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--bg);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ===== 3D CANVASES ===== */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

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

.hero-year {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 1s; }
.hero-title .line:nth-child(2) { animation-delay: 1.15s; }
.hero-title .line:nth-child(3) { animation-delay: 1.3s; }

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.5s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== VISUAL INTERLUDE ===== */
.visual-interlude {
  position: relative;
  height: 28vh;
  min-height: 200px;
  max-height: 300px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.interlude-canvas {
  position: absolute;
  inset: 0;
}

.interlude-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.interlude-label {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 1;
}

.interlude-side {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.interlude-bridge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(200, 255, 0, 0.2);
}

.visual-interlude--tall {
  height: 50vh;
  min-height: 340px;
  max-height: 480px;
}

.interlude-caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.interlude-caption-num {
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0.6;
}

.interlude-caption-text {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SHAPES CANVAS (services bg) ===== */
.section-with-shapes {
  position: relative;
}

.shapes-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.shapes-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.section-with-shapes > .container {
  position: relative;
  z-index: 1;
}

/* ===== SECTIONS ===== */
.section {
  padding: 56px 48px;
  border-top: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-alt);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-text {
  font-size: 1rem;
  font-weight: 300;
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-text.large {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-top: 20px;
}

.service-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s ease;
}

.service-item:nth-child(-n+2) {
  border-top: 1px solid var(--border);
}

.service-num {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 32px;
  padding-top: 4px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: #bbb;
  line-height: 1.6;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}

.category-card:hover {
  border-color: var(--accent);
}

.category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.category-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 20px;
}

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-list li {
  font-size: 0.85rem;
  font-weight: 400;
  color: #bbb;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.category-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
}

.step {
  padding: 20px 20px;
  position: relative;
  border-left: 1px solid var(--border);
}

.step:first-child {
  border-left: none;
  padding-left: 0;
}

.step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 14px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: #bbb;
  line-height: 1.6;
}

/* ===== PLATFORMS ===== */
.platforms-header {
  margin-bottom: 28px;
}

.platforms-header .section-text {
  max-width: 600px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.platform-item {
  padding: 18px 16px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.platform-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.platforms-note {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== WHY POINTS ===== */
.why-points {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.why-point {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.why-num {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.why-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.why-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: #888;
  margin-top: 4px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #bbb;
  line-height: 1.7;
}

/* ===== CTA / CONTACT FORM ===== */
.section-cta {
  padding: 56px 48px;
  background: var(--bg);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

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

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

.form-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: #666;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23777' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg);
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  align-self: flex-start;
  padding: 16px 40px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent);
  color: var(--bg);
}

.form-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.form-success-icon {
  font-size: 2rem;
  color: var(--accent);
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.form-success-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.form-success-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}

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

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

.footer-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-link {
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social {
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 16px 48px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 95;
}

.cookie-banner.show {
  display: flex;
}

.cookie-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cookie-btn {
  padding: 8px 24px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay .nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-overlay .nav-mobile a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-overlay .nav-mobile a:hover {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 48px 32px;
  }

  .section-cta {
    padding: 48px 32px;
  }

  .hero {
    padding: 110px 32px 80px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
  }

  .step:nth-child(-n+2) {
    border-top: none;
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .footer {
    padding: 36px 32px 24px;
  }
}

@media (max-width: 768px) {
  .cursor, .cursor-follower {
    display: none !important;
  }

  /* Header */
  .header {
    padding: 16px 20px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.3rem;
  }

  .lang-btn {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    padding: 90px 20px 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-year {
    margin-bottom: 24px;
    font-size: 0.7rem;
  }

  .hero-scroll {
    display: none;
  }

  /* Sections */
  .section {
    padding: 36px 20px;
  }

  .section-label {
    margin-bottom: 16px;
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .section-text.large {
    font-size: 0.95rem;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .category-card {
    padding: 20px 18px;
  }

  .category-tag {
    font-size: 0.6rem;
    padding: 5px 10px;
    margin-bottom: 14px;
  }

  .category-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .category-desc {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .category-list {
    gap: 8px;
  }

  .category-list li {
    font-size: 0.8rem;
    padding-left: 16px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .step {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 16px 0;
  }

  .step:first-child {
    border-top: 1px solid var(--border);
  }

  .step:nth-child(-n+2) {
    border-top: 1px solid var(--border);
  }

  .step-num {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .step-line {
    width: 24px;
    margin-bottom: 10px;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 0.8rem;
  }

  /* Services */
  .services-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .service-item {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }

  .service-item:nth-child(2) {
    border-top: none;
  }

  .service-name {
    font-size: 1rem;
  }

  .service-desc {
    font-size: 0.8rem;
  }

  /* Platforms */
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .platform-item {
    padding: 14px 10px;
    font-size: 0.75rem;
  }

  .platforms-header {
    margin-bottom: 20px;
  }

  .platforms-note {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 0.75rem;
  }

  /* Why Points */
  .why-points {
    margin-top: 20px;
  }

  .why-point {
    padding: 14px 0;
    gap: 14px;
  }

  .why-text {
    font-size: 0.9rem;
  }

  .why-sub {
    font-size: 0.75rem;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 0;
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.8rem;
    padding-bottom: 14px;
  }

  /* CTA / Form */
  .section-cta {
    padding: 36px 20px;
  }

  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .cta-text {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .contact-form {
    gap: 18px;
  }

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

  .form-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  .form-submit {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
  }

  .form-success {
    padding: 40px 0;
  }

  /* Footer */
  .footer {
    padding: 28px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  /* Visual Interludes */
  .visual-interlude {
    height: 20vh;
    min-height: 120px;
    max-height: 180px;
  }

  .visual-interlude--tall {
    height: 35vh;
    min-height: 200px;
    max-height: 300px;
  }

  .interlude-label {
    gap: 14px;
    bottom: 16px;
  }

  .interlude-side {
    font-size: 0.55rem;
  }

  .interlude-bridge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .interlude-caption {
    bottom: 20px;
    gap: 6px;
  }

  .interlude-caption-num {
    font-size: 1rem;
  }

  .interlude-caption-text {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    padding: 0 20px;
    text-align: center;
  }

  /* Utilities */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .cookie-banner {
    padding: 14px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }

  .cookie-text {
    font-size: 0.75rem;
  }

  .cookie-btn {
    font-size: 0.7rem;
    padding: 8px 20px;
  }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 400px) {
  .hero {
    padding: 80px 16px 50px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 28px 16px;
  }

  .section-cta {
    padding: 28px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .category-card {
    padding: 16px 14px;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .platform-item {
    padding: 12px 8px;
    font-size: 0.7rem;
  }

  .footer {
    padding: 24px 16px 16px;
  }
}
