/* ════════════════════════════════════════════════════════════
   MINDORO EVOLUTION — Main Stylesheet
   Theme: Dark / Neon Cyberpunk
   ════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #06060e;
  --bg-2:        #0d0d1a;
  --bg-card:     #0f0f1e;
  --bg-card-h:   #13132a;

  --cyan:        #00f5ff;
  --magenta:     #ff00cc;
  --green:       #00ff88;
  --yellow:      #ffe600;

  --text:        #c8d0e0;
  --text-dim:    #5a6378;
  --text-bright: #eaf0ff;

  --border:      rgba(0, 245, 255, 0.12);
  --border-h:    rgba(0, 245, 255, 0.5);
  --glow-cyan:   0 0 12px rgba(0,245,255,.45), 0 0 30px rgba(0,245,255,.18);
  --glow-mag:    0 0 12px rgba(255,0,204,.45), 0 0 30px rgba(255,0,204,.18);

  --nav-h:       64px;
  --radius:      8px;
  --transition:  0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Canvas background ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  #bg-canvas {
    filter: blur(2.5px);
  }
}

/* ── Scanlines overlay ── */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.05) 3px,
    rgba(0,0,0,0.05) 4px
  );
}

/* ── All content above canvas ── */
nav, .page, footer {
  position: relative;
  z-index: 10;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 50%, var(--cyan) 100%);
  background-size: 200% 100%;
  z-index: 999;
  pointer-events: none;
  transition: width 0.08s linear;
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}


/* ════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 245, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-bright);
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--cyan); }
.nav-logo-icon {
  width: 67px;
  height: 67px;
  border-radius: 0;
  object-fit: contain;
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px var(--cyan)) drop-shadow(0 0 12px rgba(0,245,255,0.35));
  }
  50% {
    filter: drop-shadow(0 0 10px var(--cyan)) drop-shadow(0 0 22px rgba(0,245,255,0.6)) drop-shadow(0 0 5px var(--magenta));
  }
}
.nav-logo:hover .nav-logo-icon {
  animation: none;
  filter: drop-shadow(0 0 14px var(--cyan)) drop-shadow(0 0 6px var(--magenta));
}
.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.nav-link:hover {
  color: var(--cyan);
  border-color: var(--border);
  text-shadow: 0 0 8px rgba(0,245,255,.5);
}
.nav-link.active {
  color: var(--cyan);
  border-color: var(--border-h);
  background: rgba(0, 245, 255, 0.06);
  text-shadow: var(--glow-cyan);
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-toggle:hover { color: var(--cyan); }


/* ════════════════════════════════════
   PAGES (SPA-style tab system)
   ════════════════════════════════════ */
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
  animation: fadeInPage 0.4s ease;
}
.page.active { display: block; }

/* Contact page — footer is inside the drawer; hide standalone footer */
body.contact-locked {
  overflow: hidden;
}
body.contact-locked > footer {
  display: none;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}


/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 6rem;
  gap: 2.5rem;
  will-change: opacity;
}

/* ── Hero ambient glow blob ── */
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 560px;
  background: radial-gradient(ellipse,
    rgba(0, 245, 255, 0.08) 0%,
    rgba(255, 0, 204, 0.045) 50%,
    transparent 72%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* ── Hero bottom fade ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: radial-gradient(ellipse 70% 100% at 50% 100%,
    rgba(0, 245, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--cyan);
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── Glitch text ── */
.glitch-text {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-bright);
  position: relative;
  line-height: 1.05;
  user-select: none;
  text-shadow: 0 0 60px rgba(0,245,255,.35), 0 0 120px rgba(0,245,255,.12), 0 2px 0 rgba(0,0,0,.6);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.glitch-text::before {
  color: var(--magenta);
  animation: glitch-before 4s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
  opacity: 0;
}
.glitch-text::after {
  color: var(--cyan);
  animation: glitch-after 4s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  opacity: 0;
}

@keyframes glitch-before {
  0%, 85%, 100% { opacity: 0; transform: none; }
  86%  { opacity: 1; transform: translate(-4px, 2px); }
  88%  { opacity: 1; transform: translate(4px, -2px); }
  90%  { opacity: 0; }
}
@keyframes glitch-after {
  0%, 88%, 100% { opacity: 0; transform: none; }
  89%  { opacity: 1; transform: translate(4px, 2px); }
  91%  { opacity: 1; transform: translate(-4px, -2px); }
  93%  { opacity: 0; }
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}
.hero-tagline em {
  color: var(--cyan);
  font-style: normal;
}

/* ── Hero buttons ── */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Hero stats — unified glassmorphism panel ── */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(0, 245, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 540px;
  width: 100%;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.3rem 1.5rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0, 245, 255, 0.12);
  border-radius: 0;
  min-width: 0;
  flex: 1;
  transition: background var(--transition);
}
.stat-box:last-child { border-right: none; }
.stat-box:hover {
  background: rgba(0, 245, 255, 0.06);
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  display: inline-block;
  background: linear-gradient(160deg, #ffffff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Hero entrance stagger ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes statPop {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
#page-home.active .hero-eyebrow { animation: heroFadeUp 0.7s cubic-bezier(.22,.61,.36,1) 0.05s both; }
#page-home.active .glitch-text  { animation: heroFadeUp 0.85s cubic-bezier(.22,.61,.36,1) 0.22s both; }
#page-home.active .hero-tagline { animation: heroFadeUp 0.7s cubic-bezier(.22,.61,.36,1) 0.42s both; }
#page-home.active .hero-buttons { animation: heroFadeUp 0.7s cubic-bezier(.22,.61,.36,1) 0.58s both; }
#page-home.active .hero-stats .stat-box:nth-child(1) { animation: statPop 0.55s cubic-bezier(.22,.61,.36,1) 0.72s both; }
#page-home.active .hero-stats .stat-box:nth-child(2) { animation: statPop 0.55s cubic-bezier(.22,.61,.36,1) 0.86s both; }
#page-home.active .hero-stats .stat-box:nth-child(3) { animation: statPop 0.55s cubic-bezier(.22,.61,.36,1) 1.0s  both; }

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  animation: heroFadeUp 0.6s ease 1.4s both, indicatorBounce 2s ease-in-out 2.2s infinite;
  transition: opacity 0.4s ease;
}
.hero-scroll-indicator.hidden { opacity: 0 !important; }
.hero-scroll-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  opacity: 0.55;
}
@keyframes indicatorBounce {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
@media (max-width: 600px) {
  .hero-stats { max-width: 100%; }
  .stat-box { padding: 1.1rem 0.8rem; }
  .stat-num { font-size: 1.7rem; }
  .stat-plus { font-size: 1.1rem; }
  .stat-label { font-size: 0.62rem; }
}


/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn-neon {
  display: inline-block;
  padding: 0.78rem 2.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #020d12;
  background: linear-gradient(135deg, var(--cyan) 0%, #00d4f0 100%);
  border-radius: var(--radius);
  border: 1px solid var(--cyan);
  box-shadow: 0 4px 28px rgba(0,245,255,.45), 0 0 0 0 rgba(0,245,255,0);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-neon:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: 0 0 32px rgba(0,245,255,.65), 0 0 0 2px rgba(0,245,255,.2);
}

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border-radius: var(--radius);
  border: 1px solid var(--border-h);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.btn-small {
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
}


/* ════════════════════════════════════
   SECTION TITLES
   ════════════════════════════════════ */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 60%, transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.45);
}

.section-desc {
  color: var(--text-dim);
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}


/* ════════════════════════════════════
   FEATURES (Home)
   ════════════════════════════════════ */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 4rem;
}
.features::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.25), rgba(255,0,204,0.15), transparent);
  margin-bottom: 3rem;
  box-shadow: 0 0 12px rgba(0,245,255,0.15);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: all var(--transition);
  cursor: default;
}
.feature-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.feature-icon {
  font-size: 0;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: rgba(0, 245, 255, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(0, 245, 255, 0.15);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-icon::before {
  font-size: 1.9rem;
  line-height: 1;
}
.feature-card:nth-child(1) .feature-icon::before { content: "\1F3AE"; }
.feature-card:nth-child(2) .feature-icon::before { content: "\1F6E0"; }
.feature-card:nth-child(3) .feature-icon::before { content: "\1F4F1"; }
.feature-card:nth-child(4) .feature-icon::before { content: "\1F310"; }
.feature-card:nth-child(5) .feature-icon::before { content: "\1F5A5"; }
.feature-card:nth-child(6) .feature-icon::before { content: "\1F52C"; }
.feature-card:hover .feature-icon {
  background: rgba(0, 245, 255, 0.14);
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.18);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Feature card stagger on scroll reveal ── */
@keyframes featureReveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.features .feature-card { opacity: 0; }
.features.visible .feature-card:nth-child(1) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.05s both; }
.features.visible .feature-card:nth-child(2) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.15s both; }
.features.visible .feature-card:nth-child(3) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.25s both; }
.features.visible .feature-card:nth-child(4) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.35s both; }
.features.visible .feature-card:nth-child(5) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.45s both; }
.features.visible .feature-card:nth-child(6) { animation: featureReveal 0.55s cubic-bezier(.22,.61,.36,1) 0.55s both; }

/* Search-visible brand and product summary */
.seo-brand-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.seo-brand-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
  border-top: 1px solid rgba(0, 245, 255, 0.18);
  border-bottom: 1px solid rgba(0, 245, 255, 0.12);
  padding: 2.4rem 0;
}

.seo-eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.seo-brand-copy h1,
.seo-brand-copy h2 {
  color: var(--text-bright);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.seo-brand-copy p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.9rem;
  max-width: 720px;
}

.about-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.about-focus-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 255, 0.18);
  background: rgba(0, 245, 255, 0.06);
  color: var(--text-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.about-actions {
  margin-top: 1.15rem;
}

.seo-product-list {
  display: grid;
  gap: 0.85rem;
}

.seo-product-list article {
  background: rgba(15, 15, 30, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.seo-product-list h3 {
  color: var(--text-bright);
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.seo-product-list p {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.55;
}

.about-services {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 245, 255, 0.12);
}

.about-services-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.about-services-head h2 {
  color: var(--text-bright);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.about-services-head p {
  color: var(--text);
  line-height: 1.7;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-services-grid article {
  background: rgba(15, 15, 30, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.about-services-grid h3 {
  color: var(--text-bright);
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.about-services-grid p {
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-services-grid article {
    padding: 1rem;
  }
}


/* ════════════════════════════════════
   CTA BAND
   ════════════════════════════════════ */
.cta-band {
  margin: 1rem auto 4rem;
  max-width: 1100px;
  padding: 0 2rem;
}

/* ════════════════════════════════════
   BLOG — Preview Cards (Home) + Full Page
   ════════════════════════════════════ */

.blog-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.blog-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-preview-head .section-title { margin-bottom: 0.35rem; }
.blog-preview-head .section-desc  { margin-bottom: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* ── Blog preview card ── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.07);
  transform: translateY(-3px);
}

.blog-card--magenta:hover { border-color: rgba(255, 0, 204, 0.3); box-shadow: 0 0 22px rgba(255, 0, 204, 0.07); }
.blog-card--green:hover   { border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 0 22px rgba(0, 255, 136, 0.07); }

.bc-top-bar { height: 3px; background: var(--cyan); flex-shrink: 0; }
.blog-card--magenta .bc-top-bar { background: var(--magenta); }
.blog-card--green   .bc-top-bar { background: var(--green); }

.bc-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0;
  flex-wrap: wrap;
}

.bc-tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.blog-card--magenta .bc-tag,
.blog-post-card--magenta .bc-tag {
  background: rgba(255, 0, 204, 0.08);
  color: var(--magenta);
  border-color: rgba(255, 0, 204, 0.2);
}

.blog-card--green .bc-tag,
.blog-post-card--green .bc-tag {
  background: rgba(0, 255, 136, 0.08);
  color: var(--green);
  border-color: rgba(0, 255, 136, 0.2);
}

.bc-date { font-size: 0.73rem; color: var(--text-dim); }
.bc-readtime { font-size: 0.73rem; color: var(--text-dim); }

.bc-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.4;
  margin: 0.6rem 1.25rem 0;
}

.bc-excerpt {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.62;
  margin: 0.5rem 1.25rem 0;
  flex: 1;
}

.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.bc-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  transition: opacity var(--transition);
}

.blog-card--magenta .bc-more { color: var(--magenta); }
.blog-card--green   .bc-more { color: var(--green); }
.blog-card:hover .bc-more { opacity: 0.7; }

/* ── Blog full page ── */
.blog-full-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.blog-post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.blog-post-card.is-open,
.blog-post-card:focus-within { border-color: rgba(0, 245, 255, 0.3); }
.blog-post-card--magenta.is-open { border-color: rgba(255, 0, 204, 0.3); }
.blog-post-card--green.is-open   { border-color: rgba(0, 255, 136, 0.3); }

.bpc-header {
  width: 100%;
  background: none;
  border: none;
  border-left: 3px solid var(--cyan);
  padding: 1.2rem 3.5rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.blog-post-card--magenta .bpc-header { border-left-color: var(--magenta); }
.blog-post-card--green   .bpc-header { border-left-color: var(--green); }

.bpc-meta { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }

.bpc-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.4;
  margin: 0;
}

.bpc-chevron {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  transition: transform 0.22s ease, color 0.22s;
}

.blog-post-card.is-open .bpc-chevron { transform: translateY(-50%) rotate(180deg); color: var(--cyan); }
.blog-post-card--magenta.is-open .bpc-chevron { color: var(--magenta); }
.blog-post-card--green.is-open   .bpc-chevron { color: var(--green); }

.bpc-body {
  padding: 0 1.5rem 1.5rem 1.7rem;
  border-top: 1px solid var(--border);
}

.bpc-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0.9rem 0 0;
}

.bpc-body strong { color: var(--text-bright); }

@media (max-width: 840px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-preview-head { flex-direction: column; align-items: flex-start; }
  .blog-preview-head .btn-outline { align-self: flex-start; }
}

.cta-inner {
  background: linear-gradient(135deg,
    rgba(0, 245, 255, 0.06) 0%,
    rgba(255, 0, 204, 0.06) 100%
  );
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-inner h2 {
  font-size: 1.6rem;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}


/* ════════════════════════════════════
   PRODUCT FILTER TABS
   ════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  color: var(--cyan);
  border-color: var(--border-h);
}
.filter-btn.active {
  color: var(--bg);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0,245,255,.3);
}


/* ════════════════════════════════════
   PRODUCT CARDS
   ════════════════════════════════════ */

@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

@keyframes featuredShine {
  0%   { transform: translateX(-200%) skewX(-20deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(350%)  skewX(-20deg); opacity: 0; }
}

@keyframes pricePulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,245,255,.55); }
  50%       { text-shadow: 0 0 24px rgba(0,245,255,1), 0 0 48px rgba(0,245,255,.4); }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: #14182b;
  border: 1px solid rgba(0,245,255,.22);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow:
    0 18px 42px rgba(0,0,0,.46),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2),
              box-shadow .35s ease,
              border-color .35s ease,
              background .35s ease;
  animation: cardIn .55s ease both;
  animation-delay: calc(var(--card-i, 0) * 80ms);
}
.product-card:hover {
  transform: translateY(-7px);
  background: #171d33;
  border-color: rgba(0,245,255,.4);
  box-shadow:
    0 0 0 1px rgba(0,245,255,.18),
    0 18px 44px rgba(0,0,0,.52),
    0 0 26px rgba(0,245,255,.12);
}

/* Animated shine stripe */
.product-card-shine {
  display: none;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.product-icon {
  font-size: 3rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.product-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid;
}
.badge-tool     { color: var(--cyan);    border-color: rgba(0,245,255,.4);  background: rgba(0,245,255,.08);  }
.badge-game     { color: var(--magenta); border-color: rgba(255,0,204,.4);  background: rgba(255,0,204,.08);  }
.badge-app      { color: var(--green);   border-color: rgba(0,255,136,.4);  background: rgba(0,255,136,.08);  }
.badge-prototype{ color: var(--yellow);  border-color: rgba(255,230,0,.4);  background: rgba(255,230,0,.08);  }
.badge-featured { color: var(--magenta); border-color: rgba(255,0,204,.4);  background: rgba(255,0,204,.08);  }
.badge-new          { color: var(--green);   border-color: rgba(0,255,136,.4);  background: rgba(0,255,136,.08);  }
.badge-early-access { color: var(--yellow);  border-color: rgba(255,230,0,.4);  background: rgba(255,230,0,.08);  }

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
}

.product-desc {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}

.product-footer {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ── Product Banner (Bild oben in der Karte) ── */
.product-banner {
  margin: -1.8rem -1.8rem 1.2rem;
  border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) 0 0;
  overflow: hidden;
  height: 140px;
  background: var(--bg-2);
}
.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.product-card:hover .product-banner img { filter: brightness(1); }

/* ── Icon als Bild ── */
.product-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  transition: box-shadow .35s ease;
}
.product-card:hover .product-icon-img {
  box-shadow: 0 0 20px rgba(0,245,255,.35);
}

/* ── product-body (Wrapper unterhalb des Banners) ── */
.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  padding: 1.8rem;
}

/* ── Lange Beschreibung ── */
.product-desc-long {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  border-left: 2px solid var(--border-h);
  padding-left: 1rem;
  margin: 0;
}
.product-desc-long.hidden { display: none; }
.product-desc-long ul {
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}
.product-desc-long li { margin-bottom: 0.2rem; }

/* ── "Mehr lesen" Toggle ── */
.btn-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
  text-align: left;
}
.btn-more:hover { opacity: 0.65; }

/* ── Screenshots-Streifen ── */
.product-screenshots {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-h) transparent;
}
.product-screenshots img {
  height: 90px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.product-screenshots img:hover {
  transform: scale(1.04);
  border-color: var(--border-h);
}

/* ── Coming Soon card ── */
.product-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-style: dashed;
  border-color: rgba(0,245,255,0.12);
}

.coming-soon-content {
  text-align: center;
}

.coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.coming-soon-content h3 {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.coming-soon-content p {
  font-size: 0.82rem;
  color: rgba(90, 99, 120, 0.7);
}


/* ════════════════════════════════════
   GAMES GRID
   ════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.game-slot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}

.game-slot iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.game-slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.game-slot-header h3 {
  font-size: 0.95rem;
  color: var(--text-bright);
}

/* ── Apps Grid ── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all var(--transition);
}
.app-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.app-icon {
  font-size: 2rem;
}
.app-icon-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  transition: box-shadow var(--transition);
}
.app-card:hover .app-icon-img {
  box-shadow: 0 0 14px rgba(0,245,255,0.45);
}


/* ════════════════════════════════════
   COMING SOON PAGE (fullscreen-ish)
   ════════════════════════════════════ */
.coming-soon-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 2rem;
}

.coming-soon-big {
  text-align: center;
  max-width: 400px;
}

.cs-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}

.coming-soon-big h3 {
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.coming-soon-big p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ════════════════════════════════════
   LOADING DOTS
   ════════════════════════════════════ */
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.loading-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.3;
  animation: dot-pulse 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 80%, 100% { opacity: 0.15; transform: scale(0.8); }
  40%           { opacity: 1;    transform: scale(1); box-shadow: 0 0 6px var(--cyan); }
}


/* ════════════════════════════════════
   LINKS PAGE
   ════════════════════════════════════ */
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
}

/* ════════════════════════════════════
   IMPRESSUM
   ════════════════════════════════════ */
.impressum-section {
  margin-top: 1rem;
}
.impressum-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.impressum-block {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 2px solid rgba(0,245,255,0.2);
  border-radius: 0 8px 8px 0;
  background: rgba(0,245,255,0.02);
  margin-bottom: 0.75rem;
  transition: border-color var(--transition), background var(--transition);
}
.impressum-block:hover {
  border-left-color: rgba(0,245,255,0.5);
  background: rgba(0,245,255,0.04);
}
.impressum-block:last-of-type { margin-bottom: 0; }
.impressum-block h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.55rem;
  opacity: 0.8;
}
.impressum-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.impressum-block p:last-child { margin-bottom: 0; }
.impressum-block a {
  color: var(--cyan);
  text-decoration: none;
  opacity: 0.85;
}
.impressum-block a:hover { opacity: 1; text-decoration: underline; }
.impressum-block strong { color: var(--text-bright); }
.impressum-copy {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.45;
  text-align: center;
}

/* ════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════ */

/* Full-screen splash */
.contact-splash {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 5rem;
  position: relative;
  transition: filter 0.3s ease;
}

/* Background radial glow */
.contact-splash-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,245,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,0,204,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative horizontal scan-lines on the splash */
.contact-splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,245,255,0.015) 3px,
    rgba(0,245,255,0.015) 4px
  );
  pointer-events: none;
}

.contact-splash-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 820px;
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), scale 0.5s cubic-bezier(.22,.61,.36,1);
}
.contact-splash-inner .contact-form {
  margin-top: 1.25rem;
}
body.drawer-open .contact-splash-inner {
  transform: translateY(-22vh);
  scale: 0.82;
}

.contact-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.7;
}

.contact-heading {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 0 60px rgba(0,245,255,0.2), 0 0 120px rgba(0,245,255,0.08);
}

.contact-role {
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin: -0.5rem 0 0;
  opacity: 0.6;
}
.contact-role span {
  color: var(--cyan);
  opacity: 0.9;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.75;
  margin: 0;
}

.contact-email-big {
  display: inline-block;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0,245,255,0.35);
  text-shadow: 0 0 24px rgba(0,245,255,0.5);
  transition: all var(--transition);
  position: relative;
}
.contact-email-big::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: width 0.35s ease;
}
.contact-email-big:hover::after { width: 100%; }
.contact-email-big:hover { text-shadow: 0 0 36px rgba(0,245,255,0.8); }

.contact-cta-btn {
  text-decoration: none;
  display: inline-block;
  margin-top: 0.25rem;
}

/* ── Contact form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 540px;
}
.contact-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.contact-form-row {
  display: flex;
  gap: 0.65rem;
}
.contact-input {
  width: 100%;
  padding: 0.72rem 1rem;
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.contact-input::placeholder {
  color: rgba(234, 240, 255, 0.76);
  opacity: 1;
}
.contact-input:focus {
  border-color: var(--cyan);
  background: rgba(0, 245, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.1);
}
.contact-textarea {
  min-height: 100px;
  line-height: 1.55;
}
.contact-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f5ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.contact-select option {
  background: #0d1117;
  color: var(--text);
}

/* ── Custom select dropdown (contact form) ── */
.cf-select-wrap {
  position: relative;
  width: 100%;
}
.cf-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.cf-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: rgba(234, 240, 255, 0.76);
}
.cf-select-btn.has-value { color: var(--text-bright); }
.cf-select-btn[aria-expanded="true"] {
  border-color: var(--cyan);
  background: rgba(0, 245, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.1);
}
.cf-select-btn.cf-invalid { border-color: var(--magenta) !important; }
.cf-select-arrow {
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
.cf-select-btn[aria-expanded="true"] .cf-select-arrow { transform: rotate(180deg); }
.cf-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #0a0a18;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius);
  padding: 0.3rem 0;
  list-style: none;
  margin: 0;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 245, 255, 0.06);
  display: none;
  overflow: hidden;
}
.cf-select-dropdown.open { display: block; }
.cf-select-dropdown li {
  padding: 0.68rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  line-height: 1.4;
}
.cf-select-dropdown li::before { content: none; }
.cf-select-dropdown li:hover { background: rgba(0, 245, 255, 0.08); color: var(--text-bright); }
.cf-select-dropdown li[aria-selected="true"] { background: rgba(0, 245, 255, 0.12); color: var(--cyan); }

.contact-form .btn-neon {
  width: 100%;
  margin-top: 0.15rem;
}
.contact-form-legal {
  margin: 0.1rem 0 0;
  color: var(--text-dim);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}
.contact-form-recaptcha-note {
  margin: -0.1rem 0 0;
  color: rgba(217, 224, 255, 0.56);
  font-size: 0.69rem;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}
.contact-form-legal-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--magenta);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 0, 204, 0.35);
  text-underline-offset: 0.14em;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.contact-form-legal-link:hover {
  color: rgba(255, 0, 204, 0.85);
  text-decoration-color: rgba(255, 0, 204, 0.6);
}
.contact-cta-btn.is-loading {
  opacity: 0.78;
  cursor: wait;
  filter: saturate(0.85);
}
.contact-form-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}
.contact-form-status.is-success {
  color: var(--cyan);
}
.contact-form-status.is-error {
  color: #ff77d6;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.feedback-panel {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 2rem 2rem 1.85rem;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 55% at top right, rgba(0, 245, 255, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at bottom left, rgba(180, 0, 255, 0.07) 0%, transparent 60%),
    linear-gradient(160deg, rgba(8, 20, 40, 0.97), rgba(10, 9, 24, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 1px 0 0 rgba(0,245,255,0.04),
    0 32px 90px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(0, 245, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.feedback-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,245,255,0), rgba(0,245,255,0.75) 40%, rgba(180,0,255,0.45) 70%, rgba(0,245,255,0));
}

.feedback-panel::after {
  content: '';
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, rgba(0,245,255,0), rgba(0,245,255,0.75) 50%, rgba(0,245,255,0));
}

.feedback-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.feedback-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0,245,255,0.55);
}

.feedback-title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-bright);
}

.feedback-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.09);
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0,245,255,0.12);
}

.feedback-desc {
  margin: 0.9rem 0 1.4rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 50ch;
}

.feedback-form {
  max-width: none;
  gap: 0.9rem;
}

.feedback-rating-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: 18px;
  background: rgba(0, 245, 255, 0.025);
}

.feedback-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.feedback-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 231, 255, 0.5);
}

.feedback-scale-hint {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(224, 231, 255, 0.4);
}

.feedback-rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.feedback-rate-btn {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  color: var(--text-dim);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.22s ease;
}

.feedback-rate-btn:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text-bright);
  transform: translateY(-2px);
}

/* Farb-kodierte Sentiment-Skala */
.feedback-rate-btn[data-rating="1"]:hover,
.feedback-rate-btn[data-rating="1"][aria-pressed="true"] {
  border-color: var(--magenta);
  background: rgba(255, 0, 128, 0.18);
  color: var(--magenta);
  box-shadow: 0 0 24px rgba(255, 0, 128, 0.22);
}
.feedback-rate-btn[data-rating="2"]:hover,
.feedback-rate-btn[data-rating="2"][aria-pressed="true"] {
  border-color: #ff7040;
  background: rgba(255, 112, 64, 0.18);
  color: #ff7040;
  box-shadow: 0 0 24px rgba(255, 112, 64, 0.18);
}
.feedback-rate-btn[data-rating="3"]:hover,
.feedback-rate-btn[data-rating="3"][aria-pressed="true"] {
  border-color: #f0c000;
  background: rgba(240, 192, 0, 0.16);
  color: #f0c000;
  box-shadow: 0 0 24px rgba(240, 192, 0, 0.18);
}
.feedback-rate-btn[data-rating="4"]:hover,
.feedback-rate-btn[data-rating="4"][aria-pressed="true"] {
  border-color: #00e088;
  background: rgba(0, 224, 136, 0.16);
  color: #00e088;
  box-shadow: 0 0 24px rgba(0, 224, 136, 0.18);
}
.feedback-rate-btn[data-rating="5"]:hover,
.feedback-rate-btn[data-rating="5"][aria-pressed="true"] {
  border-color: var(--cyan);
  background: rgba(0, 245, 255, 0.18);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.28);
}

.feedback-rate-btn[aria-pressed="true"] {
  transform: translateY(-2px) scale(1.04);
}

.feedback-rating.is-invalid .feedback-rate-btn {
  border-color: var(--magenta);
}

.feedback-section {
  display: flex;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 3rem;
}

.feedback-field-label {
  margin: 0.25rem 0 -0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(224, 231, 255, 0.5);
}

.feedback-form .contact-textarea {
  min-height: 130px;
}

.feedback-form .btn-neon {
  margin-top: 0.35rem;
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

@media (max-width: 640px) {
  .feedback-panel {
    padding: 1.4rem 1.25rem 1.5rem;
    border-radius: 20px;
  }

  .feedback-head {
    flex-direction: column;
    gap: 0.65rem;
  }

  .feedback-title {
    font-size: 1.32rem;
    line-height: 1.22;
  }

  .feedback-badge {
    align-self: flex-start;
  }

  .feedback-rating-wrap {
    padding: 0.9rem;
  }

  .feedback-rating {
    gap: 0.45rem;
  }

  .feedback-rate-btn {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    flex-direction: column;
  }
}

/* "Also find me on" label */
.contact-profiles-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.4;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Social cards — drawer that slides up from bottom */
.contact-social-section {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0 1rem;
  transform: translateY(calc(100% - 56px));
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), bottom 0.5s cubic-bezier(.22,.61,.36,1);
  pointer-events: auto;
}
.contact-social-section.open {
  transform: translateY(0);
}
.contact-drawer-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  height: 44px;
  margin: 0 auto 0.6rem;
  max-width: 880px;
  background: rgba(15, 15, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,245,255,0.18);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.contact-drawer-handle:hover {
  border-color: var(--cyan);
  color: var(--text-bright);
  box-shadow: 0 0 24px rgba(0,245,255,0.25);
}
.contact-drawer-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .4s ease;
}
.contact-social-section.open .contact-drawer-chevron {
  transform: rotate(135deg);
}
.contact-drawer-body {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(8, 8, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,245,255,0.12);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  padding: 0.9rem;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.6);
}
.contact-links-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.contact-links-row .link-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  gap: 0.35rem;
  border-radius: 12px;
}
.contact-links-row .link-card:hover {
  transform: translateY(-3px);
}
.contact-links-row .link-icon {
  font-size: 1.3rem;
  width: auto;
}
.contact-links-row .link-icon img,
.contact-links-row .link-icon svg {
  width: 26px;
  height: 26px;
}
.contact-links-row .link-card .link-title,
.contact-links-row .link-card h3 {
  font-size: 0.78rem;
  margin: 0;
}
.contact-links-row .link-card .link-desc,
.contact-links-row .link-card p {
  display: none;
}
.contact-links-row .link-arrow {
  display: none;
}

/* Footer-Inhalt im Drawer */
.contact-drawer-footer {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0,245,255,0.1);
  text-align: center;
}
.contact-drawer-footer .footer-logo {
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}
.contact-drawer-footer .footer-copy {
  font-size: 0.68rem;
  opacity: 0.45;
  margin: 0 0 0.35rem;
}
.contact-drawer-footer .footer-legal {
  gap: 0.4rem;
  justify-content: center;
}
.contact-drawer-footer .footer-legal-link {
  font-size: 0.68rem;
}

@media (max-width: 720px) {
  .contact-links-row { grid-template-columns: repeat(3, 1fr); }
  .contact-splash {
    min-height: calc(100vh - var(--nav-h));
    align-items: center;
    padding: 2rem 1.25rem 5rem;
  }
  .contact-splash-inner {
    gap: 0.72rem;
    max-width: 100%;
    padding-top: 0.45rem;
  }
  .contact-splash-inner .contact-form {
    margin-top: 1rem;
  }
  .contact-heading {
    font-size: clamp(1.9rem, 10vw, 3rem);
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }
  .contact-eyebrow { font-size: 0.62rem; letter-spacing: 0.18em; }
  .contact-role {
    font-size: 0.76rem;
    line-height: 1.35;
    max-width: 92vw;
  }
  .contact-sub {
    font-size: 0.8rem;
    line-height: 1.35;
    max-width: 92vw;
  }
  .contact-email-big {
    font-size: clamp(0.78rem, 3.8vw, 0.95rem);
    max-width: 92vw;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .contact-form {
    max-width: 92vw;
    gap: 0.42rem;
  }
  .contact-input {
    min-height: 42px;
    padding: 0.58rem 0.78rem;
    font-size: 0.86rem;
    border-radius: 10px;
  }
  .contact-textarea {
    min-height: 92px;
  }
  .contact-form .btn-neon {
    align-self: center;
    width: min(78vw, 320px);
    max-width: 320px;
    min-height: 46px;
    padding: 0.68rem 1rem;
    letter-spacing: 0.11em;
  }
  body.drawer-open .contact-splash-inner {
    transform: none;
    scale: 1;
  }
  body.drawer-open .contact-splash {
    filter: blur(6px);
  }
  .contact-social-section {
    padding: 0 0.6rem calc(env(safe-area-inset-bottom, 0px));
    transform: translateY(calc(100% - 56px - env(safe-area-inset-bottom, 0px)));
  }
  .contact-drawer-handle { height: 46px; font-size: 0.68rem; margin: 0 auto 0.4rem; }
  .contact-drawer-body { padding: 0.6rem; border-radius: 14px; }
  .contact-links-row { gap: 0.45rem; }
  .contact-links-row .link-card { padding: 0.55rem 0.35rem; gap: 0.25rem; border-radius: 10px; }
  .contact-links-row .link-icon { font-size: 1.1rem; }
  .contact-links-row .link-icon img,
  .contact-links-row .link-icon svg { width: 22px; height: 22px; }
  .contact-links-row .link-card .link-title,
  .contact-links-row .link-card h3 { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .contact-links-row { grid-template-columns: repeat(2, 1fr); }
  .contact-splash { padding: 1.05rem 0.85rem 5.6rem; }
  .contact-heading { font-size: clamp(1.75rem, 10.2vw, 2.65rem); }
  .contact-role,
  .contact-sub,
  .contact-form,
  .contact-email-big { max-width: 94vw; }
  .contact-form .btn-neon {
    width: min(74vw, 300px);
    max-width: 300px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  body.drawer-open .contact-splash-inner { transform: none; scale: 1; }
}

.link-card {
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.2rem 1.5rem;
  transition: all var(--transition);
  cursor: pointer;
}
.link-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateX(6px);
  box-shadow: var(--glow-cyan);
}
.link-card.link-add {
  border-style: dashed;
  opacity: 0.5;
  cursor: default;
}
.link-card.link-add:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.link-icon {
  font-size: 1.8rem;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.link-info { flex: 1; }

.link-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.2rem;
}

.link-info p {
  font-size: 0.83rem;
  color: var(--text-dim);
}

.link-arrow {
  font-size: 1.2rem;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}
.link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════
   PULSE NEON (utility)
   ════════════════════════════════════ */
.pulse-neon {
  animation: pulse-neon 2s ease-in-out infinite;
}
@keyframes pulse-neon {
  0%, 100% { filter: drop-shadow(0 0 4px var(--cyan)); }
  50%       { filter: drop-shadow(0 0 16px var(--cyan)); }
}


/* ════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════
   SW UPDATE TOAST
   ════════════════════════════════════ */
.sw-update-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 10, 22, 0.95);
  border: 1px solid rgba(0, 245, 255, 0.35);
  border-radius: 100px;
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  box-shadow: 0 0 24px rgba(0,245,255,0.12), 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  animation: toastIn 0.3s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.sw-update-text {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.sw-update-btn {
  background: var(--cyan);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.sw-update-btn:hover { opacity: 0.85; }
.sw-update-dismiss {
  background: none;
  border: none;
  color: var(--text-dim);
  opacity: 0.4;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0 0.2rem;
  transition: opacity var(--transition);
}
.sw-update-dismiss:hover { opacity: 1; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  background: rgba(6, 6, 14, 0.9);
}

.footer-content { }

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.footer-legal-link {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.75rem;
  opacity: 0.45;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition), color var(--transition);
}
.footer-legal-link:hover {
  opacity: 1;
  color: var(--cyan);
}
.footer-legal-sep {
  color: var(--text-dim);
  opacity: 0.25;
  font-size: 0.75rem;
  pointer-events: none;
}

/* ════════════════════════════════════
   LEGAL MODAL
   ════════════════════════════════════ */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}
.legal-modal-overlay[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.legal-modal-box {
  position: relative;
  background: linear-gradient(160deg, rgba(14,14,28,0.98) 0%, rgba(8,8,18,0.98) 100%);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(0,245,255,0.05),
    0 0 60px rgba(0,245,255,0.08),
    0 32px 80px rgba(0,0,0,0.7);
  max-width: 660px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  animation: slideUp 0.28s cubic-bezier(0.16,1,0.3,1);
}

/* Custom scrollbar */
.legal-modal-box::-webkit-scrollbar        { width: 4px; }
.legal-modal-box::-webkit-scrollbar-track  { background: rgba(255,255,255,0.03); border-radius: 2px; }
.legal-modal-box::-webkit-scrollbar-thumb  { background: rgba(0,245,255,0.35); border-radius: 2px; }
.legal-modal-box::-webkit-scrollbar-thumb:hover { background: rgba(0,245,255,0.65); }

@keyframes slideUp {
  from { transform: translateY(24px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Sticky header bar inside modal */
.legal-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  background: rgba(10,10,22,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,245,255,0.1);
}

.legal-modal-close {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-dim);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-modal-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,245,255,0.06);
  box-shadow: 0 0 12px rgba(0,245,255,0.2);
}

#legal-modal-content {
  padding: 2rem 2rem 2.5rem;
}

#legal-modal-content h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  margin: 0;
}


/* ════════════════════════════════════
   LANG TOGGLE (Nav)
   ════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(0,245,255,0.25);
  border-radius: 100px;
  background: rgba(0,245,255,0.04);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.lang-toggle:hover {
  background: rgba(0,245,255,0.09);
  border-color: rgba(0,245,255,0.5);
  box-shadow: 0 0 10px rgba(0,245,255,0.15);
}
.lt-opt {
  color: var(--text-dim);
  opacity: 0.35;
  transition: opacity var(--transition), color var(--transition);
}
.lt-opt.active {
  color: var(--cyan);
  opacity: 1;
  text-shadow: 0 0 8px rgba(0,245,255,0.6);
}
.lt-sep {
  color: var(--text-dim);
  opacity: 0.2;
  pointer-events: none;
}


/* ════════════════════════════════════
   PRODUCT CARD — UPDATED
   ════════════════════════════════════ */

/* Price label on card */
.product-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.55);
  letter-spacing: .02em;
  white-space: nowrap;
}
.product-card:hover .product-price {
  animation: pricePulse 1.8s ease-in-out infinite;
}

/* Name + version inline */
.product-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-version {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.1rem 0.55rem;
  white-space: nowrap;
}

/* Platform badges */
.product-platforms {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.platform-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--green);
  background: rgba(0, 255, 136, 0.07);
}

/* Tagline (replaces old .product-desc) */
.product-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}

/* Feature icon pills */
.product-feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.2rem 0;
}

.feat-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  transition: all .25s ease;
}
.product-card:hover .feat-icon-pill {
  border-color: rgba(0, 245, 255, 0.35);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.07);
  text-shadow: 0 0 8px rgba(0,245,255,.4);
}

/* Footer: price on top, then actions row */
.product-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.product-footer-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}


/* ════════════════════════════════════
   PRODUCT DETAIL PAGE
   ════════════════════════════════════ */

/* Back bar */
.detail-back-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
}

/* ── Hero ── */
.detail-hero {
  position: relative;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 14, 0.55) 0%,
    rgba(6, 6, 14, 0.85) 60%,
    rgba(6, 6, 14, 1)    100%
  );
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* App icon in hero */
.detail-icon {
  flex-shrink: 0;
}
.detail-icon-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(0,245,255,.3);
  box-shadow: 0 0 32px rgba(0,245,255,.25), 0 8px 32px rgba(0,0,0,.4);
  animation: cardIn .6s ease .1s both;
}
.detail-icon-emoji {
  font-size: 5.5rem;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 0 16px rgba(0, 245, 255, 0.45));
  animation: cardIn .6s ease .1s both;
}

.detail-hero-info {
  flex: 1;
  min-width: 0;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.detail-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: 0.02em;
}

.detail-version {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  white-space: nowrap;
  align-self: center;
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.detail-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.detail-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.7);
  animation: pricePulse 2.5s ease-in-out infinite;
  letter-spacing: .02em;
}

/* ── Detail Content Area ── */
.detail-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.detail-section {
  margin-top: 3.5rem;
  animation: none;
}

/* Highlighted section (capabilities) */
.detail-section.highlight {
  background: linear-gradient(135deg, rgba(0,245,255,.06) 0%, rgba(255,0,204,.04) 100%);
  border: 1px solid rgba(0,245,255,.2);
  border-radius: 18px;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 0 40px rgba(0,245,255,.07), inset 0 0 60px rgba(0,245,255,.03);
}
.detail-section.highlight .detail-section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 0;
}
.detail-section.highlight .detail-section-title::before { display: none; }

.detail-section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}
.detail-section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 10%;
  width: 3px;
  height: 80%;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--magenta));
}

/* ── Detail Overview (intro text) ── */
.detail-overview {
  border-left: none !important;
  padding: 0;
}
.detail-overview-text {
  background: linear-gradient(135deg, rgba(0,245,255,.06) 0%, rgba(255,0,204,.03) 100%);
  border: 1px solid rgba(0,245,255,.18);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.detail-overview-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
}
.detail-overview-text .detail-overview-punch {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: .01em;
}

/* Feature highlights grid */
.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.df-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.df-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
  background: var(--bg-card-h);
}

.df-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.df-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.df-card p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* What's New list */
.detail-new-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border-h);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.dn-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.dn-item:last-child { border-bottom: none; }

.dn-dot {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: -2.45rem;
  width: 2rem;
  text-align: center;
  background: var(--bg);
}

.dn-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
}

.dn-text p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Capabilities grid */
.detail-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.detail-cap-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.4rem;
}

.cap-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.cap-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cap-list li {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.cap-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  opacity: 0.7;
}

/* Engines grid */
.detail-engines-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.engine-badge {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-card);
  transition: all .25s ease;
  cursor: default;
}
.engine-badge:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,245,255,.25);
  transform: translateY(-2px);
}
.engine-badge:hover {
  border-color: var(--border-h);
  color: var(--text-bright);
  box-shadow: var(--glow-cyan);
}

/* System requirements */
.detail-requirements {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  max-width: 640px;
}

.req-row {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.req-row:last-child { border-bottom: none; }

.req-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  min-width: 130px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.req-value {
  font-size: 0.85rem;
  color: var(--text);
}

/* Two-column layout */
.detail-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* For whom */
.detail-for-whom {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fw-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.fw-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Check list (What you get / License) */
.detail-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.check-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.05rem;
}

/* Installation steps */
.detail-install {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.install-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.install-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.3);
}

/* Contact links */
.detail-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-link:hover {
  color: var(--cyan);
  border-color: var(--border-h);
  box-shadow: var(--glow-cyan);
}

/* Screenshots on detail page */
.detail-screenshots {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1.5rem 0 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-h) transparent;
}
.detail-screenshots img {
  height: 200px;
  width: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.detail-screenshots img:hover {
  border-color: var(--border-h);
  box-shadow: var(--glow-cyan);
}

/* Bottom Buy CTA bar */
.detail-buy-cta {
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: rgba(6, 6, 14, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,245,255,.25);
  box-shadow: 0 -4px 32px rgba(0,245,255,.1);
  padding: 1rem 2rem;
}

.detail-buy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.dbc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bright);
}

.dbc-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(0, 245, 255, 0.6);
  animation: pricePulse 2.5s ease-in-out infinite;
}


/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 58px;
  }
  #navbar {
    padding: 0 0.65rem;
    gap: 0.45rem;
  }
  .nav-logo {
    gap: 0.35rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-logo-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }
  .lang-toggle {
    flex: 0 0 auto;
    padding: 0.25rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .nav-toggle {
    flex: 0 0 auto;
    font-size: 1.65rem;
    padding: 0.2rem 0.35rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6, 6, 14, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding: 3rem 1.5rem 2rem; }
  .features, .cta-band, .seo-brand-section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .seo-brand-inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .page-section { padding: 2.5rem 1.2rem 4rem; }
  .hero-stats { gap: 0.8rem; }
  .stat-box { padding: 0.9rem 1.2rem; min-width: 90px; }
  .stat-num { font-size: 1.5rem; }

  /* Detail page responsive */
  .detail-hero-content { flex-direction: column; gap: 1.2rem; padding: 2rem 1.2rem 2.5rem; }
  .detail-icon-img { width: 72px; height: 72px; }
  .detail-icon-emoji { font-size: 3.5rem; }
  .detail-name { font-size: 1.8rem; }
  .detail-content { padding: 0 1.2rem 3rem; }
  .detail-back-bar { padding: 1rem 1.2rem 0; }
  .detail-two-col { grid-template-columns: 1fr; }
  .detail-features-grid { grid-template-columns: 1fr; }
  .detail-capabilities-grid { grid-template-columns: 1fr; }
  .detail-buy-cta { padding: 0.85rem 1rem; }
  .detail-buy-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
  }
  .detail-buy-inner > div { min-width: 0; }
  .detail-buy-inner .btn-neon {
    width: auto;
    max-width: 100%;
    justify-self: end;
    padding: 0.78rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    white-space: nowrap;
    flex: initial;
  }
  .dbc-name { font-size: 0.82rem; }
  .dbc-price { font-size: 1.3rem; }
  .req-label { min-width: 100px; }
}

@media (max-width: 480px) {
  #navbar {
    padding: 0 0.55rem;
    gap: 0.35rem;
  }
  .nav-logo {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }
  .nav-logo-icon {
    width: 38px;
    height: 38px;
  }
  .lang-toggle {
    padding: 0.22rem 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
  .nav-toggle {
    font-size: 1.55rem;
    padding: 0.15rem 0.25rem;
  }
  .glitch-text { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-neon, .btn-outline { width: 100%; max-width: 260px; text-align: center; }
  .detail-buy-inner .btn-neon {
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0.72rem 0.9rem;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
  }
  .dbc-name { font-size: 0.76rem; }
  .dbc-price { font-size: 1.15rem; }
  .contact-form .btn-neon {
    width: min(74vw, 300px);
    max-width: 300px;
    align-self: center;
  }
  .products-grid { grid-template-columns: 1fr; }
  .links-grid { max-width: 100%; }
  .product-footer { flex-direction: column; }
  .product-footer-actions { width: 100%; }
  .product-footer-actions .btn-neon,
  .product-footer-actions .btn-outline { width: 100%; text-align: center; }
  .detail-screenshots img { height: 140px; }
}

/* ════════════════════════════════════
   SERVICES PAGE — Package Cards
   ════════════════════════════════════ */

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pkg-card:hover {
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 28px rgba(0, 245, 255, 0.08);
  transform: translateY(-3px);
}

.pkg-featured {
  border-color: rgba(0, 245, 255, 0.45);
  background: linear-gradient(160deg, rgba(0, 245, 255, 0.05) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.12), inset 0 1px 0 rgba(0, 245, 255, 0.1);
  transform: scale(1.03);
}

.pkg-featured:hover {
  box-shadow: 0 0 55px rgba(0, 245, 255, 0.2), inset 0 1px 0 rgba(0, 245, 255, 0.15);
  transform: scale(1.03) translateY(-4px);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  color: var(--text-dim);
  white-space: nowrap;
}

.pkg-badge-hot {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #020d12;
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.55);
}

.pkg-badge-partner {
  border-color: rgba(255, 0, 204, 0.45);
  color: var(--magenta);
}

.pkg-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
}

.pkg-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  margin: 0;
}

.pkg-tagline {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin: 0 0 0.4rem;
}

.pkg-desc {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0.25rem 0 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.6rem 0 0.1rem;
}

.pkg-price-from {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pkg-featured .pkg-price-amount {
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkg-on-request {
  font-size: 1.1rem !important;
  color: var(--magenta) !important;
}

.pkg-duration {
  font-size: 0.79rem;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pkg-features li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.pkg-features li::before { content: none; }

.pkg-feature-no {
  color: var(--text-dim) !important;
  opacity: 0.45;
  text-decoration: line-through;
}

.btn-pkg {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.services-bottom-cta {
  text-align: center;
  padding: 2.5rem 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.services-bottom-cta p {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .pkg-featured {
    transform: none;
    order: -1;
  }
  .pkg-featured:hover {
    transform: translateY(-3px);
  }
}
