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

/* ============================================================
   TOKENS — LIGHT
   ============================================================ */
:root {
  --bg-primary:     #ffffff;
  --bg-secondary:   #f2f4f8;
  --bg-tertiary:    #e5e9f0;
  --bg-card:        #ffffff;

  --text-primary:   #0d0f14;
  --text-secondary: #5a6175;
  --text-tertiary:  #9ba3b5;

  --accent:         #1a4fd6;
  --accent-hover:   #1641b5;
  --accent-fg:      #ffffff;
  --accent-subtle:  rgba(26, 79, 214, 0.07);
  --accent-border:  rgba(26, 79, 214, 0.18);

  --border:         rgba(0, 0, 0, 0.07);
  --border-strong:  rgba(0, 0, 0, 0.13);

  --nav-bg:         rgba(255, 255, 255, 0.75);
  --nav-border:     rgba(0, 0, 0, 0.06);

  --shadow-sm:      0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.10);

  --code-bg:        #f0f4ff;
  --code-border:    rgba(26, 79, 214, 0.12);

  --terminal-bg:    #f8f9fc;
  --terminal-border: rgba(0,0,0,0.09);

  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --radius-pill: 980px;

  --icon-sun:  none;
  --icon-moon: block;
}

/* ============================================================
   TOKENS — DARK
   ============================================================ */
[data-theme="dark"] {
  --bg-primary:     #080c14;
  --bg-secondary:   #111827;
  --bg-tertiary:    #1e2638;
  --bg-card:        #111827;

  --text-primary:   #e8edf5;
  --text-secondary: #8a93a8;
  --text-tertiary:  #525d75;

  --accent:         #4d8ef0;
  --accent-hover:   #6ba3f5;
  --accent-fg:      #ffffff;
  --accent-subtle:  rgba(77, 142, 240, 0.10);
  --accent-border:  rgba(77, 142, 240, 0.22);

  --border:         rgba(255,255,255,0.06);
  --border-strong:  rgba(255,255,255,0.11);

  --nav-bg:         rgba(8, 12, 20, 0.80);
  --nav-border:     rgba(255,255,255,0.06);

  --shadow-sm:      0 1px 4px rgba(0,0,0,0.35);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.50);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.65);

  --code-bg:        #0d1526;
  --code-border:    rgba(77, 142, 240, 0.15);

  --terminal-bg:    #0a0f1c;
  --terminal-border: rgba(77, 142, 240, 0.14);

  --icon-sun:  block;
  --icon-moon: none;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 2rem; height: 52px;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-primary); text-decoration: none;
  white-space: nowrap; transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.6; }
.logo-bracket { color: var(--accent); }
.nav-links {
  list-style: none; display: flex;
  align-items: center; gap: 1.8rem; margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem; color: var(--text-secondary);
  text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent) !important; color: var(--accent-fg) !important;
  padding: 0.42rem 1.1rem !important; border-radius: var(--radius-pill) !important;
  font-weight: 500 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: transparent;
  color: var(--text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-left: 0.5rem; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.theme-toggle:hover { background: var(--bg-secondary); color: var(--text-primary); transform: scale(1.07); }
.icon-sun  { display: var(--icon-sun); }
.icon-moon { display: var(--icon-moon); }

/* ============================================================
   HERO — UNVERÄNDERT
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 130px 2rem 100px;
  max-width: 1080px; margin: 0 auto;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(26,79,214,0.5);
  animation: pulse 2s 1s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(0.85); }
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1.06; color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  opacity: 0; animation: fadeUp 0.7s 0.5s ease forwards;
  transition: background 0.3s, border-color 0.3s;
}
.stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
.stat strong { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); line-height: 1; }
.stat span   { font-size: 0.7rem; color: var(--text-tertiary); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--border-strong); }

.hero-code-block { opacity: 0; animation: fadeUp 0.7s 0.35s ease forwards; }
.code-window {
  background: var(--code-bg); border: 1px solid var(--code-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); transition: background 0.3s, border-color 0.3s;
}
.code-titlebar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--code-border);
  background: var(--bg-secondary); transition: background 0.3s;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.code-filename {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--text-tertiary); margin-left: 0.5rem;
}
.code-content {
  font-family: 'DM Mono', monospace; font-size: 0.82rem;
  line-height: 1.75; padding: 1.5rem 1.75rem; white-space: pre;
  overflow-x: auto; color: var(--text-secondary);
}
.c-keyword { color: #a855f7; font-style: italic; }
.c-var     { color: var(--accent); }
.c-prop    { color: var(--text-secondary); }
.c-str     { color: #16a34a; }
.c-bool    { color: #d97706; }
[data-theme="dark"] .c-str     { color: #4ade80; }
[data-theme="dark"] .c-bool    { color: #fbbf24; }
[data-theme="dark"] .c-keyword { color: #c084fc; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.72rem 1.5rem; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 500; text-decoration: none;
  cursor: pointer; border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn-primary {
  background: var(--accent); color: var(--accent-fg);
  box-shadow: 0 2px 16px rgba(26,79,214,0.3);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 24px rgba(26,79,214,0.4); }
.btn-ghost {
  background: var(--bg-secondary); color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-tertiary); }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: 110px 2rem; }
.section-alt { background: var(--bg-secondary); transition: background 0.3s; }
.container { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08;
  color: var(--text-primary); margin-bottom: 1rem;
}
.tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  padding: 0.22rem 0.6rem; border-radius: var(--radius-pill);
  background: var(--accent-subtle); color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* ============================================================
   LEISTUNGEN — Editoriale Zeilen
   ============================================================ */
.services-intro { margin-bottom: 3rem; }
.services-intro h2 em { font-style: italic; color: var(--accent); }

.services-list { border-top: 1px solid var(--border); }

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto 2.5rem;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  cursor: pointer;
}
.service-row:hover { background: var(--accent-subtle); margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }

.service-index {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.05em; flex-shrink: 0;
}
.service-body h3 {
  font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 0.4rem;
}
.service-body p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: flex-end; }
.service-arrow { color: var(--accent); opacity: 0; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0; }
.service-row:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* Referenz-Leiste */
.ref-strip {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.ref-strip-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; font-weight: 500; color: var(--text-tertiary);
  letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0;
}
.ref-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: 'DM Mono', monospace; font-size: 0.76rem;
  color: var(--text-secondary); text-decoration: none;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--bg-secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ref-chip:hover { color: var(--accent); border-color: var(--accent-border); background: var(--accent-subtle); }
.ref-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}

/* ============================================================
   PREISE — Asymmetrisch + Terminal
   ============================================================ */
.pricing-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.pricing-left { padding-top: 1rem; }
.big-rate {
  display: flex; align-items: flex-end; gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}
.big-rate-value {
  font-size: 5rem; font-weight: 700; letter-spacing: -0.05em;
  color: var(--text-primary); line-height: 1;
}
.big-rate-meta { display: flex; flex-direction: column; padding-bottom: 0.6rem; }
.big-rate-currency { font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.big-rate-unit { font-size: 0.85rem; color: var(--text-secondary); }

.pricing-note { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.75rem; }

.pricing-includes { display: flex; flex-direction: column; gap: 0.65rem; }
.pi-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--text-secondary); }
.pi-check { color: var(--accent); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* Terminal */
.terminal {
  background: var(--terminal-bg);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: background 0.3s, border-color 0.3s;
}
.terminal-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--terminal-border);
  background: var(--bg-secondary); transition: background 0.3s;
}
.terminal-title {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--text-tertiary); margin-left: 0.5rem;
}
.terminal-body {
  font-family: 'DM Mono', monospace; font-size: 0.82rem;
  padding: 1.5rem 1.75rem; line-height: 1.7;
}
.t-comment { color: var(--text-tertiary); font-size: 0.78rem; }
.t-prompt  { color: var(--accent); margin-right: 0.5rem; }
.t-prompt-hl { color: #4ade80; }
.t-plan {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}
.t-plan-hl { background: var(--accent-subtle); margin: 0 -1.75rem; padding: 0.9rem 1.75rem; }
.t-plan-name {
  font-weight: 500; color: var(--text-primary);
  margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.6rem;
}
.t-plan-details { display: flex; flex-direction: column; gap: 0.15rem; }
.t-price { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.t-price-hl { color: var(--accent); }
.t-per { font-size: 0.72rem; font-weight: 400; color: var(--text-tertiary); margin-left: 0.2rem; }
.t-desc { font-size: 0.76rem; color: var(--text-secondary); }
.t-badge {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em;
  background: var(--accent); color: var(--accent-fg);
  padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
}
.t-cursor { color: var(--text-secondary); }
.cursor-blink { animation: blink 1.2s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ============================================================
   ÜBER MICH — Großes Statement
   ============================================================ */
.about-statement { margin-bottom: 5rem; }
.about-quote {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.25; color: var(--text-primary);
  font-style: normal; margin: 1.5rem 0 1.25rem;
  max-width: 820px;
}
.about-quote-hl { color: var(--accent); }
.about-byline {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; color: var(--text-tertiary); letter-spacing: 0.02em;
}

.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 2rem;
}
.about-fact {
  background: var(--bg-card); padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.about-fact:hover { background: var(--bg-secondary); }
.about-fact-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--accent-subtle); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0; transition: background 0.3s;
}
.about-fact h4 {
  font-size: 0.9rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.about-fact p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }

.stack-bar {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-md); flex-wrap: wrap;
  transition: background 0.3s;
}
.stack-bar-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-tertiary); flex-shrink: 0;
}
.stack-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tech-pill {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  padding: 0.2rem 0.65rem; border-radius: var(--radius-pill);
  background: var(--accent-subtle); color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* ============================================================
   PROZESS — Horizontaler Flow
   ============================================================ */
.process-header { margin-bottom: 4rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-step {
  padding: 0 2rem 0 0; position: relative;
}
.ps-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--accent-fg);
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0; position: relative; z-index: 2;
}
.ps-connector {
  position: absolute; top: 20px; left: 40px;
  right: 0; height: 1px;
  background: linear-gradient(to right, var(--accent), var(--border));
}
.ps-connector.last { display: none; }
.process-step h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.process-step p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   KONTAKT — Minimal
   ============================================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.contact-sub {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.65;
  margin: 1rem 0 2.5rem;
}
.contact-channels { display: flex; flex-direction: column; gap: 1.25rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: inherit; transition: opacity 0.2s;
}
.channel:hover:not(.channel-static) { opacity: 0.75; }
.channel-static { cursor: default; }
.channel-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent-subtle); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-label {
  display: block; font-family: 'DM Mono', monospace;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 0.15rem;
}
.channel-value { font-size: 0.92rem; color: var(--text-primary); font-weight: 500; }

/* Big CTA */
.contact-cta-block { display: flex; flex-direction: column; gap: 1rem; }
.big-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2rem;
  background: var(--accent); color: var(--accent-fg);
  border-radius: var(--radius-lg); text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 32px rgba(26,79,214,0.35);
}
.big-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(26,79,214,0.45);
}
.big-cta-text { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.big-cta-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.big-cta:hover .big-cta-arrow { background: rgba(255,255,255,0.25); }
.cta-note {
  font-size: 0.75rem; color: var(--text-tertiary);
  font-family: 'DM Mono', monospace; text-align: center;
}
.payment-info {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.75rem; color: var(--text-tertiary);
  font-family: 'DM Mono', monospace;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-secondary); transition: background 0.3s, border-color 0.3s; }
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer p { font-size: 0.75rem; color: var(--text-tertiary); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.75rem; color: var(--text-tertiary);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr; gap: 3rem;
    padding: 110px 1.5rem 80px; text-align: center;
  }
  .hero-eyebrow  { justify-content: center; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-code-block { order: 2; }
  .code-content { font-size: 0.74rem; padding: 1.25rem 1.25rem; text-align: left; }
  .stat-divider  { display: none; }
  .hero-stats    { gap: 1.5rem; padding: 1.5rem; }

  .section      { padding: 80px 1.5rem; }
  .pricing-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ps-connector { display: none; }

  .service-row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .service-tags  { grid-column: 2; }
  .service-arrow { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-actions  { flex-direction: column; }
  .btn           { justify-content: center; }
  .about-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .big-rate-value { font-size: 3.5rem; }
}
