/* ============================================
   WEBWIEN — style.css
   ============================================ */

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

:root {
  --bg:        #090909;
  --bg2:       #111110;
  --text:      #F5F5F5;
  --muted:     #B8B5AD;
  --lime:      #C8FF00;
  --lime-d:    #9AC400;
  --border:    rgba(236,234,226,0.12);
  --border-h:  rgba(236,234,226,0.25);

  --f-display: 'Bebas Neue', sans-serif;
  --f-head:    'Syne', sans-serif;
  --f-body:    'Instrument Sans', sans-serif;

  --maxw: 1120px;
  --r:    10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- GRAIN ---- */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  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: 128px;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,255,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
  mix-blend-mode: normal !important;
  opacity: 0.9;
}
.cursor.big { width: 60px; height: 60px; border-color: var(--lime); }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000000;
  transform: translate(-50%,-50%);
}

.gate {
  pointer-events: auto;
}

.gate .cursor-dot {
  background: #C8FF00;
  box-shadow: 0 0 10px #C8FF00, 0 0 20px rgba(200,255,0,0.5);
  transform: translate(-50%, -50%) scale(1.5);
}

.gate .cursor {
  border-color: rgba(200,255,0,1);
  opacity: 1;
  width: 44px;
  height: 44px;
  box-shadow: 0 0 25px rgba(200,255,0,0.25);
}

/* ---- UTILS ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.overflow-hide { overflow: hidden; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
.reveal-fade {
  opacity: 0;
  transition: opacity .8s ease var(--d, 0s);
}
.reveal-up.in, .reveal-fade.in { opacity: 1; transform: none; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  transition: background .4s, border-color .4s;
}
.nav.scrolled {
  background: rgba(9,9,9,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}
.logo span { color: var(--lime); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--lime);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--lime-d); }

/* ---- HERO ---- */
.hero {
  min-height: 100dvh;
  padding: 100px 2rem 60px;
  box-sizing: border-box;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn .6s ease .05s forwards;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.pulse {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,255,0,0.4); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(200,255,0,0); }
}

.hero-year {
  font-family: var(--f-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-title-wrap { margin-bottom: 1.5rem; }

.hero-word {
  font-family: var(--f-display);
  font-size: clamp(5.5rem, 9vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  display: block;
}
.hero-accent { color: var(--lime); }

.hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1rem;
  color: #CFCBC2;
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-main {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  background: var(--lime);
  color: var(--bg);
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-main:hover { background: var(--lime-d); }

.btn-ghost {
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--text); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--f-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--text);
}
.stat-label {
  font-size: 0.72rem;
  font-family: var(--f-head);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.stat-div { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn .6s ease 1s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-family: var(--f-head);
  letter-spacing: 0.12em;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(.5); opacity: 1; }
}

@keyframes fadeIn { to { opacity: 1; } }

/* ---- MARQUEE ---- */
.marquee-wrap {
  border-top: 2px solid rgba(200,255,0,0.25);
  border-bottom: 2px solid rgba(200,255,0,0.25);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track { white-space: nowrap; }
.marquee-inner {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 22s linear infinite;
}
.marquee-inner span {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.mdot { color: var(--lime) !important; font-size: 0.6rem !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.section { padding: 7rem 0; }
.section-monthly { background: var(--bg2); }

.section-label {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.section-heading {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 4rem;
  font-weight: 550;
}

/* ---- BENTO PAKETE ---- */
.bento {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento-card {
  background: linear-gradient(180deg, #171716, #121211);
  border: 1px solid rgba(236,234,226,0.12);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.bento-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.bento-feat {
  border-color: var(--lime);
  border-width: 1.5px;
}
.bento-feat:hover { border-color: var(--lime); }
.bento-wide {
  grid-column: 1 / -1;
}
.feat-badge {
  position: absolute; top: -12px; left: 2rem;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
}
.bento-tag {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.bento-price {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--text);
}
.bento-note { font-size: 0.75rem; color: var(--muted); margin-top: -0.5rem; }

.bento-list { list-style: none; flex: 1; }
.bento-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.bento-list li:last-child { border-bottom: none; }
.bento-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 9px;
  flex-shrink: 0;
}
.bento-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.bento-btn {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  border: 1px solid var(--border-h);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
  text-align: center;
}
.bento-btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.bento-btn-inv { background: var(--lime); color: var(--bg); border-color: var(--lime); }
.bento-btn-inv:hover { background: var(--lime-d); border-color: var(--lime-d); color: var(--bg); }

/* ---- MONTHLY ---- */
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.monthly-card {
  background: #161615b4;
  border: 2px solid rgba(236,234,226,0.12);
  border-radius: var(--r);
  padding: 2rem;
  transition: border-color .3s;
}
.monthly-card:hover { border-color:var(--lime);}
.monthly-icon { font-size: 1.5rem; display: block; margin-bottom: 0.6rem; }
.monthly-name {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.monthly-price {
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.monthly-price small {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}
.monthly-desc { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

.monthly-total {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  flex-wrap: wrap;
}
.monthly-total span { font-size: 0.85rem; color: var(--muted); font-family: var(--f-head); }
.monthly-total strong { font-family: var(--f-display); font-size: 2rem; color: var(--lime); letter-spacing: 0.02em; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(200,255,0,0.2);
  transition: color .3s;
}
.step:hover .step-num { color: var(--lime); }
.step-content h3 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.step-content p { font-size: 0.9rem; color: var(--muted); font-weight: 300; max-width: 520px; }

/* ---- CONTACT ---- */
.section-contact { background: var(--bg2); border-top: 1px solid var(--border); }
.contact-headline { margin-bottom: 4rem; }
.contact-big {
  font-family: var(--f-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  display: block;
}
.contact-accent-big { color: var(--lime); }

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}
.contact-left p { font-size: 0.95rem; color: var(--muted); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.75; }
.contact-email {
  display: block;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  transition: opacity .2s;
}
.contact-email:hover { opacity: .7; }
.contact-city { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.contact-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact-chips span {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  color: var(--muted);
}

/* ---- FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { position: relative; }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--lime);
  border-radius: 8px;
  padding: 1.25rem 1rem 0.5rem;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.message-field {
  min-height: 320px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--lime); }
.form-field label {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  font-size: 0.8rem;
  font-family: var(--f-head);
  letter-spacing: 0.04em;
  color: var(--muted);
  pointer-events: none;
  transition: all .2s;
  
}
.form-field input:not(:placeholder-shown) ~ label,
.form-field input:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label {
  top: 0.35rem; font-size: 0.65rem; color: var(--lime);
}

.file-field input[type="file"] {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.file-label {
  display: block;
  padding: 1rem;
  border: 1px dashed var(--lime);
  border-radius: 8px;
  cursor: pointer;
}

.btn-submit {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--lime);
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  cursor: none;
  transition: background .2s;
  display: block;
  width: 100%;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
.btn-submit:hover { background: var(--lime-d); }

.form-ok {
  display: none;
  font-family: var(--f-head);
  font-size: 0.85rem;
  color: var(--lime);
  text-align: center;
  padding: 0.5rem 0;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { opacity: .6; }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }

  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: 1; }
  .bento-list-cols { grid-template-columns: 1fr; }

  .monthly-grid { grid-template-columns: 1fr; }

  .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-num { font-size: 2.5rem; }

  .hero-stats { gap: 1.25rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .hero { padding: 120px 1.5rem 60px; }
  .container { padding: 0 1.5rem; }
  .hero-bottom { flex-direction: column; }
}

/* ============================================
   NEU: SECTION SUB TEXT
   ============================================ */
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* ============================================
   DEVICE SCENE — REWORKED (BRIGHTER / CLEAN)
   ============================================ */

.section-responsive {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.device-scene {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 0 2rem;
  flex-wrap: wrap;
}

/* Shared label */
.ds-label {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Shared screen helpers */
.ds-ui-bar {
  height: 4px;
  width: 100%;
  background: rgba(200,255,0,0.18);
  border-radius: 2px;
  margin-bottom: 14px;
}

.ds-bar-sm { height: 3px; margin-bottom: 10px; }
.ds-bar-xs { height: 2px; margin-bottom: 8px; }

.ds-ui-hero { margin-bottom: 12px; }

.ds-line {
  height: 7px;
  background: rgba(236,234,226,0.18);
  border-radius: 2px;
  margin-bottom: 6px;
}

.ds-l1 { width: 72%; }
.ds-l2 { width: 52%; }
.ds-l3 { width: 40%; }

.ds-cta {
  width: 50px;
  height: 10px;
  background: rgba(200,255,0,0.28);
  border-radius: 5px;
  margin-top: 10px;
}

.ds-cta-sm {
  width: 36px;
  height: 8px;
  margin-top: 8px;
}

.ds-grid {
  display: grid;
  gap: 5px;
}

.ds-grid3 { grid-template-columns: repeat(3, 1fr); }
.ds-grid2 { grid-template-columns: repeat(2, 1fr); }
.ds-grid1 { grid-template-columns: 1fr; }

.ds-block {
  height: 40px;
  background: rgba(236,234,226,0.06);
  border: 1px solid rgba(236,234,226,0.10);
  border-radius: 4px;
}

/* ============================================
   LAPTOP
   ============================================ */

.ds-laptop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ds-laptop .ds-screen {
  width: 380px;
  height: 240px;
  background: linear-gradient(180deg, #161615, #10100f);
  border: 1px solid rgba(236,234,226,0.18);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 16px 14px 0;
  overflow: hidden;
}

/* base / stand */
.ds-bezel {
  width: 100%;
  height: 10px;
  background: rgba(236,234,226,0.07);
  border: 1px solid rgba(236,234,226,0.12);
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.ds-neck {
  width: 64px;
  height: 12px;
  background: rgba(236,234,226,0.06);
  clip-path: polygon(18% 0%,82% 0%,100% 100%,0% 100%);
}

.ds-base {
  width: 140px;
  height: 5px;
  background: rgba(236,234,226,0.08);
  border-radius: 3px;
}

/* ============================================
   TABLET
   ============================================ */

.ds-tablet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ds-tablet .ds-screen {
  width: 190px;
  height: 250px;
  background: linear-gradient(180deg, #161615, #10100f);
  border: 1px solid rgba(236,234,226,0.18);
  border-radius: 10px 10px 6px 6px;
  padding: 12px 10px;
  overflow: hidden;
}

.ds-tab-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(236,234,226,0.22);
  border-radius: 50%;
}

/* ============================================
   PHONE (FIXED TEXT ISSUE)
   ============================================ */

.ds-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;

  background: linear-gradient(180deg, #161615, #10100f);
  border: 1px solid rgba(236,234,226,0.18);
  border-radius: 20px;

  padding: 10px 8px 12px;
}

.ds-pill {
  width: 30px;
  height: 6px;
  background: rgba(236,234,226,0.12);
  border-radius: 3px;
  margin-bottom: 6px;
}

.ds-phone .ds-screen {
  width: 100%;
  flex: 1;

  background: #0f0f0e;
  border-radius: 12px;

  padding: 14px 10px;   /* FIX: more space */
  overflow: hidden;
  position: relative;
}

/* reduce inner UI scale so nothing "hits the edges" */
.ds-phone .ds-line {
  height: 5px;
  background: rgba(236,234,226,0.16);
}

.ds-phone .ds-ui-bar {
  height: 3px;
}

.ds-phone .ds-cta {
  width: 38px;
  height: 8px;
  margin-top: 8px;
}

/* ============================================
   FEATURES — CLEAN / NO EFFECTS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.feat-card {
  background: var(--bg2);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.feat-card:hover { background: #161614; }
.feat-card:nth-child(4n) { border-right: none; }
.feat-card:nth-child(n+5) { border-bottom: none; }

.feat-num {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1;
  color: rgba(200,255,0,0.18);
  margin-bottom: 1rem;
  transition: color .25s;
}
.feat-card:hover .feat-num { color: rgba(200,255,0,0.45); }

.feat-card h3 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================
   KUNDENMEINUNGEN
   ============================================ */
.section-reviews { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.review-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}
.review-card--feat {
  border-color: var(--lime);
  border-width: 1.5px;
}
.review-card--feat:hover { border-color: var(--lime); }

.review-quote {
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(200,255,0,0.2);
  margin-bottom: -0.5rem;
}
.review-card--feat .review-quote { color: rgba(200,255,0,0.4); }

.review-stars {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--lime);
}

.review-text {
  font-size: 0.925rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,255,0,0.12);
  border: 1px solid rgba(200,255,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--lime);
  flex-shrink: 0;
}
.review-card--feat .review-avatar {
  background: rgba(200,255,0,0.2);
  border-color: var(--lime);
}
.review-info { display: flex; flex-direction: column; gap: 0.15rem; }
.review-name {
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.review-role {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--f-head);
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .device-showcase { gap: 2rem; }
  .device-laptop { width: 280px; }
  .device-laptop .device-screen { height: 170px; }
}

@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .device-showcase { gap: 1.5rem; }
  .device-laptop { width: 220px; }
  .device-laptop .device-screen { height: 140px; }
  .device-tablet { display: none; }
}

/* ============================================
   PASSWORD GATE
   ============================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}
.gate-out {
  opacity: 0;
  pointer-events: none;
}
.gate-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  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-size: 128px;
}

/* Lime line top */
.gate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.gate-logo {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.gate-logo span { color: var(--lime); }

.gate-sub {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.gate-field {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-h);
  border-radius: 100px;
  overflow: hidden;
  background: var(--bg2);
  transition: border-color .25s;
}
.gate-field:focus-within { border-color: var(--lime); }

.gate-field input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 0.9rem 1.5rem;
  width: 240px;
}
.gate-field input::placeholder { color: var(--muted); letter-spacing: 0.06em; }

.gate-btn {
  background: var(--lime);
  border: none;
  color: var(--bg);
  font-size: 1.1rem;
  width: 48px; height: 48px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
  margin: 3px;
  border-radius: 100px;
}
.gate-btn:hover { background: var(--lime-d); }

.gate-err {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #ff5555;
  opacity: 0;
  transition: opacity .3s;
  height: 1em;
}
.gate-err.visible { opacity: 1; }

/* FILE UPLOAD */

.file-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

/* verstecktes Input, aber trotzdem klickbar über Label */
.file-field input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* Label als sichtbarer Button */
.file-label {
  font-family: var(--f-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text);

  border: 1px dashed var(--border-h);
  padding: 0.9rem 1rem;
  border-radius: 8px;

  cursor: pointer;
  transition: all .2s;

  text-align: center;
  display: block;
  width: 100%;

  background: rgba(255,255,255,0.02);
  position: relative;
  z-index: 3;
}

/* Hover Zustand sauber (ohne kaputte Doppelregeln) */
.file-label:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200,255,0,0.05);
}

/* Datei-Name Anzeige */
.file-name {
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 0.85;
}

/* Shake Animation */
@keyframes gateShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

.gate-field.shake {
  animation: gateShake .4s ease;
}

/* ============================================
   RESPONSIVE UPDATES (new sections)
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .feat-card:nth-child(2n) { border-right: none; }
  .feat-card:nth-child(n+5) { border-bottom: 1px solid var(--border); }
  .feat-card:nth-child(n+7) { border-bottom: none; }
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .device-scene { gap: 2rem; }
  .ds-laptop .ds-screen { width: 280px; height: 180px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feat-card:last-child { border-bottom: none !important; }
  .device-scene { gap: 1.5rem; }
  .ds-laptop .ds-screen { width: 220px; height: 140px; }
  .ds-tablet { display: none; }
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1080px;
  background: var(--bg2);
  border: 1px solid var(--border-h);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 100000;
  transition: opacity .4s, transform .4s;
}
.cookie-banner.cb-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cb-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.cb-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.cb-desc a { color: var(--lime); text-decoration: none; }
.cb-toggles {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.cb-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  cursor: pointer;
  user-select: none;
}
.cb-toggle input { display: none; }
.cb-switch {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  position: relative;
  transition: background .25s;
  flex-shrink: 0;
}
.cb-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #666;
  border-radius: 50%;
  transition: transform .25s, background .25s;
}
.cb-toggle input:checked + .cb-switch { background: rgba(200,255,0,0.2); }
.cb-toggle input:checked + .cb-switch::after {
  transform: translateX(16px);
  background: var(--lime);
}
.cb-disabled { opacity: 0.45; pointer-events: none; }
.cb-label { color: var(--text); font-weight: 500; font-family: var(--f-head); font-size: 0.8rem; }
.cb-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cb-btn {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.15rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cb-accept { background: var(--lime); color: #090909; }
.cb-accept:hover { background: var(--lime-d); }
.cb-essential, .cb-save {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-h);
}
.cb-essential:hover, .cb-save:hover { color: var(--text); }